diff --git a/GarrisonCommander.lua b/GarrisonCommander.lua
index ff2e5be..612a2de 100644
--- a/GarrisonCommander.lua
+++ b/GarrisonCommander.lua
@@ -430,6 +430,7 @@ function addon:OnInitialized()
self:SafeRegisterEvent("GARRISON_MISSION_NPC_CLOSED")
self:SafeRegisterEvent("GARRISON_MISSION_STARTED")
self:SafeRegisterEvent("ADDON_LOADED")
+ self:SafeRegisterEvent("QUEST_TURNED_IN")
for _,b in ipairs(GMF.MissionTab.MissionList.listScroll.buttons) do
local scale=0.8
local f,h,s=b.Title:GetFont()
diff --git a/GarrisonCommander.toc b/GarrisonCommander.toc
index aea204c..9e2c4d6 100644
--- a/GarrisonCommander.toc
+++ b/GarrisonCommander.toc
@@ -46,6 +46,7 @@ MatchMaker.lua
FollowerRecruiting.lua
BuildingPage.lua
ShipYard.lua
+ShipControl.lua
OrderHall.lua
quick.lua
RelNotes.lua
diff --git a/Init.lua b/Init.lua
index 06a149f..b766ad4 100644
--- a/Init.lua
+++ b/Init.lua
@@ -50,6 +50,11 @@ ns.GSF=_G.GarrisonShipyardFrame
ns.GMFMissions=ns.GMF.MissionTab.MissionList
ns.GSFMissions=ns.GSF.MissionTab.MissionList
_G.GARRISON_FOLLOWER_MAX_ITEM_LEVEL = _G.GARRISON_FOLLOWER_MAX_ITEM_LEVEL or 675
+ns.quests={}
+GetQuestsCompleted(ns.quests)
+function addon:EventQUEST_TURNED_IN(event,quest,item,gold)
+ ns.quests[quest]=true
+end
do
--@debug@
local newcount, delcount,createdcount,cached = 0,0,0
diff --git a/MissionControl.lua b/MissionControl.lua
index 1d8bf32..3b9b825 100644
--- a/MissionControl.lua
+++ b/MissionControl.lua
@@ -12,6 +12,7 @@ local aMissions={}
local choosenby={}
local priority={}
local GMF=GarrisonMissionFrame
+local GSF=Garris
local GMCUsedFollowers={}
local wipe=wipe
local pairs=pairs
@@ -591,7 +592,7 @@ end
function module:OnInitialized()
local bigscreen=ns.bigscreen
chestTexture='GarrMission-'..UnitFactionGroup('player').. 'Chest'
- local GMC = CreateFrame('FRAME', nil, GMF)
+ local GMC = CreateFrame('FRAME', nil, GSF)
GMF.MissionControlTab=GMC
settings=addon.privatedb.profile.missionControl
self:RefreshConfig("Init")
diff --git a/RelNotes.lua b/RelNotes.lua
index 21f4d1b..c4431d4 100644
--- a/RelNotes.lua
+++ b/RelNotes.lua
@@ -22,6 +22,10 @@ self:Wiki([[
== Silent mode ==
typing /gac silent in chat will eliminate every chat message from GarrisonCommander
]])
+self:RelNotes(2,16,0,[[
+Feature: Mission control added to Shipyard. Send your naval mission with one click!
+Feature: Adds reward icons to shipyard missions
+]])
self:RelNotes(2,15,9,[[
Fix: Non latin languages localization should now work
]])
diff --git a/ShipControl.lua b/ShipControl.lua
new file mode 100644
index 0000000..7e60f81
--- /dev/null
+++ b/ShipControl.lua
@@ -0,0 +1,886 @@
+local me, ns = ...
+ns.Configure()
+local addon=addon --#addon
+local _G=_G
+-- Courtesy of Motig
+-- Concept and interface reused with permission
+-- Mission building rewritten from scratch
+--local GMC_G = {}
+local factory=addon:GetFactory()
+--GMC_G.frame = CreateFrame('FRAME')
+local aMissions={}
+local choosenby={}
+local priority={}
+local GSF=GSF
+local GSFMissions=GSFMissions
+local LE_FOLLOWER_TYPE_SHIPYARD_6_2=LE_FOLLOWER_TYPE_SHIPYARD_6_2
+local GMCUsedFollowers={}
+local wipe=wipe
+local pairs=pairs
+local tinsert=tinsert
+local tremove=tremove
+local dbg
+local tItems ={
+ --[[
+ {t = 'Enable/Disable money rewards.', i = 'Interface\\Icons\\inv_misc_coin_01', key = 'gold'},
+ {t = 'Enable/Disable resource awards. (Resources/Seals)', i= 'Interface\\Icons\\inv_garrison_resource', key = 'resources'},
+ {t = 'Enable/Disable oil awards.', i= 'Interface\\Icons\\garrison_oil', key = 'oil'},
+ {t = 'Enable/Disable rush scroll.', i= 'Interface\\ICONS\\INV_Scroll_12', key = 'rush'},
+ {t = 'Enable/Disable Follower XP Bonus rewards.', i = 'Interface\\Icons\\XPBonus_Icon', key = 'xp'},
+ {t = 'Enable/Disable Follower equip upgrade.', i = 'Interface\\ICONS\\Garrison_ArmorUpgrade', key = 'followerUpgrade'},
+ {t = 'Enable/Disable item tokens.', i = "Interface\\ICONS\\INV_Bracer_Cloth_Reputation_C_01", key = 'itemLevel'},
+ {t = 'Enable/Disable apexis.', i = "Interface\\Icons\\inv_apexis_draenor", key = 'apexis'},
+ {t = 'Enable/Disable generc rewards.', i = "Interface\\ICONS\\INV_Box_02", key = 'other'},
+ {t = 'Enable/Disable Seal of Tempered Fate.', i = "Interface\\Icons\\ability_animusorbs", key = 'seal'},
+ {t = 'Enable/Disable Primal Spirit.', i = "Interface\\Icons\\6BF_Explosive_shard", key = 'primalspirit'},
+ --]]
+ }
+for _,data in ipairs(addon:GetRewardClasses()) do
+ tItems[data.key]=data
+end
+local classlist={} ---#table local reference to settings.rewardList
+local class2order={} ---#table maps a classname to its priority
+local settings ---#table Pointer to settings in saved var
+local module=addon:NewSubClass("ShipControl") --#module
+local shipyard=addon:GetModule("ShipYard")
+function module:Busy(followerID)
+ return GMCUsedFollowers[followerID]
+end
+addon.GMCBusy=module.Busy
+
+local function chooseBestClass(class,moreClasses)
+ local i=class2order[class] or 999
+ local class=class
+ if type(moreClasses)=="table" then
+ for k,v in pairs(moreClasses) do
+ if class2order[k] < i then
+ class=k
+ i=class2order[class]
+ end
+ end
+ end
+
+end
+function module:AcceptMission(missionID,class,value,name,choosenby)
+ local ar=settings.allowedRewards
+ value=tonumber(value)
+ if not value then
+ value=tonumber(self:GetMissionData(missionID,class)) or 0
+ end
+ if class=='gold' then
+ value=math.floor(value/10000)
+ if self:GetMissionData(missionID,"class")~= 'gold' then
+ if value<self:GetNumber("MINGOLD") then return false end
+ end
+ elseif class=="xp" then
+ if self:GetMissionData(missionID,"level")<self:GetNumber("MINXPLEVEL") then return false end
+ elseif class=="itemLevel" then
+ if self:GetMissionData(missionID,'itemLevel') < settings.minLevel then
+ --@debug@
+ print(" ",missionID,"discarded due to ilevel == ", self:GetMissionData(missionID,'itemLevel'))
+ --@end-debug@
+ return false
+ end
+ elseif class=="followerUpgrade" then
+ if self:GetMissionData(missionID,'followerUpgrade') < settings.minUpgrade and
+ self:GetMissionData(missionID,'followerUpgrade') > 600 then
+ --@debug@
+ print(" ",missionID,"discarded due to followerUpgrade == ", self:GetMissionData(missionID,'followerUpgrade'))
+ --@end-debug@
+ return false
+ end
+ end
+ tinsert(choosenby,format("%05d@%010d@%d@%s@%s",class2order[class],99999999-value,missionID,class,name))
+ return true
+end
+---
+-- Builds a mission list based on user preferences
+-- @param #module self self
+-- @param #table workList table to be filled with mission list
+function module:CreateMissionList(workList)
+ local ar=settings.allowedRewards
+ wipe(priority)
+ for class,enabled in pairs(ar) do
+ if enabled then tinsert(priority,class) end
+ end
+ table.sort(priority,function(a,b) return class2order[a] < class2order[b] end)
+ wipe(workList)
+ wipe(choosenby)
+ for _,missionID in addon:GetMissionIterator(LE_FOLLOWER_TYPE_SHIPYARD_6_2) do
+ local discarded=false
+ local class=self:GetMissionData(missionID,"class")
+ local moreClasses=self:GetMissionData(missionID,"moreClasses")
+ local name=self:GetMissionData(missionID,"name")
+ repeat
+ if not addon:GetMissionData(missionID,"canStart") then break end
+ --@debug@
+ print("|cffff0000Examining|r",missionID,name,class,self:GetMissionData(missionID,class))
+ --@end-debug@
+ local durationSeconds=addon:GetMissionData(missionID,'durationSeconds')
+ if (durationSeconds > settings.maxDuration * 3600 or durationSeconds < settings.minDuration * 3600) then
+ --@debug@
+ print(" ",missionID,"discarded due to duration",durationSeconds /3600)
+ --@end-debug@
+ break
+ end -- Mission too long, out of here
+ if addon:GetMissionData(missionID,'isRare') and addon:GetBoolean('GCSKIPRARE') then
+ --@debug@
+ print(" ",missionID,"discarded due to rarity")
+ --@end-debug@
+ break
+ end
+ for _,testclass in ipairs(priority) do
+ if class==testclass or moreClasses[testclass] then
+ if self:AcceptMission(missionID,testclass,addon:GetMissionData(missionID,testclass),name,choosenby) then
+ --@debug@
+ print(" ",missionID,"accepted for",testclass)
+ --@end-debug@
+ break
+ --@debug@
+ else
+ print(" ",missionID,"refused for",testclass)
+ --@end-debug@
+ end
+
+ end
+ end
+ until true
+ end
+ local parties=self:GetParty()
+ table.sort(choosenby)
+ --@debug@
+ print("Final worklist")
+ --@end-debug@
+ local used=self:NewTable()
+ for i=1,#choosenby do
+ local _1,_2,missionId,_=strsplit('@',choosenby[i])
+ if not used[missionId] then
+ tinsert(workList,tonumber(missionId))
+ used[missionId]=true
+ --@debug@
+ print(missionId,_1,99999999-tonumber(_2))
+ --@end-debug@
+ end
+ end
+ self:DelTable(used)
+end
+---
+-- This routine can be called both as coroutin and as a standard one
+-- In standard version, delay between group building and submitting is done via a self schedule
+-- @param #module self
+-- @param #number missionID Optional, to run a single mission
+-- @param #boolean start Optional, tells that follower already are on mission and that we need just to start it
+function module:RunMission(missionID,start)
+ --@debug@
+ print("Asked to start mission",missionID)
+ --@end-debug@
+ local GMC=GSF.MissionControlTab
+ if (start) then
+ G.StartMission(missionID)
+ PlaySound("UI_Garrison_CommandTable_MissionStart")
+ addon:RefreshFollowerStatus()
+ return
+ end
+ for i=1,#GMC.list.Parties do
+ local party=GMC.list.Parties[i]
+ --@debug@
+ print("Checking",party.missionID)
+ --@end-debug@
+ if (missionID and party.missionID==missionID or not missionID) then
+ GMC.list.widget:RemoveChild(party.missionID)
+ GMC.list.widget:DoLayout()
+ if (party.full and not blacklist[party.missionID]) then
+ for j=1,#party.members do
+ G.AddFollowerToMission(party.missionID, party.members[j])
+ end
+ if (not missionID) then
+ coroutine.yield(true)
+ G.StartMission(party.missionID)
+ PlaySound("UI_Garrison_CommandTable_MissionStart")
+ coroutine.yield(true)
+ else
+ self:ScheduleTimer("RunMission",0.25,party.missionID,true)
+ return
+ end
+ else
+ if not missionID then coroutine.yield(true) end
+ end
+ end
+ addon:RefreshFollowerStatus()
+ end
+end
+do
+ local function leftclick(this)
+ local missionID=this.frame.info.missionID
+ if (blacklist[missionID]) then return end
+ module:RunMission(missionID)
+ GSF.MissionControlTab.list.widget:RemoveChild(missionID)
+ end
+ local function rightclick(this)
+ local missionID=this.frame.info.missionID
+ blacklist[missionID]=not blacklist[missionID]
+ module:Refresh()
+ end
+ local timeElapsed=0
+ local currentMission=0
+ local x=0
+ function module:CalculateMissions(this,elapsed)
+ local GMC=GSF.MissionControlTab
+ addon.db.global.news.MissionControl=true
+
+ timeElapsed = timeElapsed + elapsed
+ if (#aMissions == 0 ) then
+ if timeElapsed >= 1 then
+ currentMission=0
+ x=0
+ self:Unhook(this,"OnUpdate")
+ GMC.list.widget:SetTitle(READY)
+ GMC.list.widget:SetTitleColor(C.Green())
+ wipe(GMCUsedFollowers)
+ this:Enable()
+ GMC.runButton:Enable()
+ if (#GMC.list.Parties>0) then
+ GMC.runButton:Enable()
+ end
+ end
+ return
+ end
+ if (timeElapsed >=0.05) then
+ currentMission=currentMission+1
+ if (currentMission > #aMissions) then
+ wipe(aMissions)
+ currentMission=0
+ x=0
+ timeElapsed=0.5
+ else
+ local missionID=aMissions[currentMission]
+ GMC.list.widget:SetFormattedTitle("Processing mission %d of %d (%s)",currentMission,#aMissions,G.GetMissionName(missionID))
+ local class=self:GetMissionData(missionID,"class")
+ --print(C("Processing ","Red"),missionID,addon:GetMissionData(missionID,"name"))
+ local minimumChance=0
+ if (settings.useOneChance) then
+ minimumChance=tonumber(settings.minimumChance) or 100
+ else
+ minimumChance=tonumber(settings.rewardChance[class]) or 100
+ end
+ local party={members={},perc=0}
+ --@debug@
+ print(self:GetMissionData(missionID,"name"),missionID," Requested",class,minimumChance,party.perc,party.full)
+ --@end-debug@
+ self:MCMatchMaker(missionID,party,settings.skipEpic,minimumChance)
+ if ( party.full and party.perc >= minimumChance) then
+ --@debug@
+ print(missionID," Accepted",party.perc,minimumChance)
+ --@end-debug@
+ local mb=AceGUI:Create("GMCMissionButton")
+ if not blacklist[missionID] then
+ for i=1,#party.members do
+ GMCUsedFollowers[party.members[i]]=true
+ end
+ end
+ party.missionID=missionID
+ tinsert(GMC.list.Parties,party)
+ GMC.list.widget:PushChild(mb,missionID)
+ mb:SetFullWidth(true)
+ mb:SetMission(self:GetMissionData(missionID),party,false,"control")
+ mb:Blacklist(blacklist[missionID])
+ mb:SetCallback("OnClick",leftclick)
+ mb:SetCallback("OnRightClick",rightclick)
+ end
+ timeElapsed=0
+ end
+ end
+ end
+end
+
+function module:OnClick_Run(this,button)
+ local GMC=GSF.MissionControlTab
+ this:Disable()
+ GMC.logoutButton:Disable()
+ do
+ local elapsed=0
+ local co=coroutine.wrap(self.RunMission)
+ self:Unhook(GMC.runButton,'OnUpdate')
+ self:RawHookScript(GMC.runButton,'OnUpdate',function(this,ts)
+ elapsed=elapsed+ts
+ if (elapsed>0.25) then
+ elapsed=0
+ local rc=co(self)
+ if (not rc) then
+ self:Unhook(GMC.runButton,'OnUpdate')
+ GMC.logoutButton:Enable()
+ ns.quick=false
+ if addon:GetBoolean("SAUTOLOGOUT") then
+ addon:ScheduleTimer(function() GMC.logoutButton:Click() end,0.5)
+ end
+ end
+ end
+ end
+ )
+ end
+end
+function module:OnClick_Start(this,button)
+ local GMC=GSF.MissionControlTab
+ --@debug@
+ print(C("-------------------------------------------------","Yellow"))
+ --@end-debug@
+ GMC.list.widget:ClearChildren()
+ if (shipyard:GetTotFollowers(AVAILABLE) == 0) then
+ GMC.list.widget:SetTitle("All followers are busy")
+ GMC.list.widget:SetTitleColor(C.Orange())
+ return
+ end
+ if ( G.IsAboveFollowerSoftCap(1) ) then
+ GMC.list.widget:SetTitle(GARRISON_MAX_FOLLOWERS_MISSION_TOOLTIP)
+ GMC.list.widget:SetTitleColor(C.Red())
+ return
+ end
+ this:Disable()
+ GMC.list.widget:SetTitleColor(C.Green())
+ self:CreateMissionList(aMissions)
+ wipe(GMCUsedFollowers)
+ wipe(GMC.list.Parties)
+ shipyard:RefreshFollowerStatus()
+ if (#aMissions>0) then
+ GMC.list.widget:SetFormattedTitle(L["Processing mission %d of %d"],1,#aMissions)
+ else
+ GMC.list.widget:SetTitle("No mission matches your criteria")
+ GMC.list.widget:SetTitleColor(C.Red())
+ end
+ self:RawHookScript(GMC.startButton,'OnUpdate',"CalculateMissions")
+end
+local chestTexture
+local function buildDragging(frame,drawItemButtons)
+ local GMC=GSF.MissionControlTab
+ frame:SetScript('OnClick', function(this)
+ settings.allowedRewards[this.key] = not settings.allowedRewards[this.key]
+ drawItemButtons()
+ GMC.startButton:Click()
+ end)
+ frame:SetScript('OnEnter', function(this)
+ GameTooltip:SetOwner(this, 'ANCHOR_BOTTOMRIGHT')
+ GameTooltip:AddLine(this.tooltip);
+ for _,line in ipairs(this.list) do
+ local info=GetItemInfo(line,2)
+ if info then GameTooltip:AddLine(info) end
+ end
+ GameTooltip:Show()
+ end)
+ frame:RegisterForDrag("LeftButton")
+ frame:SetMovable(true)
+ frame:SetScript("OnDragStart",function(this,button)
+ --@debug@
+ print("Start",this:GetName(),GetMouseFocus():GetName(),this:GetID(),this.key)
+ --@end-debug@
+ local f=GMC.ignoreFrames[this:GetID()+1]
+ if f then f:ClearAllPoints() end
+ this:StartMoving()
+ this.oldframestrata=this:GetFrameStrata()
+ this:SetFrameStrata("FULLSCREEN_DIALOG")
+ end)
+ frame:SetScript("OnDragStop",function(this,button)
+ this:StopMovingOrSizing()
+ --@debug@
+ print("Stopped",this:GetName(),GetMouseFocus():GetName(),this:GetID(),this.key)
+ --@end-debug@
+ this:SetFrameStrata(this.oldframestrata)
+ end)
+ frame:SetScript("OnReceiveDrag",function(this,...)
+ --@debug@
+ print("Receive",this:GetName(),GetMouseFocus():GetName(),this:GetID(),this.key,...)
+ --@end-debug@
+ local from=this:GetID()
+ local to
+ local x,y=this:GetCenter()
+ local id=this:GetID()
+ for i=1,#GMC.ignoreFrames do
+ local f=GMC.ignoreFrames[i]
+ if f:GetID() ~= id then
+ if f:IsMouseOver() then
+ to=f:GetID()
+ break
+ end
+ if y>=f:GetBottom() and y<=f:GetTop() and x>=f:GetLeft() and x<=f:GetRight() then
+ to=f:GetID()
+ break
+ end
+ end
+ end
+ if (to) then
+ local appo=tremove(classlist,from)
+ tinsert(classlist,to,appo)
+ --@debug@
+ print(appo,"from:",from,"to:",to)
+ DevTools_Dump(classlist)
+ --@end-debug@
+ end
+ drawItemButtons()
+ module:Refresh()
+ end)
+ frame:SetScript('OnLeave', function() GameTooltip:Hide() end)
+
+end
+local function drawItemButtons(frame)
+ local GMC=GSF.MissionControlTab
+ frame=frame or GMC.rewards
+ local scale=1.0
+ local h=37 -- itemButtonTemplate standard size
+ local gap=5
+ local single=settings.useOneChance
+ --for j = 1, #tItems do
+ --local i=tOrder[j]
+ local wrap=math.ceil(#classlist/2 +1)
+ for frameIndex,i in ipairs(classlist) do
+ local row = GMC.ignoreFrames[frameIndex]
+ if not row then
+ row= CreateFrame('BUTTON', "Priority" .. frameIndex, frame, 'ItemButtonTemplate')
+ row.chance=settings.rewardChance[row.key] or 100
+ GMC.ignoreFrames[frameIndex] = row
+ row.slider=row.slider or factory:Slider(row,0,100,row.chance,row.chance)
+ row.slider:SetWidth(128)
+ row.slider:SetPoint('BOTTOMLEFT',row,'BOTTOMRIGHT',15,0)
+ row.slider.Text:SetFontObject('NumberFont_Outline_Med')
+ row.slider.isPercent=true
+ row.slider:SetScript("OnValueChanged",function(this,value)
+ settings.rewardChance[this:GetParent().key]=this:OnValueChanged(value)
+ module:Refresh()
+ end
+ )
+ row.chest = row.chest or row:CreateTexture(nil, 'BACKGROUND')
+ row.chest:SetTexture('Interface\\Garrison\\GarrisonMissionUI2.blp')
+ row.chest:SetAtlas(chestTexture)
+ row.chest:SetSize((209-(209*0.25))*0.30, (155-(155*0.25)) * 0.30)
+ row.chest:SetPoint('CENTER',row.slider, 0, 15)
+ buildDragging(row,drawItemButtons)
+ end
+ row:SetID(frameIndex)
+ row:ClearAllPoints()
+ row:SetScale(scale)
+ --frame:SetPoint('TOPLEFT', 10,(j) * ((-h * scale) -gap))
+ if frameIndex==1 then
+ row:SetPoint('TOPLEFT', 10,-35)
+ elseif frameIndex==wrap then
+ row:SetPoint('TOPRIGHT', -(10 + 145),-35)
+ else
+ row:SetPoint('TOPLEFT', GMC.ignoreFrames[frameIndex-1],'BOTTOMLEFT',0,-5)
+ end
+ row.icon:SetTexture(tItems[i].i)
+ row.key=tItems[i].key
+ class2order[row.key]=frameIndex
+ row.tooltip=tItems[i].t
+ row.list=tItems[i].list
+ row.allowed=settings.allowedRewards[row.key]
+ row.chance=settings.rewardChance[row.key] or 100
+ row.icon:SetDesaturated(not row.allowed)
+ if row.key=="itemLevel" then
+ row.Count:SetText(settings.minLevel)
+ row.Count:SetJustifyH("RIGHT")
+ row.Count:SetPoint('BOTTOMRIGHT',0,5)
+ row.Count:Show()
+ elseif row.key=="followerUpgrade" then
+ row.Count:SetText(settings.minUpgrade)
+ row.Count:SetJustifyH("RIGHT")
+ row.Count:SetPoint('BOTTOMRIGHT',0,5)
+ row.Count:Show()
+ else
+ row.Count:Hide()
+ end
+ -- Need to resave them asap in order to populate the array for future scans
+ settings.allowedRewards[row.key]=row.allowed
+ settings.rewardChance[row.key]=row.chance
+ --row.slider:OnValueChanged(row.chance)
+ row.slider:SetValue(row.chance)
+ if (single) then
+ row.slider:SetTextColor(C.Silver())
+ else
+ row.slider:SetTextColor(C.Green())
+ end
+ row.slider:OnValueChanged(settings.rewardChance[row.key] or 100)
+ --frame.slider:SetText(settings.rewardChance[frame.key])
+ if (single) then
+ row.chest:SetDesaturated(true)
+ else
+ row.chest:SetDesaturated(false)
+ end
+ row.chest:Show()
+ row:Show()
+ row.top=row:GetTop()
+ row.bottom=row:GetBottom()
+ end
+ if not GMC.rewardinfo then
+ GMC.rewardinfo = frame:CreateFontString()
+ local info=GMC.rewardinfo
+ info:SetFontObject('GameFontHighlight')
+ info:SetText("Click to enable/disable a reward. Drag to reorder")
+ info:SetTextColor(1, 1, 1)
+ info:SetPoint("BOTTOM",0,-5)
+ end
+ return GMC.ignoreFrames[#tItems]
+end
+local function dbfixV1()
+--@debug@
+ print('dbfixV1')
+--@end-debug@
+ if type(settings.allowedRewards['equip'])~='nil' then
+ settings.allowedRewards['itemLevel']=settings.allowedRewards['equip']
+ settings.rewardChance['itemLevel']=settings.rewardChance['equip']
+ settings.allowedRewards['equip']=nil
+ settings.rewardChance['equip']=nil
+ end
+ if type(settings.allowedRewards['followerEquip'])~='nil' then
+ settings.allowedRewards['followerUpgrade']=settings.allowedRewards['followerEquip']
+ settings.rewardChance['followerUpgrade']=settings.rewardChance['followerEquip']
+ settings.allowedRewards['followerEquip']=nil
+ settings.rewardChance['followerEquip']=nil
+ end
+ settings.version=2
+end
+local function dbfixV2()
+--@debug@
+ print('dbfixV2')
+--@end-debug@
+ local old=
+ {
+ 'gold',
+ 'resources',
+ 'oil',
+ 'rush',
+ 'xp',
+ 'followerUpgrade',
+ 'itemLevel',
+ 'apexis',
+ 'seal',
+ 'other'
+ }
+ settings.rewardList={}
+ settings.itemIgnoreList=nil
+ local a=settings.rewardList
+ if type(settings.rewardOrder)=="table" then
+ for _,i in ipairs(settings.rewardOrder) do
+ if old[i] ~='-' then
+ tinsert(a,old[i])
+ old[i]='-'
+ end
+ end
+ end
+ for _,v in ipairs(old) do
+ if v~='-' then
+ tinsert(a,v)
+ end
+ end
+ for index,key in ipairs(a) do
+ class2order[key]=index
+ end
+ for _,v in ipairs(addon:GetRewardClasses()) do
+ if not class2order[v.key] then
+ tinsert(a,v.key)
+ end
+ end
+ settings.rewardOrder=nil
+ settings.version=3
+end
+local function toggleEpicWarning()
+ local GMC=GSF.MissionControlTab
+ local warning=GMC.warning
+ if not warning then return end
+ if (settings.skipEpic) then
+ warning:Show()
+ GMC.list.widget:SetPoint("TOPLEFT",GMC.chance,"TOPRIGHT",0,ns.bigscreen and -60 or -50)
+ else
+ warning:Hide()
+ GMC.list.widget:SetPoint("TOPLEFT",GMC.chance,"TOPRIGHT",0,-30)
+ end
+end
+function module:OnInitialized()
+ local bigscreen=ns.bigscreen
+ chestTexture='GarrMission-'..UnitFactionGroup('player').. 'Chest'
+ local GMC = CreateFrame('FRAME', nil, GSF)
+ GSF.MissionControlTab=GMC
+ settings=addon.privatedb.profile.shipControl
+ self:RefreshConfig("Init")
+ if settings.version < 2 then
+ dbfixV1()
+ end
+ if settings.version < 3 or type(settings.rewardOrder)=='table' or #settings.rewardList==0 then
+ dbfixV2()
+ end
+ if settings.itemPrio then
+ settings.itemPrio=nil
+ end
+ GMC:SetAllPoints()
+ --GMC:SetPoint('LEFT')
+ --GMC:SetSize(GMF:GetWidth(), GMF:GetHeight())
+ GMC:Hide()
+ GMC.chance=self:BuildChance()
+ GMC.duration=self:BuildDuration()
+ GMC.rewards=self:BuildRewards()
+ GMC.list=self:BuildMissionList()
+ GMC.flags=self:BuildFlags()
+ local chance=GMC.chance
+ local duration=GMC.duration
+ local rewards=GMC.rewards
+ local list=GMC.list
+ local flags=GMC.flags
+ list.widget:SetPoint("TOPLEFT",chance,"TOPRIGHT",0,-30)
+ list.widget:SetPoint("BOTTOMRIGHT",GSF,"BOTTOMRIGHT",-25,25)
+ duration:SetPoint("TOPLEFT",20,-25)
+ chance:SetPoint("TOPLEFT",duration,"TOPRIGHT",0,0)
+ rewards:SetPoint("TOPLEFT",duration,"BOTTOMLEFT",0,0)
+ rewards:SetPoint("BOTTOMLEFT",20,25)
+ toggleEpicWarning()
+ if flags then
+ flags:SetPoint("TOPLEFT",chance,"BOTTOMLEFT",0,0)
+ end
+ --@debug@
+ --AddBackdrop(rewards)
+ --AddBackdrop(duration,0,1,0)
+ --AddBackdrop(chance,0,0,1)
+ -- AddBackdrop(flags,0,1,1)
+ --@end-debug@
+ GMC.Credits=GMC:CreateFontString(nil,"ARTWORK","QuestFont_Shadow_Small")
+ GMC.Credits:SetWidth(0)
+ GMC.Credits:SetFormattedText(C(L["Original concept and interface by %s"],'Yellow'),C("Motig","Red") )
+ GMC.Credits:SetJustifyH("RIGHT")
+ GMC.Credits:SetPoint("BOTTOMRIGHT",-50,5)
+ addon.db.RegisterCallback(self, "OnNewProfile", "RefreshConfig")
+ --addon.db.RegisterCallback(self,"OnProfileShutdown","ShowList")
+ addon.db.RegisterCallback(self, "OnProfileChanged", "RefreshConfig")
+ addon.db.RegisterCallback(self, "OnProfileCopied", "RefreshConfig")
+ addon.db.RegisterCallback(self, "OnProfileReset", "RefreshConfig")
+ return GMC
+end
+function module:ShowList()
+ self:Print("Rewards list for profile",addon.db:GetCurrentProfile())
+ DevTools_Dump(settings.rewardList)
+end
+local function clone(from,to)
+ for k,v in pairs(from) do
+ if type(v)~="table" then
+ to[k]=v
+ else
+ to[k]=to[k] or {}
+ clone(v,to[k])
+ end
+ end
+end
+function module:RefreshConfig(event)
+ settings=addon.db.profile.missionControl
+ local oldsettings=addon.privatedb.profile.missionControl
+ if #settings.rewardList==0 and oldsettings and #oldsettings.rewardList>0 then
+ clone(oldsettings,settings)
+ end
+ --self:ShowList()
+ blacklist=settings.blacklist
+ classlist=settings.rewardList
+ wipe(class2order)
+ for index,key in ipairs(classlist) do
+ class2order[key]=index
+ end
+ if #classlist < #addon:GetRewardClasses() then
+ for _,v in ipairs(addon:GetRewardClasses()) do
+ if not class2order[v.key] then
+ tinsert(classlist,v.key)
+ end
+ end
+ wipe(class2order)
+ for index,key in ipairs(classlist) do
+ class2order[key]=index
+ end
+ end
+ if event ~="Init" then -- Initialization routine, we cant design yet
+ drawItemButtons()
+ end
+end
+local refreshTimer
+function module:Refresh()
+ if not GSF.MissionControlTab.startButton then return end
+ if GSF.MissionControlTab.startButton:IsEnabled() and not IsMouseButtonDown("LeftButton") then
+ self:OnClick_Start(GSF.MissionControlTab.startButton,"LeftUp")
+ else
+ if refreshTimer then
+ self:CancelTimer(refreshTimer)
+ refreshTimer=nil
+ end
+ refreshTimer=self:ScheduleTimer("Refresh",0.5)
+ end
+end
+function module:BuildChance()
+ local GMC=GSF.MissionControlTab
+ --Chance
+ local frame= CreateFrame('FRAME', nil, GMC)
+ frame:SetSize(210, 165)
+ GMC.cp = frame:CreateTexture(nil, 'BACKGROUND') --Chest
+ GMC.cp:SetTexture('Interface\\Garrison\\GarrisonMissionUI2.blp')
+ GMC.cp:SetAtlas(chestTexture)
+ GMC.cp:SetDesaturated(not settings.useOneChance)
+ GMC.cp:SetSize((209-(209*0.25))*0.60, (155-(155*0.25))*0.60)
+ GMC.cp:SetPoint('CENTER', 0, 40)
+
+ GMC.ct = frame:CreateFontString() --Chance number
+ GMC.ct:SetFontObject('ZoneTextFont')
+ GMC.ct:SetFormattedText('%d%%',settings.minimumChance)
+ GMC.ct:SetPoint('CENTER', 0,25)
+ if settings.useOneChance then
+ GMC.ct:SetTextColor(C:Green())
+ else
+ GMC.ct:SetTextColor(C:Silver())
+ end
+ GMC.cs = factory:Slider(frame,0,100,settings.minimumChance,L['Minumum needed chance'],L["Mission with lower success chance will be ignored"]) -- Slider
+ GMC.cs:SetPoint('CENTER', 0, -25)
+ GMC.cs:SetScript('OnValueChanged', function(self, value)
+ local value = math.floor(value)
+ GMC.ct:SetText(value..'%')
+ settings.minimumChance = value
+ module:Refresh()
+ end)
+ GMC.cs:SetValue(settings.minimumChance)
+ GMC.ck=factory:Checkbox(frame,settings.useOneChance,L["Global success chance"],L["Unchecking this will allow you to set specific success chance for each reward type"])
+ GMC.ck:SetPoint("BOTTOM",0,5)
+ GMC.ck:SetScript("OnClick",function(this)
+ settings.useOneChance=this:GetChecked()
+ if (settings.useOneChance) then
+ GMC.cp:SetDesaturated(false)
+ GMC.ct:SetTextColor(C.Green())
+ else
+ GMC.cp:SetDesaturated(true)
+ GMC.ct:SetTextColor(C.Silver())
+ end
+ drawItemButtons()
+ module:Refresh()
+ end)
+ return frame
+end
+local function timeslidechange(this,value)
+ local GMC=GSF.MissionControlTab
+ local value = math.floor(value)
+ if (this.max) then
+ settings.maxDuration = max(value,settings.minDuration)
+ if (value~=settings.maxDuration) then this:SetValue(settings.maxDuration) end
+ else
+ settings.minDuration = min(value,settings.maxDuration)
+ if (value~=settings.minDuration) then this:SetValue(settings.minDuration) end
+ end
+ local c = 1-(value*(1/24))
+ if c < 0.3 then c = 0.3 end
+ GMC.mt:SetTextColor(1, c, c)
+ GMC.mt:SetFormattedText("%d-%dh",settings.minDuration,settings.maxDuration)
+end
+function addon:ApplySGCMINLEVEL(value)
+ settings.minLevel=value
+ drawItemButtons()
+ module:Refresh()
+end
+function addon:ApplySGCSKIPEPIC(value)
+ settings.skipEpic=value
+ toggleEpicWarning()
+ module:Refresh()
+end
+function module:BuildFlags()
+ local GMC=GSF.MissionControlTab
+ local warning=GMC:CreateFontString(nil,"ARTWORK",ns.bigscreen and "GameFontNormalHuge" or "GameFontNormal")
+ warning:SetText(L["Epic followers are NOT sent alone on xp only missions"])
+ warning:SetPoint("TOPLEFT",GMC.chance,"TOPRIGHT",0,0)
+ warning:SetPoint("TOPRIGHT",GMC,"TOPRIGHT",0,-25)
+ warning:SetJustifyH("CENTER")
+ warning:SetTextColor(C.Orange())
+ GMC.warning=warning
+ addon:AddLabel(L["Shipyard Control"])
+ addon:AddSlider("SGCMINLEVEL",settings.minLevel,535,715,L["Item minimum level"],L['Minimum requested level for equipment rewards'],15)
+ addon:AddToggle("SGCSKIPEPIC",settings.skipEpic,L["Ignore epic for xp missions."],L["IF you have a Salvage Yard you probably dont want to have this one checked"])
+ addon:AddToggle("SAUTOLOGOUT",false,L["Auto Logout"],L["Automatically logout after sending missions"])
+end
+function module:BuildDuration()
+ -- Duration
+ local GMC=GSF.MissionControlTab
+ local frame= CreateFrame('FRAME', 'PIPPO', GMC) -- Duration frame
+ frame:SetSize(210, 165)
+ frame:SetPoint('TOP',0, -20)
+
+ GMC.hg = frame:CreateTexture(nil, 'BACKGROUND') -- Hourglass
+ GMC.hg:SetTexture('Interface\\Timer\\Challenges-Logo.blp')
+ GMC.hg:SetSize(7, 70)
+ GMC.hg:SetPoint('CENTER', 0, 10)
+ GMC.hg:SetBlendMode('ADD')
+
+ GMC.rune = frame:CreateTexture(nil, 'BACKGROUND') --Rune
+ --bb:SetTexture('Interface\\Timer\\Challenges-Logo.blp')
+ --bb:SetTexture('dungeons\\textures\\devices\\mm_clockface_01.blp')
+ GMC.rune:SetTexture('World\\Dungeon\\Challenge\\clockRunes.blp')
+ GMC.rune:SetSize(80, 80)
+ GMC.rune:SetPoint('CENTER', 0, 10)
+ GMC.rune:SetBlendMode('ADD')
+
+ GMC.mt = frame:CreateFontString() -- Duration string over hourglass
+ GMC.mt:SetFontObject('ZoneTextFont')
+ GMC.mt:SetFormattedText('%d-%dh',settings.minDuration,settings.maxDuration)
+ GMC.mt:SetPoint('CENTER', 0, 0)
+ GMC.mt:SetTextColor(1, 1, 1)
+
+ GMC.ms1 = factory:Slider(frame,0,24,settings.minDuration,L['Minimum mission duration.'])
+ GMC.ms2 = factory:Slider(frame,0,24,settings.maxDuration,L['Maximum mission duration.'])
+ GMC.ms1:SetPoint('TOP', frame,'TOP',0, -10)
+ GMC.ms2:SetPoint('BOTTOM', frame,'BOTTOM',0, 15)
+ GMC.ms2.max=true
+ GMC.ms1:SetScript('OnValueChanged', timeslidechange)
+ GMC.ms2:SetScript('OnValueChanged', timeslidechange)
+ timeslidechange(GMC.ms1,settings.minDuration)
+ timeslidechange(GMC.ms2,settings.maxDuration)
+ return frame
+end
+function module:BuildRewards()
+ --Allowed rewards
+ local GMC=GSF.MissionControlTab
+ local frame = CreateFrame('FRAME', nil, GMC)
+ frame:SetWidth(420)
+ GMC.itf = frame:CreateFontString()
+ GMC.itf:SetFontObject('GameFontNormalHuge')
+ GMC.itf:SetText(L['Allowed Rewards'])
+ GMC.itf:SetPoint('TOP', 0, 0)
+ GMC.itf:SetTextColor(1, 1, 1)
+ GMC.ignoreFrames = {}
+ drawItemButtons(frame)
+ return frame
+end
+
+function module:BuildMissionList()
+ local ml={widget=AceGUI:Create("GMCLayer"),Parties={}}
+ local GMC=GSF.MissionControlTab
+ ml.widget:SetTitle(READY)
+ ml.widget:SetTitleColor(C.Green())
+ ml.widget:SetTitleHeight(40)
+ ml.widget:SetParent(GMC)
+ ml.widget:Show()
+ GMC.startButton = CreateFrame('BUTTON',nil, ml.widget.frame, 'GameMenuButtonTemplate')
+ GMC.startButton:SetText('Calculate')
+ GMC.startButton:SetWidth(148)
+ GMC.startButton:SetPoint('TOPLEFT',10,25)
+ GMC.startButton:SetScript('OnClick', function(this,button) self:OnClick_Start(this,button) end)
+ GMC.startButton:SetScript('OnEnter', function() GameTooltip:SetOwner(GMC.startButton, 'ANCHOR_TOPRIGHT') GameTooltip:AddLine('Assign your followers to missions.') GameTooltip:Show() end)
+ GMC.startButton:SetScript('OnLeave', function() GameTooltip:Hide() end)
+ GMC.runButton = CreateFrame('BUTTON', nil,ml.widget.frame, 'GameMenuButtonTemplate')
+ GMC.runButton:SetText('Send all mission at once')
+ GMC.runButton:SetScript('OnEnter', function()
+ GameTooltip:SetOwner(GMC.runButton, 'ANCHOR_TOPRIGHT')
+ GameTooltip:AddLine(L["Submit all your mission at once. No question asked."])
+ GameTooltip:AddLine(L["You can also send mission one by one clicking on each button."])
+ GameTooltip:Show()
+ end)
+ GMC.runButton:SetScript('OnLeave', function() GameTooltip:Hide() end)
+ GMC.runButton:SetWidth(148)
+ GMC.runButton:SetScript('OnClick',function(this,button) self:OnClick_Run(this,button) end)
+ GMC.runButton:Disable()
+ GMC.runButton:SetPoint('TOPRIGHT',-10,25)
+ GMC.logoutButton=CreateFrame('BUTTON', nil,ml.widget.frame, 'GameMenuButtonTemplate')
+ GMC.logoutButton:SetText(LOGOUT)
+ GMC.logoutButton:SetWidth(ns.bigscreen and 148 or 90)
+ GMC.logoutButton:SetScript("OnClick",function()
+ GSF:Hide()
+ module:Popup(LOGOUT)
+ module:ScheduleTimer(Logout,0.5)
+ end
+ )
+ GMC.logoutButton:SetPoint('TOP',0,25)
+ return ml
+end
+
+
diff --git a/ShipYard.lua b/ShipYard.lua
index 30f9de2..be4f957 100644
--- a/ShipYard.lua
+++ b/ShipYard.lua
@@ -73,7 +73,69 @@ function module:OnInitialize()
--addon:AddToggle("BIGSCREEN",true,L["Use big screen"],L["Disabling this will give you the interface from 1.1.8, given or taken. Need to reload interface"])
addon:AddToggle("SHIPPIN",true,L["Show Garrison Commander menu"],L["Disable if you dont want the full Garrison Commander Header."])
addon:AddToggle("SHIPENHA",true,L["Show Enhancement buttons"],L["Disable if you dont want the equipment buttons in ship view."])
+ local tabMC=CreateFrame("CheckButton",nil,GSF,"SpellBookSkillLineTabTemplate")
+ GSF.tabMC=tabMC
+ tabMC.tooltip=L["Open Garrison Commander Mission Control"]
+ tabMC:SetNormalTexture("Interface\\ICONS\\ACHIEVEMENT_GUILDPERK_WORKINGOVERTIME.blp")
+ self:MarkAsNew(tabMC,'MissionControl','New in 2.2.0! Try automatic mission management!')
+ tabMC:SetScript("OnClick",function(this,...) module:OpenMissionControlTab() end)
+ tabMC:Show()
+ tabMC:SetPoint('TOPLEFT',GSF,'TOPRIGHT',0,0)
+
end
+function module:OpenLastTab()
+ print("Open Last Tab",lastTab)
+ lastTab=lastTab or PanelTemplates_GetSelectedTab(GSF)
+ if lastTab then
+ if GSF.MissionControlTab:IsVisible() then
+ GSF.MissionControlTab:Hide()
+ GSF.tabMC:SetChecked(false)
+ if lastTab==2 then
+ GSF.FollowerTab:Show()
+ GSF.FollowerList:Show()
+ self:RefreshFollowerStatus()
+ else
+ GSF.MissionTab:Show()
+ end
+ end
+ GSF:SelectTab(lastTab)
+ else
+ return self:OpenMissionsTab()
+ end
+end
+function module:OpenFollowersTab()
+ lastTab=2
+ return self:OpenLastTab()
+end
+function module:OpenMissionsTab()
+ lastTab=1
+ return self:OpenLastTab()
+end
+function module:OpenProgressTab()
+ lastTab=3
+ return self:OpenLastTab()
+end
+function module:OpenMissionControlTab()
+ print("Clicked",lastTab,GSF.MissionControlTab:IsVisible())
+ if (not GSF.MissionControlTab:IsVisible()) then
+ print("Mission control")
+ lastTab=PanelTemplates_GetSelectedTab(GSF)
+ GSF.FollowerTab:Hide()
+ GSF.FollowerList:Hide()
+ GSF.MissionTab:Hide()
+ GSF.BorderFrame.TitleText:SetText(L["Shipyard Commander Mission Control"])
+ GSF.MissionControlTab:Show()
+ GSF.MissionControlTab.startButton:Click()
+ GSF.tabMC:SetChecked(true)
+ else
+ print("Back to normal",self)
+ self:OpenLastTab()
+ GSF.tabMC:SetChecked(false)
+ self:OpenLastTab()
+ end
+ self:RefreshMenu()
+end
+
function module:GetMain()
return GSF
end
@@ -87,7 +149,41 @@ end
--Invoked on every mission display, only for available missions
--
local i=0
-
+--@debug@
+local function colors(c1,c2)
+ return C[c1].r,C[c1].g,C[c1].b,C[c2].r,C[c2].g,C[c2].b
+end
+local function dump(tip,data,indent)
+ indent=indent or ''
+ for k,v in kpairs(data) do
+ local color="Silver"
+ if type(v)=="number" then color="Cyan"
+ elseif type(v)=="string" then color="Yellow" v=v:sub(1,30)
+ elseif type(v)=="boolean" then v=v and 'True' or 'False' color="White"
+ elseif type(v)=="table" then color="Green"
+ else v=type(v) color="Blue"
+ end
+ if k=="description" then v =v:sub(1,10) end
+ if type(v)=="table" then
+ if v.GetObjectType then
+ v=v:GetObjectType()
+ tip:AddDoubleLine(indent..k,v,colors("Purple",color))
+ else
+ tip:AddDoubleLine(indent..k,v,colors("Yellow",color))
+ dump(tip,v,indent .. ' ')
+ end
+ else
+ tip:AddDoubleLine(indent..k,v,colors("Orange",color))
+ end
+ end
+end
+function module:TTDump(frame,data)
+ local anchor = "ANCHOR_TOPRIGHT"
+ GameTooltip:SetOwner(frame,anchor)
+ dump(GameTooltip,data)
+ GameTooltip:Show()
+end
+--@end-debug@
function module:HookedGarrisonShipyardMap_SetupBonus(missionList,frame,mission)
if not GSF:IsShown() then return end
addon:AddExtraData(mission)
@@ -98,7 +194,11 @@ function module:HookedGarrisonShipyardMap_SetupBonus(missionList,frame,mission)
i=i+1
addendum=CreateFrame("Frame",nil,frame)
addendum:SetPoint("TOPLEFT",frame,"TOPRIGHT",-10,-15)
-
+--@debug@
+ addendum:EnableMouse(true)
+ addendum:SetScript("OnEnter",function(frame) module:TTDump(frame,mission) end)
+ addendum:SetScript("OnLeave",function(frame) GameTooltip:Hide() end)
+--@end-debug@
AddBackdrop(addendum)
addendum:SetBackdropColor(0,0,0,0.5)
addendum:SetWidth(50)
@@ -107,12 +207,22 @@ function module:HookedGarrisonShipyardMap_SetupBonus(missionList,frame,mission)
addendum.chance:SetAllPoints()
addendum.chance:SetJustifyH("CENTER")
addendum.chance:SetJustifyV("CENTER")
+ addendum.icon=addendum:CreateTexture(nil,"ARTWORK")
+ addendum.icon:SetWidth(24)
+ addendum.icon:SetHeight(24)
+ addendum.icon:SetPoint("LEFT",addendum.chance,"RIGHT")
frame.GcAddendum=addendum
end
if mission.inProgress then addendum:Hide() return end
addendum:Show()
addendum.chance:SetFormattedText("%d%%",perc)
addendum.chance:SetTextColor(self:GetDifficultyColors(perc))
+ local reward=mission.rewards[1]
+ if reward.icon then
+ addendum.icon:SetTexture(reward.icon)
+ elseif reward.itemID then
+ addendum.icon:SetTexture(GetItemIcon(reward.itemID))
+ end
local cost=mission.cost
local currency=mission.costCurrencyTypesID
if not mission.canStart then
@@ -280,7 +390,7 @@ print("Adding Menu",GCS.Menu,GSF.MissionTab:IsVisible(),GSF.FollowerTab:IsVisibl
end
local menu,size
self.currentmenu=GSF.FollowerTab
- menu,size=self:CreateOptionsLayer('SHIPMOVEPANEL','SHIPENHA')
+ menu,size=self:CreateOptionsLayer('SHIPMOVEPANEL','SHIPENHA','SGCSKIPEPIC','SGCMINLEVEL')
--@debug@
self:AddOptionToOptionsLayer(menu,'DBG')
self:AddOptionToOptionsLayer(menu,'TRC')
@@ -310,8 +420,6 @@ print("Removing menu")
end
end
-function module:OpenLastTab()
-end
function module:FollowerOnShow()
if addon:GetBoolean("SHIPENHA") then
self:ShowEnhancements()
diff --git a/quick.lua b/quick.lua
index a6c8223..b682d6e 100644
--- a/quick.lua
+++ b/quick.lua
@@ -7,6 +7,9 @@ function qm:OnInitialized()
ns.step="none"
end
local watchdog=0
+local function HasShipTable()
+ return ns.quests[39068] or ns.quests[39246] -- Naval Domination
+end
function qm:RunQuick()
if not ns.quick then return end
--@debug@
diff --git a/wowhead.lua b/wowhead.lua
index 4742a36..10be84d 100644
--- a/wowhead.lua
+++ b/wowhead.lua
@@ -1,76 +1,76 @@
local me,ns = ...
-ns.wowhead_update=1480799729
--- DataMined from WowHead missions on 03/12/2016
--- Contains 351 items
+ns.wowhead_update=1483611837
+-- DataMined from WowHead missions on 05/01/2017
+-- Contains 347 items
ns.allRewards=
{
- ["114086"] = "^1^T^S*^T^N1^S0000001@114541@645^N2^S0000001@114540@645^N3^S0000001@114539@645^N4^S0000001@114538@645^N5^S0000001@114537@645^t^t^^",
- ["114108"] = "^1^T^S102^T^N1^S0000001@115310@560^N2^S0000001@115309@560^t^S65^T^N1^S0000001@115310@560^t^S266^T^N1^S0000001@115309@560^t^S261^T^N1^S0000001@115306@560^t^S269^T^N1^S0000001@115303@560^N2^S0000001@115307@560^t^S265^T^N1^S0000001@115309@560^t^S104^T^N1^S0000001@115308@560^t^S268^T^N1^S0000001@115308@560^t^S63^T^N1^S0000001@115309@560^t^S260^T^N1^S0000001@115303@560^N2^S0000001@115307@560^t^S581^T^N1^S0000001@115303@560^t^S267^T^N1^S0000001@115309@560^t^S66^T^N1^S0000001@115303@560^t^S256^T^N1^S0000001@115309@560^N2^S0000001@115310@560^t^S264^T^N1^S0000001@115309@560^N2^S0000001@115310@560^t^S251^T^N1^S0000001@115303@560^t^S259^T^N1^S0000001@115306@560^t^S262^T^N1^S0000001@115309@560^N2^S0000001@115310@560^t^S270^T^N1^S0000001@115309@560^N2^S0000001@115310@560^t^S255^T^N1^S0000001@115308@560^t^S254^T^N1^S0000001@115305@560^t^S252^T^N1^S0000001@115304@560^t^S258^T^N1^S0000001@115309@560^N2^S0000001@115310@560^t^S105^T^N1^S0000001@115309@560^N2^S0000001@115310@560^t^S72^T^N1^S0000001@115304@560^t^S62^T^N1^S0000001@115309@560^t^S250^T^N1^S0000001@115304@560^t^S64^T^N1^S0000001@115309@560^t^S257^T^N1^S0000001@115309@560^N2^S0000001@115310@560^t^S253^T^N1^S0000001@115305@560^t^S103^T^N1^S0000001@115308@560^t^S71^T^N1^S0000001@115304@560^t^S577^T^N1^S0000001@115303@560^t^S70^T^N1^S0000001@115304@560^t^S73^T^N1^S0000001@115303@560^t^S263^T^N1^S0000001@115307@560^N2^S0000001@115303@560^t^t^^",
- ["114101"] = "^1^T^S*^T^N1^S0000001@114341@530^N2^S0000001@114340@530^N3^S0000001@114339@530^N4^S0000001@114338@530^t^t^^",
- ["127783"] = "^1^T^S*^T^N1^S0000001@124587@650^t^t^^",
- ["127799"] = "^1^T^S*^T^N1^S0000001@124612@650^N2^S0000001@124611@650^N3^S0000001@124610@650^N4^S0000001@124609@650^N5^S0000001@124608@650^N6^S0000001@124607@650^t^t^^",
- ["114084"] = "^1^T^S*^T^N1^S0000001@114504@645^N2^S0000001@114503@645^N3^S0000001@114502@645^N4^S0000001@114501@645^t^t^^",
- ["122484"] = "^1^T^S262^T^N1^S0002012@119194@670^N2^S0001907@113984@670^N3^S0001506@113948@670^t^S65^T^N1^S0000568@113986@670^N2^S0000541@113889@670^N3^S0000423@119192@670^t^S266^T^N1^S0002012@119194@670^N2^S0001907@113984@670^N3^S0001506@113948@670^t^S261^T^N1^S0001872@113931@670^N2^S0001808@118114@670^N3^S0001776@113985@670^t^S269^T^N1^S0001872@113931@670^N2^S0001808@118114@670^N3^S0001776@113985@670^t^S265^T^N1^S0002012@119194@670^N2^S0001907@113984@670^N3^S0001506@113948@670^t^S104^T^N1^S0000601@113893@670^N2^S0000600@113905@670^N3^S0000589@113987@670^t^S71^T^N1^S0001285@113983@670^N2^S0001185@119193@670^N3^S0001082@113969@670^t^S63^T^N1^S0002012@119194@670^N2^S0001907@113984@670^N3^S0001506@113948@670^t^S260^T^N1^S0001872@113931@670^N2^S0001808@118114@670^N3^S0001776@113985@670^t^S103^T^N1^S0001872@113931@670^N2^S0001808@118114@670^N3^S0001776@113985@670^t^S267^T^N1^S0002012@119194@670^N2^S0001907@113984@670^N3^S0001506@113948@670^t^S66^T^N1^S0000601@113893@670^N2^S0000600@113905@670^N3^S0000589@113987@670^t^S256^T^N1^S0000568@113986@670^N2^S0000541@113889@670^N3^S0000423@119192@670^t^S*^T^N1^S0002454@113975@670^N2^S0002303@113872@670^N3^S0002212@113929@670^N4^S0002110@113952@670^N5^S0002075@113917@670^N6^S0002073@113877@670^N7^S0002060@113892@670^N8^S0002044@120078@670^N9^S0002010@113938@670^N10^S0001996@113910@670^N11^S0001960@113947@670^N12^S0001951@113971@670^N13^S0001948@113884@670^N14^S0001903@113963@670^N15^S0001900@113883@670^N16^S0001855@113937@670^N17^S0001853@113977@670^N18^S0001852@113923@670^N19^S0001842@113950@670^N20^S0001810@113921@670^N21^S0001787@113887@670^N22^S0001781@113928@670^N23^S0001777@113941@670^N24^S0001775@113956@670^N25^S0001772@113871@670^N26^S0001770@113962@670^N27^S0001760@113961@670^N28^S0001757@113925@670^N29^S0001756@113949@670^N30^S0001750@113942@670^N31^S0001744@113873@670^N32^S0001691@113936@670^N33^S0001686@113876@670^N34^S0001682@113924@670^N35^S0001673@113896@670^N36^S0001668@113976@670^N37^S0001661@113895@670^N38^S0001652@113967@670^N39^S0001650@113922@670^N40^S0001649@113898@670^N41^S0001646@113894@670^N42^S0001632@113903@670^N43^S0001620@113906@670^N44^S0001603@113990@670^N45^S0001598@113907@670^N46^S0001592@113870@670^N47^S0001588@113880@670^N48^S0001581@113914@670^N49^S0001572@113989@670^N50^S0001563@113970@670^N51^S0001557@113881@670^N52^S0001550@113868@670^N53^S0001541@113935@670^N54^S0001519@113978@670^N55^S0001506@113864@670^N56^S0001501@113863@670^N57^S0001488@113981@670^N58^S0001475@113900@670^N59^S0001464@113933@670^N60^S0001462@113964@670^N61^S0001460@113901@670^N62^S0001456@113908@670^N63^S0001443@113891@670^N64^S0001439@113958@670^N65^S0001413@113951@670^N66^S0001410@113940@670^N67^S0001363@113916@670^N68^S0001351@113974@670^N69^S0001334@113878@670^N70^S0001331@113899@670^N71^S0001323@113866@670^N72^S0001298@113930@670^N73^S0001297@113919@670^N74^S0001272@113943@670^N75^S0001251@113954@670^N76^S0001248@113875@670^N77^S0001238@113957@670^N78^S0001227@113972@670^N79^S0001200@113945@670^N80^S0001196@113944@670^N81^S0001178@113867@670^N82^S0001159@113982@670^N83^S0001143@113955@670^N84^S0001104@113915@670^N85^S0001084@113968@670^N86^S0001050@113888@670^N87^S0001041@113902@670^N88^S0001010@113890@670^N89^S0000350@140590@100^t^S270^T^N1^S0000568@113986@670^N2^S0000541@113889@670^N3^S0000423@119192@670^t^S251^T^N1^S0001285@113983@670^N2^S0001185@119193@670^N3^S0001082@113969@670^t^S259^T^N1^S0001872@113931@670^N2^S0001808@118114@670^N3^S0001776@113985@670^t^S257^T^N1^S0000568@113986@670^N2^S0000541@113889@670^N3^S0000423@119192@670^t^S264^T^N1^S0000568@113986@670^N2^S0000541@113889@670^N3^S0000423@119192@670^t^S255^T^N1^S0001872@113931@670^N2^S0001808@118114@670^N3^S0001776@113985@670^t^S254^T^N1^S0001872@113931@670^N2^S0001808@118114@670^N3^S0001776@113985@670^t^S105^T^N1^S0000568@113986@670^N2^S0000541@113889@670^N3^S0000423@119192@670^t^S102^T^N1^S0002012@119194@670^N2^S0001907@113984@670^N3^S0001506@113948@670^t^S252^T^N1^S0001285@113983@670^N2^S0001185@119193@670^N3^S0001082@113969@670^t^S258^T^N1^S0002012@119194@670^N2^S0001907@113984@670^N3^S0001506@113948@670^t^S62^T^N1^S0002012@119194@670^N2^S0001907@113984@670^N3^S0001506@113948@670^t^S250^T^N1^S0000601@113893@670^N2^S0000600@113905@670^N3^S0000589@113987@670^t^S64^T^N1^S0002012@119194@670^N2^S0001907@113984@670^N3^S0001506@113948@670^t^S268^T^N1^S0000601@113893@670^N2^S0000600@113905@670^N3^S0000589@113987@670^t^S253^T^N1^S0001872@113931@670^N2^S0001808@118114@670^N3^S0001776@113985@670^t^S581^T^N1^S0000601@113893@670^N2^S0000600@113905@670^N3^S0000589@113987@670^t^S73^T^N1^S0000601@113893@670^N2^S0000600@113905@670^N3^S0000589@113987@670^t^S577^T^N1^S0001872@113931@670^N2^S0001808@118114@670^N3^S0001776@113985@670^t^S70^T^N1^S0001285@113983@670^N2^S0001185@119193@670^N3^S0001082@113969@670^t^S72^T^N1^S0001285@113983@670^N2^S0001185@119193@670^N3^S0001082@113969@670^t^S263^T^N1^S0001872@113931@670^N2^S0001808@118114@670^N3^S0001776@113985@670^t^t^^",
- ["122486"] = "^1^T^S262^T^N1^S0000257@113984@670^N2^S0000245@119194@670^N3^S0000226@113948@670^t^S65^T^N1^S0000176@113889@670^N2^S0000143@119192@670^N3^S0000117@113986@670^t^S266^T^N1^S0000257@113984@670^N2^S0000245@119194@670^N3^S0000226@113948@670^t^S261^T^N1^S0000228@113985@670^N2^S0000216@118114@670^N3^S0000207@113931@670^t^S269^T^N1^S0000228@113985@670^N2^S0000216@118114@670^N3^S0000207@113931@670^t^S265^T^N1^S0000257@113984@670^N2^S0000245@119194@670^N3^S0000226@113948@670^t^S264^T^N1^S0000176@113889@670^N2^S0000143@119192@670^N3^S0000117@113986@670^t^S71^T^N1^S0000197@113983@670^N2^S0000120@119193@670^N3^S0000117@113969@670^t^S63^T^N1^S0000257@113984@670^N2^S0000245@119194@670^N3^S0000226@113948@670^t^S260^T^N1^S0000228@113985@670^N2^S0000216@118114@670^N3^S0000207@113931@670^t^S103^T^N1^S0000228@113985@670^N2^S0000216@118114@670^N3^S0000207@113931@670^t^S267^T^N1^S0000257@113984@670^N2^S0000245@119194@670^N3^S0000226@113948@670^t^S252^T^N1^S0000197@113983@670^N2^S0000120@119193@670^N3^S0000117@113969@670^t^S256^T^N1^S0000176@113889@670^N2^S0000143@119192@670^N3^S0000117@113986@670^t^S*^T^N1^S0000427@113922@670^N2^S0000389@120078@670^N3^S0000345@113937@670^N4^S0000322@113956@670^N5^S0000319@113877@670^N6^S0000315@113910@670^N7^S0000313@113883@670^N8^S0000310@113901@670^N9^S0000305@113925@670^N10^S0000296@113884@670^N11^S0000293@113975@670^N12^S0000293@113961@670^N13^S0000288@113894@670^N14^S0000283@113947@670^N15^S0000277@113967@670^N16^S0000276@113881@670^N17^S0000273@113903@670^N18^S0000270@113871@670^N19^S0000269@113896@670^N20^S0000268@113971@670^N21^S0000267@113921@670^N22^S0000267@113875@670^N23^S0000264@113873@670^N24^S0000259@113936@670^N25^S0000258@113944@670^N26^S0000257@113917@670^N27^S0000254@113976@670^N28^S0000254@113878@670^N29^S0000253@113933@670^N30^S0000251@113938@670^N31^S0000249@113978@670^N32^S0000246@113935@670^N33^S0000246@113870@670^N34^S0000245@113892@670^N35^S0000244@113872@670^N36^S0000237@113895@670^N37^S0000235@113957@670^N38^S0000233@113887@670^N39^S0000231@113977@670^N40^S0000229@113923@670^N41^S0000228@113974@670^N42^S0000228@113970@670^N43^S0000228@113964@670^N44^S0000228@113940@670^N45^S0000224@113929@670^N46^S0000221@113955@670^N47^S0000221@113864@670^N48^S0000220@113982@670^N49^S0000219@113876@670^N50^S0000218@113930@670^N51^S0000217@113928@670^N52^S0000213@113962@670^N53^S0000209@113941@670^N54^S0000208@113981@670^N55^S0000204@113949@670^N56^S0000200@113891@670^N57^S0000199@113915@670^N58^S0000198@113863@670^N59^S0000195@113951@670^N60^S0000195@113924@670^N61^S0000193@113950@670^N62^S0000193@113907@670^N63^S0000189@113914@670^N64^S0000187@113989@670^N65^S0000187@113898@670^N66^S0000187@113890@670^N67^S0000185@113900@670^N68^S0000184@113958@670^N69^S0000183@113954@670^N70^S0000182@113866@670^N71^S0000181@113943@670^N72^S0000179@113888@670^N73^S0000178@113990@670^N74^S0000168@113945@670^N75^S0000167@113963@670^N76^S0000167@113880@670^N77^S0000164@113919@670^N78^S0000164@113899@670^N79^S0000163@113968@670^N80^S0000158@113906@670^N81^S0000158@113868@670^N82^S0000157@113902@670^N83^S0000155@113972@670^N84^S0000146@113952@670^N85^S0000143@113867@670^N86^S0000140@113942@670^N87^S0000128@113908@670^N88^S0000098@113916@670^N89^S0000048@140590@100^t^S268^T^N1^S0000150@113905@670^N2^S0000122@113987@670^N3^S0000097@113893@670^t^S251^T^N1^S0000197@113983@670^N2^S0000120@119193@670^N3^S0000117@113969@670^t^S259^T^N1^S0000228@113985@670^N2^S0000216@118114@670^N3^S0000207@113931@670^t^S581^T^N1^S0000150@113905@670^N2^S0000122@113987@670^N3^S0000097@113893@670^t^S104^T^N1^S0000150@113905@670^N2^S0000122@113987@670^N3^S0000097@113893@670^t^S255^T^N1^S0000228@113985@670^N2^S0000216@118114@670^N3^S0000207@113931@670^t^S254^T^N1^S0000228@113985@670^N2^S0000216@118114@670^N3^S0000207@113931@670^t^S73^T^N1^S0000150@113905@670^N2^S0000122@113987@670^N3^S0000097@113893@670^t^S66^T^N1^S0000150@113905@670^N2^S0000122@113987@670^N3^S0000097@113893@670^t^S102^T^N1^S0000257@113984@670^N2^S0000245@119194@670^N3^S0000226@113948@670^t^S258^T^N1^S0000257@113984@670^N2^S0000245@119194@670^N3^S0000226@113948@670^t^S62^T^N1^S0000257@113984@670^N2^S0000245@119194@670^N3^S0000226@113948@670^t^S250^T^N1^S0000150@113905@670^N2^S0000122@113987@670^N3^S0000097@113893@670^t^S64^T^N1^S0000257@113984@670^N2^S0000245@119194@670^N3^S0000226@113948@670^t^S270^T^N1^S0000176@113889@670^N2^S0000143@119192@670^N3^S0000117@113986@670^t^S253^T^N1^S0000228@113985@670^N2^S0000216@118114@670^N3^S0000207@113931@670^t^S257^T^N1^S0000176@113889@670^N2^S0000143@119192@670^N3^S0000117@113986@670^t^S105^T^N1^S0000176@113889@670^N2^S0000143@119192@670^N3^S0000117@113986@670^t^S577^T^N1^S0000228@113985@670^N2^S0000216@118114@670^N3^S0000207@113931@670^t^S70^T^N1^S0000197@113983@670^N2^S0000120@119193@670^N3^S0000117@113969@670^t^S72^T^N1^S0000197@113983@670^N2^S0000120@119193@670^N3^S0000117@113969@670^t^S263^T^N1^S0000228@113985@670^N2^S0000216@118114@670^N3^S0000207@113931@670^t^t^^",
- ["114110"] = "^1^T^S102^T^N1^S0000001@115326@630^N2^S0000001@115325@630^t^S65^T^N1^S0000001@115326@630^t^S266^T^N1^S0000001@115325@630^t^S261^T^N1^S0000001@115322@630^t^S269^T^N1^S0000001@115319@630^N2^S0000001@115323@630^t^S265^T^N1^S0000001@115325@630^t^S104^T^N1^S0000001@115324@630^t^S268^T^N1^S0000001@115324@630^t^S63^T^N1^S0000001@115325@630^t^S260^T^N1^S0000001@115319@630^N2^S0000001@115323@630^t^S581^T^N1^S0000001@115319@630^t^S267^T^N1^S0000001@115325@630^t^S66^T^N1^S0000001@115319@630^t^S256^T^N1^S0000001@115325@630^N2^S0000001@115326@630^t^S264^T^N1^S0000001@115325@630^N2^S0000001@115326@630^t^S251^T^N1^S0000001@115319@630^t^S259^T^N1^S0000001@115322@630^t^S262^T^N1^S0000001@115325@630^N2^S0000001@115326@630^t^S270^T^N1^S0000001@115325@630^N2^S0000001@115326@630^t^S255^T^N1^S0000001@115324@630^t^S254^T^N1^S0000001@115321@630^t^S252^T^N1^S0000001@115320@630^t^S258^T^N1^S0000001@115325@630^N2^S0000001@115326@630^t^S105^T^N1^S0000001@115325@630^N2^S0000001@115326@630^t^S72^T^N1^S0000001@115320@630^t^S62^T^N1^S0000001@115325@630^t^S250^T^N1^S0000001@115320@630^t^S64^T^N1^S0000001@115325@630^t^S257^T^N1^S0000001@115325@630^N2^S0000001@115326@630^t^S253^T^N1^S0000001@115321@630^t^S103^T^N1^S0000001@115324@630^t^S71^T^N1^S0000001@115320@630^t^S577^T^N1^S0000001@115319@630^t^S70^T^N1^S0000001@115320@630^t^S73^T^N1^S0000001@115319@630^t^S263^T^N1^S0000001@115323@630^N2^S0000001@115319@630^t^t^^",
- ["114083"] = "^1^T^S*^T^N1^S0000001@114500@645^N2^S0000001@114499@645^N3^S0000001@114498@645^N4^S0000001@114497@645^t^t^^",
- ["123857"] = "^1^T^S102^T^N1^S0088214@118632@1^t^S65^T^N1^S0088214@118632@1^t^S266^T^N1^S0088214@118632@1^t^S261^T^N1^S0074899@118630@1^t^S269^T^N1^S0074899@118630@1^t^S265^T^N1^S0088214@118632@1^t^S104^T^N1^S0074899@118630@1^t^S105^T^N1^S0088214@118632@1^t^S63^T^N1^S0088214@118632@1^t^S260^T^N1^S0074899@118630@1^t^S263^T^N1^S0074899@118630@1^t^S267^T^N1^S0088214@118632@1^t^S66^T^N1^S0060320@118631@1^t^S256^T^N1^S0088214@118632@1^t^S270^T^N1^S0088214@118632@1^t^S259^T^N1^S0074899@118630@1^t^S252^T^N1^S0060320@118631@1^t^S255^T^N1^S0074899@118630@1^t^S254^T^N1^S0074899@118630@1^t^S251^T^N1^S0060320@118631@1^t^S73^T^N1^S0060320@118631@1^t^S262^T^N1^S0088214@118632@1^t^S258^T^N1^S0088214@118632@1^t^S62^T^N1^S0088214@118632@1^t^S250^T^N1^S0060320@118631@1^t^S64^T^N1^S0088214@118632@1^t^S72^T^N1^S0060320@118631@1^t^S253^T^N1^S0074899@118630@1^t^S71^T^N1^S0060320@118631@1^t^S70^T^N1^S0060320@118631@1^t^S268^T^N1^S0074899@118630@1^t^S257^T^N1^S0088214@118632@1^t^S264^T^N1^S0088214@118632@1^t^S103^T^N1^S0074899@118630@1^t^t^^",
- ["118529"] = "^1^T^S262^T^N1^S0003101@113835@655^N2^S0002788@113859@655^N3^S0000580@113653@655^t^S65^T^N1^S0000944@113854@655^N2^S0000865@113842@655^N3^S0000580@113653@655^t^S266^T^N1^S0003101@113835@655^N2^S0002788@113859@655^t^S261^T^N1^S0002688@113853@655^N2^S0002528@113612@655^t^S269^T^N1^S0002688@113853@655^N2^S0002528@113612@655^t^S265^T^N1^S0003101@113835@655^N2^S0002788@113859@655^t^S104^T^N1^S0001054@113650@655^N2^S0000912@113834@655^N3^S0000908@113861@655^t^S71^T^N1^S0001838@113645@655^N2^S0001679@113658@655^t^S63^T^N1^S0003101@113835@655^N2^S0002788@113859@655^t^S260^T^N1^S0002688@113853@655^N2^S0002528@113612@655^t^S103^T^N1^S0002688@113853@655^N2^S0002528@113612@655^t^S267^T^N1^S0003101@113835@655^N2^S0002788@113859@655^t^S66^T^N1^S0001054@113650@655^N2^S0000912@113834@655^N3^S0000908@113861@655^N4^S0000471@113666@655^t^S256^T^N1^S0000944@113854@655^N2^S0000865@113842@655^t^S*^T^N1^S0003496@113847@655^N2^S0003323@113604@655^N3^S0003318@113651@655^N4^S0003212@113833@655^N5^S0002984@113657@655^N6^S0002898@113611@655^N7^S0002841@113655@655^N8^S0002796@113637@655^N9^S0002782@113632@655^N10^S0002781@113638@655^N11^S0002777@113843@655^N12^S0002754@113647@655^N13^S0002732@113642@655^N14^S0002730@113656@655^N15^S0002705@113858@655^N16^S0002704@113609@655^N17^S0002691@113596@655^N18^S0002633@113659@655^N19^S0002601@113828@655^N20^S0002595@113855@655^N21^S0002584@113840@655^N22^S0002574@113610@655^N23^S0002569@113850@655^N24^S0002534@113648@655^N25^S0002523@113851@655^N26^S0002468@113633@655^N27^S0002462@113643@655^N28^S0002457@113600@655^N29^S0002431@113662@655^N30^S0002430@113844@655^N31^S0002415@113831@655^N32^S0002388@113660@655^N33^S0002328@113605@655^N34^S0002281@113846@655^N35^S0002263@113852@655^N36^S0002202@113841@655^N37^S0002143@113856@655^N38^S0002116@113634@655^N39^S0002105@113830@655^N40^S0002092@113649@655^N41^S0002084@113664@655^N42^S0002076@113845@655^N43^S0002038@113644@655^N44^S0002004@113860@655^N45^S0002004@113636@655^N46^S0001994@113829@655^N47^S0001992@113599@655^N48^S0001910@113646@655^N49^S0001897@113601@655^N50^S0001891@113839@655^N51^S0001890@113595@655^N52^S0001884@113826@655^N53^S0001881@113593@655^N54^S0001874@113654@655^N55^S0001861@113832@655^N56^S0001852@113598@655^N57^S0001832@113661@655^N58^S0001826@113827@655^N59^S0001805@113641@655^N60^S0001804@113849@655^N61^S0001750@113608@655^N62^S0001749@113602@655^t^S270^T^N1^S0000944@113854@655^N2^S0000865@113842@655^t^S251^T^N1^S0001838@113645@655^N2^S0001679@113658@655^t^S259^T^N1^S0002688@113853@655^N2^S0002528@113612@655^t^S257^T^N1^S0000944@113854@655^N2^S0000865@113842@655^t^S264^T^N1^S0000944@113854@655^N2^S0000865@113842@655^N3^S0000580@113653@655^t^S255^T^N1^S0002688@113853@655^N2^S0002528@113612@655^t^S254^T^N1^S0002688@113853@655^N2^S0002528@113612@655^t^S105^T^N1^S0000944@113854@655^N2^S0000865@113842@655^t^S102^T^N1^S0003101@113835@655^N2^S0002788@113859@655^t^S252^T^N1^S0001838@113645@655^N2^S0001679@113658@655^t^S258^T^N1^S0003101@113835@655^N2^S0002788@113859@655^t^S62^T^N1^S0003101@113835@655^N2^S0002788@113859@655^t^S250^T^N1^S0001054@113650@655^N2^S0000912@113834@655^N3^S0000908@113861@655^t^S64^T^N1^S0003101@113835@655^N2^S0002788@113859@655^t^S268^T^N1^S0001054@113650@655^N2^S0000912@113834@655^N3^S0000908@113861@655^t^S253^T^N1^S0002688@113853@655^N2^S0002528@113612@655^t^S581^T^N1^S0001054@113650@655^N2^S0000912@113834@655^N3^S0000908@113861@655^t^S73^T^N1^S0001054@113650@655^N2^S0000912@113834@655^N3^S0000908@113861@655^N4^S0000471@113666@655^t^S577^T^N1^S0002688@113853@655^N2^S0002528@113612@655^t^S70^T^N1^S0001838@113645@655^N2^S0001679@113658@655^t^S72^T^N1^S0001838@113645@655^N2^S0001679@113658@655^t^S263^T^N1^S0002688@113853@655^N2^S0002528@113612@655^t^t^^",
+ ["118529"] = "^1^T^S267^T^N1^S0003330@113835@655^N2^S0002958@113859@655^t^S63^T^N1^S0003330@113835@655^N2^S0002958@113859@655^t^S73^T^N1^S0001125@113650@655^N2^S0000968@113861@655^N3^S0000960@113834@655^N4^S0000508@113666@655^t^S65^T^N1^S0001021@113854@655^N2^S0000919@113842@655^N3^S0000618@113653@655^t^S261^T^N1^S0002881@113853@655^N2^S0002673@113612@655^t^S266^T^N1^S0003330@113835@655^N2^S0002958@113859@655^t^S260^T^N1^S0002881@113853@655^N2^S0002673@113612@655^t^S103^T^N1^S0002881@113853@655^N2^S0002673@113612@655^t^S265^T^N1^S0003330@113835@655^N2^S0002958@113859@655^t^S581^T^N1^S0001125@113650@655^N2^S0000968@113861@655^N3^S0000960@113834@655^t^S254^T^N1^S0002881@113853@655^N2^S0002673@113612@655^t^S252^T^N1^S0001965@113645@655^N2^S0001795@113658@655^t^S577^T^N1^S0002881@113853@655^N2^S0002673@113612@655^t^S72^T^N1^S0001965@113645@655^N2^S0001795@113658@655^t^S62^T^N1^S0003330@113835@655^N2^S0002958@113859@655^t^S66^T^N1^S0001125@113650@655^N2^S0000968@113861@655^N3^S0000960@113834@655^N4^S0000508@113666@655^t^S259^T^N1^S0002881@113853@655^N2^S0002673@113612@655^t^S251^T^N1^S0001965@113645@655^N2^S0001795@113658@655^t^S105^T^N1^S0001021@113854@655^N2^S0000919@113842@655^t^S70^T^N1^S0001965@113645@655^N2^S0001795@113658@655^t^S256^T^N1^S0001021@113854@655^N2^S0000919@113842@655^t^S250^T^N1^S0001125@113650@655^N2^S0000968@113861@655^N3^S0000960@113834@655^t^S264^T^N1^S0001021@113854@655^N2^S0000919@113842@655^N3^S0000618@113653@655^t^S270^T^N1^S0001021@113854@655^N2^S0000919@113842@655^t^S102^T^N1^S0003330@113835@655^N2^S0002958@113859@655^t^S253^T^N1^S0002881@113853@655^N2^S0002673@113612@655^t^S257^T^N1^S0001021@113854@655^N2^S0000919@113842@655^t^S255^T^N1^S0002881@113853@655^N2^S0002673@113612@655^t^S268^T^N1^S0001125@113650@655^N2^S0000968@113861@655^N3^S0000960@113834@655^t^S*^T^N1^S0003778@113847@655^N2^S0003582@113651@655^N3^S0003571@113604@655^N4^S0003442@113833@655^N5^S0003179@113657@655^N6^S0003111@113637@655^N7^S0003088@113638@655^N8^S0003084@113611@655^N9^S0003058@113655@655^N10^S0003022@113858@655^N11^S0002969@113632@655^N12^S0002953@113642@655^N13^S0002948@113843@655^N14^S0002921@113647@655^N15^S0002915@113656@655^N16^S0002896@113609@655^N17^S0002892@113596@655^N18^S0002810@113659@655^N19^S0002786@113840@655^N20^S0002775@113828@655^N21^S0002761@113855@655^N22^S0002740@113643@655^N23^S0002735@113610@655^N24^S0002725@113850@655^N25^S0002702@113851@655^N26^S0002695@113648@655^N27^S0002685@113662@655^N28^S0002643@113633@655^N29^S0002607@113600@655^N30^S0002602@113605@655^N31^S0002597@113844@655^N32^S0002568@113831@655^N33^S0002547@113660@655^N34^S0002531@113852@655^N35^S0002520@113846@655^N36^S0002384@113841@655^N37^S0002305@113856@655^N38^S0002285@113830@655^N39^S0002271@113634@655^N40^S0002233@113649@655^N41^S0002228@113860@655^N42^S0002223@113845@655^N43^S0002219@113664@655^N44^S0002192@113644@655^N45^S0002190@113829@655^N46^S0002154@113599@655^N47^S0002139@113636@655^N48^S0002117@113646@655^N49^S0002044@113598@655^N50^S0002023@113839@655^N51^S0002019@113826@655^N52^S0002017@113593@655^N53^S0002014@113601@655^N54^S0002003@113595@655^N55^S0001998@113654@655^N56^S0001980@113832@655^N57^S0001936@113661@655^N58^S0001935@113827@655^N59^S0001930@113641@655^N60^S0001914@113849@655^N61^S0001868@113602@655^N62^S0001848@113608@655^t^S64^T^N1^S0003330@113835@655^N2^S0002958@113859@655^t^S104^T^N1^S0001125@113650@655^N2^S0000968@113861@655^N3^S0000960@113834@655^t^S71^T^N1^S0001965@113645@655^N2^S0001795@113658@655^t^S258^T^N1^S0003330@113835@655^N2^S0002958@113859@655^t^S269^T^N1^S0002881@113853@655^N2^S0002673@113612@655^t^S263^T^N1^S0002881@113853@655^N2^S0002673@113612@655^t^S262^T^N1^S0003330@113835@655^N2^S0002958@113859@655^N3^S0000618@113653@655^t^t^^",
+ ["127792"] = "^1^T^S*^T^N1^S0000001@124572@650^t^t^^",
+ ["127819"] = "^1^T^S*^T^N1^S0000001@124577@650^t^t^^",
+ ["114110"] = "^1^T^S267^T^N1^S0000001@115325@630^t^S263^T^N1^S0000001@115323@630^N2^S0000001@115319@630^t^S73^T^N1^S0000001@115319@630^t^S65^T^N1^S0000001@115326@630^t^S261^T^N1^S0000001@115322@630^t^S266^T^N1^S0000001@115325@630^t^S260^T^N1^S0000001@115319@630^N2^S0000001@115323@630^t^S103^T^N1^S0000001@115324@630^t^S265^T^N1^S0000001@115325@630^t^S581^T^N1^S0000001@115319@630^t^S254^T^N1^S0000001@115321@630^t^S252^T^N1^S0000001@115320@630^t^S577^T^N1^S0000001@115319@630^t^S72^T^N1^S0000001@115320@630^t^S62^T^N1^S0000001@115325@630^t^S66^T^N1^S0000001@115319@630^t^S259^T^N1^S0000001@115322@630^t^S251^T^N1^S0000001@115319@630^t^S264^T^N1^S0000001@115325@630^N2^S0000001@115326@630^t^S256^T^N1^S0000001@115325@630^N2^S0000001@115326@630^t^S250^T^N1^S0000001@115320@630^t^S262^T^N1^S0000001@115325@630^N2^S0000001@115326@630^t^S270^T^N1^S0000001@115325@630^N2^S0000001@115326@630^t^S102^T^N1^S0000001@115326@630^N2^S0000001@115325@630^t^S63^T^N1^S0000001@115325@630^t^S257^T^N1^S0000001@115325@630^N2^S0000001@115326@630^t^S255^T^N1^S0000001@115324@630^t^S253^T^N1^S0000001@115321@630^t^S268^T^N1^S0000001@115324@630^t^S71^T^N1^S0000001@115320@630^t^S70^T^N1^S0000001@115320@630^t^S64^T^N1^S0000001@115325@630^t^S258^T^N1^S0000001@115325@630^N2^S0000001@115326@630^t^S105^T^N1^S0000001@115325@630^N2^S0000001@115326@630^t^S104^T^N1^S0000001@115324@630^t^S269^T^N1^S0000001@115319@630^N2^S0000001@115323@630^t^t^^",
+ ["114070"] = "^1^T^S*^T^N1^S0000001@114439@630^N2^S0000001@114438@630^N3^S0000001@114437@630^N4^S0000001@114436@630^t^t^^",
+ ["114057"] = "^1^T^S*^T^N1^S0000001@114374@615^N2^S0000001@114373@615^N3^S0000001@114372@615^N4^S0000001@114371@615^t^t^^",
+ ["118530"] = "^1^T^S267^T^N1^S0000184@113859@655^N2^S0000130@113835@655^t^S63^T^N1^S0000184@113859@655^N2^S0000130@113835@655^t^S73^T^N1^S0000090@113861@655^N2^S0000088@113666@655^N3^S0000083@113650@655^N4^S0000051@113834@655^t^S65^T^N1^S0000076@113854@655^N2^S0000073@113842@655^N3^S0000055@113653@655^t^S261^T^N1^S0000133@113853@655^N2^S0000124@113612@655^t^S266^T^N1^S0000184@113859@655^N2^S0000130@113835@655^t^S260^T^N1^S0000133@113853@655^N2^S0000124@113612@655^t^S103^T^N1^S0000133@113853@655^N2^S0000124@113612@655^t^S265^T^N1^S0000184@113859@655^N2^S0000130@113835@655^t^S581^T^N1^S0000090@113861@655^N2^S0000083@113650@655^N3^S0000051@113834@655^t^S254^T^N1^S0000133@113853@655^N2^S0000124@113612@655^t^S252^T^N1^S0000127@113645@655^N2^S0000089@113658@655^t^S577^T^N1^S0000133@113853@655^N2^S0000124@113612@655^t^S72^T^N1^S0000127@113645@655^N2^S0000089@113658@655^t^S62^T^N1^S0000184@113859@655^N2^S0000130@113835@655^t^S66^T^N1^S0000090@113861@655^N2^S0000088@113666@655^N3^S0000083@113650@655^N4^S0000051@113834@655^t^S259^T^N1^S0000133@113853@655^N2^S0000124@113612@655^t^S251^T^N1^S0000127@113645@655^N2^S0000089@113658@655^t^S105^T^N1^S0000076@113854@655^N2^S0000073@113842@655^t^S70^T^N1^S0000127@113645@655^N2^S0000089@113658@655^t^S256^T^N1^S0000076@113854@655^N2^S0000073@113842@655^t^S250^T^N1^S0000090@113861@655^N2^S0000083@113650@655^N3^S0000051@113834@655^t^S264^T^N1^S0000076@113854@655^N2^S0000073@113842@655^N3^S0000055@113653@655^t^S270^T^N1^S0000076@113854@655^N2^S0000073@113842@655^t^S102^T^N1^S0000184@113859@655^N2^S0000130@113835@655^t^S253^T^N1^S0000133@113853@655^N2^S0000124@113612@655^t^S257^T^N1^S0000076@113854@655^N2^S0000073@113842@655^t^S255^T^N1^S0000133@113853@655^N2^S0000124@113612@655^t^S268^T^N1^S0000090@113861@655^N2^S0000083@113650@655^N3^S0000051@113834@655^t^S*^T^N1^S0000349@113846@655^N2^S0000226@113604@655^N3^S0000215@113600@655^N4^S0000207@113643@655^N5^S0000199@113840@655^N6^S0000194@113595@655^N7^S0000188@113656@655^N8^S0000187@113829@655^N9^S0000179@113845@655^N10^S0000175@113647@655^N11^S0000174@113662@655^N12^S0000169@113657@655^N13^S0000165@113633@655^N14^S0000162@113860@655^N15^S0000162@113828@655^N16^S0000161@113843@655^N17^S0000160@113660@655^N18^S0000160@113596@655^N19^S0000159@113858@655^N20^S0000159@113855@655^N21^S0000158@113849@655^N22^S0000156@113841@655^N23^S0000153@113844@655^N24^S0000153@113641@655^N25^S0000153@113593@655^N26^S0000152@113826@655^N27^S0000152@113602@655^N28^S0000151@113632@655^N29^S0000150@113611@655^N30^S0000146@113831@655^N31^S0000145@113833@655^N32^S0000137@113649@655^N33^S0000136@113852@655^N34^S0000128@113851@655^N35^S0000128@113634@655^N36^S0000128@113599@655^N37^S0000127@113850@655^N38^S0000127@113638@655^N39^S0000125@113651@655^N40^S0000125@113644@655^N41^S0000124@113642@655^N42^S0000119@113847@655^N43^S0000118@113648@655^N44^S0000116@113610@655^N45^S0000115@113659@655^N46^S0000113@113839@655^N47^S0000113@113654@655^N48^S0000112@113661@655^N49^S0000112@113609@655^N50^S0000107@113664@655^N51^S0000107@113608@655^N52^S0000105@113646@655^N53^S0000104@113856@655^N54^S0000102@113827@655^N55^S0000101@113832@655^N56^S0000098@113655@655^N57^S0000097@113598@655^N58^S0000093@113637@655^N59^S0000089@113601@655^N60^S0000087@113636@655^N61^S0000077@113605@655^N62^S0000068@113830@655^t^S64^T^N1^S0000184@113859@655^N2^S0000130@113835@655^t^S104^T^N1^S0000090@113861@655^N2^S0000083@113650@655^N3^S0000051@113834@655^t^S71^T^N1^S0000127@113645@655^N2^S0000089@113658@655^t^S258^T^N1^S0000184@113859@655^N2^S0000130@113835@655^t^S269^T^N1^S0000133@113853@655^N2^S0000124@113612@655^t^S263^T^N1^S0000133@113853@655^N2^S0000124@113612@655^t^S262^T^N1^S0000184@113859@655^N2^S0000130@113835@655^N3^S0000055@113653@655^t^t^^",
+ ["127855"] = "^1^T^S262^T^N1^S0000113@124227@690^N2^S0000093@124229@695^N3^S0000037@124228@690^N4^S0000036@124230@700^t^S63^T^N1^S0000113@124227@690^N2^S0000093@124229@695^N3^S0000037@124228@690^N4^S0000036@124230@700^t^S105^T^N1^S0000097@124234@700^N2^S0000041@124232@695^N3^S0000035@124233@695^t^S65^T^N1^S0000097@124234@700^N2^S0000041@124232@695^N3^S0000035@124233@695^t^S261^T^N1^S0000139@124224@690^N2^S0000049@124223@690^N3^S0000038@124226@700^N4^S0000028@124225@695^t^S266^T^N1^S0000113@124227@690^N2^S0000093@124229@695^N3^S0000037@124228@690^N4^S0000036@124230@700^t^S269^T^N1^S0000139@124224@690^N2^S0000049@124223@690^N3^S0000038@124226@700^N4^S0000028@124225@695^t^S103^T^N1^S0000139@124224@690^N2^S0000049@124223@690^N3^S0000038@124226@700^N4^S0000028@124225@695^t^S265^T^N1^S0000113@124227@690^N2^S0000093@124229@695^N3^S0000037@124228@690^t^S581^T^N1^S0000042@124241@695^t^S254^T^N1^S0000139@124224@690^N2^S0000049@124223@690^N3^S0000038@124226@700^t^S252^T^N1^S0000074@124237@700^N2^S0000031@124238@700^N3^S0000029@124235@690^N4^S0000022@124236@695^t^S577^T^N1^S0000139@124224@690^N2^S0000049@124223@690^N3^S0000038@124226@700^N4^S0000028@124225@695^t^S64^T^N1^S0000113@124227@690^N2^S0000093@124229@695^N3^S0000037@124228@690^N4^S0000036@124230@700^t^S62^T^N1^S0000113@124227@690^N2^S0000093@124229@695^N3^S0000037@124228@690^N4^S0000036@124230@700^t^S70^T^N1^S0000074@124237@700^N2^S0000031@124238@700^N3^S0000029@124235@690^N4^S0000022@124236@695^t^S259^T^N1^S0000139@124224@690^N2^S0000049@124223@690^N3^S0000038@124226@700^N4^S0000028@124225@695^t^S251^T^N1^S0000074@124237@700^N2^S0000031@124238@700^N3^S0000029@124235@690^N4^S0000022@124236@695^t^S268^T^N1^S0000042@124241@695^t^S66^T^N1^S0000042@124241@695^t^S256^T^N1^S0000097@124234@700^N2^S0000041@124232@695^N3^S0000035@124233@695^t^S250^T^N1^S0000042@124241@695^t^S104^T^N1^S0000042@124241@695^t^S270^T^N1^S0000097@124234@700^N2^S0000041@124232@695^N3^S0000035@124233@695^t^S73^T^N1^S0000042@124241@695^t^S102^T^N1^S0000113@124227@690^N2^S0000093@124229@695^N3^S0000037@124228@690^N4^S0000036@124230@700^t^S257^T^N1^S0000097@124234@700^N2^S0000041@124232@695^N3^S0000035@124233@695^t^S255^T^N1^S0000139@124224@690^N2^S0000049@124223@690^N3^S0000038@124226@700^N4^S0000028@124225@695^t^S253^T^N1^S0000139@124224@690^N2^S0000049@124223@690^N3^S0000038@124226@700^t^S*^T^N1^S0000220@124147@700^N2^S0000173@124212@700^N3^S0000144@124286@695^N4^S0000143@124136@690^N5^S0000138@124202@695^N6^S0000137@124192@700^N7^S0000135@124175@695^N8^S0000124@124321@695^N9^S0000119@124222@705^N10^S0000119@124213@690^N11^S0000117@124217@690^N12^S0000111@124391@695^N13^S0000108@124331@695^N14^S0000105@124305@695^N15^S0000105@124193@690^N16^S0000103@124138@700^N17^S0000102@124326@700^N18^S0000102@124183@690^N19^S0000100@124204@700^N20^S0000096@124220@690^N21^S0000095@124211@690^N22^S0000094@124187@690^N23^S0000092@124190@690^N24^S0000091@124314@700^N25^S0000091@124196@690^N26^S0000091@124174@690^N27^S0000091@124133@690^N28^S0000090@124347@690^N29^S0000088@124251@700^N30^S0000088@124135@700^N31^S0000085@124181@700^N32^S0000083@124168@690^N33^S0000082@124287@700^N34^S0000080@124249@690^N35^S0000080@124141@695^N36^S0000079@124163@690^N37^S0000078@124349@700^N38^S0000078@124343@705^N39^S0000078@124153@700^N40^S0000078@124152@695^N41^S0000076@124203@700^N42^S0000076@124189@700^N43^S0000075@124280@700^N44^S0000074@124348@695^N45^S0000071@124291@705^N46^S0000071@124199@700^N47^S0000071@124137@695^N48^S0000070@124330@695^N49^S0000070@124259@695^N50^S0000070@124209@700^N51^S0000070@124151@690^N52^S0000068@124299@690^N53^S0000068@124214@700^N54^S0000067@124322@705^N55^S0000067@124215@700^N56^S0000067@124180@690^N57^S0000066@124310@700^N58^S0000066@124245@695^N59^S0000065@124337@700^N60^S0000064@124351@690^N61^S0000064@124157@695^N62^S0000063@124315@690^N63^S0000062@124210@705^N64^S0000062@124186@700^N65^S0000061@124146@695^N66^S0000058@124258@690^N67^S0000057@124140@695^N68^S0000057@124139@690^N69^S0000056@124306@700^N70^S0000056@124298@690^N71^S0000055@124243@690^N72^S0000054@124218@695^N73^S0000053@124341@690^N74^S0000053@124275@695^N75^S0000052@124300@700^N76^S0000052@124191@695^N77^S0000052@124169@695^N78^S0000051@124279@695^N79^S0000050@124353@700^N80^S0000049@124352@695^N81^S0000049@124324@690^N82^S0000049@124270@690^N83^S0000049@124201@690^N84^S0000049@124200@705^N85^S0000048@124176@705^N86^S0000047@124184@690^N87^S0000047@124134@695^N88^S0000046@124325@695^N89^S0000044@124198@695^N90^S0000043@124195@700^N91^S0000043@124188@695^N92^S0000043@124170@695^N93^S0000041@124164@700^N94^S0000040@124290@695^N95^S0000040@124271@690^N96^S0000040@124265@700^N97^S0000040@124194@695^N98^S0000040@124145@690^N99^S0000038@124250@695^N100^S0000037@124342@695^N101^S0000036@140590@100^N102^S0000036@124313@695^N103^S0000035@124336@690^N104^S0000034@124289@690^N105^S0000034@124185@695^N106^S0000034@124158@700^N107^S0000032@124309@690^N108^S0000031@124335@690^N109^S0000031@124285@690^N110^S0000031@124260@700^N111^S0000031@124221@695^N112^S0000031@124144@705^N113^S0000029@124312@690^N114^S0000028@124294@695^N115^S0000028@124142@690^N116^S0000027@124304@690^N117^S0000026@124253@690^N118^S0000026@124216@690^N119^S0000026@124159@705^N120^S0000024@124283@700^N121^S0000024@124197@695^N122^S0000022@124316@695^N123^S0000022@124282@695^N124^S0000021@124295@700^N125^S0000020@124254@705^N126^S0000019@124244@695^N127^S0000019@124132@690^N128^S0000018@124207@690^N129^S0000017@124281@695^N130^S0000017@124219@700^N131^S0000016@124266@700^N132^S0000015@124208@695^t^S71^T^N1^S0000074@124237@700^N2^S0000031@124238@700^N3^S0000029@124235@690^N4^S0000022@124236@695^t^S72^T^N1^S0000074@124237@700^N2^S0000031@124238@700^N3^S0000029@124235@690^N4^S0000022@124236@695^t^S267^T^N1^S0000113@124227@690^N2^S0000093@124229@695^N3^S0000037@124228@690^N4^S0000036@124230@700^t^S258^T^N1^S0000113@124227@690^N2^S0000093@124229@695^N3^S0000037@124228@690^N4^S0000036@124230@700^t^S264^T^N1^S0000097@124234@700^N2^S0000041@124232@695^N3^S0000035@124233@695^t^S260^T^N1^S0000139@124224@690^N2^S0000049@124223@690^N3^S0000038@124226@700^N4^S0000028@124225@695^t^S263^T^N1^S0000139@124224@690^N2^S0000049@124223@690^N3^S0000038@124226@700^N4^S0000028@124225@695^t^t^^",
+ ["114094"] = "^1^T^S*^T^N1^S0000001@114313@570^N2^S0000001@114312@570^N3^S0000001@114311@570^N4^S0000001@114310@570^t^t^^",
["114066"] = "^1^T^S*^T^N1^S0000001@114419@615^N2^S0000001@114418@615^N3^S0000001@114417@615^N4^S0000001@114416@615^N5^S0000001@114415@615^t^t^^",
+ ["114108"] = "^1^T^S267^T^N1^S0000001@115309@560^t^S263^T^N1^S0000001@115307@560^N2^S0000001@115303@560^t^S73^T^N1^S0000001@115303@560^t^S65^T^N1^S0000001@115310@560^t^S261^T^N1^S0000001@115306@560^t^S266^T^N1^S0000001@115309@560^t^S260^T^N1^S0000001@115303@560^N2^S0000001@115307@560^t^S103^T^N1^S0000001@115308@560^t^S265^T^N1^S0000001@115309@560^t^S581^T^N1^S0000001@115303@560^t^S254^T^N1^S0000001@115305@560^t^S252^T^N1^S0000001@115304@560^t^S577^T^N1^S0000001@115303@560^t^S72^T^N1^S0000001@115304@560^t^S62^T^N1^S0000001@115309@560^t^S66^T^N1^S0000001@115303@560^t^S259^T^N1^S0000001@115306@560^t^S251^T^N1^S0000001@115303@560^t^S264^T^N1^S0000001@115309@560^N2^S0000001@115310@560^t^S256^T^N1^S0000001@115309@560^N2^S0000001@115310@560^t^S250^T^N1^S0000001@115304@560^t^S262^T^N1^S0000001@115309@560^N2^S0000001@115310@560^t^S270^T^N1^S0000001@115309@560^N2^S0000001@115310@560^t^S102^T^N1^S0000001@115310@560^N2^S0000001@115309@560^t^S63^T^N1^S0000001@115309@560^t^S257^T^N1^S0000001@115309@560^N2^S0000001@115310@560^t^S255^T^N1^S0000001@115308@560^t^S253^T^N1^S0000001@115305@560^t^S268^T^N1^S0000001@115308@560^t^S71^T^N1^S0000001@115304@560^t^S70^T^N1^S0000001@115304@560^t^S64^T^N1^S0000001@115309@560^t^S258^T^N1^S0000001@115309@560^N2^S0000001@115310@560^t^S105^T^N1^S0000001@115309@560^N2^S0000001@115310@560^t^S104^T^N1^S0000001@115308@560^t^S269^T^N1^S0000001@115303@560^N2^S0000001@115307@560^t^t^^",
["122661"] = "^1^T^S*^T^N1^S0000001@122674@100^t^t^^",
- ["118531"] = "^1^T^S262^T^N1^S0000456@113859@655^N2^S0000304@113835@655^N3^S0000113@113653@655^t^S65^T^N1^S0000241@113854@655^N2^S0000208@113842@655^N3^S0000113@113653@655^t^S266^T^N1^S0000456@113859@655^N2^S0000304@113835@655^t^S261^T^N1^S0000424@113612@655^N2^S0000304@113853@655^t^S269^T^N1^S0000424@113612@655^N2^S0000304@113853@655^t^S265^T^N1^S0000456@113859@655^N2^S0000304@113835@655^t^S264^T^N1^S0000241@113854@655^N2^S0000208@113842@655^N3^S0000113@113653@655^t^S105^T^N1^S0000241@113854@655^N2^S0000208@113842@655^t^S63^T^N1^S0000456@113859@655^N2^S0000304@113835@655^t^S260^T^N1^S0000424@113612@655^N2^S0000304@113853@655^t^S103^T^N1^S0000424@113612@655^N2^S0000304@113853@655^t^S267^T^N1^S0000456@113859@655^N2^S0000304@113835@655^t^S252^T^N1^S0000217@113645@655^N2^S0000213@113658@655^t^S256^T^N1^S0000241@113854@655^N2^S0000208@113842@655^t^S*^T^N1^S0000598@113833@655^N2^S0000582@113651@655^N3^S0000552@113829@655^N4^S0000537@113662@655^N5^S0000500@113655@655^N6^S0000499@113847@655^N7^S0000484@113604@655^N8^S0000468@113860@655^N9^S0000461@113598@655^N10^S0000422@113844@655^N11^S0000421@113632@655^N12^S0000420@113657@655^N13^S0000420@113637@655^N14^S0000419@113610@655^N15^S0000418@113642@655^N16^S0000413@113845@655^N17^S0000409@113648@655^N18^S0000398@113840@655^N19^S0000394@113659@655^N20^S0000394@113643@655^N21^S0000391@113831@655^N22^S0000386@113826@655^N23^S0000383@113656@655^N24^S0000381@113636@655^N25^S0000379@113611@655^N26^S0000374@113851@655^N27^S0000362@113660@655^N28^S0000360@113843@655^N29^S0000353@113596@655^N30^S0000352@113850@655^N31^S0000348@113601@655^N32^S0000347@113855@655^N33^S0000347@113647@655^N34^S0000340@113828@655^N35^S0000329@113649@655^N36^S0000328@113638@655^N37^S0000325@113609@655^N38^S0000325@113595@655^N39^S0000323@113654@655^N40^S0000320@113846@655^N41^S0000317@113634@655^N42^S0000312@113602@655^N43^S0000310@113646@655^N44^S0000308@113633@655^N45^S0000306@113644@655^N46^S0000305@113856@655^N47^S0000295@113600@655^N48^S0000291@113849@655^N49^S0000289@113852@655^N50^S0000285@113661@655^N51^S0000277@113664@655^N52^S0000276@113593@655^N53^S0000269@113832@655^N54^S0000265@113841@655^N55^S0000263@113827@655^N56^S0000258@113839@655^N57^S0000257@113641@655^N58^S0000255@113605@655^N59^S0000251@113858@655^N60^S0000247@113830@655^N61^S0000244@113608@655^N62^S0000227@113599@655^t^S268^T^N1^S0000157@113861@655^N2^S0000139@113650@655^N3^S0000129@113834@655^t^S270^T^N1^S0000241@113854@655^N2^S0000208@113842@655^t^S259^T^N1^S0000424@113612@655^N2^S0000304@113853@655^t^S581^T^N1^S0000157@113861@655^N2^S0000139@113650@655^N3^S0000129@113834@655^t^S104^T^N1^S0000157@113861@655^N2^S0000139@113650@655^N3^S0000129@113834@655^t^S255^T^N1^S0000424@113612@655^N2^S0000304@113853@655^t^S254^T^N1^S0000424@113612@655^N2^S0000304@113853@655^t^S73^T^N1^S0000157@113861@655^N2^S0000139@113650@655^N3^S0000129@113834@655^t^S66^T^N1^S0000157@113861@655^N2^S0000139@113650@655^N3^S0000129@113834@655^t^S102^T^N1^S0000456@113859@655^N2^S0000304@113835@655^t^S258^T^N1^S0000456@113859@655^N2^S0000304@113835@655^t^S62^T^N1^S0000456@113859@655^N2^S0000304@113835@655^t^S250^T^N1^S0000157@113861@655^N2^S0000139@113650@655^N3^S0000129@113834@655^t^S64^T^N1^S0000456@113859@655^N2^S0000304@113835@655^t^S251^T^N1^S0000217@113645@655^N2^S0000213@113658@655^t^S253^T^N1^S0000424@113612@655^N2^S0000304@113853@655^t^S72^T^N1^S0000217@113645@655^N2^S0000213@113658@655^t^S71^T^N1^S0000217@113645@655^N2^S0000213@113658@655^t^S577^T^N1^S0000424@113612@655^N2^S0000304@113853@655^t^S257^T^N1^S0000241@113854@655^N2^S0000208@113842@655^t^S70^T^N1^S0000217@113645@655^N2^S0000213@113658@655^t^S263^T^N1^S0000424@113612@655^N2^S0000304@113853@655^t^t^^",
+ ["114096"] = "^1^T^S*^T^N1^S0000001@114321@550^N2^S0000001@114320@550^N3^S0000001@114319@550^N4^S0000001@114318@550^t^t^^",
+ ["115510"] = "^1^T^S*^T^N1^S0000001@115509@700^t^t^^",
+ ["114087"] = "^1^T^S262^T^N1^S0000001@114550@645^t^S63^T^N1^S0000001@114550@645^t^S73^T^N1^S0000001@114553@645^t^S65^T^N1^S0000001@114551@645^t^S261^T^N1^S0000001@114549@645^t^S266^T^N1^S0000001@114550@645^t^S260^T^N1^S0000001@114549@645^t^S103^T^N1^S0000001@114549@645^t^S265^T^N1^S0000001@114550@645^t^S581^T^N1^S0000001@114553@645^t^S254^T^N1^S0000001@114549@645^t^S252^T^N1^S0000001@114552@645^t^S577^T^N1^S0000001@114549@645^t^S253^T^N1^S0000001@114549@645^t^S62^T^N1^S0000001@114550@645^t^S70^T^N1^S0000001@114552@645^t^S259^T^N1^S0000001@114549@645^t^S251^T^N1^S0000001@114552@645^t^S105^T^N1^S0000001@114551@645^t^S256^T^N1^S0000001@114551@645^t^S250^T^N1^S0000001@114553@645^t^S66^T^N1^S0000001@114553@645^t^S270^T^N1^S0000001@114551@645^t^S104^T^N1^S0000001@114553@645^t^S102^T^N1^S0000001@114550@645^t^S257^T^N1^S0000001@114551@645^t^S255^T^N1^S0000001@114549@645^t^S64^T^N1^S0000001@114550@645^t^S268^T^N1^S0000001@114553@645^t^S72^T^N1^S0000001@114552@645^t^S71^T^N1^S0000001@114552@645^t^S264^T^N1^S0000001@114551@645^t^S258^T^N1^S0000001@114550@645^t^S269^T^N1^S0000001@114549@645^t^S267^T^N1^S0000001@114550@645^t^S263^T^N1^S0000001@114549@645^t^t^^",
+ ["127818"] = "^1^T^S*^T^N1^S0000001@124574@650^t^t^^",
+ ["114059"] = "^1^T^S*^T^N1^S0000001@114382@615^N2^S0000001@114381@615^N3^S0000001@114380@615^N4^S0000001@114379@615^t^t^^",
+ ["114097"] = "^1^T^S*^T^N1^S0000001@114325@590^N2^S0000001@114324@590^N3^S0000001@114323@590^N4^S0000001@114322@590^t^t^^",
+ ["114112"] = "^1^T^S267^T^N1^S0000001@115333@645^t^S263^T^N1^S0000001@115331@645^N2^S0000001@115327@645^t^S73^T^N1^S0000001@115327@645^t^S65^T^N1^S0000001@115334@645^t^S261^T^N1^S0000001@115330@645^t^S266^T^N1^S0000001@115333@645^t^S260^T^N1^S0000001@115327@645^N2^S0000001@115331@645^t^S103^T^N1^S0000001@115332@645^t^S265^T^N1^S0000001@115333@645^t^S581^T^N1^S0000001@115327@645^t^S254^T^N1^S0000001@115329@645^t^S252^T^N1^S0000001@115328@645^t^S577^T^N1^S0000001@115327@645^t^S72^T^N1^S0000001@115328@645^t^S62^T^N1^S0000001@115333@645^t^S66^T^N1^S0000001@115327@645^t^S259^T^N1^S0000001@115330@645^t^S251^T^N1^S0000001@115327@645^t^S264^T^N1^S0000001@115333@645^N2^S0000001@115334@645^t^S256^T^N1^S0000001@115333@645^N2^S0000001@115334@645^t^S250^T^N1^S0000001@115328@645^t^S262^T^N1^S0000001@115333@645^N2^S0000001@115334@645^t^S270^T^N1^S0000001@115333@645^N2^S0000001@115334@645^t^S102^T^N1^S0000001@115334@645^N2^S0000001@115333@645^t^S63^T^N1^S0000001@115333@645^t^S257^T^N1^S0000001@115333@645^N2^S0000001@115334@645^t^S255^T^N1^S0000001@115332@645^t^S253^T^N1^S0000001@115329@645^t^S268^T^N1^S0000001@115332@645^t^S71^T^N1^S0000001@115328@645^t^S70^T^N1^S0000001@115328@645^t^S64^T^N1^S0000001@115333@645^t^S258^T^N1^S0000001@115333@645^N2^S0000001@115334@645^t^S105^T^N1^S0000001@115333@645^N2^S0000001@115334@645^t^S104^T^N1^S0000001@115332@645^t^S269^T^N1^S0000001@115327@645^N2^S0000001@115331@645^t^t^^",
+ ["114071"] = "^1^T^S*^T^N1^S0000001@114443@630^N2^S0000001@114442@630^N3^S0000001@114441@630^N4^S0000001@114440@630^t^t^^",
+ ["114109"] = "^1^T^S267^T^N1^S0000001@115317@615^t^S263^T^N1^S0000001@115315@615^N2^S0000001@115311@615^t^S73^T^N1^S0000001@115311@615^t^S65^T^N1^S0000001@115318@615^t^S261^T^N1^S0000001@115314@615^t^S266^T^N1^S0000001@115317@615^t^S260^T^N1^S0000001@115311@615^N2^S0000001@115315@615^t^S103^T^N1^S0000001@115316@615^t^S265^T^N1^S0000001@115317@615^t^S581^T^N1^S0000001@115311@615^t^S254^T^N1^S0000001@115313@615^t^S252^T^N1^S0000001@115312@615^t^S577^T^N1^S0000001@115311@615^t^S72^T^N1^S0000001@115312@615^t^S62^T^N1^S0000001@115317@615^t^S66^T^N1^S0000001@115311@615^t^S259^T^N1^S0000001@115314@615^t^S251^T^N1^S0000001@115311@615^t^S264^T^N1^S0000001@115317@615^N2^S0000001@115318@615^t^S256^T^N1^S0000001@115317@615^N2^S0000001@115318@615^t^S250^T^N1^S0000001@115312@615^t^S262^T^N1^S0000001@115317@615^N2^S0000001@115318@615^t^S270^T^N1^S0000001@115317@615^N2^S0000001@115318@615^t^S102^T^N1^S0000001@115318@615^N2^S0000001@115317@615^t^S63^T^N1^S0000001@115317@615^t^S257^T^N1^S0000001@115317@615^N2^S0000001@115318@615^t^S255^T^N1^S0000001@115316@615^t^S253^T^N1^S0000001@115313@615^t^S268^T^N1^S0000001@115316@615^t^S71^T^N1^S0000001@115312@615^t^S70^T^N1^S0000001@115312@615^t^S64^T^N1^S0000001@115317@615^t^S258^T^N1^S0000001@115317@615^N2^S0000001@115318@615^t^S105^T^N1^S0000001@115317@615^N2^S0000001@115318@615^t^S104^T^N1^S0000001@115316@615^t^S269^T^N1^S0000001@115311@615^N2^S0000001@115315@615^t^t^^",
+ ["122484"] = "^1^T^S267^T^N1^S0002170@119194@670^N2^S0002066@113984@670^N3^S0001592@113948@670^t^S63^T^N1^S0002170@119194@670^N2^S0002066@113984@670^N3^S0001592@113948@670^t^S73^T^N1^S0000636@113893@670^N2^S0000629@113905@670^N3^S0000624@113987@670^t^S65^T^N1^S0000607@113986@670^N2^S0000577@113889@670^N3^S0000441@119192@670^t^S261^T^N1^S0002005@113931@670^N2^S0001930@118114@670^N3^S0001898@113985@670^t^S266^T^N1^S0002170@119194@670^N2^S0002066@113984@670^N3^S0001592@113948@670^t^S260^T^N1^S0002005@113931@670^N2^S0001930@118114@670^N3^S0001898@113985@670^t^S103^T^N1^S0002005@113931@670^N2^S0001930@118114@670^N3^S0001898@113985@670^t^S265^T^N1^S0002170@119194@670^N2^S0002066@113984@670^N3^S0001592@113948@670^t^S581^T^N1^S0000636@113893@670^N2^S0000629@113905@670^N3^S0000624@113987@670^t^S254^T^N1^S0002005@113931@670^N2^S0001930@118114@670^N3^S0001898@113985@670^t^S252^T^N1^S0001387@113983@670^N2^S0001262@119193@670^N3^S0001162@113969@670^t^S577^T^N1^S0002005@113931@670^N2^S0001930@118114@670^N3^S0001898@113985@670^t^S72^T^N1^S0001387@113983@670^N2^S0001262@119193@670^N3^S0001162@113969@670^t^S62^T^N1^S0002170@119194@670^N2^S0002066@113984@670^N3^S0001592@113948@670^t^S66^T^N1^S0000636@113893@670^N2^S0000629@113905@670^N3^S0000624@113987@670^t^S259^T^N1^S0002005@113931@670^N2^S0001930@118114@670^N3^S0001898@113985@670^t^S251^T^N1^S0001387@113983@670^N2^S0001262@119193@670^N3^S0001162@113969@670^t^S105^T^N1^S0000607@113986@670^N2^S0000577@113889@670^N3^S0000441@119192@670^t^S70^T^N1^S0001387@113983@670^N2^S0001262@119193@670^N3^S0001162@113969@670^t^S256^T^N1^S0000607@113986@670^N2^S0000577@113889@670^N3^S0000441@119192@670^t^S250^T^N1^S0000636@113893@670^N2^S0000629@113905@670^N3^S0000624@113987@670^t^S264^T^N1^S0000607@113986@670^N2^S0000577@113889@670^N3^S0000441@119192@670^t^S270^T^N1^S0000607@113986@670^N2^S0000577@113889@670^N3^S0000441@119192@670^t^S102^T^N1^S0002170@119194@670^N2^S0002066@113984@670^N3^S0001592@113948@670^t^S253^T^N1^S0002005@113931@670^N2^S0001930@118114@670^N3^S0001898@113985@670^t^S257^T^N1^S0000607@113986@670^N2^S0000577@113889@670^N3^S0000441@119192@670^t^S255^T^N1^S0002005@113931@670^N2^S0001930@118114@670^N3^S0001898@113985@670^t^S268^T^N1^S0000636@113893@670^N2^S0000629@113905@670^N3^S0000624@113987@670^t^S*^T^N1^S0002671@113975@670^N2^S0002499@113872@670^N3^S0002378@113929@670^N4^S0002354@113952@670^N5^S0002248@113917@670^N6^S0002244@113938@670^N7^S0002215@113877@670^N8^S0002201@113892@670^N9^S0002193@120078@670^N10^S0002156@113910@670^N11^S0002133@113963@670^N12^S0002110@113947@670^N13^S0002108@113883@670^N14^S0002105@113971@670^N15^S0002097@113884@670^N16^S0002052@113923@670^N17^S0001989@113977@670^N18^S0001987@113950@670^N19^S0001985@113937@670^N20^S0001930@113873@670^N21^S0001924@113928@670^N22^S0001924@113921@670^N23^S0001920@113941@670^N24^S0001918@113887@670^N25^S0001914@113956@670^N26^S0001910@113962@670^N27^S0001892@113871@670^N28^S0001890@113925@670^N29^S0001886@113949@670^N30^S0001878@113961@670^N31^S0001868@113942@670^N32^S0001829@113922@670^N33^S0001803@113876@670^N34^S0001801@113936@670^N35^S0001799@113924@670^N36^S0001790@113896@670^N37^S0001782@113967@670^N38^S0001779@113976@670^N39^S0001777@113898@670^N40^S0001774@113895@670^N41^S0001766@113903@670^N42^S0001762@113894@670^N43^S0001719@113906@670^N44^S0001711@113907@670^N45^S0001700@113990@670^N46^S0001697@113914@670^N47^S0001697@113870@670^N48^S0001692@113989@670^N49^S0001691@113880@670^N50^S0001674@113881@670^N51^S0001672@113970@670^N52^S0001661@113935@670^N53^S0001659@113868@670^N54^S0001627@113901@670^N55^S0001625@113863@670^N56^S0001616@113978@670^N57^S0001610@113908@670^N58^S0001602@113864@670^N59^S0001601@113900@670^N60^S0001598@113981@670^N61^S0001559@113933@670^N62^S0001558@113964@670^N63^S0001548@113891@670^N64^S0001531@113940@670^N65^S0001530@113958@670^N66^S0001524@113951@670^N67^S0001473@113878@670^N68^S0001470@113916@670^N69^S0001441@113866@670^N70^S0001438@113974@670^N71^S0001423@113899@670^N72^S0001387@113930@670^N73^S0001385@113919@670^N74^S0001374@113957@670^N75^S0001367@113943@670^N76^S0001337@113875@670^N77^S0001335@113954@670^N78^S0001327@113972@670^N79^S0001317@113945@670^N80^S0001289@113944@670^N81^S0001249@113867@670^N82^S0001247@113982@670^N83^S0001225@113955@670^N84^S0001181@113915@670^N85^S0001164@113968@670^N86^S0001105@113890@670^N87^S0001105@113888@670^N88^S0001099@113902@670^N89^S0000393@140590@100^t^S64^T^N1^S0002170@119194@670^N2^S0002066@113984@670^N3^S0001592@113948@670^t^S104^T^N1^S0000636@113893@670^N2^S0000629@113905@670^N3^S0000624@113987@670^t^S71^T^N1^S0001387@113983@670^N2^S0001262@119193@670^N3^S0001162@113969@670^t^S258^T^N1^S0002170@119194@670^N2^S0002066@113984@670^N3^S0001592@113948@670^t^S269^T^N1^S0002005@113931@670^N2^S0001930@118114@670^N3^S0001898@113985@670^t^S263^T^N1^S0002005@113931@670^N2^S0001930@118114@670^N3^S0001898@113985@670^t^S262^T^N1^S0002170@119194@670^N2^S0002066@113984@670^N3^S0001592@113948@670^t^t^^",
+ ["127797"] = "^1^T^S*^T^N1^S0000001@124592@650^t^t^^",
+ ["118531"] = "^1^T^S267^T^N1^S0000489@113859@655^N2^S0000315@113835@655^t^S63^T^N1^S0000489@113859@655^N2^S0000315@113835@655^t^S105^T^N1^S0000250@113854@655^N2^S0000214@113842@655^t^S65^T^N1^S0000250@113854@655^N2^S0000214@113842@655^N3^S0000118@113653@655^t^S261^T^N1^S0000445@113612@655^N2^S0000316@113853@655^t^S266^T^N1^S0000489@113859@655^N2^S0000315@113835@655^t^S260^T^N1^S0000445@113612@655^N2^S0000316@113853@655^t^S103^T^N1^S0000445@113612@655^N2^S0000316@113853@655^t^S265^T^N1^S0000489@113859@655^N2^S0000315@113835@655^t^S581^T^N1^S0000163@113861@655^N2^S0000145@113650@655^N3^S0000137@113834@655^t^S254^T^N1^S0000445@113612@655^N2^S0000316@113853@655^t^S252^T^N1^S0000229@113645@655^N2^S0000219@113658@655^t^S577^T^N1^S0000445@113612@655^N2^S0000316@113853@655^t^S64^T^N1^S0000489@113859@655^N2^S0000315@113835@655^t^S62^T^N1^S0000489@113859@655^N2^S0000315@113835@655^t^S70^T^N1^S0000229@113645@655^N2^S0000219@113658@655^t^S259^T^N1^S0000445@113612@655^N2^S0000316@113853@655^t^S251^T^N1^S0000229@113645@655^N2^S0000219@113658@655^t^S268^T^N1^S0000163@113861@655^N2^S0000145@113650@655^N3^S0000137@113834@655^t^S104^T^N1^S0000163@113861@655^N2^S0000145@113650@655^N3^S0000137@113834@655^t^S256^T^N1^S0000250@113854@655^N2^S0000214@113842@655^t^S250^T^N1^S0000163@113861@655^N2^S0000145@113650@655^N3^S0000137@113834@655^t^S73^T^N1^S0000163@113861@655^N2^S0000145@113650@655^N3^S0000137@113834@655^t^S270^T^N1^S0000250@113854@655^N2^S0000214@113842@655^t^S66^T^N1^S0000163@113861@655^N2^S0000145@113650@655^N3^S0000137@113834@655^t^S263^T^N1^S0000445@113612@655^N2^S0000316@113853@655^t^S257^T^N1^S0000250@113854@655^N2^S0000214@113842@655^t^S255^T^N1^S0000445@113612@655^N2^S0000316@113853@655^t^S102^T^N1^S0000489@113859@655^N2^S0000315@113835@655^t^S*^T^N1^S0000649@113833@655^N2^S0000621@113651@655^N3^S0000618@113829@655^N4^S0000599@113662@655^N5^S0000541@113655@655^N6^S0000533@113847@655^N7^S0000528@113860@655^N8^S0000519@113604@655^N9^S0000503@113598@655^N10^S0000463@113637@655^N11^S0000451@113845@655^N12^S0000451@113642@655^N13^S0000449@113844@655^N14^S0000449@113610@655^N15^S0000448@113632@655^N16^S0000447@113657@655^N17^S0000433@113648@655^N18^S0000429@113643@655^N19^S0000422@113840@655^N20^S0000415@113659@655^N21^S0000410@113826@655^N22^S0000409@113831@655^N23^S0000405@113636@655^N24^S0000403@113611@655^N25^S0000401@113656@655^N26^S0000391@113851@655^N27^S0000381@113660@655^N28^S0000376@113601@655^N29^S0000374@113596@655^N30^S0000371@113843@655^N31^S0000369@113850@655^N32^S0000365@113647@655^N33^S0000363@113855@655^N34^S0000361@113638@655^N35^S0000354@113846@655^N36^S0000352@113828@655^N37^S0000350@113649@655^N38^S0000344@113634@655^N39^S0000343@113595@655^N40^S0000342@113654@655^N41^S0000342@113646@655^N42^S0000337@113609@655^N43^S0000336@113644@655^N44^S0000329@113602@655^N45^S0000325@113633@655^N46^S0000322@113856@655^N47^S0000303@113661@655^N48^S0000303@113600@655^N49^S0000302@113849@655^N50^S0000301@113852@655^N51^S0000291@113664@655^N52^S0000284@113593@655^N53^S0000281@113832@655^N54^S0000278@113605@655^N55^S0000277@113841@655^N56^S0000272@113827@655^N57^S0000271@113858@655^N58^S0000271@113641@655^N59^S0000264@113839@655^N60^S0000258@113830@655^N61^S0000249@113608@655^N62^S0000236@113599@655^t^S253^T^N1^S0000445@113612@655^N2^S0000316@113853@655^t^S71^T^N1^S0000229@113645@655^N2^S0000219@113658@655^t^S72^T^N1^S0000229@113645@655^N2^S0000219@113658@655^t^S258^T^N1^S0000489@113859@655^N2^S0000315@113835@655^t^S264^T^N1^S0000250@113854@655^N2^S0000214@113842@655^N3^S0000118@113653@655^t^S269^T^N1^S0000445@113612@655^N2^S0000316@113853@655^t^S262^T^N1^S0000489@113859@655^N2^S0000315@113835@655^N3^S0000118@113653@655^t^t^^",
+ ["114105"] = "^1^T^S262^T^N1^S0000001@114367@600^t^S63^T^N1^S0000001@114367@600^t^S73^T^N1^S0000001@114370@600^t^S65^T^N1^S0000001@114368@600^t^S261^T^N1^S0000001@114366@600^t^S266^T^N1^S0000001@114367@600^t^S260^T^N1^S0000001@114366@600^t^S103^T^N1^S0000001@114366@600^t^S265^T^N1^S0000001@114367@600^t^S581^T^N1^S0000001@114370@600^t^S254^T^N1^S0000001@114366@600^t^S252^T^N1^S0000001@114369@600^t^S577^T^N1^S0000001@114366@600^t^S253^T^N1^S0000001@114366@600^t^S62^T^N1^S0000001@114367@600^t^S70^T^N1^S0000001@114369@600^t^S259^T^N1^S0000001@114366@600^t^S251^T^N1^S0000001@114369@600^t^S105^T^N1^S0000001@114368@600^t^S256^T^N1^S0000001@114368@600^t^S250^T^N1^S0000001@114370@600^t^S66^T^N1^S0000001@114370@600^t^S270^T^N1^S0000001@114368@600^t^S104^T^N1^S0000001@114370@600^t^S102^T^N1^S0000001@114367@600^t^S257^T^N1^S0000001@114368@600^t^S255^T^N1^S0000001@114366@600^t^S64^T^N1^S0000001@114367@600^t^S268^T^N1^S0000001@114370@600^t^S72^T^N1^S0000001@114369@600^t^S71^T^N1^S0000001@114369@600^t^S264^T^N1^S0000001@114368@600^t^S258^T^N1^S0000001@114367@600^t^S269^T^N1^S0000001@114366@600^t^S267^T^N1^S0000001@114367@600^t^S263^T^N1^S0000001@114366@600^t^t^^",
["127805"] = "^1^T^S*^T^N1^S0000001@124573@650^t^t^^",
- ["114068"] = "^1^T^S262^T^N1^S0000001@114428@615^t^S65^T^N1^S0000001@114429@615^t^S266^T^N1^S0000001@114428@615^t^S261^T^N1^S0000001@114427@615^t^S269^T^N1^S0000001@114427@615^t^S265^T^N1^S0000001@114428@615^t^S264^T^N1^S0000001@114429@615^t^S105^T^N1^S0000001@114429@615^t^S63^T^N1^S0000001@114428@615^t^S260^T^N1^S0000001@114427@615^t^S263^T^N1^S0000001@114427@615^t^S267^T^N1^S0000001@114428@615^t^S252^T^N1^S0000001@114430@615^t^S256^T^N1^S0000001@114429@615^t^S268^T^N1^S0000001@114431@615^t^S270^T^N1^S0000001@114429@615^t^S259^T^N1^S0000001@114427@615^t^S581^T^N1^S0000001@114431@615^t^S73^T^N1^S0000001@114431@615^t^S255^T^N1^S0000001@114427@615^t^S254^T^N1^S0000001@114427@615^t^S66^T^N1^S0000001@114431@615^t^S104^T^N1^S0000001@114431@615^t^S102^T^N1^S0000001@114428@615^t^S258^T^N1^S0000001@114428@615^t^S62^T^N1^S0000001@114428@615^t^S250^T^N1^S0000001@114431@615^t^S64^T^N1^S0000001@114428@615^t^S251^T^N1^S0000001@114430@615^t^S253^T^N1^S0000001@114427@615^t^S72^T^N1^S0000001@114430@615^t^S71^T^N1^S0000001@114430@615^t^S577^T^N1^S0000001@114427@615^t^S257^T^N1^S0000001@114429@615^t^S70^T^N1^S0000001@114430@615^t^S103^T^N1^S0000001@114427@615^t^t^^",
- ["120302"] = "^1^T^S*^T^N1^S0000001@114131@1^N2^S0000001@114129@1^N3^S0000001@114128@1^t^t^^",
+ ["114058"] = "^1^T^S*^T^N1^S0000001@114378@615^N2^S0000001@114377@615^N3^S0000001@114376@615^N4^S0000001@114375@615^t^t^^",
+ ["114084"] = "^1^T^S*^T^N1^S0000001@114504@645^N2^S0000001@114503@645^N3^S0000001@114502@645^N4^S0000001@114501@645^t^t^^",
+ ["123857"] = "^1^T^S102^T^N1^S0090503@118632@1^t^S263^T^N1^S0077083@118630@1^t^S105^T^N1^S0090503@118632@1^t^S65^T^N1^S0090503@118632@1^t^S261^T^N1^S0077083@118630@1^t^S266^T^N1^S0090503@118632@1^t^S260^T^N1^S0077083@118630@1^t^S103^T^N1^S0077083@118630@1^t^S265^T^N1^S0090503@118632@1^t^S104^T^N1^S0077083@118630@1^t^S252^T^N1^S0061886@118631@1^t^S253^T^N1^S0077083@118630@1^t^S62^T^N1^S0090503@118632@1^t^S66^T^N1^S0061886@118631@1^t^S259^T^N1^S0077083@118630@1^t^S251^T^N1^S0061886@118631@1^t^S73^T^N1^S0061886@118631@1^t^S256^T^N1^S0090503@118632@1^t^S250^T^N1^S0061886@118631@1^t^S262^T^N1^S0090503@118632@1^t^S270^T^N1^S0090503@118632@1^t^S72^T^N1^S0061886@118631@1^t^S71^T^N1^S0061886@118631@1^t^S257^T^N1^S0090503@118632@1^t^S255^T^N1^S0077083@118630@1^t^S64^T^N1^S0090503@118632@1^t^S268^T^N1^S0077083@118630@1^t^S63^T^N1^S0090503@118632@1^t^S70^T^N1^S0061886@118631@1^t^S254^T^N1^S0077083@118630@1^t^S264^T^N1^S0090503@118632@1^t^S269^T^N1^S0077083@118630@1^t^S267^T^N1^S0090503@118632@1^t^S258^T^N1^S0090503@118632@1^t^t^^",
+ ["123858"] = "^1^T^S*^T^N1^S0060129@122273@1^N2^S0046192@122272@1^N3^S0028996@118354@1^N4^S0000237@140590@100^t^t^^",
+ ["127783"] = "^1^T^S*^T^N1^S0000001@124587@650^t^t^^",
["114078"] = "^1^T^S*^T^N1^S0000001@114480@630^N2^S0000001@114479@630^N3^S0000001@114478@630^N4^S0000001@114477@630^N5^S0000001@114476@630^t^t^^",
- ["127819"] = "^1^T^S*^T^N1^S0000001@124577@650^t^t^^",
- ["114069"] = "^1^T^S*^T^N1^S0000001@114435@630^N2^S0000001@114434@630^N3^S0000001@114433@630^N4^S0000001@114432@630^t^t^^",
+ ["114083"] = "^1^T^S*^T^N1^S0000001@114500@645^N2^S0000001@114499@645^N3^S0000001@114498@645^N4^S0000001@114497@645^t^t^^",
+ ["127823"] = "^1^T^S*^T^N1^S0000001@124594@650^t^t^^",
+ ["114080"] = "^1^T^S262^T^N1^S0000001@114489@630^t^S63^T^N1^S0000001@114489@630^t^S73^T^N1^S0000001@114492@630^t^S65^T^N1^S0000001@114490@630^t^S261^T^N1^S0000001@114488@630^t^S266^T^N1^S0000001@114489@630^t^S260^T^N1^S0000001@114488@630^t^S103^T^N1^S0000001@114488@630^t^S265^T^N1^S0000001@114489@630^t^S581^T^N1^S0000001@114492@630^t^S254^T^N1^S0000001@114488@630^t^S252^T^N1^S0000001@114491@630^t^S577^T^N1^S0000001@114488@630^t^S253^T^N1^S0000001@114488@630^t^S62^T^N1^S0000001@114489@630^t^S70^T^N1^S0000001@114491@630^t^S259^T^N1^S0000001@114488@630^t^S251^T^N1^S0000001@114491@630^t^S105^T^N1^S0000001@114490@630^t^S256^T^N1^S0000001@114490@630^t^S250^T^N1^S0000001@114492@630^t^S66^T^N1^S0000001@114492@630^t^S270^T^N1^S0000001@114490@630^t^S104^T^N1^S0000001@114492@630^t^S102^T^N1^S0000001@114489@630^t^S257^T^N1^S0000001@114490@630^t^S255^T^N1^S0000001@114488@630^t^S64^T^N1^S0000001@114489@630^t^S268^T^N1^S0000001@114492@630^t^S72^T^N1^S0000001@114491@630^t^S71^T^N1^S0000001@114491@630^t^S264^T^N1^S0000001@114490@630^t^S258^T^N1^S0000001@114489@630^t^S269^T^N1^S0000001@114488@630^t^S267^T^N1^S0000001@114489@630^t^S263^T^N1^S0000001@114488@630^t^t^^",
["127780"] = "^1^T^S*^T^N1^S0000001@124575@650^t^t^^",
- ["114071"] = "^1^T^S*^T^N1^S0000001@114443@630^N2^S0000001@114442@630^N3^S0000001@114441@630^N4^S0000001@114440@630^t^t^^",
["114082"] = "^1^T^S*^T^N1^S0000001@114496@645^N2^S0000001@114495@645^N3^S0000001@114494@645^N4^S0000001@114493@645^t^t^^",
- ["114059"] = "^1^T^S*^T^N1^S0000001@114382@615^N2^S0000001@114381@615^N3^S0000001@114380@615^N4^S0000001@114379@615^t^t^^",
- ["127818"] = "^1^T^S*^T^N1^S0000001@124574@650^t^t^^",
- ["123858"] = "^1^T^S*^T^N1^S0056522@122273@1^N2^S0043260@122272@1^N3^S0027344@118354@1^N4^S0000211@140590@100^t^t^^",
- ["118530"] = "^1^T^S262^T^N1^S0000173@113859@655^N2^S0000124@113835@655^N3^S0000049@113653@655^t^S65^T^N1^S0000073@113854@655^N2^S0000070@113842@655^N3^S0000049@113653@655^t^S266^T^N1^S0000173@113859@655^N2^S0000124@113835@655^t^S261^T^N1^S0000127@113853@655^N2^S0000115@113612@655^t^S269^T^N1^S0000127@113853@655^N2^S0000115@113612@655^t^S265^T^N1^S0000173@113859@655^N2^S0000124@113835@655^t^S104^T^N1^S0000084@113861@655^N2^S0000077@113650@655^N3^S0000048@113834@655^t^S71^T^N1^S0000115@113645@655^N2^S0000086@113658@655^t^S63^T^N1^S0000173@113859@655^N2^S0000124@113835@655^t^S260^T^N1^S0000127@113853@655^N2^S0000115@113612@655^t^S103^T^N1^S0000127@113853@655^N2^S0000115@113612@655^t^S267^T^N1^S0000173@113859@655^N2^S0000124@113835@655^t^S66^T^N1^S0000084@113861@655^N2^S0000079@113666@655^N3^S0000077@113650@655^N4^S0000048@113834@655^t^S256^T^N1^S0000073@113854@655^N2^S0000070@113842@655^t^S*^T^N1^S0000307@113846@655^N2^S0000206@113604@655^N3^S0000200@113600@655^N4^S0000192@113643@655^N5^S0000187@113840@655^N6^S0000179@113656@655^N7^S0000179@113595@655^N8^S0000172@113829@655^N9^S0000163@113647@655^N10^S0000161@113845@655^N11^S0000159@113633@655^N12^S0000158@113657@655^N13^S0000156@113662@655^N14^S0000154@113660@655^N15^S0000154@113596@655^N16^S0000153@113828@655^N17^S0000152@113849@655^N18^S0000152@113843@655^N19^S0000151@113855@655^N20^S0000148@113860@655^N21^S0000148@113844@655^N22^S0000146@113826@655^N23^S0000145@113858@655^N24^S0000144@113641@655^N25^S0000143@113602@655^N26^S0000142@113632@655^N27^S0000141@113841@655^N28^S0000141@113593@655^N29^S0000140@113831@655^N30^S0000139@113833@655^N31^S0000138@113611@655^N32^S0000128@113649@655^N33^S0000124@113852@655^N34^S0000122@113851@655^N35^S0000122@113651@655^N36^S0000121@113850@655^N37^S0000119@113634@655^N38^S0000119@113599@655^N39^S0000118@113642@655^N40^S0000116@113644@655^N41^S0000114@113847@655^N42^S0000112@113648@655^N43^S0000111@113638@655^N44^S0000110@113610@655^N45^S0000109@113659@655^N46^S0000109@113609@655^N47^S0000107@113839@655^N48^S0000107@113654@655^N49^S0000106@113661@655^N50^S0000104@113664@655^N51^S0000102@113646@655^N52^S0000101@113856@655^N53^S0000101@113608@655^N54^S0000099@113827@655^N55^S0000098@113655@655^N56^S0000094@113598@655^N57^S0000093@113832@655^N58^S0000087@113637@655^N59^S0000086@113601@655^N60^S0000084@113636@655^N61^S0000071@113605@655^N62^S0000065@113830@655^t^S270^T^N1^S0000073@113854@655^N2^S0000070@113842@655^t^S251^T^N1^S0000115@113645@655^N2^S0000086@113658@655^t^S259^T^N1^S0000127@113853@655^N2^S0000115@113612@655^t^S257^T^N1^S0000073@113854@655^N2^S0000070@113842@655^t^S264^T^N1^S0000073@113854@655^N2^S0000070@113842@655^N3^S0000049@113653@655^t^S255^T^N1^S0000127@113853@655^N2^S0000115@113612@655^t^S254^T^N1^S0000127@113853@655^N2^S0000115@113612@655^t^S105^T^N1^S0000073@113854@655^N2^S0000070@113842@655^t^S102^T^N1^S0000173@113859@655^N2^S0000124@113835@655^t^S252^T^N1^S0000115@113645@655^N2^S0000086@113658@655^t^S258^T^N1^S0000173@113859@655^N2^S0000124@113835@655^t^S62^T^N1^S0000173@113859@655^N2^S0000124@113835@655^t^S250^T^N1^S0000084@113861@655^N2^S0000077@113650@655^N3^S0000048@113834@655^t^S64^T^N1^S0000173@113859@655^N2^S0000124@113835@655^t^S268^T^N1^S0000084@113861@655^N2^S0000077@113650@655^N3^S0000048@113834@655^t^S253^T^N1^S0000127@113853@655^N2^S0000115@113612@655^t^S581^T^N1^S0000084@113861@655^N2^S0000077@113650@655^N3^S0000048@113834@655^t^S73^T^N1^S0000084@113861@655^N2^S0000079@113666@655^N3^S0000077@113650@655^N4^S0000048@113834@655^t^S577^T^N1^S0000127@113853@655^N2^S0000115@113612@655^t^S70^T^N1^S0000115@113645@655^N2^S0000086@113658@655^t^S72^T^N1^S0000115@113645@655^N2^S0000086@113658@655^t^S263^T^N1^S0000127@113853@655^N2^S0000115@113612@655^t^t^^",
- ["127806"] = "^1^T^S*^T^N1^S0000001@124578@650^t^t^^",
- ["114094"] = "^1^T^S*^T^N1^S0000001@114313@570^N2^S0000001@114312@570^N3^S0000001@114311@570^N4^S0000001@114310@570^t^t^^",
- ["114070"] = "^1^T^S*^T^N1^S0000001@114439@630^N2^S0000001@114438@630^N3^S0000001@114437@630^N4^S0000001@114436@630^t^t^^",
- ["114063"] = "^1^T^S*^T^N1^S0000001@114398@615^N2^S0000001@114397@615^N3^S0000001@114396@615^N4^S0000001@114395@615^t^t^^",
- ["114099"] = "^1^T^S*^T^N1^S0000001@114333@580^N2^S0000001@114332@580^N3^S0000001@114331@580^N4^S0000001@114330@580^t^t^^",
- ["128319"] = "^1^T^S*^T^N1^S0010063@128318@605^t^t^^",
- ["118193"] = "^1^T^S*^T^N1^S0029828@118191@100^t^t^^",
- ["127855"] = "^1^T^S262^T^N1^S0000101@124227@690^N2^S0000084@124229@695^N3^S0000034@124228@690^N4^S0000033@124230@700^t^S65^T^N1^S0000085@124234@700^N2^S0000038@124232@695^N3^S0000030@124233@695^t^S266^T^N1^S0000101@124227@690^N2^S0000084@124229@695^N3^S0000034@124228@690^N4^S0000033@124230@700^t^S261^T^N1^S0000121@124224@690^N2^S0000046@124223@690^N3^S0000035@124226@700^N4^S0000025@124225@695^t^S269^T^N1^S0000121@124224@690^N2^S0000046@124223@690^N3^S0000035@124226@700^N4^S0000025@124225@695^t^S265^T^N1^S0000101@124227@690^N2^S0000084@124229@695^N3^S0000034@124228@690^t^S264^T^N1^S0000085@124234@700^N2^S0000038@124232@695^N3^S0000030@124233@695^t^S105^T^N1^S0000085@124234@700^N2^S0000038@124232@695^N3^S0000030@124233@695^t^S63^T^N1^S0000101@124227@690^N2^S0000084@124229@695^N3^S0000034@124228@690^N4^S0000033@124230@700^t^S260^T^N1^S0000121@124224@690^N2^S0000046@124223@690^N3^S0000035@124226@700^N4^S0000025@124225@695^t^S103^T^N1^S0000121@124224@690^N2^S0000046@124223@690^N3^S0000035@124226@700^N4^S0000025@124225@695^t^S267^T^N1^S0000101@124227@690^N2^S0000084@124229@695^N3^S0000034@124228@690^N4^S0000033@124230@700^t^S252^T^N1^S0000065@124237@700^N2^S0000026@124238@700^N3^S0000026@124235@690^N4^S0000019@124236@695^t^S256^T^N1^S0000085@124234@700^N2^S0000038@124232@695^N3^S0000030@124233@695^t^S*^T^N1^S0000196@124147@700^N2^S0000155@124212@700^N3^S0000129@124286@695^N4^S0000128@124136@690^N5^S0000123@124202@695^N6^S0000122@124192@700^N7^S0000117@124175@695^N8^S0000112@124321@695^N9^S0000104@124222@705^N10^S0000104@124213@690^N11^S0000102@124217@690^N12^S0000099@124391@695^N13^S0000096@124331@695^N14^S0000093@124305@695^N15^S0000093@124193@690^N16^S0000092@124138@700^N17^S0000090@124326@700^N18^S0000088@124204@700^N19^S0000087@124220@690^N20^S0000087@124183@690^N21^S0000085@124187@690^N22^S0000083@124211@690^N23^S0000082@124174@690^N24^S0000082@124133@690^N25^S0000081@124347@690^N26^S0000079@124314@700^N27^S0000079@124251@700^N28^S0000079@124196@690^N29^S0000079@124135@700^N30^S0000078@124190@690^N31^S0000076@124287@700^N32^S0000074@124249@690^N33^S0000074@124168@690^N34^S0000073@124181@700^N35^S0000072@124349@700^N36^S0000069@124153@700^N37^S0000068@124203@700^N38^S0000068@124163@690^N39^S0000068@124141@695^N40^S0000067@124189@700^N41^S0000067@124152@695^N42^S0000066@124343@705^N43^S0000066@124280@700^N44^S0000065@124137@695^N45^S0000064@124348@695^N46^S0000064@124330@695^N47^S0000064@124209@700^N48^S0000062@124299@690^N49^S0000062@124291@705^N50^S0000062@124199@700^N51^S0000062@124151@690^N52^S0000061@124322@705^N53^S0000061@124259@695^N54^S0000060@124245@695^N55^S0000059@124337@700^N56^S0000059@124215@700^N57^S0000059@124214@700^N58^S0000058@124180@690^N59^S0000057@124315@690^N60^S0000057@124310@700^N61^S0000055@124351@690^N62^S0000055@124157@695^N63^S0000054@124210@705^N64^S0000053@124306@700^N65^S0000053@124298@690^N66^S0000053@124186@700^N67^S0000052@124258@690^N68^S0000052@124146@695^N69^S0000051@124140@695^N70^S0000051@124139@690^N71^S0000049@124243@690^N72^S0000048@124218@695^N73^S0000047@124341@690^N74^S0000047@124275@695^N75^S0000047@124191@695^N76^S0000046@124300@700^N77^S0000046@124200@705^N78^S0000046@124169@695^N79^S0000045@124279@695^N80^S0000044@124353@700^N81^S0000044@124184@690^N82^S0000044@124134@695^N83^S0000043@124352@695^N84^S0000043@124324@690^N85^S0000043@124201@690^N86^S0000042@124176@705^N87^S0000041@124270@690^N88^S0000041@124198@695^N89^S0000040@124325@695^N90^S0000040@124188@695^N91^S0000040@124170@695^N92^S0000037@124290@695^N93^S0000037@124195@700^N94^S0000037@124194@695^N95^S0000037@124145@690^N96^S0000035@124271@690^N97^S0000035@124250@695^N98^S0000034@124342@695^N99^S0000034@124265@700^N100^S0000034@124164@700^N101^S0000033@140590@100^N102^S0000033@124313@695^N103^S0000032@124336@690^N104^S0000031@124289@690^N105^S0000031@124185@695^N106^S0000031@124158@700^N107^S0000029@124309@690^N108^S0000028@124335@690^N109^S0000028@124285@690^N110^S0000028@124260@700^N111^S0000028@124221@695^N112^S0000028@124144@705^N113^S0000027@124304@690^N114^S0000026@124312@690^N115^S0000026@124253@690^N116^S0000025@124294@695^N117^S0000025@124142@690^N118^S0000023@124216@690^N119^S0000023@124159@705^N120^S0000022@124316@695^N121^S0000021@124283@700^N122^S0000021@124197@695^N123^S0000020@124254@705^N124^S0000019@124295@700^N125^S0000019@124282@695^N126^S0000019@124244@695^N127^S0000019@124132@690^N128^S0000018@124207@690^N129^S0000017@124281@695^N130^S0000017@124219@700^N131^S0000016@124266@700^N132^S0000015@124208@695^N133^S0000013@124264@690^t^S268^T^N1^S0000036@124241@695^N2^S0000013@124239@690^t^S270^T^N1^S0000085@124234@700^N2^S0000038@124232@695^N3^S0000030@124233@695^t^S259^T^N1^S0000121@124224@690^N2^S0000046@124223@690^N3^S0000035@124226@700^N4^S0000025@124225@695^t^S581^T^N1^S0000036@124241@695^N2^S0000013@124239@690^t^S102^T^N1^S0000101@124227@690^N2^S0000084@124229@695^N3^S0000034@124228@690^N4^S0000033@124230@700^t^S255^T^N1^S0000121@124224@690^N2^S0000046@124223@690^N3^S0000035@124226@700^N4^S0000025@124225@695^t^S254^T^N1^S0000121@124224@690^N2^S0000046@124223@690^N3^S0000035@124226@700^t^S66^T^N1^S0000036@124241@695^N2^S0000013@124239@690^t^S104^T^N1^S0000036@124241@695^N2^S0000013@124239@690^t^S73^T^N1^S0000036@124241@695^N2^S0000013@124239@690^t^S258^T^N1^S0000101@124227@690^N2^S0000084@124229@695^N3^S0000034@124228@690^N4^S0000033@124230@700^t^S62^T^N1^S0000101@124227@690^N2^S0000084@124229@695^N3^S0000034@124228@690^N4^S0000033@124230@700^t^S250^T^N1^S0000036@124241@695^N2^S0000013@124239@690^t^S64^T^N1^S0000101@124227@690^N2^S0000084@124229@695^N3^S0000034@124228@690^N4^S0000033@124230@700^t^S251^T^N1^S0000065@124237@700^N2^S0000026@124235@690^N3^S0000026@124238@700^N4^S0000019@124236@695^t^S253^T^N1^S0000121@124224@690^N2^S0000046@124223@690^N3^S0000035@124226@700^t^S72^T^N1^S0000065@124237@700^N2^S0000026@124235@690^N3^S0000026@124238@700^N4^S0000019@124236@695^t^S71^T^N1^S0000065@124237@700^N2^S0000026@124235@690^N3^S0000026@124238@700^N4^S0000019@124236@695^t^S577^T^N1^S0000121@124224@690^N2^S0000046@124223@690^N3^S0000035@124226@700^N4^S0000025@124225@695^t^S257^T^N1^S0000085@124234@700^N2^S0000038@124232@695^N3^S0000030@124233@695^t^S70^T^N1^S0000065@124237@700^N2^S0000026@124235@690^N3^S0000026@124238@700^N4^S0000019@124236@695^t^S263^T^N1^S0000121@124224@690^N2^S0000046@124223@690^N3^S0000035@124226@700^N4^S0000025@124225@695^t^t^^",
- ["127854"] = "^1^T^S262^T^N1^S0000190@124227@690^N2^S0000134@124228@690^N3^S0000090@124229@695^N4^S0000084@124230@700^t^S65^T^N1^S0000083@124232@695^N2^S0000074@124233@695^N3^S0000070@124234@700^N4^S0000069@124231@690^t^S266^T^N1^S0000190@124227@690^N2^S0000134@124228@690^N3^S0000090@124229@695^N4^S0000084@124230@700^t^S261^T^N1^S0000162@124226@700^N2^S0000076@124224@690^N3^S0000075@124225@695^N4^S0000064@124223@690^t^S269^T^N1^S0000162@124226@700^N2^S0000076@124224@690^N3^S0000075@124225@695^N4^S0000064@124223@690^t^S265^T^N1^S0000190@124227@690^N2^S0000134@124228@690^N3^S0000090@124229@695^t^S104^T^N1^S0000152@124239@690^N2^S0000099@124241@695^N3^S0000065@124242@700^N4^S0000051@124240@695^t^S71^T^N1^S0000119@124237@700^N2^S0000069@124235@690^N3^S0000052@124236@695^N4^S0000050@124238@700^t^S63^T^N1^S0000190@124227@690^N2^S0000134@124228@690^N3^S0000090@124229@695^N4^S0000084@124230@700^t^S260^T^N1^S0000162@124226@700^N2^S0000076@124224@690^N3^S0000075@124225@695^N4^S0000064@124223@690^t^S263^T^N1^S0000162@124226@700^N2^S0000076@124224@690^N3^S0000075@124225@695^N4^S0000064@124223@690^t^S267^T^N1^S0000190@124227@690^N2^S0000134@124228@690^N3^S0000090@124229@695^N4^S0000084@124230@700^t^S252^T^N1^S0000119@124237@700^N2^S0000069@124235@690^N3^S0000052@124236@695^N4^S0000050@124238@700^t^S256^T^N1^S0000083@124232@695^N2^S0000074@124233@695^N3^S0000070@124234@700^N4^S0000069@124231@690^t^S*^T^N1^S0000288@124190@690^N2^S0000213@124220@690^N3^S0000194@124251@700^N4^S0000184@124200@705^N5^S0000183@124285@690^N6^S0000176@124152@695^N7^S0000175@124192@700^N8^S0000169@124201@690^N9^S0000166@124222@705^N10^S0000165@124136@690^N11^S0000161@124279@695^N12^S0000161@124132@690^N13^S0000159@124151@690^N14^S0000159@124146@695^N15^S0000158@124134@695^N16^S0000157@124186@700^N17^S0000152@124204@700^N18^S0000151@124336@690^N19^S0000151@124202@695^N20^S0000150@124321@695^N21^S0000150@124221@695^N22^S0000149@124213@690^N23^S0000149@124208@695^N24^S0000147@124243@690^N25^S0000146@124330@695^N26^S0000144@124335@690^N27^S0000142@124348@695^N28^S0000141@124391@695^N29^S0000140@124300@700^N30^S0000137@124140@695^N31^S0000134@124159@705^N32^S0000133@124326@700^N33^S0000133@124316@695^N34^S0000133@124188@695^N35^S0000133@124135@700^N36^S0000131@124331@695^N37^S0000128@124310@700^N38^S0000128@124174@690^N39^S0000127@124194@695^N40^S0000127@124133@690^N41^S0000125@124299@690^N42^S0000124@124260@700^N43^S0000124@124169@695^N44^S0000123@124158@700^N45^S0000123@124143@695^N46^S0000123@124137@695^N47^S0000122@124207@690^N48^S0000121@124215@700^N49^S0000121@124176@705^N50^S0000120@124212@700^N51^S0000117@124324@690^N52^S0000117@124211@690^N53^S0000115@124325@695^N54^S0000115@124320@690^N55^S0000115@124170@695^N56^S0000113@124352@695^N57^S0000113@124289@690^N58^S0000113@124191@695^N59^S0000112@124343@705^N60^S0000112@124281@695^N61^S0000111@124199@700^N62^S0000111@124147@700^N63^S0000109@124353@700^N64^S0000109@124341@690^N65^S0000109@124337@700^N66^S0000109@124313@695^N67^S0000108@124322@705^N68^S0000106@124258@690^N69^S0000106@124214@700^N70^S0000105@124270@690^N71^S0000103@124342@695^N72^S0000103@124203@700^N73^S0000102@124280@700^N74^S0000101@124315@690^N75^S0000100@124351@690^N76^S0000100@124304@690^N77^S0000100@124275@695^N78^S0000100@124218@695^N79^S0000100@124187@690^N80^S0000100@124138@700^N81^S0000097@124210@705^N82^S0000097@124153@700^N83^S0000096@124291@705^N84^S0000095@124287@700^N85^S0000095@124184@690^N86^S0000095@124139@690^N87^S0000094@124295@700^N88^S0000094@124283@700^N89^S0000094@124185@695^N90^S0000094@124181@700^N91^S0000094@124180@690^N92^S0000092@124209@700^N93^S0000092@124183@690^N94^S0000091@124189@700^N95^S0000091@124141@695^N96^S0000088@124286@695^N97^S0000088@124259@695^N98^S0000087@124278@690^N99^S0000087@124264@690^N100^S0000085@124347@690^N101^S0000084@124175@695^N102^S0000084@124164@700^N103^S0000083@124266@700^N104^S0000082@124309@690^N105^S0000082@124298@690^N106^S0000082@124168@690^N107^S0000082@124163@690^N108^S0000081@124314@700^N109^S0000080@124249@690^N110^S0000079@124312@690^N111^S0000078@124305@695^N112^S0000077@124290@695^N113^S0000076@124276@705^N114^S0000076@124244@695^N115^S0000076@124219@700^N116^S0000072@124250@695^N117^S0000071@124271@690^N118^S0000071@124253@690^N119^S0000071@124193@690^N120^S0000071@124142@690^N121^S0000067@124306@700^N122^S0000066@124349@700^N123^S0000066@124217@690^N124^S0000066@124145@690^N125^S0000064@124197@695^N126^S0000060@124282@695^N127^S0000060@124265@700^N128^S0000058@124196@690^N129^S0000058@124144@705^N130^S0000056@124216@690^N131^S0000054@124198@695^N132^S0000052@124294@695^N133^S0000045@124245@695^N134^S0000043@124254@705^N135^S0000042@124157@695^N136^S0000041@124195@700^t^S270^T^N1^S0000083@124232@695^N2^S0000074@124233@695^N3^S0000070@124234@700^N4^S0000069@124231@690^t^S251^T^N1^S0000119@124237@700^N2^S0000069@124235@690^N3^S0000052@124236@695^N4^S0000050@124238@700^t^S259^T^N1^S0000162@124226@700^N2^S0000076@124224@690^N3^S0000075@124225@695^N4^S0000064@124223@690^t^S257^T^N1^S0000083@124232@695^N2^S0000074@124233@695^N3^S0000070@124234@700^N4^S0000069@124231@690^t^S264^T^N1^S0000083@124232@695^N2^S0000074@124233@695^N3^S0000070@124234@700^N4^S0000069@124231@690^t^S255^T^N1^S0000162@124226@700^N2^S0000076@124224@690^N3^S0000075@124225@695^N4^S0000064@124223@690^t^S254^T^N1^S0000162@124226@700^N2^S0000076@124224@690^N3^S0000064@124223@690^t^S105^T^N1^S0000083@124232@695^N2^S0000074@124233@695^N3^S0000070@124234@700^N4^S0000069@124231@690^t^S102^T^N1^S0000190@124227@690^N2^S0000134@124228@690^N3^S0000090@124229@695^N4^S0000084@124230@700^t^S66^T^N1^S0000152@124239@690^N2^S0000099@124241@695^N3^S0000065@124242@700^N4^S0000051@124240@695^t^S258^T^N1^S0000190@124227@690^N2^S0000134@124228@690^N3^S0000090@124229@695^N4^S0000084@124230@700^t^S62^T^N1^S0000190@124227@690^N2^S0000134@124228@690^N3^S0000090@124229@695^N4^S0000084@124230@700^t^S250^T^N1^S0000152@124239@690^N2^S0000099@124241@695^N3^S0000065@124242@700^N4^S0000051@124240@695^t^S64^T^N1^S0000190@124227@690^N2^S0000134@124228@690^N3^S0000090@124229@695^N4^S0000084@124230@700^t^S268^T^N1^S0000152@124239@690^N2^S0000099@124241@695^N3^S0000065@124242@700^N4^S0000051@124240@695^t^S253^T^N1^S0000162@124226@700^N2^S0000076@124224@690^N3^S0000064@124223@690^t^S72^T^N1^S0000119@124237@700^N2^S0000069@124235@690^N3^S0000052@124236@695^N4^S0000050@124238@700^t^S581^T^N1^S0000152@124239@690^N2^S0000099@124241@695^N3^S0000065@124242@700^N4^S0000051@124240@695^t^S577^T^N1^S0000162@124226@700^N2^S0000076@124224@690^N3^S0000075@124225@695^N4^S0000064@124223@690^t^S70^T^N1^S0000119@124237@700^N2^S0000069@124235@690^N3^S0000052@124236@695^N4^S0000050@124238@700^t^S73^T^N1^S0000152@124239@690^N2^S0000099@124241@695^N3^S0000065@124242@700^N4^S0000051@124240@695^t^S103^T^N1^S0000162@124226@700^N2^S0000076@124224@690^N3^S0000075@124225@695^N4^S0000064@124223@690^t^t^^",
- ["127792"] = "^1^T^S*^T^N1^S0000001@124572@650^t^t^^",
- ["127796"] = "^1^T^S*^T^N1^S0000001@124588@650^t^t^^",
- ["114075"] = "^1^T^S*^T^N1^S0000001@114459@630^N2^S0000001@114458@630^N3^S0000001@114457@630^N4^S0000001@114456@630^t^t^^",
- ["127823"] = "^1^T^S*^T^N1^S0000001@124594@650^t^t^^",
- ["114053"] = "^1^T^S*^T^N1^S0000001@112812@512^N2^S0000001@112811@512^N3^S0000001@112810@512^N4^S0000001@112809@512^t^t^^",
- ["114057"] = "^1^T^S*^T^N1^S0000001@114374@615^N2^S0000001@114373@615^N3^S0000001@114372@615^N4^S0000001@114371@615^t^t^^",
- ["127822"] = "^1^T^S*^T^N1^S0000001@124590@650^t^t^^",
+ ["120302"] = "^1^T^S*^T^N1^S0000001@114131@1^N2^S0000001@114129@1^N3^S0000001@114128@1^t^t^^",
["127810"] = "^1^T^S*^T^N1^S0000001@124593@650^t^t^^",
- ["114097"] = "^1^T^S*^T^N1^S0000001@114325@590^N2^S0000001@114324@590^N3^S0000001@114323@590^N4^S0000001@114322@590^t^t^^",
["127784"] = "^1^T^S*^T^N1^S0000001@124591@650^t^t^^",
- ["120301"] = "^1^T^S*^T^N1^S0000001@114822@1^N2^S0000001@114808@1^N3^S0000001@114745@1^t^t^^",
- ["114105"] = "^1^T^S262^T^N1^S0000001@114367@600^t^S65^T^N1^S0000001@114368@600^t^S266^T^N1^S0000001@114367@600^t^S261^T^N1^S0000001@114366@600^t^S269^T^N1^S0000001@114366@600^t^S265^T^N1^S0000001@114367@600^t^S264^T^N1^S0000001@114368@600^t^S105^T^N1^S0000001@114368@600^t^S63^T^N1^S0000001@114367@600^t^S260^T^N1^S0000001@114366@600^t^S263^T^N1^S0000001@114366@600^t^S267^T^N1^S0000001@114367@600^t^S252^T^N1^S0000001@114369@600^t^S256^T^N1^S0000001@114368@600^t^S268^T^N1^S0000001@114370@600^t^S270^T^N1^S0000001@114368@600^t^S259^T^N1^S0000001@114366@600^t^S581^T^N1^S0000001@114370@600^t^S73^T^N1^S0000001@114370@600^t^S255^T^N1^S0000001@114366@600^t^S254^T^N1^S0000001@114366@600^t^S66^T^N1^S0000001@114370@600^t^S104^T^N1^S0000001@114370@600^t^S102^T^N1^S0000001@114367@600^t^S258^T^N1^S0000001@114367@600^t^S62^T^N1^S0000001@114367@600^t^S250^T^N1^S0000001@114370@600^t^S64^T^N1^S0000001@114367@600^t^S251^T^N1^S0000001@114369@600^t^S253^T^N1^S0000001@114366@600^t^S72^T^N1^S0000001@114369@600^t^S71^T^N1^S0000001@114369@600^t^S577^T^N1^S0000001@114366@600^t^S257^T^N1^S0000001@114368@600^t^S70^T^N1^S0000001@114369@600^t^S103^T^N1^S0000001@114366@600^t^t^^",
- ["127797"] = "^1^T^S*^T^N1^S0000001@124592@650^t^t^^",
+ ["114052"] = "^1^T^S*^T^N1^S0000001@112802@519^N2^S0000001@112801@519^N3^S0000001@112800@519^N4^S0000001@112799@519^N5^S0000001@112798@519^t^t^^",
+ ["114101"] = "^1^T^S*^T^N1^S0000001@114341@530^N2^S0000001@114340@530^N3^S0000001@114339@530^N4^S0000001@114338@530^t^t^^",
["127793"] = "^1^T^S*^T^N1^S0000001@124576@650^t^t^^",
- ["114080"] = "^1^T^S262^T^N1^S0000001@114489@630^t^S65^T^N1^S0000001@114490@630^t^S266^T^N1^S0000001@114489@630^t^S261^T^N1^S0000001@114488@630^t^S269^T^N1^S0000001@114488@630^t^S265^T^N1^S0000001@114489@630^t^S264^T^N1^S0000001@114490@630^t^S105^T^N1^S0000001@114490@630^t^S63^T^N1^S0000001@114489@630^t^S260^T^N1^S0000001@114488@630^t^S263^T^N1^S0000001@114488@630^t^S267^T^N1^S0000001@114489@630^t^S252^T^N1^S0000001@114491@630^t^S256^T^N1^S0000001@114490@630^t^S268^T^N1^S0000001@114492@630^t^S270^T^N1^S0000001@114490@630^t^S259^T^N1^S0000001@114488@630^t^S581^T^N1^S0000001@114492@630^t^S73^T^N1^S0000001@114492@630^t^S255^T^N1^S0000001@114488@630^t^S254^T^N1^S0000001@114488@630^t^S66^T^N1^S0000001@114492@630^t^S104^T^N1^S0000001@114492@630^t^S102^T^N1^S0000001@114489@630^t^S258^T^N1^S0000001@114489@630^t^S62^T^N1^S0000001@114489@630^t^S250^T^N1^S0000001@114492@630^t^S64^T^N1^S0000001@114489@630^t^S70^T^N1^S0000001@114491@630^t^S253^T^N1^S0000001@114488@630^t^S251^T^N1^S0000001@114491@630^t^S72^T^N1^S0000001@114491@630^t^S577^T^N1^S0000001@114488@630^t^S257^T^N1^S0000001@114490@630^t^S71^T^N1^S0000001@114491@630^t^S103^T^N1^S0000001@114488@630^t^t^^",
- ["127809"] = "^1^T^S*^T^N1^S0000001@124589@650^t^t^^",
- ["115510"] = "^1^T^S*^T^N1^S0000001@115509@700^t^t^^",
- ["128391"] = "^1^T^S*^T^N1^S0002168@128106@685^N2^S0001966@128188@685^N3^S0001892@128177@685^N4^S0001868@128154@685^N5^S0001854@128149@685^N6^S0001785@128104@685^N7^S0001774@128117@685^N8^S0001754@128150@685^N9^S0001699@128151@685^N10^S0001663@128181@685^N11^S0001642@128057@685^N12^S0001594@128171@685^N13^S0001504@128123@685^N14^S0001483@128032@685^N15^S0001460@128107@685^N16^S0001380@128052@685^N17^S0001373@128152@685^N18^S0001341@128069@685^N19^S0001317@128134@685^N20^S0001315@128135@685^N21^S0001276@128139@685^N22^S0001233@128045@685^N23^S0001219@128059@685^N24^S0001215@128103@685^N25^S0001196@128153@685^N26^S0001194@128130@685^N27^S0001181@128108@685^N28^S0001179@128037@685^N29^S0001177@128127@685^N30^S0001154@128129@685^N31^S0001136@128120@685^N32^S0001131@128039@685^N33^S0001126@128297@685^N34^S0001114@128136@685^N35^S0001107@128054@685^N36^S0001090@128124@685^N37^S0001089@128079@685^N38^S0001060@128128@685^N39^S0001048@128044@685^N40^S0001037@128148@685^N41^S0001037@128121@685^N42^S0001031@128048@685^N43^S0001030@128125@685^N44^S0001018@128131@685^N45^S0001008@128034@685^N46^S0000988@128143@685^N47^S0000987@128072@685^N48^S0000978@128137@685^N49^S0000978@128064@685^N50^S0000973@128138@685^N51^S0000958@128170@685^N52^S0000942@128056@685^N53^S0000941@128090@685^N54^S0000883@128080@685^N55^S0000860@128122@685^N56^S0000846@128126@685^N57^S0000814@128133@685^N58^S0000762@128132@685^t^S253^T^N1^S0000597@128194@685^t^S254^T^N1^S0000597@128194@685^t^t^^",
- ["122485"] = "^1^T^S262^T^N1^S0000108@113984@670^N2^S0000101@113948@670^N3^S0000074@119194@670^t^S65^T^N1^S0000050@113986@670^N2^S0000036@119192@670^N3^S0000031@113889@670^t^S266^T^N1^S0000108@113984@670^N2^S0000101@113948@670^N3^S0000074@119194@670^t^S261^T^N1^S0000116@113931@670^N2^S0000116@118114@670^N3^S0000104@113985@670^t^S269^T^N1^S0000116@113931@670^N2^S0000116@118114@670^N3^S0000104@113985@670^t^S265^T^N1^S0000108@113984@670^N2^S0000101@113948@670^N3^S0000074@119194@670^t^S104^T^N1^S0000077@113987@670^N2^S0000057@113893@670^N3^S0000048@113905@670^t^S71^T^N1^S0000071@119193@670^N2^S0000056@113969@670^N3^S0000045@113983@670^t^S63^T^N1^S0000108@113984@670^N2^S0000101@113948@670^N3^S0000074@119194@670^t^S260^T^N1^S0000116@113931@670^N2^S0000116@118114@670^N3^S0000104@113985@670^t^S263^T^N1^S0000116@118114@670^N2^S0000116@113931@670^N3^S0000104@113985@670^t^S267^T^N1^S0000108@113984@670^N2^S0000101@113948@670^N3^S0000074@119194@670^t^S252^T^N1^S0000071@119193@670^N2^S0000056@113969@670^N3^S0000045@113983@670^t^S256^T^N1^S0000050@113986@670^N2^S0000036@119192@670^N3^S0000031@113889@670^t^S*^T^N1^S0000179@113947@670^N2^S0000167@113887@670^N3^S0000166@113906@670^N4^S0000157@113923@670^N5^S0000154@113884@670^N6^S0000152@113892@670^N7^S0000152@113870@670^N8^S0000143@113990@670^N9^S0000143@113977@670^N10^S0000142@113881@670^N11^S0000141@113883@670^N12^S0000131@113925@670^N13^S0000128@113871@670^N14^S0000127@113962@670^N15^S0000122@113896@670^N16^S0000121@113933@670^N17^S0000121@113903@670^N18^S0000121@113876@670^N19^S0000120@113941@670^N20^S0000120@113936@670^N21^S0000120@113890@670^N22^S0000119@113937@670^N23^S0000118@113895@670^N24^S0000116@113975@670^N25^S0000116@113894@670^N26^S0000113@113942@670^N27^S0000110@113924@670^N28^S0000109@120078@670^N29^S0000109@113873@670^N30^S0000106@113971@670^N31^S0000105@113976@670^N32^S0000104@113961@670^N33^S0000104@113917@670^N34^S0000103@113958@670^N35^S0000102@113989@670^N36^S0000102@113967@670^N37^S0000102@113872@670^N38^S0000100@113950@670^N39^S0000095@113952@670^N40^S0000094@113864@670^N41^S0000092@113928@670^N42^S0000091@113910@670^N43^S0000088@113968@670^N44^S0000086@113982@670^N45^S0000086@113978@670^N46^S0000083@113921@670^N47^S0000082@113954@670^N48^S0000082@113945@670^N49^S0000081@113908@670^N50^S0000080@113940@670^N51^S0000079@113929@670^N52^S0000079@113868@670^N53^S0000078@113964@670^N54^S0000078@113866@670^N55^S0000076@113981@670^N56^S0000075@113957@670^N57^S0000075@113951@670^N58^S0000075@113898@670^N59^S0000075@113877@670^N60^S0000074@113949@670^N61^S0000074@113880@670^N62^S0000072@113974@670^N63^S0000072@113972@670^N64^S0000072@113970@670^N65^S0000072@113956@670^N66^S0000070@113922@670^N67^S0000070@113863@670^N68^S0000069@113935@670^N69^S0000069@113901@670^N70^S0000068@113916@670^N71^S0000068@113915@670^N72^S0000066@113867@670^N73^S0000065@113914@670^N74^S0000065@113900@670^N75^S0000065@113891@670^N76^S0000064@113907@670^N77^S0000061@113944@670^N78^S0000061@113943@670^N79^S0000061@113919@670^N80^S0000059@113955@670^N81^S0000058@113875@670^N82^S0000057@113899@670^N83^S0000057@113878@670^N84^S0000055@113902@670^N85^S0000052@113963@670^N86^S0000051@113888@670^N87^S0000050@113930@670^N88^S0000040@113938@670^t^S270^T^N1^S0000050@113986@670^N2^S0000036@119192@670^N3^S0000031@113889@670^t^S251^T^N1^S0000071@119193@670^N2^S0000056@113969@670^N3^S0000045@113983@670^t^S259^T^N1^S0000116@113931@670^N2^S0000116@118114@670^N3^S0000104@113985@670^t^S257^T^N1^S0000050@113986@670^N2^S0000036@119192@670^N3^S0000031@113889@670^t^S264^T^N1^S0000050@113986@670^N2^S0000036@119192@670^N3^S0000031@113889@670^t^S255^T^N1^S0000116@113931@670^N2^S0000116@118114@670^N3^S0000104@113985@670^t^S254^T^N1^S0000116@113931@670^N2^S0000116@118114@670^N3^S0000104@113985@670^t^S105^T^N1^S0000050@113986@670^N2^S0000036@119192@670^N3^S0000031@113889@670^t^S102^T^N1^S0000108@113984@670^N2^S0000101@113948@670^N3^S0000074@119194@670^t^S66^T^N1^S0000077@113987@670^N2^S0000057@113893@670^N3^S0000048@113905@670^t^S258^T^N1^S0000108@113984@670^N2^S0000101@113948@670^N3^S0000074@119194@670^t^S62^T^N1^S0000108@113984@670^N2^S0000101@113948@670^N3^S0000074@119194@670^t^S250^T^N1^S0000077@113987@670^N2^S0000057@113893@670^N3^S0000048@113905@670^t^S64^T^N1^S0000108@113984@670^N2^S0000101@113948@670^N3^S0000074@119194@670^t^S268^T^N1^S0000077@113987@670^N2^S0000057@113893@670^N3^S0000048@113905@670^t^S253^T^N1^S0000116@113931@670^N2^S0000116@118114@670^N3^S0000104@113985@670^t^S72^T^N1^S0000071@119193@670^N2^S0000056@113969@670^N3^S0000045@113983@670^t^S581^T^N1^S0000077@113987@670^N2^S0000057@113893@670^N3^S0000048@113905@670^t^S577^T^N1^S0000116@113931@670^N2^S0000116@118114@670^N3^S0000104@113985@670^t^S70^T^N1^S0000071@119193@670^N2^S0000056@113969@670^N3^S0000045@113983@670^t^S73^T^N1^S0000077@113987@670^N2^S0000057@113893@670^N3^S0000048@113905@670^t^S103^T^N1^S0000116@113931@670^N2^S0000116@118114@670^N3^S0000104@113985@670^t^t^^",
- ["114109"] = "^1^T^S102^T^N1^S0000001@115318@615^N2^S0000001@115317@615^t^S65^T^N1^S0000001@115318@615^t^S266^T^N1^S0000001@115317@615^t^S261^T^N1^S0000001@115314@615^t^S269^T^N1^S0000001@115311@615^N2^S0000001@115315@615^t^S265^T^N1^S0000001@115317@615^t^S104^T^N1^S0000001@115316@615^t^S268^T^N1^S0000001@115316@615^t^S63^T^N1^S0000001@115317@615^t^S260^T^N1^S0000001@115311@615^N2^S0000001@115315@615^t^S581^T^N1^S0000001@115311@615^t^S267^T^N1^S0000001@115317@615^t^S66^T^N1^S0000001@115311@615^t^S256^T^N1^S0000001@115317@615^N2^S0000001@115318@615^t^S264^T^N1^S0000001@115317@615^N2^S0000001@115318@615^t^S251^T^N1^S0000001@115311@615^t^S259^T^N1^S0000001@115314@615^t^S262^T^N1^S0000001@115317@615^N2^S0000001@115318@615^t^S270^T^N1^S0000001@115317@615^N2^S0000001@115318@615^t^S255^T^N1^S0000001@115316@615^t^S254^T^N1^S0000001@115313@615^t^S252^T^N1^S0000001@115312@615^t^S258^T^N1^S0000001@115317@615^N2^S0000001@115318@615^t^S105^T^N1^S0000001@115317@615^N2^S0000001@115318@615^t^S72^T^N1^S0000001@115312@615^t^S62^T^N1^S0000001@115317@615^t^S250^T^N1^S0000001@115312@615^t^S64^T^N1^S0000001@115317@615^t^S257^T^N1^S0000001@115317@615^N2^S0000001@115318@615^t^S253^T^N1^S0000001@115313@615^t^S103^T^N1^S0000001@115316@615^t^S71^T^N1^S0000001@115312@615^t^S577^T^N1^S0000001@115311@615^t^S70^T^N1^S0000001@115312@615^t^S73^T^N1^S0000001@115311@615^t^S263^T^N1^S0000001@115315@615^N2^S0000001@115311@615^t^t^^",
- ["114058"] = "^1^T^S*^T^N1^S0000001@114378@615^N2^S0000001@114377@615^N3^S0000001@114376@615^N4^S0000001@114375@615^t^t^^",
- ["114085"] = "^1^T^S*^T^N1^S0000001@114520@645^N2^S0000001@114519@645^N3^S0000001@114518@645^N4^S0000001@114517@645^t^t^^",
- ["114096"] = "^1^T^S*^T^N1^S0000001@114321@550^N2^S0000001@114320@550^N3^S0000001@114319@550^N4^S0000001@114318@550^t^t^^",
- ["127853"] = "^1^T^S262^T^N1^S0000396@124228@690^N2^S0000348@124227@690^N3^S0000302@124229@695^N4^S0000279@124230@700^t^S65^T^N1^S0000159@124233@695^N2^S0000132@124234@700^N3^S0000129@124232@695^N4^S0000124@124231@690^t^S266^T^N1^S0000396@124228@690^N2^S0000348@124227@690^N3^S0000302@124229@695^N4^S0000279@124230@700^t^S261^T^N1^S0000315@124226@700^N2^S0000295@124223@690^N3^S0000276@124224@690^N4^S0000189@124225@695^t^S269^T^N1^S0000315@124226@700^N2^S0000295@124223@690^N3^S0000276@124224@690^N4^S0000189@124225@695^t^S265^T^N1^S0000396@124228@690^N2^S0000348@124227@690^N3^S0000302@124229@695^t^S104^T^N1^S0000243@124240@695^N2^S0000155@124241@695^N3^S0000141@124242@700^N4^S0000132@124239@690^t^S71^T^N1^S0000194@124235@690^N2^S0000152@124237@700^N3^S0000141@124238@700^N4^S0000119@124236@695^t^S63^T^N1^S0000396@124228@690^N2^S0000348@124227@690^N3^S0000302@124229@695^N4^S0000279@124230@700^t^S260^T^N1^S0000315@124226@700^N2^S0000295@124223@690^N3^S0000276@124224@690^N4^S0000189@124225@695^t^S263^T^N1^S0000315@124226@700^N2^S0000295@124223@690^N3^S0000276@124224@690^N4^S0000189@124225@695^t^S267^T^N1^S0000396@124228@690^N2^S0000348@124227@690^N3^S0000302@124229@695^N4^S0000279@124230@700^t^S252^T^N1^S0000194@124235@690^N2^S0000152@124237@700^N3^S0000141@124238@700^N4^S0000119@124236@695^t^S256^T^N1^S0000159@124233@695^N2^S0000132@124234@700^N3^S0000129@124232@695^N4^S0000124@124231@690^t^S*^T^N1^S0000555@124140@695^N2^S0000548@124132@690^N3^S0000517@124141@695^N4^S0000514@124342@695^N5^S0000491@124204@700^N6^S0000449@124221@695^N7^S0000449@124145@690^N8^S0000442@124201@690^N9^S0000442@124146@695^N10^S0000438@124147@700^N11^S0000436@124304@690^N12^S0000432@124336@690^N13^S0000432@124135@700^N14^S0000427@124222@705^N15^S0000423@124136@690^N16^S0000420@124290@695^N17^S0000414@124349@700^N18^S0000414@124326@700^N19^S0000400@124321@695^N20^S0000398@124324@690^N21^S0000398@124278@690^N22^S0000395@124220@690^N23^S0000384@124207@690^N24^S0000379@124347@690^N25^S0000375@124271@690^N26^S0000372@124197@695^N27^S0000369@124192@700^N28^S0000368@124305@695^N29^S0000366@124325@695^N30^S0000365@124137@695^N31^S0000362@124279@695^N32^S0000361@124315@690^N33^S0000361@124210@705^N34^S0000360@124330@695^N35^S0000359@124281@695^N36^S0000359@124198@695^N37^S0000358@124138@700^N38^S0000356@124343@705^N39^S0000355@124174@690^N40^S0000355@124164@700^N41^S0000353@124215@700^N42^S0000349@124176@705^N43^S0000348@124254@705^N44^S0000348@124188@695^N45^S0000346@124335@690^N46^S0000346@124185@695^N47^S0000344@124168@690^N48^S0000343@124212@700^N49^S0000342@124391@695^N50^S0000342@124187@690^N51^S0000341@124191@695^N52^S0000337@124190@690^N53^S0000336@124211@690^N54^S0000334@124158@700^N55^S0000333@124352@695^N56^S0000331@124310@700^N57^S0000328@124258@690^N58^S0000324@124266@700^N59^S0000323@124200@705^N60^S0000322@124306@700^N61^S0000321@124353@700^N62^S0000321@124203@700^N63^S0000320@124195@700^N64^S0000318@124184@690^N65^S0000318@124163@690^N66^S0000316@124313@695^N67^S0000315@124320@690^N68^S0000314@124289@690^N69^S0000313@124202@695^N70^S0000310@124183@690^N71^S0000309@124194@695^N72^S0000308@124331@695^N73^S0000307@124219@700^N74^S0000303@124244@695^N75^S0000303@124134@695^N76^S0000302@124217@690^N77^S0000299@124208@695^N78^S0000298@124351@690^N79^S0000296@124213@690^N80^S0000296@124139@690^N81^S0000294@124159@705^N82^S0000293@124214@700^N83^S0000289@124170@695^N84^S0000286@124322@705^N85^S0000286@124243@690^N86^S0000284@124314@700^N87^S0000283@124276@705^N88^S0000282@124152@695^N89^S0000281@124153@700^N90^S0000280@124218@695^N91^S0000280@124193@690^N92^S0000277@124287@700^N93^S0000276@124196@690^N94^S0000272@124259@695^N95^S0000269@124312@690^N96^S0000265@124251@700^N97^S0000264@124275@695^N98^S0000263@124285@690^N99^S0000261@124253@690^N100^S0000261@124209@700^N101^S0000261@124142@690^N102^S0000260@124283@700^N103^S0000259@124337@700^N104^S0000257@124316@695^N105^S0000257@124181@700^N106^S0000256@124270@690^N107^S0000253@124309@690^N108^S0000250@124348@695^N109^S0000250@124295@700^N110^S0000248@124294@695^N111^S0000247@124175@695^N112^S0000246@124216@690^N113^S0000245@124280@700^N114^S0000244@124341@690^N115^S0000244@124133@690^N116^S0000238@124282@695^N117^S0000238@124199@700^N118^S0000234@124265@700^N119^S0000232@124286@695^N120^S0000231@124298@690^N121^S0000229@124189@700^N122^S0000220@124186@700^N123^S0000219@124180@690^N124^S0000219@124143@695^N125^S0000218@124291@705^N126^S0000217@124151@690^N127^S0000210@124260@700^N128^S0000207@124245@695^N129^S0000203@124299@690^N130^S0000203@124250@695^N131^S0000194@124144@705^N132^S0000192@124264@690^N133^S0000190@124249@690^N134^S0000187@124300@700^N135^S0000184@124157@695^N136^S0000179@124169@695^t^S270^T^N1^S0000159@124233@695^N2^S0000132@124234@700^N3^S0000129@124232@695^N4^S0000124@124231@690^t^S251^T^N1^S0000194@124235@690^N2^S0000152@124237@700^N3^S0000141@124238@700^N4^S0000119@124236@695^t^S259^T^N1^S0000315@124226@700^N2^S0000295@124223@690^N3^S0000276@124224@690^N4^S0000189@124225@695^t^S257^T^N1^S0000159@124233@695^N2^S0000132@124234@700^N3^S0000129@124232@695^N4^S0000124@124231@690^t^S264^T^N1^S0000159@124233@695^N2^S0000132@124234@700^N3^S0000129@124232@695^N4^S0000124@124231@690^t^S255^T^N1^S0000315@124226@700^N2^S0000295@124223@690^N3^S0000276@124224@690^N4^S0000189@124225@695^t^S254^T^N1^S0000315@124226@700^N2^S0000295@124223@690^N3^S0000276@124224@690^t^S105^T^N1^S0000159@124233@695^N2^S0000132@124234@700^N3^S0000129@124232@695^N4^S0000124@124231@690^t^S102^T^N1^S0000396@124228@690^N2^S0000348@124227@690^N3^S0000302@124229@695^N4^S0000279@124230@700^t^S66^T^N1^S0000243@124240@695^N2^S0000155@124241@695^N3^S0000141@124242@700^N4^S0000132@124239@690^t^S258^T^N1^S0000396@124228@690^N2^S0000348@124227@690^N3^S0000302@124229@695^N4^S0000279@124230@700^t^S62^T^N1^S0000396@124228@690^N2^S0000348@124227@690^N3^S0000302@124229@695^N4^S0000279@124230@700^t^S250^T^N1^S0000243@124240@695^N2^S0000155@124241@695^N3^S0000141@124242@700^N4^S0000132@124239@690^t^S64^T^N1^S0000396@124228@690^N2^S0000348@124227@690^N3^S0000302@124229@695^N4^S0000279@124230@700^t^S268^T^N1^S0000243@124240@695^N2^S0000155@124241@695^N3^S0000141@124242@700^N4^S0000132@124239@690^t^S253^T^N1^S0000315@124226@700^N2^S0000295@124223@690^N3^S0000276@124224@690^t^S72^T^N1^S0000194@124235@690^N2^S0000152@124237@700^N3^S0000141@124238@700^N4^S0000119@124236@695^t^S581^T^N1^S0000243@124240@695^N2^S0000155@124241@695^N3^S0000141@124242@700^N4^S0000132@124239@690^t^S577^T^N1^S0000315@124226@700^N2^S0000295@124223@690^N3^S0000276@124224@690^N4^S0000189@124225@695^t^S70^T^N1^S0000194@124235@690^N2^S0000152@124237@700^N3^S0000141@124238@700^N4^S0000119@124236@695^t^S73^T^N1^S0000243@124240@695^N2^S0000155@124241@695^N3^S0000141@124242@700^N4^S0000132@124239@690^t^S103^T^N1^S0000315@124226@700^N2^S0000295@124223@690^N3^S0000276@124224@690^N4^S0000189@124225@695^t^t^^",
+ ["114086"] = "^1^T^S*^T^N1^S0000001@114541@645^N2^S0000001@114540@645^N3^S0000001@114539@645^N4^S0000001@114538@645^N5^S0000001@114537@645^t^t^^",
+ ["118193"] = "^1^T^S*^T^N1^S0029944@118191@100^t^t^^",
+ ["127822"] = "^1^T^S*^T^N1^S0000001@124590@650^t^t^^",
+ ["114068"] = "^1^T^S262^T^N1^S0000001@114428@615^t^S63^T^N1^S0000001@114428@615^t^S73^T^N1^S0000001@114431@615^t^S65^T^N1^S0000001@114429@615^t^S261^T^N1^S0000001@114427@615^t^S266^T^N1^S0000001@114428@615^t^S260^T^N1^S0000001@114427@615^t^S103^T^N1^S0000001@114427@615^t^S265^T^N1^S0000001@114428@615^t^S581^T^N1^S0000001@114431@615^t^S254^T^N1^S0000001@114427@615^t^S252^T^N1^S0000001@114430@615^t^S577^T^N1^S0000001@114427@615^t^S253^T^N1^S0000001@114427@615^t^S62^T^N1^S0000001@114428@615^t^S70^T^N1^S0000001@114430@615^t^S259^T^N1^S0000001@114427@615^t^S251^T^N1^S0000001@114430@615^t^S105^T^N1^S0000001@114429@615^t^S256^T^N1^S0000001@114429@615^t^S250^T^N1^S0000001@114431@615^t^S66^T^N1^S0000001@114431@615^t^S270^T^N1^S0000001@114429@615^t^S104^T^N1^S0000001@114431@615^t^S102^T^N1^S0000001@114428@615^t^S257^T^N1^S0000001@114429@615^t^S255^T^N1^S0000001@114427@615^t^S64^T^N1^S0000001@114428@615^t^S268^T^N1^S0000001@114431@615^t^S72^T^N1^S0000001@114430@615^t^S71^T^N1^S0000001@114430@615^t^S264^T^N1^S0000001@114429@615^t^S258^T^N1^S0000001@114428@615^t^S269^T^N1^S0000001@114427@615^t^S267^T^N1^S0000001@114428@615^t^S263^T^N1^S0000001@114427@615^t^t^^",
+ ["127799"] = "^1^T^S*^T^N1^S0000001@124612@650^N2^S0000001@124611@650^N3^S0000001@124610@650^N4^S0000001@124609@650^N5^S0000001@124608@650^N6^S0000001@124607@650^t^t^^",
+ ["122485"] = "^1^T^S262^T^N1^S0000114@113984@670^N2^S0000109@113948@670^N3^S0000077@119194@670^t^S63^T^N1^S0000114@113984@670^N2^S0000109@113948@670^N3^S0000077@119194@670^t^S73^T^N1^S0000080@113987@670^N2^S0000060@113893@670^N3^S0000051@113905@670^t^S65^T^N1^S0000050@113986@670^N2^S0000036@119192@670^N3^S0000031@113889@670^t^S261^T^N1^S0000128@118114@670^N2^S0000122@113931@670^N3^S0000109@113985@670^t^S266^T^N1^S0000114@113984@670^N2^S0000109@113948@670^N3^S0000077@119194@670^t^S269^T^N1^S0000128@118114@670^N2^S0000122@113931@670^N3^S0000109@113985@670^t^S103^T^N1^S0000128@118114@670^N2^S0000122@113931@670^N3^S0000109@113985@670^t^S265^T^N1^S0000114@113984@670^N2^S0000109@113948@670^N3^S0000077@119194@670^t^S581^T^N1^S0000080@113987@670^N2^S0000060@113893@670^N3^S0000051@113905@670^t^S254^T^N1^S0000128@118114@670^N2^S0000122@113931@670^N3^S0000109@113985@670^t^S252^T^N1^S0000074@119193@670^N2^S0000056@113969@670^N3^S0000047@113983@670^t^S577^T^N1^S0000128@118114@670^N2^S0000122@113931@670^N3^S0000109@113985@670^t^S64^T^N1^S0000114@113984@670^N2^S0000109@113948@670^N3^S0000077@119194@670^t^S62^T^N1^S0000114@113984@670^N2^S0000109@113948@670^N3^S0000077@119194@670^t^S70^T^N1^S0000074@119193@670^N2^S0000056@113969@670^N3^S0000047@113983@670^t^S259^T^N1^S0000128@118114@670^N2^S0000122@113931@670^N3^S0000109@113985@670^t^S251^T^N1^S0000074@119193@670^N2^S0000056@113969@670^N3^S0000047@113983@670^t^S105^T^N1^S0000050@113986@670^N2^S0000036@119192@670^N3^S0000031@113889@670^t^S66^T^N1^S0000080@113987@670^N2^S0000060@113893@670^N3^S0000051@113905@670^t^S256^T^N1^S0000050@113986@670^N2^S0000036@119192@670^N3^S0000031@113889@670^t^S250^T^N1^S0000080@113987@670^N2^S0000060@113893@670^N3^S0000051@113905@670^t^S264^T^N1^S0000050@113986@670^N2^S0000036@119192@670^N3^S0000031@113889@670^t^S270^T^N1^S0000050@113986@670^N2^S0000036@119192@670^N3^S0000031@113889@670^t^S102^T^N1^S0000114@113984@670^N2^S0000109@113948@670^N3^S0000077@119194@670^t^S253^T^N1^S0000128@118114@670^N2^S0000122@113931@670^N3^S0000109@113985@670^t^S257^T^N1^S0000050@113986@670^N2^S0000036@119192@670^N3^S0000031@113889@670^t^S255^T^N1^S0000128@118114@670^N2^S0000122@113931@670^N3^S0000109@113985@670^t^S71^T^N1^S0000074@119193@670^N2^S0000056@113969@670^N3^S0000047@113983@670^t^S*^T^N1^S0000191@113947@670^N2^S0000179@113887@670^N3^S0000175@113906@670^N4^S0000172@113923@670^N5^S0000167@113870@670^N6^S0000164@113892@670^N7^S0000160@113884@670^N8^S0000153@113883@670^N9^S0000151@113881@670^N10^S0000149@113990@670^N11^S0000149@113977@670^N12^S0000138@113962@670^N13^S0000137@113925@670^N14^S0000137@113871@670^N15^S0000132@113890@670^N16^S0000130@113896@670^N17^S0000130@113876@670^N18^S0000129@113941@670^N19^S0000129@113933@670^N20^S0000127@113903@670^N21^S0000125@113975@670^N22^S0000125@113937@670^N23^S0000123@113936@670^N24^S0000122@113942@670^N25^S0000122@113894@670^N26^S0000121@113895@670^N27^S0000118@120078@670^N28^S0000118@113873@670^N29^S0000116@113924@670^N30^S0000112@113971@670^N31^S0000110@113989@670^N32^S0000110@113976@670^N33^S0000110@113961@670^N34^S0000110@113917@670^N35^S0000109@113958@670^N36^S0000108@113872@670^N37^S0000106@113950@670^N38^S0000105@113967@670^N39^S0000101@113952@670^N40^S0000099@113910@670^N41^S0000097@113864@670^N42^S0000095@113928@670^N43^S0000094@113968@670^N44^S0000092@113982@670^N45^S0000092@113978@670^N46^S0000090@113945@670^N47^S0000087@113908@670^N48^S0000086@113940@670^N49^S0000085@113954@670^N50^S0000083@113921@670^N51^S0000082@113868@670^N52^S0000081@113964@670^N53^S0000081@113866@670^N54^S0000079@113981@670^N55^S0000079@113929@670^N56^S0000078@113957@670^N57^S0000078@113951@670^N58^S0000077@113972@670^N59^S0000077@113949@670^N60^S0000076@113922@670^N61^S0000075@113974@670^N62^S0000075@113956@670^N63^S0000075@113898@670^N64^S0000075@113877@670^N65^S0000074@113880@670^N66^S0000073@113916@670^N67^S0000073@113863@670^N68^S0000072@113970@670^N69^S0000072@113901@670^N70^S0000071@113915@670^N71^S0000069@113935@670^N72^S0000069@113867@670^N73^S0000068@113900@670^N74^S0000065@113914@670^N75^S0000065@113891@670^N76^S0000064@113944@670^N77^S0000064@113907@670^N78^S0000061@113943@670^N79^S0000061@113919@670^N80^S0000059@113955@670^N81^S0000058@113875@670^N82^S0000057@113963@670^N83^S0000057@113899@670^N84^S0000057@113878@670^N85^S0000055@113902@670^N86^S0000051@113888@670^N87^S0000050@113930@670^N88^S0000040@113938@670^t^S72^T^N1^S0000074@119193@670^N2^S0000056@113969@670^N3^S0000047@113983@670^t^S268^T^N1^S0000080@113987@670^N2^S0000060@113893@670^N3^S0000051@113905@670^t^S104^T^N1^S0000080@113987@670^N2^S0000060@113893@670^N3^S0000051@113905@670^t^S258^T^N1^S0000114@113984@670^N2^S0000109@113948@670^N3^S0000077@119194@670^t^S260^T^N1^S0000128@118114@670^N2^S0000122@113931@670^N3^S0000109@113985@670^t^S267^T^N1^S0000114@113984@670^N2^S0000109@113948@670^N3^S0000077@119194@670^t^S263^T^N1^S0000128@118114@670^N2^S0000122@113931@670^N3^S0000109@113985@670^t^t^^",
+ ["128391"] = "^1^T^S253^T^N1^S0000643@128194@685^t^S254^T^N1^S0000643@128194@685^t^S*^T^N1^S0002420@128106@685^N2^S0002172@128188@685^N3^S0002102@128154@685^N4^S0002069@128177@685^N5^S0002063@128149@685^N6^S0001980@128117@685^N7^S0001960@128104@685^N8^S0001914@128150@685^N9^S0001875@128151@685^N10^S0001824@128181@685^N11^S0001790@128057@685^N12^S0001729@128171@685^N13^S0001629@128123@685^N14^S0001617@128032@685^N15^S0001590@128107@685^N16^S0001540@128152@685^N17^S0001514@128052@685^N18^S0001456@128069@685^N19^S0001454@128135@685^N20^S0001427@128134@685^N21^S0001372@128139@685^N22^S0001369@128103@685^N23^S0001330@128045@685^N24^S0001321@128153@685^N25^S0001320@128059@685^N26^S0001311@128108@685^N27^S0001303@128130@685^N28^S0001269@128037@685^N29^S0001268@128127@685^N30^S0001261@128129@685^N31^S0001239@128120@685^N32^S0001235@128297@685^N33^S0001225@128039@685^N34^S0001212@128136@685^N35^S0001195@128054@685^N36^S0001179@128124@685^N37^S0001171@128079@685^N38^S0001157@128128@685^N39^S0001135@128044@685^N40^S0001121@128121@685^N41^S0001120@128148@685^N42^S0001120@128048@685^N43^S0001115@128125@685^N44^S0001100@128131@685^N45^S0001090@128143@685^N46^S0001083@128034@685^N47^S0001069@128072@685^N48^S0001067@128138@685^N49^S0001053@128137@685^N50^S0001042@128064@685^N51^S0001040@128170@685^N52^S0001029@128056@685^N53^S0001018@128090@685^N54^S0000946@128080@685^N55^S0000926@128122@685^N56^S0000908@128126@685^N57^S0000883@128133@685^N58^S0000830@128132@685^t^t^^",
["114098"] = "^1^T^S*^T^N1^S0000001@114329@540^N2^S0000001@114328@540^N3^S0000001@114327@540^N4^S0000001@114326@540^t^t^^",
- ["114052"] = "^1^T^S*^T^N1^S0000001@112802@519^N2^S0000001@112801@519^N3^S0000001@112800@519^N4^S0000001@112799@519^N5^S0000001@112798@519^t^t^^",
- ["114087"] = "^1^T^S262^T^N1^S0000001@114550@645^t^S65^T^N1^S0000001@114551@645^t^S266^T^N1^S0000001@114550@645^t^S261^T^N1^S0000001@114549@645^t^S269^T^N1^S0000001@114549@645^t^S265^T^N1^S0000001@114550@645^t^S264^T^N1^S0000001@114551@645^t^S105^T^N1^S0000001@114551@645^t^S63^T^N1^S0000001@114550@645^t^S260^T^N1^S0000001@114549@645^t^S263^T^N1^S0000001@114549@645^t^S267^T^N1^S0000001@114550@645^t^S252^T^N1^S0000001@114552@645^t^S256^T^N1^S0000001@114551@645^t^S268^T^N1^S0000001@114553@645^t^S270^T^N1^S0000001@114551@645^t^S259^T^N1^S0000001@114549@645^t^S581^T^N1^S0000001@114553@645^t^S73^T^N1^S0000001@114553@645^t^S255^T^N1^S0000001@114549@645^t^S254^T^N1^S0000001@114549@645^t^S66^T^N1^S0000001@114553@645^t^S104^T^N1^S0000001@114553@645^t^S102^T^N1^S0000001@114550@645^t^S258^T^N1^S0000001@114550@645^t^S62^T^N1^S0000001@114550@645^t^S250^T^N1^S0000001@114553@645^t^S64^T^N1^S0000001@114550@645^t^S251^T^N1^S0000001@114552@645^t^S253^T^N1^S0000001@114549@645^t^S72^T^N1^S0000001@114552@645^t^S71^T^N1^S0000001@114552@645^t^S577^T^N1^S0000001@114549@645^t^S257^T^N1^S0000001@114551@645^t^S70^T^N1^S0000001@114552@645^t^S103^T^N1^S0000001@114549@645^t^t^^",
- ["114112"] = "^1^T^S102^T^N1^S0000001@115334@645^N2^S0000001@115333@645^t^S65^T^N1^S0000001@115334@645^t^S266^T^N1^S0000001@115333@645^t^S261^T^N1^S0000001@115330@645^t^S269^T^N1^S0000001@115327@645^N2^S0000001@115331@645^t^S265^T^N1^S0000001@115333@645^t^S104^T^N1^S0000001@115332@645^t^S268^T^N1^S0000001@115332@645^t^S63^T^N1^S0000001@115333@645^t^S260^T^N1^S0000001@115327@645^N2^S0000001@115331@645^t^S581^T^N1^S0000001@115327@645^t^S267^T^N1^S0000001@115333@645^t^S66^T^N1^S0000001@115327@645^t^S256^T^N1^S0000001@115333@645^N2^S0000001@115334@645^t^S264^T^N1^S0000001@115333@645^N2^S0000001@115334@645^t^S251^T^N1^S0000001@115327@645^t^S259^T^N1^S0000001@115330@645^t^S262^T^N1^S0000001@115333@645^N2^S0000001@115334@645^t^S270^T^N1^S0000001@115333@645^N2^S0000001@115334@645^t^S255^T^N1^S0000001@115332@645^t^S254^T^N1^S0000001@115329@645^t^S252^T^N1^S0000001@115328@645^t^S258^T^N1^S0000001@115333@645^N2^S0000001@115334@645^t^S105^T^N1^S0000001@115333@645^N2^S0000001@115334@645^t^S72^T^N1^S0000001@115328@645^t^S62^T^N1^S0000001@115333@645^t^S250^T^N1^S0000001@115328@645^t^S64^T^N1^S0000001@115333@645^t^S257^T^N1^S0000001@115333@645^N2^S0000001@115334@645^t^S253^T^N1^S0000001@115329@645^t^S103^T^N1^S0000001@115332@645^t^S71^T^N1^S0000001@115328@645^t^S577^T^N1^S0000001@115327@645^t^S70^T^N1^S0000001@115328@645^t^S73^T^N1^S0000001@115327@645^t^S263^T^N1^S0000001@115331@645^N2^S0000001@115327@645^t^t^^",
+ ["127854"] = "^1^T^S102^T^N1^S0000208@124227@690^N2^S0000143@124228@690^N3^S0000093@124229@695^N4^S0000090@124230@700^t^S63^T^N1^S0000208@124227@690^N2^S0000143@124228@690^N3^S0000093@124229@695^N4^S0000090@124230@700^t^S73^T^N1^S0000167@124239@690^N2^S0000105@124241@695^N3^S0000071@124242@700^N4^S0000054@124240@695^t^S65^T^N1^S0000092@124232@695^N2^S0000082@124233@695^N3^S0000076@124234@700^N4^S0000072@124231@690^t^S261^T^N1^S0000182@124226@700^N2^S0000084@124225@695^N3^S0000081@124224@690^N4^S0000064@124223@690^t^S266^T^N1^S0000208@124227@690^N2^S0000143@124228@690^N3^S0000093@124229@695^N4^S0000090@124230@700^t^S260^T^N1^S0000182@124226@700^N2^S0000084@124225@695^N3^S0000081@124224@690^N4^S0000064@124223@690^t^S103^T^N1^S0000182@124226@700^N2^S0000084@124225@695^N3^S0000081@124224@690^N4^S0000064@124223@690^t^S265^T^N1^S0000208@124227@690^N2^S0000143@124228@690^N3^S0000093@124229@695^t^S581^T^N1^S0000167@124239@690^N2^S0000105@124241@695^N3^S0000071@124242@700^N4^S0000054@124240@695^t^S254^T^N1^S0000182@124226@700^N2^S0000081@124224@690^N3^S0000064@124223@690^t^S252^T^N1^S0000131@124237@700^N2^S0000075@124235@690^N3^S0000053@124238@700^N4^S0000052@124236@695^t^S577^T^N1^S0000182@124226@700^N2^S0000084@124225@695^N3^S0000081@124224@690^N4^S0000064@124223@690^t^S64^T^N1^S0000208@124227@690^N2^S0000143@124228@690^N3^S0000093@124229@695^N4^S0000090@124230@700^t^S62^T^N1^S0000208@124227@690^N2^S0000143@124228@690^N3^S0000093@124229@695^N4^S0000090@124230@700^t^S70^T^N1^S0000131@124237@700^N2^S0000075@124235@690^N3^S0000053@124238@700^N4^S0000052@124236@695^t^S259^T^N1^S0000182@124226@700^N2^S0000084@124225@695^N3^S0000081@124224@690^N4^S0000064@124223@690^t^S251^T^N1^S0000131@124237@700^N2^S0000075@124235@690^N3^S0000053@124238@700^N4^S0000052@124236@695^t^S105^T^N1^S0000092@124232@695^N2^S0000082@124233@695^N3^S0000076@124234@700^N4^S0000072@124231@690^t^S66^T^N1^S0000167@124239@690^N2^S0000105@124241@695^N3^S0000071@124242@700^N4^S0000054@124240@695^t^S256^T^N1^S0000092@124232@695^N2^S0000082@124233@695^N3^S0000076@124234@700^N4^S0000072@124231@690^t^S250^T^N1^S0000167@124239@690^N2^S0000105@124241@695^N3^S0000071@124242@700^N4^S0000054@124240@695^t^S264^T^N1^S0000092@124232@695^N2^S0000082@124233@695^N3^S0000076@124234@700^N4^S0000072@124231@690^t^S270^T^N1^S0000092@124232@695^N2^S0000082@124233@695^N3^S0000076@124234@700^N4^S0000072@124231@690^t^S267^T^N1^S0000208@124227@690^N2^S0000143@124228@690^N3^S0000093@124229@695^N4^S0000090@124230@700^t^S253^T^N1^S0000182@124226@700^N2^S0000081@124224@690^N3^S0000064@124223@690^t^S257^T^N1^S0000092@124232@695^N2^S0000082@124233@695^N3^S0000076@124234@700^N4^S0000072@124231@690^t^S255^T^N1^S0000182@124226@700^N2^S0000084@124225@695^N3^S0000081@124224@690^N4^S0000064@124223@690^t^S71^T^N1^S0000131@124237@700^N2^S0000075@124235@690^N3^S0000053@124238@700^N4^S0000052@124236@695^t^S*^T^N1^S0000318@124190@690^N2^S0000240@124220@690^N3^S0000212@124251@700^N4^S0000199@124200@705^N5^S0000199@124152@695^N6^S0000197@124285@690^N7^S0000193@124201@690^N8^S0000193@124192@700^N9^S0000192@124222@705^N10^S0000182@124279@695^N11^S0000182@124136@690^N12^S0000177@124146@695^N13^S0000176@124134@695^N14^S0000174@124151@690^N15^S0000173@124132@690^N16^S0000172@124186@700^N17^S0000169@124202@695^N18^S0000167@124213@690^N19^S0000165@124221@695^N20^S0000164@124204@700^N21^S0000163@124208@695^N22^S0000162@124321@695^N23^S0000162@124243@690^N24^S0000160@124336@690^N25^S0000158@124330@695^N26^S0000155@124391@695^N27^S0000155@124300@700^N28^S0000154@124348@695^N29^S0000153@124335@690^N30^S0000151@124159@705^N31^S0000149@124140@695^N32^S0000148@124188@695^N33^S0000145@124316@695^N34^S0000145@124135@700^N35^S0000140@124331@695^N36^S0000140@124194@695^N37^S0000140@124174@690^N38^S0000139@124326@700^N39^S0000139@124215@700^N40^S0000139@124133@690^N41^S0000137@124310@700^N42^S0000137@124299@690^N43^S0000133@124260@700^N44^S0000133@124169@695^N45^S0000132@124212@700^N46^S0000132@124158@700^N47^S0000132@124143@695^N48^S0000131@124207@690^N49^S0000130@124176@705^N50^S0000129@124137@695^N51^S0000126@124211@690^N52^S0000124@124320@690^N53^S0000124@124170@695^N54^S0000123@124325@695^N55^S0000123@124324@690^N56^S0000122@124289@690^N57^S0000122@124199@700^N58^S0000122@124191@695^N59^S0000121@124343@705^N60^S0000121@124281@695^N61^S0000120@124147@700^N62^S0000119@124352@695^N63^S0000118@124353@700^N64^S0000118@124341@690^N65^S0000118@124313@695^N66^S0000118@124258@690^N67^S0000117@124322@705^N68^S0000115@124337@700^N69^S0000115@124214@700^N70^S0000115@124203@700^N71^S0000113@124270@690^N72^S0000111@124280@700^N73^S0000111@124183@690^N74^S0000109@124275@695^N75^S0000109@124218@695^N76^S0000106@124351@690^N77^S0000106@124342@695^N78^S0000106@124187@690^N79^S0000106@124138@700^N80^S0000105@124141@695^N81^S0000104@124315@690^N82^S0000103@124304@690^N83^S0000103@124210@705^N84^S0000103@124185@695^N85^S0000103@124180@690^N86^S0000102@124291@705^N87^S0000101@124287@700^N88^S0000101@124184@690^N89^S0000101@124139@690^N90^S0000100@124153@700^N91^S0000097@124295@700^N92^S0000097@124283@700^N93^S0000097@124189@700^N94^S0000097@124181@700^N95^S0000095@124209@700^N96^S0000095@124163@690^N97^S0000094@124286@695^N98^S0000094@124259@695^N99^S0000093@124278@690^N100^S0000090@124347@690^N101^S0000090@124264@690^N102^S0000090@124175@695^N103^S0000089@124266@700^N104^S0000088@124309@690^N105^S0000088@124168@690^N106^S0000087@124314@700^N107^S0000087@124164@700^N108^S0000085@124298@690^N109^S0000085@124249@690^N110^S0000083@124290@695^N111^S0000082@124312@690^N112^S0000082@124219@700^N113^S0000081@124305@695^N114^S0000079@124276@705^N115^S0000079@124244@695^N116^S0000079@124142@690^N117^S0000077@124193@690^N118^S0000075@124250@695^N119^S0000074@124271@690^N120^S0000074@124253@690^N121^S0000072@124217@690^N122^S0000070@124306@700^N123^S0000070@124197@695^N124^S0000069@124145@690^N125^S0000066@124349@700^N126^S0000063@124265@700^N127^S0000063@124144@705^N128^S0000061@124196@690^N129^S0000060@124282@695^N130^S0000059@124216@690^N131^S0000057@124198@695^N132^S0000052@124294@695^N133^S0000047@124245@695^N134^S0000043@124254@705^N135^S0000042@124157@695^N136^S0000041@124195@700^t^S72^T^N1^S0000131@124237@700^N2^S0000075@124235@690^N3^S0000053@124238@700^N4^S0000052@124236@695^t^S268^T^N1^S0000167@124239@690^N2^S0000105@124241@695^N3^S0000071@124242@700^N4^S0000054@124240@695^t^S262^T^N1^S0000208@124227@690^N2^S0000143@124228@690^N3^S0000093@124229@695^N4^S0000090@124230@700^t^S258^T^N1^S0000208@124227@690^N2^S0000143@124228@690^N3^S0000093@124229@695^N4^S0000090@124230@700^t^S104^T^N1^S0000167@124239@690^N2^S0000105@124241@695^N3^S0000071@124242@700^N4^S0000054@124240@695^t^S269^T^N1^S0000182@124226@700^N2^S0000084@124225@695^N3^S0000081@124224@690^N4^S0000064@124223@690^t^S263^T^N1^S0000182@124226@700^N2^S0000084@124225@695^N3^S0000081@124224@690^N4^S0000064@124223@690^t^t^^",
+ ["128319"] = "^1^T^S*^T^N1^S0010863@128318@605^t^t^^",
+ ["120301"] = "^1^T^S*^T^N1^S0000001@114822@1^N2^S0000001@114808@1^N3^S0000001@114745@1^t^t^^",
+ ["127853"] = "^1^T^S102^T^N1^S0000432@124228@690^N2^S0000393@124227@690^N3^S0000329@124229@695^N4^S0000303@124230@700^t^S63^T^N1^S0000432@124228@690^N2^S0000393@124227@690^N3^S0000329@124229@695^N4^S0000303@124230@700^t^S73^T^N1^S0000270@124240@695^N2^S0000169@124241@695^N3^S0000150@124242@700^N4^S0000144@124239@690^t^S65^T^N1^S0000168@124233@695^N2^S0000138@124234@700^N3^S0000135@124232@695^N4^S0000130@124231@690^t^S261^T^N1^S0000342@124226@700^N2^S0000319@124223@690^N3^S0000297@124224@690^N4^S0000209@124225@695^t^S266^T^N1^S0000432@124228@690^N2^S0000393@124227@690^N3^S0000329@124229@695^N4^S0000303@124230@700^t^S260^T^N1^S0000342@124226@700^N2^S0000319@124223@690^N3^S0000297@124224@690^N4^S0000209@124225@695^t^S103^T^N1^S0000342@124226@700^N2^S0000319@124223@690^N3^S0000297@124224@690^N4^S0000209@124225@695^t^S265^T^N1^S0000432@124228@690^N2^S0000393@124227@690^N3^S0000329@124229@695^t^S581^T^N1^S0000270@124240@695^N2^S0000169@124241@695^N3^S0000150@124242@700^N4^S0000144@124239@690^t^S254^T^N1^S0000342@124226@700^N2^S0000319@124223@690^N3^S0000297@124224@690^t^S252^T^N1^S0000209@124235@690^N2^S0000160@124237@700^N3^S0000153@124238@700^N4^S0000125@124236@695^t^S577^T^N1^S0000342@124226@700^N2^S0000319@124223@690^N3^S0000297@124224@690^N4^S0000209@124225@695^t^S64^T^N1^S0000432@124228@690^N2^S0000393@124227@690^N3^S0000329@124229@695^N4^S0000303@124230@700^t^S62^T^N1^S0000432@124228@690^N2^S0000393@124227@690^N3^S0000329@124229@695^N4^S0000303@124230@700^t^S66^T^N1^S0000270@124240@695^N2^S0000169@124241@695^N3^S0000150@124242@700^N4^S0000144@124239@690^t^S259^T^N1^S0000342@124226@700^N2^S0000319@124223@690^N3^S0000297@124224@690^N4^S0000209@124225@695^t^S251^T^N1^S0000209@124235@690^N2^S0000160@124237@700^N3^S0000153@124238@700^N4^S0000125@124236@695^t^S105^T^N1^S0000168@124233@695^N2^S0000138@124234@700^N3^S0000135@124232@695^N4^S0000130@124231@690^t^S71^T^N1^S0000209@124235@690^N2^S0000160@124237@700^N3^S0000153@124238@700^N4^S0000125@124236@695^t^S256^T^N1^S0000168@124233@695^N2^S0000138@124234@700^N3^S0000135@124232@695^N4^S0000130@124231@690^t^S250^T^N1^S0000270@124240@695^N2^S0000169@124241@695^N3^S0000150@124242@700^N4^S0000144@124239@690^t^S264^T^N1^S0000168@124233@695^N2^S0000138@124234@700^N3^S0000135@124232@695^N4^S0000130@124231@690^t^S270^T^N1^S0000168@124233@695^N2^S0000138@124234@700^N3^S0000135@124232@695^N4^S0000130@124231@690^t^S267^T^N1^S0000432@124228@690^N2^S0000393@124227@690^N3^S0000329@124229@695^N4^S0000303@124230@700^t^S253^T^N1^S0000342@124226@700^N2^S0000319@124223@690^N3^S0000297@124224@690^t^S257^T^N1^S0000168@124233@695^N2^S0000138@124234@700^N3^S0000135@124232@695^N4^S0000130@124231@690^t^S255^T^N1^S0000342@124226@700^N2^S0000319@124223@690^N3^S0000297@124224@690^N4^S0000209@124225@695^t^S72^T^N1^S0000209@124235@690^N2^S0000160@124237@700^N3^S0000153@124238@700^N4^S0000125@124236@695^t^S*^T^N1^S0000609@124140@695^N2^S0000602@124132@690^N3^S0000574@124342@695^N4^S0000565@124141@695^N5^S0000551@124204@700^N6^S0000509@124145@690^N7^S0000503@124221@695^N8^S0000499@124201@690^N9^S0000496@124146@695^N10^S0000488@124147@700^N11^S0000478@124304@690^N12^S0000475@124222@705^N13^S0000468@124336@690^N14^S0000468@124135@700^N15^S0000465@124136@690^N16^S0000459@124349@700^N17^S0000459@124290@695^N18^S0000452@124326@700^N19^S0000445@124321@695^N20^S0000437@124324@690^N21^S0000437@124220@690^N22^S0000428@124278@690^N23^S0000423@124197@695^N24^S0000417@124207@690^N25^S0000415@124347@690^N26^S0000414@124271@690^N27^S0000410@124305@695^N28^S0000405@124325@695^N29^S0000401@124279@695^N30^S0000401@124198@695^N31^S0000400@124137@695^N32^S0000396@124192@700^N33^S0000394@124210@705^N34^S0000393@124330@695^N35^S0000392@124215@700^N36^S0000391@124315@690^N37^S0000391@124176@705^N38^S0000391@124138@700^N39^S0000388@124174@690^N40^S0000388@124164@700^N41^S0000386@124281@695^N42^S0000383@124343@705^N43^S0000381@124188@695^N44^S0000378@124254@705^N45^S0000378@124187@690^N46^S0000377@124168@690^N47^S0000376@124335@690^N48^S0000376@124212@700^N49^S0000374@124211@690^N50^S0000372@124391@695^N51^S0000370@124190@690^N52^S0000367@124185@695^N53^S0000365@124191@695^N54^S0000363@124352@695^N55^S0000361@124310@700^N56^S0000358@124158@700^N57^S0000355@124258@690^N58^S0000354@124266@700^N59^S0000353@124200@705^N60^S0000353@124195@700^N61^S0000351@124203@700^N62^S0000351@124163@690^N63^S0000349@124306@700^N64^S0000349@124202@695^N65^S0000348@124353@700^N66^S0000348@124184@690^N67^S0000346@124289@690^N68^S0000342@124320@690^N69^S0000342@124194@695^N70^S0000340@124313@695^N71^S0000337@124219@700^N72^S0000335@124331@695^N73^S0000333@124134@695^N74^S0000332@124244@695^N75^S0000332@124213@690^N76^S0000331@124183@690^N77^S0000329@124217@690^N78^S0000329@124139@690^N79^S0000324@124159@705^N80^S0000323@124208@695^N81^S0000320@124214@700^N82^S0000316@124351@690^N83^S0000316@124243@690^N84^S0000313@124170@695^N85^S0000310@124322@705^N86^S0000310@124276@705^N87^S0000309@124193@690^N88^S0000306@124152@695^N89^S0000305@124314@700^N90^S0000305@124196@690^N91^S0000304@124218@695^N92^S0000302@124153@700^N93^S0000298@124287@700^N94^S0000296@124259@695^N95^S0000290@124275@695^N96^S0000290@124142@690^N97^S0000287@124312@690^N98^S0000286@124251@700^N99^S0000284@124285@690^N100^S0000284@124181@700^N101^S0000281@124283@700^N102^S0000280@124270@690^N103^S0000279@124253@690^N104^S0000279@124209@700^N105^S0000277@124309@690^N106^S0000275@124316@695^N107^S0000274@124337@700^N108^S0000274@124295@700^N109^S0000270@124216@690^N110^S0000269@124294@695^N111^S0000269@124280@700^N112^S0000268@124348@695^N113^S0000268@124175@695^N114^S0000262@124199@700^N115^S0000262@124133@690^N116^S0000261@124265@700^N117^S0000256@124341@690^N118^S0000256@124282@695^N119^S0000252@124298@690^N120^S0000250@124286@695^N121^S0000247@124189@700^N122^S0000243@124143@695^N123^S0000240@124180@690^N124^S0000235@124186@700^N125^S0000232@124151@690^N126^S0000231@124260@700^N127^S0000230@124291@705^N128^S0000225@124245@695^N129^S0000218@124299@690^N130^S0000215@124250@695^N131^S0000209@124144@705^N132^S0000204@124264@690^N133^S0000202@124249@690^N134^S0000199@124300@700^N135^S0000193@124157@695^N136^S0000185@124169@695^t^S70^T^N1^S0000209@124235@690^N2^S0000160@124237@700^N3^S0000153@124238@700^N4^S0000125@124236@695^t^S268^T^N1^S0000270@124240@695^N2^S0000169@124241@695^N3^S0000150@124242@700^N4^S0000144@124239@690^t^S262^T^N1^S0000432@124228@690^N2^S0000393@124227@690^N3^S0000329@124229@695^N4^S0000303@124230@700^t^S258^T^N1^S0000432@124228@690^N2^S0000393@124227@690^N3^S0000329@124229@695^N4^S0000303@124230@700^t^S104^T^N1^S0000270@124240@695^N2^S0000169@124241@695^N3^S0000150@124242@700^N4^S0000144@124239@690^t^S269^T^N1^S0000342@124226@700^N2^S0000319@124223@690^N3^S0000297@124224@690^N4^S0000209@124225@695^t^S263^T^N1^S0000342@124226@700^N2^S0000319@124223@690^N3^S0000297@124224@690^N4^S0000209@124225@695^t^t^^",
+ ["127796"] = "^1^T^S*^T^N1^S0000001@124588@650^t^t^^",
+ ["122486"] = "^1^T^S267^T^N1^S0000272@113984@670^N2^S0000260@119194@670^N3^S0000238@113948@670^t^S63^T^N1^S0000272@113984@670^N2^S0000260@119194@670^N3^S0000238@113948@670^t^S105^T^N1^S0000188@113889@670^N2^S0000152@119192@670^N3^S0000122@113986@670^t^S65^T^N1^S0000188@113889@670^N2^S0000152@119192@670^N3^S0000122@113986@670^t^S261^T^N1^S0000243@113985@670^N2^S0000228@118114@670^N3^S0000219@113931@670^t^S266^T^N1^S0000272@113984@670^N2^S0000260@119194@670^N3^S0000238@113948@670^t^S260^T^N1^S0000243@113985@670^N2^S0000228@118114@670^N3^S0000219@113931@670^t^S103^T^N1^S0000243@113985@670^N2^S0000228@118114@670^N3^S0000219@113931@670^t^S265^T^N1^S0000272@113984@670^N2^S0000260@119194@670^N3^S0000238@113948@670^t^S581^T^N1^S0000164@113905@670^N2^S0000128@113987@670^N3^S0000105@113893@670^t^S254^T^N1^S0000243@113985@670^N2^S0000228@118114@670^N3^S0000219@113931@670^t^S252^T^N1^S0000211@113983@670^N2^S0000126@119193@670^N3^S0000120@113969@670^t^S577^T^N1^S0000243@113985@670^N2^S0000228@118114@670^N3^S0000219@113931@670^t^S64^T^N1^S0000272@113984@670^N2^S0000260@119194@670^N3^S0000238@113948@670^t^S62^T^N1^S0000272@113984@670^N2^S0000260@119194@670^N3^S0000238@113948@670^t^S70^T^N1^S0000211@113983@670^N2^S0000126@119193@670^N3^S0000120@113969@670^t^S259^T^N1^S0000243@113985@670^N2^S0000228@118114@670^N3^S0000219@113931@670^t^S251^T^N1^S0000211@113983@670^N2^S0000126@119193@670^N3^S0000120@113969@670^t^S268^T^N1^S0000164@113905@670^N2^S0000128@113987@670^N3^S0000105@113893@670^t^S104^T^N1^S0000164@113905@670^N2^S0000128@113987@670^N3^S0000105@113893@670^t^S256^T^N1^S0000188@113889@670^N2^S0000152@119192@670^N3^S0000122@113986@670^t^S250^T^N1^S0000164@113905@670^N2^S0000128@113987@670^N3^S0000105@113893@670^t^S73^T^N1^S0000164@113905@670^N2^S0000128@113987@670^N3^S0000105@113893@670^t^S270^T^N1^S0000188@113889@670^N2^S0000152@119192@670^N3^S0000122@113986@670^t^S66^T^N1^S0000164@113905@670^N2^S0000128@113987@670^N3^S0000105@113893@670^t^S102^T^N1^S0000272@113984@670^N2^S0000260@119194@670^N3^S0000238@113948@670^t^S257^T^N1^S0000188@113889@670^N2^S0000152@119192@670^N3^S0000122@113986@670^t^S255^T^N1^S0000243@113985@670^N2^S0000228@118114@670^N3^S0000219@113931@670^t^S253^T^N1^S0000243@113985@670^N2^S0000228@118114@670^N3^S0000219@113931@670^t^S*^T^N1^S0000472@113922@670^N2^S0000426@120078@670^N3^S0000384@113937@670^N4^S0000351@113883@670^N5^S0000350@113956@670^N6^S0000343@113877@670^N7^S0000339@113910@670^N8^S0000337@113901@670^N9^S0000328@113925@670^N10^S0000320@113884@670^N11^S0000315@113975@670^N12^S0000314@113961@670^N13^S0000311@113894@670^N14^S0000303@113967@670^N15^S0000301@113947@670^N16^S0000297@113881@670^N17^S0000296@113903@670^N18^S0000290@113873@670^N19^S0000288@113871@670^N20^S0000286@113971@670^N21^S0000281@113896@670^N22^S0000281@113878@670^N23^S0000280@113936@670^N24^S0000279@113944@670^N25^S0000279@113921@670^N26^S0000279@113875@670^N27^S0000275@113938@670^N28^S0000275@113933@670^N29^S0000275@113917@670^N30^S0000272@113976@670^N31^S0000269@113978@670^N32^S0000266@113935@670^N33^S0000261@113957@670^N34^S0000261@113923@670^N35^S0000260@113892@670^N36^S0000258@113870@670^N37^S0000254@113872@670^N38^S0000253@113887@670^N39^S0000252@113940@670^N40^S0000252@113895@670^N41^S0000248@113970@670^N42^S0000248@113964@670^N43^S0000246@113977@670^N44^S0000241@113955@670^N45^S0000241@113929@670^N46^S0000238@113864@670^N47^S0000237@113982@670^N48^S0000237@113974@670^N49^S0000237@113876@670^N50^S0000233@113930@670^N51^S0000229@113928@670^N52^S0000225@113962@670^N53^S0000221@113941@670^N54^S0000217@113981@670^N55^S0000216@113949@670^N56^S0000211@113915@670^N57^S0000209@113891@670^N58^S0000209@113863@670^N59^S0000203@113924@670^N60^S0000201@113951@670^N61^S0000200@113900@670^N62^S0000199@113950@670^N63^S0000199@113907@670^N64^S0000198@113914@670^N65^S0000198@113890@670^N66^S0000197@113866@670^N67^S0000196@113898@670^N68^S0000195@113958@670^N69^S0000192@113954@670^N70^S0000192@113888@670^N71^S0000190@113989@670^N72^S0000189@113990@670^N73^S0000188@113943@670^N74^S0000183@113945@670^N75^S0000178@113963@670^N76^S0000170@113899@670^N77^S0000170@113880@670^N78^S0000169@113968@670^N79^S0000169@113919@670^N80^S0000169@113868@670^N81^S0000167@113972@670^N82^S0000165@113902@670^N83^S0000161@113906@670^N84^S0000159@113952@670^N85^S0000153@113942@670^N86^S0000143@113867@670^N87^S0000137@113908@670^N88^S0000101@113916@670^N89^S0000057@140590@100^t^S71^T^N1^S0000211@113983@670^N2^S0000126@119193@670^N3^S0000120@113969@670^t^S263^T^N1^S0000243@113985@670^N2^S0000228@118114@670^N3^S0000219@113931@670^t^S264^T^N1^S0000188@113889@670^N2^S0000152@119192@670^N3^S0000122@113986@670^t^S258^T^N1^S0000272@113984@670^N2^S0000260@119194@670^N3^S0000238@113948@670^t^S72^T^N1^S0000211@113983@670^N2^S0000126@119193@670^N3^S0000120@113969@670^t^S269^T^N1^S0000243@113985@670^N2^S0000228@118114@670^N3^S0000219@113931@670^t^S262^T^N1^S0000272@113984@670^N2^S0000260@119194@670^N3^S0000238@113948@670^t^t^^",
+ ["114053"] = "^1^T^S*^T^N1^S0000001@112812@512^N2^S0000001@112811@512^N3^S0000001@112810@512^N4^S0000001@112809@512^t^t^^",
["114100"] = "^1^T^S*^T^N1^S0000001@114337@610^N2^S0000001@114336@610^N3^S0000001@114335@610^N4^S0000001@114334@610^t^t^^",
- ["127779"] = "^1^T^S*^T^N1^S0000001@124571@650^t^t^^"
+ ["127809"] = "^1^T^S*^T^N1^S0000001@124589@650^t^t^^",
+ ["127779"] = "^1^T^S*^T^N1^S0000001@124571@650^t^t^^",
+ ["127806"] = "^1^T^S*^T^N1^S0000001@124578@650^t^t^^",
+ ["114099"] = "^1^T^S*^T^N1^S0000001@114333@580^N2^S0000001@114332@580^N3^S0000001@114331@580^N4^S0000001@114330@580^t^t^^",
+ ["114063"] = "^1^T^S*^T^N1^S0000001@114398@615^N2^S0000001@114397@615^N3^S0000001@114396@615^N4^S0000001@114395@615^t^t^^",
+ ["114069"] = "^1^T^S*^T^N1^S0000001@114435@630^N2^S0000001@114434@630^N3^S0000001@114433@630^N4^S0000001@114432@630^t^t^^",
+ ["114075"] = "^1^T^S*^T^N1^S0000001@114459@630^N2^S0000001@114458@630^N3^S0000001@114457@630^N4^S0000001@114456@630^t^t^^",
+ ["114085"] = "^1^T^S*^T^N1^S0000001@114520@645^N2^S0000001@114519@645^N3^S0000001@114518@645^N4^S0000001@114517@645^t^t^^"
}