Advertisement
lafur

Untitled

May 21st, 2020
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 134.51 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 125946
  3. local genv={}
  4. local Scripts = {
  5. function() model = script.Parent.Parent.Parent
  6. backup = model:clone()
  7. local debounce = false
  8.  
  9. function onTouch(part)
  10. if (part.Name == "Safe") and (debounce == false) and (script.Parent.Count.Value == 0) then
  11. debounce = true
  12. wait(2)
  13. model = backup:clone()
  14. model.Parent = game.Workspace
  15. model:makeJoints()
  16. script.Parent.Count.Value = 1
  17. debounce = false
  18. end
  19. end
  20. script.Parent.Touched:connect(onTouch) end;
  21. function() position = script.Parent.Engine.Position
  22. local frame = Instance.new("CFrameValue")
  23. frame.Name = "OriginCFrame"
  24. frame.Value = script.Parent.Engine.CFrame
  25. frame.Parent = script.Parent
  26.  
  27. local object = Instance.new("ObjectValue")
  28. object.Value = script.Parent.Parent.Parent
  29.  
  30. seat = script.Parent.Seat
  31.  
  32. function onSitUp(child, hopper, plane)
  33.  
  34. if child.Parent == nil then
  35. hopper.Parent = nil -- ungive flying tool
  36. plane.Parent = game.Workspace
  37. end
  38. end
  39.  
  40. function onChildAdded(part)
  41. if part.className == "Weld" then
  42.  
  43.  
  44.  
  45. local torso = part.Part1
  46. if torso ~= nil then
  47.  
  48. local char = torso.Parent
  49. local player = game.Players:GetPlayerFromCharacter(char)
  50. if player ~= nil then
  51. local hopper = game.Lighting.Nemesis:clone() -- Replace plane for the name of the flyinging tool
  52. hopper.Parent = player.Backpack
  53. part.AncestryChanged:connect(function(child) onSitUp(child, hopper, script.Parent.Parent) end)
  54. end
  55.  
  56.  
  57.  
  58. local parent = torso.Parent
  59. if parent ~= nil then
  60. script.Parent.Parent.Parent = parent
  61. while true do
  62. wait(2)
  63. local pos = script.Parent.Engine.Position
  64. if (position - pos).magnitude > 30 then
  65. if object.Value ~= nil then
  66. object.Value.Regen.Value = 1
  67. wait(.5)
  68. object.Value.Regen.Value = 0
  69. object.Value = nil
  70. end
  71. break end
  72. end
  73. while true do
  74. print("Loop")
  75. wait(2)
  76. if part == nil then
  77. script.Parent.Parent.Parent = game.Workspace
  78. script.Parent.Parent:MakeJoints()
  79. break end
  80. end
  81. end
  82. end
  83. end
  84. end
  85. seat.ChildAdded:connect(onChildAdded) end;
  86. function() --[[
  87. INSTRUCTIONS: Place both teleporter1a and teleporter1b in the same directory
  88. (e.g. both in workspace directly, or both directly in the same group or model)
  89. Otherwise it wont work. Once youve done that, jump on the teleporter to teleport to the other.
  90. If you want more than one set of teleporters I will be adding more types in the future.
  91.  
  92. Send me requests and ideas - miked.
  93. --]]
  94.  
  95.  
  96. --Enter the name of the model you want to go to here.
  97. ------------------------------------
  98. modelname="teleporter8d"
  99. ------------------------------------
  100.  
  101. function onTouched(part)
  102. if part.Parent ~= nil then
  103. local h = part.Parent:findFirstChild("Humanoid")
  104. if h~=nil then
  105. local teleportfrom=script.Parent.Enabled.Value
  106. if teleportfrom~=0 then
  107. if h==humanoid then
  108. return
  109. end
  110. local teleportto=script.Parent.Parent:findFirstChild(modelname)
  111. if teleportto~=nil then
  112. local torso = h.Parent.Torso
  113. local location = {teleportto.Position}
  114. local i = 1
  115.  
  116. local x = location[i].x
  117. local y = location[i].y
  118. local z = location[i].z
  119.  
  120. x = x + math.random(-1, 1)
  121. z = z + math.random(-1, 1)
  122. y = y + math.random(2, 3)
  123.  
  124. local cf = torso.CFrame
  125. local lx = 0
  126. local ly = y
  127. local lz = 0
  128.  
  129. script.Parent.Enabled.Value=0
  130. teleportto.Enabled.Value=0
  131. torso.CFrame = CFrame.new(Vector3.new(x,y,z), Vector3.new(lx,ly,lz))
  132. wait(3)
  133. script.Parent.Enabled.Value=1
  134. teleportto.Enabled.Value=1
  135. else
  136. print("Could not find teleporter!")
  137. end
  138. end
  139. end
  140. end
  141. end
  142.  
  143. script.Parent.Touched:connect(onTouched) end;
  144. function() --[[
  145. INSTRUCTIONS: Place both teleporter1a and teleporter1b in the same directory
  146. (e.g. both in workspace directly, or both directly in the same group or model)
  147. Otherwise it wont work. Once youve done that, jump on the teleporter to teleport to the other.
  148. If you want more than one set of teleporters I will be adding more types in the future.
  149.  
  150. Send me requests and ideas - miked.
  151. --]]
  152.  
  153.  
  154. --Enter the name of the model you want to go to here.
  155. ------------------------------------
  156. modelname="teleporter8c"
  157. ------------------------------------
  158.  
  159. function onTouched(part)
  160. if part.Parent ~= nil then
  161. local h = part.Parent:findFirstChild("Humanoid")
  162. if h~=nil then
  163. local teleportfrom=script.Parent.Enabled.Value
  164. if teleportfrom~=0 then
  165. if h==humanoid then
  166. return
  167. end
  168. local teleportto=script.Parent.Parent:findFirstChild(modelname)
  169. if teleportto~=nil then
  170. local torso = h.Parent.Torso
  171. local location = {teleportto.Position}
  172. local i = 1
  173.  
  174. local x = location[i].x
  175. local y = location[i].y
  176. local z = location[i].z
  177.  
  178. x = x + math.random(-1, 1)
  179. z = z + math.random(-1, 1)
  180. y = y + math.random(2, 3)
  181.  
  182. local cf = torso.CFrame
  183. local lx = 0
  184. local ly = y
  185. local lz = 0
  186.  
  187. script.Parent.Enabled.Value=0
  188. teleportto.Enabled.Value=0
  189. torso.CFrame = CFrame.new(Vector3.new(x,y,z), Vector3.new(lx,ly,lz))
  190. wait(3)
  191. script.Parent.Enabled.Value=1
  192. teleportto.Enabled.Value=1
  193. else
  194. print("Could not find teleporter!")
  195. end
  196. end
  197. end
  198. end
  199. end
  200.  
  201. script.Parent.Touched:connect(onTouched)
  202. end;
  203. function() local boom = false
  204.  
  205. function createExplosion(position)
  206.  
  207. explosion = Instance.new("Explosion")
  208. explosion.Position = position
  209. explosion.BlastRadius = 12
  210. explosion.Parent = game.Workspace
  211.  
  212. end
  213.  
  214. function onTouch(part)
  215. if boom == true then return end
  216. if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
  217. if (script.Parent.Parts.Tip.Velocity.x > 50) or (script.Parent.Parts.Tip.Velocity.x < -50) or (script.Parent.Parts.Tip.Velocity.z > 50) or (script.Parent.Parts.Tip.Velocity.z < -50) then
  218. boom = true
  219. createExplosion(script.Parent.Parts.Engine.Position)
  220. script.Parent:BreakJoints()
  221. local stuff = script.Parent:children()
  222. for i=1,#stuff do
  223. if stuff[i].Name == "BodyKit" or
  224. stuff[i].Name == "Parts" then
  225. local parts = stuff[i]:children()
  226. for p = 1, #parts do
  227. if parts[p].className == "Part" then
  228. local velo = Instance.new("BodyVelocity")
  229. velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
  230. velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
  231. velo.Parent = parts[p]
  232. end
  233. end
  234. end
  235. end
  236. wait(4)
  237. script.Parent:remove()
  238. end
  239. end
  240.  
  241. script.Parent.Parts.Tip.Touched:connect(onTouch)
  242. end;}local ActualScripts = {}
  243. function s(var)
  244. local func = table.remove(Scripts,1)
  245. setfenv(func,setmetatable({script=var,require=fake_require or require,global=genv},{
  246. __index = getfenv(func),
  247. }))
  248. table.insert(ActualScripts,coroutine.wrap(func))
  249. end
  250. Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  251. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  252. function(t,f)
  253. for a,b in pairs(t) do
  254. f(a,b)
  255. end
  256. end
  257. local Types = {
  258. Color3 = Color3.new,
  259. Vector3 = Vector3.new,
  260. Vector2 = Vector2.new,
  261. UDim = UDim.new,
  262. UDim2 = UDim2.new,
  263. CFrame = CFrame.new,
  264. Rect = Rect.new,
  265. NumberRange = NumberRange.new,
  266. BrickColor = BrickColor.new,
  267. PhysicalProperties = PhysicalProperties.new,
  268. NumberSequence = function(...)
  269. local a = {...}
  270. local t = {}
  271. repeat
  272. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  273. until #a==0
  274. return NumberSequence.new(t)
  275. end,
  276. ColorSequence = function(...)
  277. local a = {...}
  278. local t = {}
  279. repeat
  280. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  281. until #a==0
  282. return ColorSequence.new(t)
  283. end,
  284. number = tonumber,
  285. boolean = function(a)
  286. return a=="1"
  287. end
  288. }
  289. split = function(str,sep)
  290. if not str then return end
  291. local fields = {}
  292. local ConcatNext = false
  293. str:gsub(("([^%s]+)"):format(sep),function(c)
  294. if ConcatNext == true then
  295. fields[#fields] = fields[#fields]..sep..c
  296. ConcatNext = false
  297. else
  298. fields[#fields+1] = c
  299. end
  300. if c:sub(#c)=="\\" then
  301. c = fields[#fields]
  302. fields[#fields] = c:sub(1,#c-1)
  303. ConcatNext = true
  304. end
  305. end)
  306. return fields
  307. end
  308. RemoveAndSplit = function(t)
  309. return split(table_remove(t,1),comma)
  310. end
  311. t = split(str,";")
  312. props = RemoveAndSplit(t)
  313. classes = RemoveAndSplit(t)
  314. values = split(table_remove(t,1),'|')
  315. ICList = RemoveAndSplit(t)
  316. InstanceList = {}
  317. Model = inst"Model"
  318. CurPar = Model
  319. table_foreach(t,function(ct,c)
  320. if c=="n" or c=="p" then
  321. CurPar = c=="n" and LastIns or CurPar[parnt]
  322. else
  323. ct = split(c,"|")
  324. local class = classes[tonum(table_remove(ct,1))]
  325. if class=="UnionOperation" then
  326. LastIns = {UsePartColor="1"}
  327. else
  328. LastIns = inst(class)
  329. if LastIns:IsA"Script" then
  330. s(LastIns)
  331. elseif LastIns:IsA("ModuleScript") then
  332. ms(LastIns)
  333. end
  334. end
  335.  
  336. local function SetProperty(LastIns,p,str,s)
  337. s = Types[typeof(LastIns[p])]
  338. if p=="CustomPhysicalProperties" then
  339. s = PhysicalProperties.new
  340. end
  341. if s then
  342. LastIns[p] = s(unpack(split(str,comma)))
  343. else
  344. LastIns[p] = str
  345. end
  346. end
  347.  
  348. local UnionData
  349. table_foreach(ct,function(s,p,a,str)
  350. a = p:find":"
  351. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  352. if p=="UnionData" then
  353. UnionData = split(str," ")
  354. return
  355. end
  356. if class=="UnionOperation" then
  357. LastIns[p] = str
  358. return
  359. end
  360. SetProperty(LastIns,p,str)
  361. end)
  362.  
  363. if UnionData then
  364. local LI_Data = LastIns
  365. LastIns = DecodeUnion(UnionData)
  366. table_foreach(LI_Data,function(p,str)
  367. SetProperty(LastIns,p,str)
  368. end)
  369. end
  370. table.insert(InstanceList,LastIns)
  371. LastIns[parnt] = CurPar
  372. end
  373. end)
  374. table_remove(ICList,1)
  375. table_foreach(ICList,function(a,b)
  376. b = split(b,">")
  377. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  378. end)
  379.  
  380. return Model:GetChildren()
  381. end
  382.  
  383. local Objects = Decode('Name,PrimaryPart,Color,Position,Orientation,Velocity,Size,BackSurface,BottomSurface,FrontSurface,LeftSurface,RightSurface,TopSurface,MaxForce,MaxTorque,C0,C1,Part0,Part1,Value,CanCollide,MeshType,Reflectance,Transparency,Shape,Anchored;Part,Model,BodyPosition,BodyGyro,Script,IntValue,Weld,CFrameValue,BoolValue,Seat,SpecialMesh;Part|ADNemesis|Plane|Parts|Engine|0.1058,0.1647,0.2078|-14.8097,7.5595,-24.1555|-0.57,-179.67,0.0199|0.1827,-0.0066,0.1618|35,1.2,128|2|-1.5,3,-48|0,0,0|Count|0,0.6,0,-1,-0,-0,0,0,1,0,1,0|43,-0.6001,8,-0.0001,1,-0.0001,-0.0001,-0.0001,1,1,-0.0001,-0.0001|-5,-1.2001,33,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|OriginCFrame|-74.5,8.4,75,-1,0,-0,-0,1,-0,-0,0,-1|-139,10.8,-727,-1,0,-0,-0,1,-0,-0,0,-1|-61.0063,13.0934,-208.973,-1,0.0013,-0.0003,0.0013,0.9998,-0.0147,0.0002,-0.0147,-0.9999|-197.0018,75.9051,14'
  384. ..'7.1551,-1,0.0004,0,0.0004,0.9998,-0.0152,-0.0001,-0.0152,-0.9999|13.7287,2.1774,100.1565,-0.9987,-0.0011,-0.0517,-0.0011,0.9999,-0.0004,0.0516,-0.0003,-0.9987|16.9975,2.1822,98.997,-1,0,-0.0001,0,1,-0.0003,0,-0.0003,-1|9.9892,2.1828,60.997,-1,-0.0001,-0.0001,-0.0001,1,-0.0003,0,-0.0003,-1|9.9889,2.1804,60.997,-1,-0.0001,-0.0001,-0.0001,1,-0.0003,0,-0.0003,-1|-17.0083,1.3799,7.1724,-1,-0.0001,-0.0001,-0.0001,1,0,0,0,-1|103,5.5,55,0,0,-1,0,1,0,1,0,0|160,5.4,-41,0,0,-1,0,1,0,1,0,0|160,5.3898,-41.0003,0,0,-1,-0.0001,1,0,0.9999,0,0|159.9999,5.3898,-41.0003,0,0,-1,-0.0001,1,0,1,0,0|159.9995,5.3898,-41.0003,0,0,-1,-0.0001,1,0,0.9999,0,0|Gear|1|94,33.1,-92,1,0,0,0,1,0,0,0,1|94.8,51.8,-93,1,0,0,0,1,0,0,0,1|mode|143,35.5,-91,1,0,-0.0001,0,1,0,-0.0001,0,1|143,40.2999,-91,1,0,0,0,1,0,0,0,1|143.0204,37.7941,-90.839,0.9999,0.0001,0.0008,-0.0'
  385. ..'002,1,-0.0001,-0.0009,0,0.9999|Gun3|-0.3304,6.7299,59.2587|0.2618,-0.0091,0.1481|3,1.2,1|0|0,0,-0.5,-1,-0,-0,0,1,0,-0,-0,-1|0.5,-0.1001,-0.0001,-0.0001,-0.0001,-1,0,-1,-0.0001,-1,0,-0.0001|-0.1001,-0.6001,0.9999,0,-1,-0.0001,0,0,1,-1,0,-0.0001|-1.5,0,0,-0,-0,-1,0,1,0,1,0,0|-0.1001,9.8999,1,0,-1,0,-1,0,0,0,0,-1|0,-0.6001,0,1,0,0,-0,-0,-1,0,1,0|0,-3.0001,-6,-1,-0.0001,0,-0.0001,0,1,0,1,0|Gun4|-28.3299,6.7403,59.4197|0.262,-0.009,0.1746|Gun2|-96.0858,7.7228,-37.188|0.1703,-0.0057,0.239|3,3.6,1|0,0,0.5,1,0,0,0,1,0,0,0,1|-0.1,6,0,-0.0001,-1,0,-0.0001,0,-1,1,0,0|Gun1|66.3115,7.6628,-38.1212|0.1694,-0.0067,0.0848|1.4999,-0.3,0,-0.0001,-0.0001,-1,0,-1,-0.0001,-1,0,-0.0001|0.7686,0.1568,0.1098|-14.4229,11.6977,42.8876|0.2463,-0.0086,0.1616|3,1.2,2|0,0.5999,0.4999,-1,-0.0001,0,0,-0.0001,-1,-0.0001,-1,-0.0001|33.5,47,-127,-1,0,0,0,1,0,0,0'
  386. ..',-1|33.5,39.0069,-123.1249,-1,0,-0.0001,0,0.9999,0.0098,0,0.0098,-1|33.5,39.0069,-123.1236,-1,0,-0.0001,-0.0001,0.9999,0.0098,0,0.0098,-1|33.4998,38.9966,-123.1273,-1,-0.0001,-0.0001,-0.0001,0.9999,0.0098,0,0.0098,-1|193.4991,39.9069,-93.1276,-1,-0.0001,-0.0001,-0.0001,0.9999,0.0098,0,0.0098,-1|PlaneCheck|Stunt|BodyKits|CaptainChair|-16.4328,15.3181,40.9349|0.5699,0.33,-0.02|0.2445,-0.0085,0.1636|1,1.2,2|0|0,1.7999,2,0,1,-0.0001,-0.0001,0,-1,-1,-0.0001,-0.0001|-16.4218,14.0984,42.9229|0.2464,-0.0086,0.1635|-0.0001,1.1999,0,1,0,-0.0001,0,-0.0001,-1,0,1,0|-15.4325,15.9177,40.935|0.2445,-0.0085,0.1627|1,2.4,2|0,-1.2001,0,1,0,0,-0,-0,-1,0,1,0|-0.0001,1.7999,0.9999,0,1,-0.0001,-0.0001,0,-1,-1,-0.0001,-0.0001|0.3882,0.3725,0.3843|-14.4323,16.5173,40.9352|0.2445,-0.0085,0.1617|1,3.6,2|0,-1.8001,0,1,0,0,-0,-0,-1,0,1,0|-0.0001,1.7999,0,'
  387. ..'0,1,-0.0001,-0.0001,0,-1,-1,-0.0001,-0.0001|-13.4326,15.9169,40.9236|0.2445,-0.0085,0.1608|-0.0001,1.7999,-1,0,1,-0.0001,-0.0001,0,-1,-1,-0.0001,-0.0001|-16.4226,12.2985,42.9051|-12.4226,12.297,42.8821|0.2463,-0.0086,0.1597|2,0.5999,0.4999,-1,-0.0001,0,0,-0.0001,-1,-0.0001,-1,-0.0001|-12.4219,14.0969,42.8999|0.2464,-0.0086,0.1597|0,1.2,0,1,0,-0.0001,0,-0.0001,-1,0,1,0|-14.4338,12.9175,40.8997|-0.02,-89.67,-0.57|0.2445,-0.0085,0.1616|2,3.6,5|-12.4328,15.3166,40.9119|0.2445,-0.0085,0.1598|-0.0001,1.7999,-2.0001,0,1,-0.0001,-0.0001,0,-1,-1,-0.0001,-0.0001|-15.9429,11.7328,39.3965|0.243,-0.0085,0.163|2,1.2,1|-1.5,0.5999,-3.0001,1,0,0,-0.0001,0,-1,0,1,-0.0001|-14.4425,12.9322,39.3997|0.243,-0.0085,0.1616|1,3.6,1|0,0.6,-3.0001,1,0,0,-0.0001,0,-1,0,1,-0.0001|-12.943,11.7318,39.3793|0.243,-0.0085,0.1602|Chair|-4.4917,12.4125,30.8369|0.'
  388. ..'2349,-0.0083,0.1522|-7.4916,12.4136,30.8541|0.2349,-0.0083,0.155|0,1.2,0,-1,-0,-0,0,0,1,0,1,0|0,-0.6,-0.0001,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-1,1.8,2.4999,-1,-0.0001,0,0,-0.0001,-1,-0.0001,-1,-0.0001|-4.4909,14.2124,30.8546|-7.4909,14.2136,30.8719|0.2349,-0.0083,0.1551|-6,13.0279,29.3515|0.2335,-0.0082,0.1536|1,3.6,4|0,1.8,0,-1,-0,-0,0,0,1,0,1,0|-0.0001,-0.6,-0.0001,-1,-0.0001,0,-0.0001,0,1,0,1,0|0,-0.6,1.5,1,0,-0.0001,-0.0001,0,1,-0.0001,-1,-0.0001|-0.0001,-0.6,1.5,-1,-0.0001,0,-0.0001,0,1,0,1,0|0.5,1.8,1,0,-1,0,0,0,-1,1,-0.0001,-0.0001|-4.499,15.4272,29.3666|0.2335,-0.0082,0.1523|1,1.2,1|-7.499,15.4283,29.3838|0.0199,90.33,0.5699|0.2335,-0.0082,0.1551|-6.0055,13.6377,28.3575|0.2326,-0.0082,0.1536|2,4.8,1|-5.999,15.4278,29.3752|0.2335,-0.0082,0.1537|-5.9985,16.6277,29.3871|0.2336,-0.0082,0.1537|-0.0001,0.5999,0,0,1,'
  389. ..'-0.0001,-0.0001,0,-1,-1,-0.0001,-0.0001|-5.9919,11.8131,30.8396|0.2349,-0.0083,0.1536|2,1.2,2|0.5,1.8,2.4999,0,-1,0,0,0,-1,1,-0.0001,-0.0001|-21.4914,12.4188,30.9346|0.235,-0.0082,0.1683|0.9999,1.8,2.5,-1,-0.0001,0,0,-0.0001,-1,-0.0001,-1,-0.0001|-24.4913,12.4199,30.9518|0.235,-0.0082,0.1712|0,-0.6001,-0.0001,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-2,1.8,2.4999,-1,-0.0001,0,0,-0.0001,-1,-0.0001,-1,-0.0001|-21.4906,14.2187,30.9523|0.235,-0.0082,0.1684|-0.0001,1.2,0,1,0,-0.0001,0,-0.0001,-1,0,1,0|-24.4906,14.2198,30.9696|-22.9997,13.0341,29.4492|0.2336,-0.0081,0.1698|-0.0001,-0.6001,0,-1,-0.0001,0,-0.0001,0,1,0,1,0|-0.0001,-0.6001,1.5,-1,-0.0001,0,-0.0001,0,1,0,1,0|-0.5001,1.7999,0.9999,0,-1,0,0,0,-1,1,-0.0001,-0.0001|-21.4987,15.4335,29.4643|0.2336,-0.0081,0.1684|-24.4987,15.4346,29.4815|0.2336,-0.0081,0.1712|0,1.8,1.5,-1,0,'
  390. ..'-0.0001,-0.0001,-0.0001,-1,0,-1,-0.0001|-23.0052,13.644,28.4552|0.2326,-0.0081,0.1698|-22.9987,15.434,29.4729|-22.9982,16.634,29.4847|0.2336,-0.0081,0.1699|-0.0001,0.5999,-0.0001,0,1,-0.0001,-0.0001,0,-1,-1,-0.0001,-0.0001|-22.9916,11.8194,30.9372|0.235,-0.0082,0.1697|-0.5,1.8,2.4999,-0.0001,1,0,-0.0001,-0.0001,-1,-1,0,-0.0001|-6.9245,8.0951,42.809|0.2462,-0.0086,0.1544|-7.5001,0.5999,3.5,1,0,-0.0001,0,-0.0001,-1,0,1,0|-5.4243,8.6946,42.8064|0.2462,-0.0086,0.1529|-9.0001,0.6,3.5,1,0,-0.0001,0,-0.0001,-1,0,1,0|-8.4242,8.6957,42.8236|0.2463,-0.0086,0.1558|-6.0001,0.6,3.4999,1,0,-0.0001,0,-0.0001,-1,0,1,0|-5.4235,10.4945,42.8241|0.2463,-0.0086,0.153|-8.4235,10.4956,42.8414|-6.9326,9.3099,41.321|0.2448,-0.0086,0.1544|-7.5001,0.6,5,-0.0001,1,-0.0001,0,0,-1,-1,0,0|0,-0.6001,1.5,1,0,-0.0001,-0.0001,0,1,-0.0001,-1,-0.0001|-5.4316,11.70'
  391. ..'92,41.3361|0.2449,-0.0086,0.153|-8.4316,11.7103,41.3533|0.2449,-0.0086,0.1559|-6.9381,9.9197,40.327|0.2439,-0.0085,0.1544|0,-2.4001,0,1,0,0,-0,-0,-1,0,1,0|-7.5001,0.6,5.9999,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-6.9316,11.7098,41.3447|0.2449,-0.0086,0.1545|-6.9311,12.9097,41.3565|-0.0001,0.6,0,0,1,-0.0001,-0.0001,0,-1,-1,-0.0001,-0.0001|-21.9243,8.1007,42.8952|0.2463,-0.0085,0.1686|7.4999,0.6,3.5,1,0,-0.0001,0,-0.0001,-1,0,1,0|-20.424,8.7001,42.8925|0.2463,-0.0085,0.1672|5.9999,0.6,3.5,1,0,-0.0001,0,-0.0001,-1,0,1,0|-0.0001,-0.6,-0.0001,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-23.424,8.7012,42.9098|0.2463,-0.0085,0.17|8.9999,0.6,3.5,1,0,-0.0001,0,-0.0001,-1,0,1,0|-20.4233,10.5,42.9103|-23.4232,10.5011,42.9275|0.2464,-0.0085,0.1701|-21.9324,9.3154,41.4072|0.2449,-0.0085,0.1686|7.5,0.6,4.9999,-0.0001,1,-0.0001,0,0,-1,-'
  392. ..'1,0,0|-20.4314,11.7148,41.4223|0.2449,-0.0085,0.1673|-23.4313,11.7159,41.4395|0.245,-0.0085,0.1701|-21.9379,9.9253,40.4132|0.244,-0.0085,0.1687|7.4999,0.5999,6,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-21.9314,11.7153,41.4309|0.245,-0.0085,0.1687|0,-0.6,0,-0.0001,-1,-0.0001,-0.0001,0,1,-1,-0.0001,0|0,1.8,0,1,-0.0001,-0.0001,0,0,-1,-0.0001,1,-0.0001|-21.9308,12.9153,41.4427|Couch|-2.0624,8.3303,18.7818|0.2234,-0.008,0.1497|-12.5,0.6,-43.0001,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-0.5622,8.9297,18.7791|0.2234,-0.008,0.1483|-14.0001,0.6,-43,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-0.5614,10.7296,18.7969|0.2235,-0.008,0.1484|0,1.2,0,1,0,0,-0.0001,0,-1,0,1,-0.0001|-5.0532,9.5165,20.3108|0.2249,-0.008,0.1526|1,3.6,10|-0.0001,-0.6001,-0.0001,-1,-0.0001,-0.0001,0,-0.0001,1,0,1,-0.0001|0,-0.6001,4,1,0,0,0,-0.0001,1,-0.00'
  393. ..'01,-1,0|-9.5,0.5999,-44.5,0,-1,-0.0001,-0.0001,-0.0001,-1,1,-0.0001,0|-1.0523,11.9149,20.3115|0.2249,-0.008,0.1489|-5.0522,11.9164,20.3345|0.2249,-0.008,0.1527|1,1.2,6|-3.5624,8.3308,18.7904|0.2234,-0.0079,0.1512|-11.0001,0.6,-43.0001,0,-1,-0.0001,-0.0001,-0.0001,-1,1,-0.0001,0|-9.562,8.933,18.8308|0.2235,-0.0079,0.1569|-5,0.6,-43.0001,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-9.5613,10.7329,18.8486|-9.0521,11.9179,20.3575|0.225,-0.008,0.1565|0,1.8,-4,1,-0.0001,0,-0.0001,-0.0001,-1,-0.0001,1,0|-6.5623,8.3319,18.8077|0.2235,-0.0079,0.154|-8,0.5999,-43.0001,0,-1,-0.0001,-0.0001,-0.0001,-1,1,-0.0001,0|-8.0623,8.3325,18.8163|0.2235,-0.0079,0.1554|-6.5001,0.5999,-43,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-5.0624,8.3314,18.799|0.2234,-0.0079,0.1526|-9.5,0.5999,-43.0001,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-21.0621,8'
  394. ..'.3373,18.891|0.2235,-0.0078,0.1678|6.4999,0.6,-43.0001,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-19.5619,8.9367,18.8883|0.2235,-0.0078,0.1664|-0.0001,-0.6001,0,-1,0,-0.0001,0,0,1,-0.0001,1,0|5,0.6,-43.0001,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-19.5611,10.7366,18.9061|0.2236,-0.0078,0.1664|-24.0529,9.5235,20.42|0.225,-0.0079,0.1707|9.5,0.6,-44.5,0,-1,-0.0001,-0.0001,-0.0001,-1,1,-0.0001,0|-20.052,11.922,20.4207|0.225,-0.0079,0.1669|0,1.7999,3.9999,-1,0,0,0,0,-1,0,-1,0|-24.0519,11.9234,20.4437|0,1.7999,0,1,-0.0001,0,-0.0001,-0.0001,-1,-0.0001,1,0|-22.5621,8.3379,18.8996|0.2235,-0.0078,0.1692|-28.5617,8.9401,18.94|0.2236,-0.0078,0.1749|14,0.6,-43,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-0.0001,-0.6,0,-1,0,-0.0001,0,0,1,-0.0001,1,0|-28.561,10.74,18.9578|0.2236,-0.0078,0.175|-28.0518,11.9249,20.4667|0.2251,-0.0078,0'
  395. ..'.1745|0,1.7999,-4,1,-0.0001,0,-0.0001,-0.0001,-1,-0.0001,1,0|-25.562,8.339,18.9168|0.2236,-0.0078,0.1721|11,0.5999,-43,0,-1,-0.0001,-0.0001,-0.0001,-1,1,-0.0001,0|-27.062,8.3395,18.9255|0.2236,-0.0078,0.1735|12.5,0.6,-43,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-24.062,8.3384,18.9082|0.2236,-0.0078,0.1706|9.5,0.6,-43.0001,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-8.1197,8.4312,8.8169|0.214,-0.0076,0.1555|-6.5,0.6,-33,1,0,-0.0001,0,-0.0001,-1,0,1,0|-9.6195,9.0318,8.8315|0.214,-0.0076,0.1569|-5,0.6,-33.0001,1,0,-0.0001,0,-0.0001,-1,0,1,0|-9.6187,10.8317,8.8492|0.214,-0.0076,0.157|0,1.1999,0,1,0,-0.0001,0,-0.0001,-1,0,1,0|-5.1279,9.6449,7.3116|0.2126,-0.0076,0.1527|-9.5,0.6,-31.5,-0.0001,1,-0.0001,0,0,-1,-1,0,0|-9.1268,12.0462,7.3583|0.2126,-0.0076,0.1566|0,1.7999,3.9999,-1,0,-0.0001,-0.0001,-0.0001,-1,0,-1,-0.0001|-5.1269'
  396. ..',12.0448,7.3353|0.2126,-0.0076,0.1528|0,1.7999,0,1,-0.0001,-0.0001,0,0,-1,-0.0001,1,-0.0001|-6.6198,8.4307,8.8083|0.214,-0.0076,0.1541|-8,0.6,-33.0001,-0.0001,1,-0.0001,0,0,-1,-1,0,0|-0.6196,9.0284,8.7797|0.2139,-0.0077,0.1484|0,-0.6001,0,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-14,0.6,-33.0001,1,0,-0.0001,0,-0.0001,-1,0,1,0|-0.6188,10.8284,8.7975|0.214,-0.0077,0.1485|-1.1269,12.0433,7.3123|0.2126,-0.0076,0.149|0,1.7999,-4.0001,1,-0.0001,-0.0001,0,0,-1,-0.0001,1,-0.0001|-3.6198,8.4296,8.7911|0.214,-0.0077,0.1512|-11,0.6,-33,-0.0001,1,-0.0001,0,0,-1,-1,0,0|-2.1198,8.429,8.7824|0.2139,-0.0077,0.1498|-12.5,0.6,-33.0001,1,0,-0.0001,0,-0.0001,-1,0,1,0|-5.1198,8.4301,8.7997|0.214,-0.0076,0.1527|-9.5,0.6,-33,1,0,-0.0001,0,-0.0001,-1,0,1,0|-27.1194,8.4383,8.9261|0.2141,-0.0075,0.1735|12.4999,0.5999,-33,1,0,-0.0001,0,-0.0001,-1,0,1,0'
  397. ..'|-28.6192,9.0388,8.9406|0.2141,-0.0075,0.175|14,0.6,-33.0001,1,0,-0.0001,0,-0.0001,-1,0,1,0|-28.6184,10.8387,8.9584|-24.1276,9.6519,7.4208|0.2127,-0.0075,0.1707|9.5,0.6,-31.5001,-0.0001,1,-0.0001,0,0,-1,-1,0,0|0,-0.6,3.9999,-1,-0.0001,0,-0.0001,0,1,0,1,0|0,-0.6,0,-1,-0.0001,0,-0.0001,0,1,0,1,0|0,-0.6,4,1,0,-0.0001,-0.0001,0,1,-0.0001,-1,-0.0001|-28.1265,12.0533,7.4675|0.2127,-0.0075,0.1746|-24.1266,12.0518,7.4445|0.2127,-0.0075,0.1708|-25.6195,8.4377,8.9175|0.2141,-0.0075,0.1721|11,0.6,-33,-0.0001,1,-0.0001,0,0,-1,-1,0,0|-19.6193,9.0355,8.8889|0.214,-0.0075,0.1664|-19.6185,10.8354,8.9067|0.2141,-0.0076,0.1665|-20.1266,12.0503,7.4215|0.2127,-0.0075,0.167|-22.6195,8.4366,8.9002|0.2141,-0.0075,0.1693|8,0.6,-33,-0.0001,1,-0.0001,0,0,-1,-1,0,0|-21.1195,8.436,8.8916|0.214,-0.0075,0.1678|6.4999,0.6,-33,1,0,-0.0001,0,-0.0001,-1,0,1,0|-'
  398. ..'24.1195,8.4371,8.9089|0.2141,-0.0075,0.1707|9.5,0.6,-33,1,0,-0.0001,0,-0.0001,-1,0,1,0|-38.9844,7.8695,-54.5156|0.1539,-0.0056,0.1848|13,1.2,67|-6.5,0,0,-0,-0,-1,0,1,0,1,0,0|17.5,0,30.5,0,0,-1,-0.0001,1,-0.0001,1,-0.0001,-0.0001|0,0,33.5,1,0,0,0,1,0,0,0,1|6,0.5999,7,1,0,0,-0.0001,-1,0,-0.0001,0,-1|-0.0001,-2.4001,16.5,-1,-0.0001,0,-0.0001,0,1,0,1,0|0,0,-33.5,-1,-0,-0,0,1,0,-0,-0,-1|0.1,-6.6,-0.0001,-0.0001,1,0,0,0,1,1,-0.0001,0|0,-11.4001,1.1,1,0,0,0,-0.0001,1,-0.0001,-1,0|6.5,0,0,0,0,1,0,1,0,-1,-0,-0|-0.1,-20.4001,-11.0001,-0.0001,-1,-0.0001,-0.0001,0,1,-1,-0.0001,0|-0.0001,2.4,-17.0001,1,0,-0.0001,0,-0.0001,-1,0,1,0|0,-6.6,-17.0001,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|9.0148,7.8518,-54.7915|0.1536,-0.0059,0.1392|-17.5,0,30.4999,-0.0001,0,1,0,1,0,-1,-0.0001,0|1.9947,14.4935,-58.6859|0.15,-0.0057,0.1461|1,12,57|0,6,0,-1,-'
  399. ..'0,-0,0,0,1,0,1,0|-1.5,-0.6001,1.4999,-1,-0.0001,-0.0001,-0.0001,-0.0001,1,-0.0001,1,0|0,-6,0,1,0,0,-0,-0,-1,0,1,0|-17,0.5999,34.5,1,-0.0001,0,0,-0.0001,-1,0,1,-0.0001|-32.0048,14.506,-58.4906|0.1501,-0.0055,0.1783|17.0001,0.5999,34.5001,1,0,-0.0001,0,-0.0001,-1,0,1,0|-38.8866,14.9063,-37.9456|0.1696,-0.0061,0.1849|13,13.2,34|0,-6.6001,0,1,0,0,-0,-0,-1,0,1,0|-0.0001,0.5999,-16.5,1,0,-0.0001,0,-0.0001,-1,0,1,0|8.9203,15.2191,-71.7194|0.1376,-0.0054,0.1395|13,13.2,33|1.2998,-6.0001,12.4999,-0.0001,1,0,-0.0001,-0.0001,0.9999,1,0,0|-0.0001,0.5998,17,1,-0.0001,0,0,-0.0001,-1,0,1,-0.0001|-39.079,15.237,-71.4435|0.1378,-0.0051,0.1851|0,0,16.5,1,0,0,0,1,0,0,0,1|6,-6.6,7,1,0,0,-0.0001,-1,0,-0.0001,0,-1|1.3,-6.0001,8.9999,0,1,0,-0.0001,0,1,1,0,-0.0001|0,-11.4001,-6.1,1,0,0,0,-0.0001,1,-0.0001,-1,0|0,6.6,0,-1,-0,-0,0,0,1,0,1,0|0,-2.4,-14.0'
  400. ..'001,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|0,-2.4001,5,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|4.3,-14.4001,8.9999,0,1,0,-0.0001,0,1,1,0,-0.0001|-7.3,-20.4,5.9999,-0.0001,-1,-0.0001,-0.0001,0,1,-1,-0.0001,0|-38.8909,4.7068,-38.0463|-0.57,-179.67,-179.98|0.1695,-0.0061,0.1846|13,4.8,34|-39.0833,5.0375,-71.5442|0.1377,-0.0051,0.1848|13,4.8,33|6,3.6,6.9999,1,0,0,-0.0001,-1,0,-0.0001,0,-1|0,-3.2,10.9999,1,0,0,-0.0001,-1,0,-0.0001,0,-1|2.9,-20.4,6,-0.0001,-1,-0.0001,-0.0001,0,1,-1,-0.0001,0|4,-1.2,13.4999,1,0,-0.0001,-0.0001,0,1,-0.0001,-1,-0.0001|-0.1,-12.6,5.5,-0.0001,-1,-0.0001,-0.0001,0,1,-1,-0.0001,0|0,1.1999,-13.5,1,0,-0.0001,0,-0.0001,-1,0,1,0|0,-11.4,4.1,1,0,0,0,-0.0001,1,-0.0001,-1,0|-4,-1.2,13.4999,1,0,-0.0001,-0.0001,0,1,-0.0001,-1,-0.0001|0.0999,-12.6,9.4999,0,1,0,-0.0001,0,1,1,0,-0.0001|8.9159,5.0198,-71.82|0.137'
  401. ..'4,-0.0054,0.1392|2.8999,-20.4,8.9999,0,-1,0,-0.0001,-0.0001,1,-1,0,0|0,2.4,0,-1,-0,-0,0,0,1,0,1,0|-0.0001,-0.6001,17,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-0.0001,-3.2003,11.0001,1,-0.0001,-0.0001,-0.0001,-1,0,-0.0001,-0.0001,-1|-6,3.5994,7.0002,1,0,0,0,-1,0,0,-0.0001,-1|9.1083,4.689,-38.3221|0.1692,-0.0064,0.139|-0.0001,-0.6,-16.5,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|9.1127,14.8889,-38.2215|-0.5601,-179.67,0.0199|0.1694,-0.0064,0.1393|1.3001,-6,-21,-0.0001,1,0,-0.0001,-0.0001,1,1,0,0|-0.0001,0.6001,-16.5,1,-0.0001,0,0,-0.0001,-1,0,1,-0.0001|35.7649,7.9984,-80.9454|0.5699,0.33,-90.02|0.1288,-0.0053,0.1138|3,40.8,15|0,-20.4001,0,1,0,0,-0,-0,-1,0,1,0|-6.5,-7.2999,9,-0.0001,-0.0001,1,-1,-0.0001,-0.0001,0,-1,-0.0001|-6.5,-0.1002,26,-0.0001,-0.0001,1,-1,-0.0001,-0.0001,0,-1,-0.0001|-66.0333,8.0361,-80.3604|0.5699,0.33,89.'
  402. ..'98|0.1293,-0.0046,0.2105|6.5,-7.3001,8.9999,0,-0.0001,-1,1,0,-0.0001,-0.0001,-1,-0.0001|6.5,-0.1001,26,0,-0.0001,-1,1,0,-0.0001,-0.0001,-1,-0.0001|6.4999,2.8999,9,0,-0.0001,-1,1,0,-0.0001,-0.0001,-1,-0.0001|0,0,7.5,1,0,0,0,1,0,0,0,1|0,0,7.5,-1,-0.0001,-0.0001,0,1,-0.0001,-0.0001,0,-1|35.8511,7.8505,-65.9463|-0.57,-179.67,90.0199|0.143,-0.0057,0.1138|0,0,7.4999,-1,0,0,-0.0001,1,-0.0001,0,0,-1|-6.5,2.9,-6,0,0,1,1,-0.0001,0,-0.0001,1,0|-6.5,-7.3,-6,0,0,1,1,-0.0001,0,-0.0001,1,0|-6.5,-0.1,11,0,0,1,1,-0.0001,0,-0.0001,1,0|60.4507,7.8414,-66.0877|0.1429,-0.0059,0.0904|3,8.4,15|0,-4.2001,0,1,0,0,-0,-0,-1,0,1,0|0,20.3999,-0.0001,-1,0,0,0,0,-1,0,-1,0|40.1372,7.7008,-50.9714|-0.57,-179.67,-89.9801|0.1572,-0.0062,0.1097|3,49.2,15|0,-24.6001,0,1,0,0,-0,-0,-1,0,1,0|-0.0001,-1.8001,3.5,1,0,0,0,-0.0001,1,-0.0001,-1,0|-0.0001,-20.4,7.5,1,-0.00'
  403. ..'01,0,0,-1,-0.0001,-0.0001,-0.0001,-1|-0.0001,-6.5,1.4999,1,0,0,-0.0001,-1,0,-0.0001,0,-1|0,4.2,-7.5001,-1,0,-0.0001,0,-1,-0.0001,0,0,1|-65.9472,7.8881,-65.3614|0.1436,-0.0051,0.2104|0,20.4,0,-1,-0,-0,0,0,1,0,1,0|0,-4.2001,0,1,-0.0001,0,0,0,1,0,-1,-0.0001|-90.5468,7.8971,-65.22|0.1437,-0.0049,0.2337|-70.061,7.7415,-50.3382|0.1578,-0.0055,0.2143|-0.0001,4.1999,-7.5001,-1,0,0,0,-1,0,-0.0001,-0.0001,1|-0.0001,-6.5001,-1.5001,-1,0,-0.0001,0,-1,-0.0001,0,0,1|0,-1.8001,3.4999,1,0,-0.0001,0,0,1,0,-1,0|0,-20.4001,7.5,1,-0.0001,-0.0001,0,-1,0,0,0,-1|-60.0322,11.0338,-80.3653|0.1294,-0.0047,0.2048|3,28.8,15|-59.8943,10.7968,-56.3668|0.1521,-0.0054,0.2047|3,28.8,33|0,-14.4001,0,1,0,0,-0,-0,-1,0,1,0|6.5,-4.3001,18.4999,-0.0001,0,-1,-1,-0.0001,-0.0001,0,1,-0.0001|6.5,-4.3001,-15.0001,-0.0001,0,-1,-1,-0.0001,-0.0001,0,1,-0.0001|0,0,7.5,-1,0,-'
  404. ..'0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|29.9043,10.7637,-56.8828|-0.5601,-179.67,90.0199|0.1516,-0.006,0.1195|-6.5,-4.3,18.4999,0,0,1,1,-0.0001,0,-0.0001,1,0|-6.5001,-4.3,-15,0,0,1,1,-0.0001,0,-0.0001,1,0|29.7664,11.0003,-80.8813|0.56,0.33,-90.02|0.1289,-0.0053,0.1196|0,-0.0001,16.5,-1,-0.0001,0,0,1,0,0,-0.0001,-1|-6.5,-4.3,9,-0.0001,-0.0001,1,-1,0,0,0,-1,0|-51.5076,13.8183,-58.8853|0.1498,-0.0054,0.1968|3,12,28|6.5,-1.3001,21,-0.0001,0,-1,-1,-0.0001,-0.0001,0,1,-0.0001|6.5,-1.3001,-12.5001,-0.0001,0,-1,-1,-0.0001,-0.0001,0,1,-0.0001|0,0,14,1,0,0,0,1,0,0,0,1|-51.631,14.0305,-80.3839|0.1294,-0.0047,0.197|3,12,15|21.4913,13.7913,-59.3048|0.1494,-0.0058,0.1276|21.3679,14.0033,-80.8034|0.129,-0.0052,0.1277|0,0,14,-1,-0.0001,0,0,1,0,0,-0.0001,-1|-6.5001,-1.3001,9,-0.0001,-0.0001,1,-1,0,0,0,-1,0|28.0471,4.8585,-66.4311|0.1425,-0.0057,0'
  405. ..'.1211|3,25.2,16|0,-12.6001,0,1,0,0,-0,-0,-1,0,1,0|-6.5,-0.1,-5.5,0,0,1,1,-0.0001,0,-0.0001,1,0|27.961,5.0065,-81.4301|0.1283,-0.0052,0.1212|3,25.2,14|0,0,7,1,0,0,0,1,0,0,0,1|0,0,8,-1,-0.0001,0,0,1,0,0,-0.0001,-1|-6.5,-0.1,9.5,-0.0001,-0.0001,1,-1,0,0,0,-1,0|-58.1515,4.8903,-65.9358|0.143,-0.0051,0.2029|-58.2376,5.0383,-80.9348|0.1288,-0.0047,0.203|0,0,7.9999,-1,-0.0001,-0.0001,0,1,-0.0001,-0.0001,0,-1|-39.2418,9.4128,-99.4019|89.43,-177.53,2.14|0.1113,-0.0043,0.1851|11,22.8,11|8.7575,9.3945,-99.6779|0.111,-0.0046,0.1395|0,0,5.5,1,0,0,0,1,0,0,0,1|-0.0001,-1.7995,-0.4002,1,-0.0001,0,-0.0001,0,1,-0.0001,-1,0|0,-11.4001,0,1,0,0,-0,-0,-1,0,1,0|0,-6.1002,16.5001,1,0,0,0,-1,-0.0001,0,0,-1|-0.0001,1.0994,33.5001,0.9999,0,0,0,-1,-0.0001,0,0,-1|-0.0001,4.0994,16.5001,1,0,0,0,-1,-0.0001,0,0,-1|14.7824,8.8494,-95.3175|0.5699,0.33,179.9799|'
  406. ..'0.1151,-0.0047,0.1338|1,12,14|-6.0001,-6.6001,16.5,1,-0.0001,-0.0001,0,-1,0,0,0,-1|-6.0001,0.5999,33.5,1,-0.0001,-0.0001,0,-1,0,0,0,-1|-6.0001,3.5999,16.5,1,-0.0001,-0.0001,0,-1,0,0,0,-1|8.7866,18.4506,-95.1883|0.1153,-0.0047,0.1397|13,7.2,14|0,3.6,0,-1,-0,-0,0,0,1,0,1,0|0,-2.4001,2.5,1,-0.0001,-0.0001,-0.0001,-0.0001,1,0,-1,0|0,-3.6001,0,1,0,0,-0,-0,-1,0,1,0|6,-6.0001,0,1,0,-0.0001,-0.0001,0,1,-0.0001,-1,-0.0001|0,0,4,-1,-0.0001,-0.0001,0,1,-0.0001,-0.0001,0,-1|-6,-6.0001,0,1,0,-0.0001,-0.0001,0,1,-0.0001,-1,-0.0001|0,-2.4,9.5,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|0,-4.4,-5.5,1,0,-0.0001,0,1,0,-0.0001,0,1|2.7826,8.8532,-95.2487|0.1152,-0.0047,0.1452|5.9999,0.5993,33.5002,1,0,0,0,-1,0,0,0,-1|6,-6.6005,16.5002,1,0,0,0,-1,-0.0001,0,0,-1|-33.2169,8.8671,-95.0416|0.1154,-0.0044,0.1793|-6.0001,-3.6,0,1,-0.0001,0,0,0,1,0,-1,-0.0'
  407. ..'001|-45.2167,8.8716,-94.9726|0.1155,-0.0044,0.1907|6,-3.6001,-0.0001,1,-0.0001,0,0,0,1,0,-1,-0.0001|5.9999,-6.6001,16.4999,1,-0.0001,-0.0001,0,-1,0,0,0,-1|5.9999,0.6,33.4999,1,-0.0001,-0.0001,0,-1,0,0,0,-1|5.9999,3.6,16.4999,1,-0.0001,-0.0001,0,-1,0,0,0,-1|-39.2127,18.4688,-94.9124|0.1156,-0.0044,0.1853|-0.0001,-0.0001,4,-1,-0.0001,-0.0001,0,1,-0.0001,-0.0001,0,-1.0001|0,-2.4001,9.4999,-1,-0.0001,-0.0001,-0.0001,-0.0001,1,-0.0001,1,0|0,-4.4001,-5.5,1,-0.0001,0,0,1,-0.0001,-0.0001,0,1|8.7235,18.5592,-106.1876|0.1049,-0.0044,0.1398|3,7.2,8|0,6.5999,-5.5,-1,0,0,-0.0001,-1,-0.0001,0,-0.0001,1|-39.2758,18.5774,-105.9117|0.56,0.33,-0.02|0.1052,-0.0041,0.1854|-0.0001,6.5999,-5.4999,-1,0,0,-0.0001,-1,-0.0001,0,-0.0001,1|0.0509,0.4117,0.6745|0.4|0.2|-39.3107,9.5312,-111.4012|0.0999,-0.0039,0.1851|11,1.2,11|0,11.3999,0,1,-0.0001,-0.0001,'
  408. ..'0,0,-1,-0.0001,1,-0.0001|8.6885,9.5136,-111.6771|0.0996,-0.0042,0.1396|0.0001,11.3998,-0.0006,1,0,0,0,0,-1,-0.0001,1,0|8.9529,24.1694,-66.6309|0.1425,-0.0055,0.1398|13,4.8,23|1.3999,-6,-14.5001,-0.0001,1,-0.0001,-0.0001,-0.0001,1,1,-0.0001,-0.0001|0,0,11.5,1,0,0,0,1,0,0,0,1|-0.0001,0,-7.5001,1,0,0,0,1,-0.0001,0,-0.0001,1|-0.0001,6.6,-5,1,0,-0.0001,0,-0.0001,-1,0,1,0|-39.0464,24.1872,-66.3549|0.1427,-0.0052,0.1853|-39.1556,24.3747,-85.3538|0.1247,-0.0047,0.1854|13,4.8,15|0,0,-7.5,-1,-0,-0,0,1,0,-0,-0,-1|0,-0.0002,11.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|-39.2245,24.4932,-97.353|0.1133,-0.0043,0.1855|13,4.8,9|0,0,4.5,1,0,0,0,1,0,0,0,1|0,0,7.4999,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|-1.4,-6,16.4999,-0.0001,-1,-0.0001,-0.0001,0,1,-1,-0.0001,0|0,3.5999,2.5,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|8.7748,24.4'
  409. ..'75,-97.6289|0.1131,-0.0046,0.1399|1.3999,-6.0001,16.5,-0.0001,1,-0.0001,-0.0001,-0.0001,1,1,-0.0001,-0.0001|8.8437,24.3567,-85.6297|0.1244,-0.005,0.1399|1.3999,-6.0001,4.5,-0.0001,1,-0.0001,-0.0001,-0.0001,1,1,-0.0001,-0.0001|0,-4.2001,0,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-0.0001,6.5999,14,1,0,-0.0001,0,-0.0001,-1,0,1,0|-51.6301,22.935,-80.796|0.129,-0.0047,0.1972|2,12,32|6.5,-1.4,-4.5,-0.0001,0,-1,-1,-0.0001,-0.0001,0,1,-0.0001|6.4999,-1.4,14.5,-0.0001,0,-1,-1,-0.0001,-0.0001,0,1,-0.0001|0,0,16,1,0,0,0,1,0,0,0,1|0,-0.0001,6.4999,1,-0.0001,0,0,-1,-0.0001,-0.0001,-0.0001,-1|21.3688,22.9078,-81.2156|0.1286,-0.0052,0.1279|-0.0006,-0.0001,6.4999,1,0,0,0,-1,-0.0001,0,0,-1|21.2394,23.1301,-103.7141|0.56,0.33,89.98|0.1073,-0.0045,0.1281|2,12,13|-51.7593,23.1571,-103.2946|0.1077,-0.0041,0.1973|-58.3592,23.1595,-103.2567|0.1077,'
  410. ..'-0.004,0.2036|2,1.2,13|0,-6,-0.0001,1,0,0,0,-0.0001,1,-0.0001,-1,0|27.8393,23.1276,-103.752|0.1072,-0.0046,0.1218|-0.0001,-6.0001,-0.0001,1,-0.0001,0,0,0,1,0,-1,-0.0001|-15.1715,14.7861,-87.5863|0.1225,-0.0048,0.1624|1,12,35|-0.0001,0.6,63.5,-0.0001,1,-0.0001,0,0,-1,-1,0,0|-0.5,0,0,-0,-0,-1,0,1,0,1,0,0|-5,-4.8,-0.0001,0,1,-0.0001,0,-0.0001,1,1,0,0|6.2,-4.8,0,0,1,-0.0001,0,-0.0001,1,1,0,0|6.2,-4.8,13.4999,0,1,-0.0001,0,-0.0001,1,1,0,0|-4.5,-9,-0.5001,1,0,0,0,-0.0001,1,-0.0001,-1,0|4.5,-9,-0.5001,1,0,0,0,-0.0001,1,-0.0001,-1,0|-1.7048,8.6338,-93.0248|-0.02,-89.67,89.43|0.1173,-0.0047,0.1494|2,9.6,8|0,-4.8001,0,1,0,0,-0,-0,-1,0,1,0|-13.5,0.3999,64,0,1,-0.0001,1,0,0,-0.0001,0,-1|-28.7044,8.6438,-92.8696|0.0199,90.33,-89.4301|0.1175,-0.0045,0.175|13.5,0.4,64,-0.0001,-1,-0.0001,-1,-0.0001,0,0,-0.0001,-1|0,0,4,1,0,0,0,1,0,0,0,1|0,0,9.'
  411. ..'5,-1,-0.0001,-0.0001,0,1,-0.0001,-0.0001,0,-1|-0.5001,-6.2001,13.5,-0.0001,0,1,-1,-0.0001,0,-0.0001,-1,-0.0001|-1.7001,19.8332,-92.9142|0.1175,-0.0047,0.1497|1,0,0,0,0,1,0,1,0,-1,-0,-0|0,-0.6,-4.3,1,-0.0001,-0.0001,-0.0001,-0.0001,1,0,-1,0|-0.5,4.9999,-13.5,0,-0.0001,1,1,0,0,0,1,-0.0001|-0.0001,0,-9.5001,1,-0.0001,0,-0.0001,1,0,0,0,1|-28.6996,19.8432,-92.7591|0.1177,-0.0045,0.1754|-1,0,0,-0,-0,-1,0,1,0,1,0,0|-0.0001,-0.6001,-4.3,1,-0.0001,-0.0001,-0.0001,-0.0001,1,0,-1,0|-0.5,5,13.5,-0.0001,0,1,-1,-0.0001,0,-0.0001,-1,-0.0001|-15.1998,19.8382,-92.8366|0.1176,-0.0046,0.1626|2,9.6,19|-0.0001,-0.6,4.6999,1,-0.0001,-0.0001,-0.0001,-0.0001,1,0,-1,0|-15.2046,8.6388,-92.9472|0.1174,-0.0046,0.1622|0,0,-9.5,-1,-0,-0,0,1,0,-0,-0,-1|0,-0.0001,3.9999,-1,-0.0001,-0.0001,0,1,-0.0001,-0.0001,0,-1|-0.0001,0.4,63.9999,0,1,-0.0001,1,0,0,-0.0001,'
  412. ..'0,-1|0,4.8,0,-1,-0,-0,0,0,1,0,1,0|0,-2.4001,-0.0001,-1,0,-0.0001,0,0,1,-0.0001,1,0|-2.2162,14.3574,-95.3655|0.1151,-0.0046,0.1501|9,14.4,9|0,-7.2001,0,1,0,0,-0,-0,-1,0,1,0|-0.5,-0.5001,-13,-0.0001,-0.0001,1,0,-1,0,1,-0.0001,-0.0001|0,7.2,0,-1,-0,-0,0,0,1,0,1,0|-10.7264,14.3783,-97.1165|0.1135,-0.0045,0.1581|8,18,9|-19.7262,14.3816,-97.0648|0.1135,-0.0045,0.1667|0,9,0,-1,-0,-0,0,0,1,0,1,0|-28.2158,14.167,-95.2181|0.1153,-0.0045,0.1747|-0.5,-0.7,13,-0.0001,-0.0001,1,0,-1,0,1,-0.0001,-0.0001|0,-0.6001,-0.0001,-1,-0.0001,0,-0.0001,0,1,0,1,0|-28.2606,14.244,-103.0176|0.1079,-0.0042,0.1748|9,1.2,9|-2.261,14.4344,-103.165|0.1077,-0.0044,0.1501|-10.7815,14.4731,-106.7159|0.1044,-0.0042,0.1582|8,1.2,9|0,9,0,1,-0.0001,-0.0001,0,0,-1,-0.0001,1,-0.0001|-19.7813,14.4764,-106.6642|0.1044,-0.0042,0.1667|-10.2413,19.9075,-100.0649|0.1107,-0.00'
  413. ..'44,0.1578|2,4.8,9|0,0,-0.5001,1,-0.0001,0,-0.0001,1,0,0,0,1|0,4.8,-5,1,0,0,-0.0001,0,-1,0,1,-0.0001|-20.2411,19.9112,-100.0074|0.1108,-0.0044,0.1673|0,-0.0001,0.4999,-1,-0.0001,-0.0001,0,1,-0.0001,-0.0001,0,-1|0,4.8,4.9999,-1,-0.0001,0,0,-0.0001,-1,-0.0001,-1,-0.0001|-15.2412,19.9093,-100.0362|0.1107,-0.0044,0.1626|-0.0001,-0.6,-2.5001,1,-0.0001,-0.0001,-0.0001,-0.0001,1,0,-1,0|0,4.8,0,1,0,0,-0.0001,0,-1,0,1,-0.0001|-10.246,8.708,-100.1754|0.1105,-0.0044,0.1575|-0.0001,4.7999,-5,1,0,0,-0.0001,0,-1,0,1,-0.0001|-15.2459,8.7099,-100.1467|0.1106,-0.0044,0.1623|-20.2459,8.7117,-100.118|0.1106,-0.0044,0.167|-0.0001,0,0.5,-1,-0.0001,-0.0001,0,1,-0.0001,-0.0001,0,-1|-0.0001,4.8,5,-1,-0.0001,0,0,-0.0001,-1,-0.0001,-1,-0.0001|-15.1285,21.3163,-80.5217|0.1293,-0.005,0.1625|35,1.2,15|17,5.9999,21.9999,1,-0.0001,0,0,-0.0001,-1,0,1,-0.0001|-'
  414. ..'13.5001,-0.0001,0.5,-1,-0.0001,-0.0001,0,1,-0.0001,-0.0001,0,-1|-15.5001,-1.8001,5.5,1,-0.0001,-0.0001,-0.0001,-0.0001,1,0,-1,0|15.4999,-1.8001,5.5,1,-0.0001,-0.0001,-0.0001,-0.0001,1,0,-1,0|-3,5.9999,12,-0.0001,-1,-0.0001,0,-0.0001,-1,1,0,-0.0001|13.4999,-0.0001,0.5,-1,-0.0001,-0.0001,0,1,-0.0001,-0.0001,0,-1|-15.5,-1.8001,13,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|7,5.9999,0,-0.0001,-1,-0.0001,0,-0.0001,-1,1,0,-0.0001|-3,5.9999,4,-0.0001,-1,-0.0001,0,-0.0001,-1,1,0,-0.0001|-17.0001,5.9997,21.9998,1,-0.0001,0,0,-0.0001,-1,0,1,-0.0001|-3,5.9999,8,-0.0001,-1,-0.0001,0,-0.0001,-1,1,0,-0.0001|-1.6747,21.3902,-88.5988|0.1216,-0.0048,0.1498|8,1.2,1|-28.6743,21.4002,-88.4437|0.1218,-0.0047,0.1754|-10.2061,21.4482,-94.0495|0.1164,-0.0046,0.1579|9,1.2,2|0,0,1,1,0,0,0,1,0,0,0,1|-5,0,2.5,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|1,1'
  415. ..'.1999,-5,-0.0001,0,-1,-0.0001,-1,0,-1,-0.0001,-0.0001|-15.1859,21.4154,-90.5209|0.1198,-0.0047,0.1626|19,1.2,5|0,0,2.5,1,0,0,0,1,0,0,0,1|-0.0001,0,4.5,-1,-0.0001,-0.0001,0,1,-0.0001,-0.0001,0,-1|1,-2.3001,0,0,-0.0001,-1,0,1,0,1,0,-0.0001|-20.206,21.4518,-93.992|0.1165,-0.0046,0.1673|5,0,2.5,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|1,1.1999,5,-0.0001,0,-1,-0.0001,-1,0,-1,-0.0001,-0.0001|-15.2261,21.4845,-97.5205|0.1131,-0.0045,0.1626|1,1.2,9|-14.8385,20.8183,-30.0249|0.1772,-0.0064,0.1622|35,1.2,22|16.9999,-0.2,-3,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|15.9999,4.8,5.4999,1,0,-0.0001,0,-0.0001,-1,0,1,0|16.9999,6,-28.5,1,0,-0.0001,0,-0.0001,-1,0,1,0|-10.5,-2.4,8.9999,0,-1,0,-0.0001,-0.0001,1,-1,0,0|-8,-1.8,7.9999,0,-1,0,-0.0001,-0.0001,1,-1,0,0|10.5,-2.4,9,-0.0001,1,-0.0001,-0.0001,-0.0001,1,1,-0.0001,-0.0001|3.9999,-1.8,6,'
  416. ..'-0.0001,1,-0.0001,-0.0001,-0.0001,1,1,-0.0001,-0.0001|-17,-0.2,-3,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|0,-2.4001,2,-1,-0.0001,-0.0001,-0.0001,-0.0001,1,-0.0001,1,0|0,0,11,1,0,0,0,1,0,0,0,1|0.4999,0,-0.0001,-0.0001,0,-1,0,1,-0.0001,1,0,0|-0.0001,-2.4,25.9999,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|0,-2.4,8.5,1,-0.0001,-0.0001,-0.0001,-0.0001,1,0,-1,0|0.5,-1.2001,-3.5,-0.0001,-1,-0.0001,-0.0001,0,1,-1,-0.0001,0|-4.0001,-1.8,2,-0.0001,1,-0.0001,-0.0001,-0.0001,1,1,-0.0001,-0.0001|-4,-1.8,5.9999,0,-1,0,-0.0001,-0.0001,1,-1,0,0|0.5,6,-10.5001,-0.0001,-1,-0.0001,0,-0.0001,-1,1,0,-0.0001|-0.0001,-1.8,4,-0.0001,1,-0.0001,-0.0001,-0.0001,1,1,-0.0001,-0.0001|0,0,-11,-1,-0,-0,0,1,0,-0,-0,-1|0,-0.0001,7.4999,1,-0.0001,0,0,-1,-0.0001,-0.0001,-0.0001,-1|-0.0001,0.4,-16,1,0,0,0,1,-0.0001,0,-0.0001,1|0.4999,6.0001,10.4999,-0.0001,-1,-'
  417. ..'0.0001,0,-0.0001,-1,1,0,-0.0001|-17.0001,6.0001,-28.5001,1,-0.0001,0,0,-0.0001,-1,0,1,-0.0001|-25.3441,14.2274,-30.5297|0.1767,-0.0064,0.172|1,12,12|10.5,0.6001,6.5001,0,1,0,0,0,-1,-1,0,-0.0001|-4.3444,14.2195,-30.6504|-0.02,-89.67,-0.5601|0.1766,-0.0065,0.1521|0,0,6,1,0,0,0,1,0,0,0,1|-0.0001,4.8001,0.9999,1,-0.0001,0,-0.0001,-1,0,0,-0.0001,-1|-10.5,0.6,6.5,0,1,0,0,0,-1,-1,0,-0.0001|-30.4933,21.0903,-56.9342|0.1517,-0.0056,0.1771|4,1.2,32|-1.5,-0.2,24,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|0,-1.8,8.5,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-2,0,0,-0,-0,-1,0,1,0,1,0,0|0.5,0,-0.0001,0,0,-1,-0.0001,1,-0.0001,1,-0.0001,-0.0001|0,-1.8,-10.5,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|13.5,0.4,0,0,0,-1,-0.0001,1,-0.0001,1,-0.0001,-0.0001|-1.5,6,-1.5,1,0,-0.0001,0,-0.0001,-1,0,1,0|0.5061,21.0788,-57.1123|0.1515,-0.0058,0.1477|-1'
  418. ..'4.9938,20.6845,-57.0272|0.1516,-0.0057,0.1624|27,0.4,32|-13.5,0,0,-0,-0,-1,0,1,0,1,0,0|1.9999,-0.4,0,0,0,-1,-0.0001,1,-0.0001,1,-0.0001,-0.0001|0,0.2,0,-1,-0,-0,0,0,1,0,1,0|-15.5001,-0.2002,0,0,-1,-0.0001,-0.0001,-0.0001,1,-1,-0.0001,-0.0001|0,-0.4001,-7.5,1,0,0,0,1,-0.0001,0,-0.0001,1|0,-0.2001,0,1,0,0,-0,-0,-1,0,1,0|15.4999,-0.2001,-0.0001,0,1,0,-0.0001,0,1,1,0,-0.0001|-15.5001,-0.2001,0,0,1,0,-0.0001,0,1,1,0,-0.0001|13,-0.2001,0,1,0,-0.0001,-0.0001,0,1,-0.0001,-1,-0.0001|-13.0001,-0.2001,0,1,0,-0.0001,-0.0001,0,1,-0.0001,-1,-0.0001|-27.9934,21.0893,-56.9486|0.1516,-0.0056,0.1747|1,0.4,32|-15.5001,0,12.5,-1,0,0,-0.0001,1,-0.0001,0,0,-1|0,0,-16,-1,-0,-0,0,1,0,-0,-0,-1|13,0,11,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|15.5,0,12.5,-1,0,0,-0.0001,1,-0.0001,0,0,-1|13,0.2,0,1,0,-0.0001,0,-0.0001,-1,0,1,0|13,0,-7.5,1,0,0,0,1,-0.00'
  419. ..'01,0,-0.0001,1|-15.0826,21.2374,-72.5223|0.1369,-0.0052,0.1625|1,0.4,25|0,0,-12.5,-1,-0,-0,0,1,0,-0,-0,-1|0.5,0,15.4999,0,0,-1,-0.0001,1,-0.0001,1,-0.0001,-0.0001|0,0.2,15.5,-0.0001,1,-0.0001,0,0,-1,-1,0,0|0,0,-7.5,1,0,0,0,1,-0.0001,0,-0.0001,1|-1.9938,21.0797,-57.0979|0.1515,-0.0057,0.1501|0.5,0,0,0,0,1,0,1,0,-1,-0,-0|-15.5001,-0.0001,-12.5,1,0,-0.0001,0,1,0,-0.0001,0,1|-13,-0.0001,11,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|-13,0.1999,0,1,0,-0.0001,0,-0.0001,-1,0,1,0|1.9999,-0.0001,0,0,0,-1,-0.0001,1,-0.0001,1,-0.0001,-0.0001|-13,-0.0001,-7.5,1,0,0,0,1,-0.0001,0,-0.0001,1|-14.9045,20.9317,-41.5242|0.1663,-0.0061,0.1623|0.556,23.3949,-48.5891|0.1596,-0.006,0.1477|4,3.6,5|-0.0001,0.6001,-8.5001,1,-0.0001,0,0,-0.0001,-1,0,1,-0.0001|0.4469,23.5823,-67.5879|0.1416,-0.0055,0.1478|4,3.6,33|0,0,-16.5,-1,-0,-0,0,1,0,-0,-0,-1|0,-0.0'
  420. ..'001,2.5,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|0,0.5999,10.5,1,0,-0.0001,0,-0.0001,-1,0,1,0|0,-0.6001,13.9999,1,-0.0001,-0.0001,-0.0001,-0.0001,1,0,-1,0|0,-0.6001,14,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-0.0001,-0.0001,1.9999,-1,-0.0001,-0.0001,0,1,-0.0001,-0.0001,0,-1|-15.5,0.6,-13,1,0,-0.0001,0,-0.0001,-1,0,1,0|-30.5526,23.5938,-67.4098|0.1417,-0.0053,0.1772|0,0,2,-1,0,0,0,1,0,-0.0001,0,-1|-30.6588,23.7761,-85.9087|0.1242,-0.0047,0.1773|4,3.6,4|0.3406,23.7647,-86.0867|0.124,-0.0049,0.1479|8.7566,2.0913,-99.35|0.1113,-0.0046,0.1393|3,3.6,22|-39.2426,2.1091,-99.074|0.1115,-0.0043,0.1849|-0.0001,0.4,3,1,-0.0001,-0.0001,0,-1,0,0,0,-1|0,-0.4,5.5,1,-0.0001,0,0,-1,-0.0001,-0.0001,-0.0001,-1|-39.1624,1.5709,-85.0789|0.1248,-0.0047,0.1848|3,2.4,6|8.8368,1.5532,-85.3547|0.1246,-0.005,0.1392|0,0,3,1,0,0,0,1,0,0,0,1|0,0.4,10.9'
  421. ..'999,1,0,0,-0.0001,-1,0,-0.0001,0,-1|0,-2.4001,13.5,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|12.8367,1.5517,-85.3777|0.1245,-0.005,0.1354|5,2.4,6|-4,0,10.5,1,-0.0001,-0.0001,0,-1,0,0,0,-1|-4,-2.4,13.5,1,-0.0001,0,0,0,1,0,-1,-0.0001|4.8369,1.5547,-85.3317|0.1246,-0.005,0.143|4,-2.4001,13.5,1,-0.0001,0,0,0,1,0,-1,-0.0001|-43.1623,1.5724,-85.0559|0.1248,-0.0047,0.1886|-35.1625,1.5695,-85.1018|0.1248,-0.0047,0.181|-39.0849,1.4377,-71.5797|0.1376,-0.0051,0.1847|13,2.4,21|0,0,10.5,1,0,0,0,1,0,0,0,1|4,0,2.9999,1,-0.0001,-0.0001,-0.0001,-1,-0.0001,-0.0001,0,-1|-4,0,2.9999,1,-0.0001,-0.0001,-0.0001,-1,-0.0001,-0.0001,0,-1|8.9143,1.4199,-71.8555|0.1374,-0.0054,0.1391|0,0,-10.5,-1,-0,-0,0,1,0,-0,-0,-1|0,-0.0001,3,1,-0.0001,0,0,-1,-0.0001,-0.0001,-0.0001,-1|-4,-0.0001,3,1,0,0,-0.0001,-1,0,-0.0001,0,-1|0,-2.4,0,-1,0,0,-0.0001,-0.0001,1,-0.'
  422. ..'0001,1,-0.0001|8.9919,1.2867,-58.3564|0.1502,-0.0058,0.1391|13,2.4,6|-0.0001,-2.4,-13.5,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-39.0073,1.3044,-58.0806|0.1504,-0.0055,0.1846|0,-0.0001,-10.5,-1,-0.0001,0,-0.0001,-1,-0.0001,-0.0001,0,1|-0.0001,-2.4,-13.5001,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|8.7574,31.1096,-101.0634|0.1098,-0.0045,0.1401|3,8.4,16|0,0,8,1,0,0,0,1,0,0,0,1|0,0.0002,7.4999,1,0,0,0,-1,-0.0001,0,0,-1|8.8466,30.9564,-85.5645|0.1246,-0.005,0.1401|8.7597,36.5093,-101.01|0.1099,-0.0045,0.1403|3,2.4,16|-0.0001,-4.2,0,1,0,-0.0001,-0.0001,0,1,-0.0001,-1,-0.0001|-39.1527,30.9745,-85.2886|0.1248,-0.0047,0.1856|-0.0001,2.4,-0.0001,1,0,-0.0001,0,-0.0001,-1,0,1,0|-39.2418,31.1275,-100.7876|0.1101,-0.0042,0.1857|-0.0001,-0.0001,7.4999,1,-0.0001,-0.0001,0,-1,0,0,0,-1|-39.2395,36.5272,-100.7343|0.1102,-0.0042,0.1859|-0.00'
  423. ..'01,-4.2001,-0.0001,1,0,-0.0001,-0.0001,0,1,-0.0001,-1,-0.0001|0.8856,14.6815,-77.6789|0.1319,-0.0052,0.1471|1,12,1|-16,0.6,53.4999,-0.0001,1,-0.0001,0,0,-1,-1,0,0|-16.0001,-0.6,-3,0,1,0,-0.0001,0,1,1,0,-0.0001|-31.1138,14.6933,-77.495|0.1321,-0.005,0.1775|16,0.6,53.5,-0.0001,1,-0.0001,0,0,-1,-1,0,0|15.9999,-0.6,-3,0,1,0,-0.0001,0,1,1,0,-0.0001|-3.1143,14.6826,-77.6561|0.1319,-0.0051,0.1509|-12,0.5996,53.5001,0,1,0,0,0,-1,-1,0,-0.0001|-27.1139,14.6918,-77.518|0.1321,-0.005,0.1737|12,0.6,53.5,-0.0001,1,-0.0001,0,0,-1,-1,0,0|11.9999,-0.6,-3,0,1,0,-0.0001,0,1,1,0,-0.0001|-23.114,14.6904,-77.541|0.1321,-0.005,0.1699|7.9999,0.6,53.5,-0.0001,1,-0.0001,0,0,-1,-1,0,0|7.9999,-0.6,-3,0,1,0,-0.0001,0,1,1,0,-0.0001|-7.1143,14.6841,-77.6331|0.132,-0.0051,0.1547|-8,0.5996,53.5001,0,1,0,0,0,-1,-1,0,-0.0001|-19.114,14.6889,-77.564|0.132,-0.005,'
  424. ..'0.1661|4,0.6,53.5,-0.0001,1,-0.0001,0,0,-1,-1,0,0|4,-0.6,-3,0,1,0,-0.0001,0,1,1,0,-0.0001|-11.1142,14.6856,-77.6102|0.132,-0.0051,0.1585|-4,0.5996,53.5001,0,1,0,0,0,-1,-1,0,-0.0001|-15.1141,14.6874,-77.5869|0.132,-0.0051,0.1623|0,0.6,53.5,-0.0001,1,-0.0001,0,0,-1,-1,0,0|0,-0.6,-3,0,1,0,-0.0001,0,1,1,0,-0.0001|-27.9937,20.2894,-56.9565|0.56,0.33,179.9799|-15.5,-0.0002,12.4999,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|-1.9942,20.2797,-57.1058|0.1515,-0.0057,0.15|-14.9049,20.1317,-41.5321|-0.02,-89.67,179.44|0.4999,-0.0002,15.4999,-0.0001,-0.0001,-1,-0.0001,1,-0.0001,1,0,-0.0001|0,0,12.5,1,0,0,0,1,0,0,0,1|-0.5001,-0.0002,15.4999,0,-0.0001,1,0,1,0,-1,0,0|-15.083,20.4374,-72.5302|0.5,0.0002,-15.5001,-0.0001,-0.0001,-1,-0.0001,1,-0.0001,1,0,-0.0001|-30.6938,9.1679,-4.047|0.2018,-0.0071,0.1769|3,2.4,52|16,0.6,-20,1,0,-0.0001,0'
  425. ..',-0.0001,-1,0,1,0|0.9999,-2.4004,-3.5001,-1,0,0,0,0,1,0,1,-0.0001|-1.0001,-2.4004,-3.5002,-1,0,0,0,0,1,0,1,-0.0001|-0.0002,-4.8001,-0.0007,-1,0,0,0,-0.0001,1,0,1,0|1.3057,9.1561,-4.2309|0.2016,-0.0073,0.1466|-16,0.6,-20,1,0,-0.0001,0,-0.0001,-1,0,1,0|0,-4.8,-0.0001,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|0,-4.8,-20.5,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|0,-4.8,20.4999,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-30.809,15.3702,-24.4866|0.1824,-0.0065,0.1772|3,9.6,11|0,0,-5.5,-1,-0,-0,0,1,0,-0,-0,-1|-1,2.3999,11.5,1,-0.0001,0,0,-1,-0.0001,-0.0001,-0.0001,-1|1,2.4,11.5,1,-0.0001,0,0,-1,-0.0001,-0.0001,-0.0001,-1|0.9999,2.4,11.5,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|-1.0001,2.4,11.5,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|15.9999,-0.6001,-5.5001,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-0.0001,1.2,20.4999,1,0,-'
  426. ..'0.0001,0,-0.0001,-1,0,1,0|1.1905,15.3583,-24.6705|0.1822,-0.0067,0.1469|0.5|-30.6914,15.1677,-3.9883|0.2019,-0.0071,0.1771|1,9.6,30|1.3083,15.1558,-4.1717|0.2017,-0.0073,0.1467|1.4259,14.9532,16.327|0.2211,-0.0079,0.1466|-30.5735,14.9652,16.5108|0.2213,-0.0077,0.177|0.9997,3.5997,3.5004,1,0,0,0,-1,0,0,-0.0001,-1|-1.0003,3.5997,3.5004,1,0,0,0,-1,0,0,-0.0001,-1|-0.0001,1.1999,-20.4999,1,-0.0001,0,0,-0.0001,-1,0,1,-0.0001|-31.7124,12.8029,-7.5056|0.1985,-0.007,0.178|1,4.8,23|-31.7103,17.6028,-7.4586|0.1986,-0.007,0.1782|2,-0.6,3.4999,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-31.6267,11.4546,7.4817|0.2127,-0.0074,0.1779|1,2.4,7|0,0,3.5,1,0,0,0,1,0,0,0,1|1,-3.6001,5.5,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|1,1.1999,-11.5001,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-31.6239,18.654,7.5523|0.2128,-0.0074,0.1781|-29.6239,18.6'
  427. ..'533,7.5408|0.2128,-0.0074,0.1762|-29.6267,11.4538,7.4702|0.2127,-0.0074,0.176|-1,-3.6,5.5,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|-1,1.2,-11.5001,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-29.7104,17.602,-7.4701|0.1986,-0.007,0.1763|0,-0.6001,3.4999,-1,-0.0001,-0.0001,-0.0001,-0.0001,1,-0.0001,1,0|-29.7124,12.8022,-7.5171|0.1985,-0.007,0.1761|0.3728,11.4428,7.2978|0.2126,-0.0076,0.1475|0.9999,1.1999,-11.5001,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|0.2872,12.7908,-7.6894|0.1983,-0.0072,0.1476|1,-2.4001,-5.5,1,0,0,0,1,-0.0001,0,-0.0001,1|0.9999,1.1999,3.5,1,0,-0.0001,0,-0.0001,-1,0,1,0|0.2892,17.5905,-7.642|-0.5601,-179.67,-179.98|0.1984,-0.0072,0.1478|0,-0.6003,3.5,-1,-0.0001,-0.0001,-0.0001,-0.0001,1,-0.0001,1,0|1,2.3996,-5.5001,-1,0,-0.0001,-0.0001,-1,0,-0.0001,0,1|0.3758,18.6426,7.3689|0.2127,-0.0076,0.1477|1,3.59'
  428. ..'99,5.4999,1,-0.0001,-0.0001,0,-1,0,0,0,-1|0,-0.6003,-11.5,1,0,-0.0001,0,0,1,0,-1,0|2.3728,11.442,7.2863|0.2125,-0.0076,0.1456|-1.0001,-3.6001,5.4999,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|-1.0001,1.1999,-11.5001,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|2.3757,18.6418,7.3574|0.2127,-0.0076,0.1458|-1.0001,3.5999,5.5,1,-0.0001,-0.0001,0,-1,0,0,0,-1|-2,-0.6003,-11.5,1,0,-0.0001,0,0,1,0,-1,0|2.2892,17.5898,-7.6535|0.1984,-0.0072,0.1459|-1.0001,2.3998,-5.5002,-1,-0.0001,0,0,-1,0,0,0,1|2.2871,12.7901,-7.7009|0.1983,-0.0072,0.1458|-1,-2.4001,-5.5,1,0,0,0,1,-0.0001,0,-0.0001,1|-1.0001,1.1999,3.4999,1,0,-0.0001,0,-0.0001,-1,0,1,0|-14.5715,20.3589,16.4722|0.2213,-0.0078,0.162|35,1.2,11|-14.0001,-0.5998,3.9999,-1,-0.0001,0,0,-0.0001,0.9999,-0.0001,1,0|15.9999,4.7999,0,1,0,-0.0001,-0.0001,0,-1,-0.0001,1,0|4.9999,-0.6001,17,-1,0,0,0'
  429. ..',0,1,0,1,-0.0001|2.4999,-1.8,7.9999,0,-1,-0.0001,-0.0001,-0.0001,1,-1,-0.0001,-0.0001|-5,5.9999,8.5,-0.0001,-1,0,0,-0.0001,-1,1,-0.0001,0|-2.0001,-1.2001,13.5,-1,0,0,0,0,1,0,1,-0.0001|-5.0001,-0.6002,17,-1,0,0,0,0,1,0,1,-0.0001|-2.5,-1.8,8,-0.0001,1,0,-0.0001,-0.0001,1,1,0,0|-0.5,1.5002,-14.0003,0,0,1,0,-1,0,1,0,-0.0001|-16.0001,4.7998,0,1,0,-0.0001,-0.0001,0,-1,-0.0001,1,0|-29.689,20.5673,-3.9406|0.2019,-0.0071,0.1763|5,1.2,30|9.9999,-1.7998,-6,-0.0001,1,0,-0.0001,-0.0001,1,1,0,0|-0.5003,-19,1,0,-0.0001,1,0,-1,-0.0001,1,0,-0.0001|-0.0001,-1.2003,-11.5001,1,-0.0001,0,-0.0001,0,1,-0.0001,-1,0|-2.5,0,0,-0,-0,-1,0,1,0,1,0,0|0,0,6,1,0,0,0,-1,-0.0001,0,0,-1|-2.0001,-1.2003,-11.5001,1,-0.0001,0,-0.0001,0,1,-0.0001,-1,0|-1.0001,4.8002,0,1,-0.0001,0,0,-0.0001,-1,0,1,-0.0001|-10.0001,-1.7998,-6,-0.0001,1,0,-0.0001,-0.0001,1,1,0,0|0.3106'
  430. ..',20.5561,-4.1126|0.2018,-0.0073,0.1479|0,-2.3998,-6.0001,0,-1,-0.0001,0,-0.0001,1,-1,-0.0001,0|-2,-2.4003,-3.5001,-1,0,-0.0001,-0.0001,0,1,0,1,-0.0001|0.9999,4.8002,-0.0001,1,-0.0001,0,0,-0.0001,-1,0,1,-0.0001|2.5,0,0,0,0,1,0,1,0,-1,-0,-0|0,-0.0003,6,1,-0.0001,-0.0001,-0.0001,-1,-0.0001,-0.0001,0,-1|-5.7771,23.7112,-19.5477|0.1872,-0.0068,0.1537|1,4.8,17|-23.7768,23.7178,-19.4443|0.1873,-0.0067,0.1708|-5.5991,23.4048,11.4505|0.2166,-0.0077,0.1535|0,0,8.5,1,0,0,0,1,0,0,0,1|-0.5,-0.0001,-15.5001,-0.0001,0,1,0,1,0,-1,-0.0001,0|-9,0.5999,5,-0.0001,1,-0.0001,0,0,-1,-1,0,0|-23.5987,23.4116,11.5539|0.2167,-0.0076,0.1706|0.5,-0.0002,-15.5,0,0,-1,-0.0001,1,0,1,0,0|8.9999,0.6001,5,0,-1,0,-0.0001,-0.0001,-1,1,0,-0.0001|0.1|-23.6307,22.866,6.0481|0.2114,-0.0074,0.1706|10,3.6,17|-23.7455,23.0637,-13.9507|0.1925,-0.0069,0.1708|-23.6878,23.56'
  431. ..'49,-3.9454|0.202,-0.0071,0.1707|10,4.8,17|0.5,-0.0001,0,0,0,-1,-0.0001,1,-0.0001,1,-0.0001,-0.0001|0,-0.6,2.5,1,-0.0001,0,0,0,1,0,-1,-0.0001|-6.0001,0.5999,0,0,-1,-0.0001,-0.0001,-0.0001,-1,1,-0.0001,0|-14.688,23.5616,-3.997|0.2019,-0.0072,0.1622|1,4.8,32|-0.0001,0.6002,20.4999,1,-0.0001,0,0,-0.0001,-1,0,1,-0.0001|-10,0.6002,8.4999,-1,-0.0001,-0.0001,-0.0001,1,0,0,0,-1|9.9999,0.6001,8.5,-1,0,-0.0001,0,1,-0.0001,0,-0.0001,-1|0,0.0002,8.4999,-1,-0.0001,-0.0001,-0.0001,1,0,0,0,-1|0,-0.6002,-7.5,-1,0,-0.0001,-0.0001,0,1,0,1,-0.0001|0,-1.1998,15.9999,1,0,0,-0.0001,-0.0001,1,0,-1,-0.0001|-15.5001,0.0002,8.5,-1,0,-0.0001,0,1,-0.0001,0,-0.0001,-1|15.4999,0.0002,8.4999,-1,-0.0001,-0.0001,-0.0001,1,0,0,0,-1|-10.0001,0.6002,8.5,-1,0,-0.0001,0,1,-0.0001,0,-0.0001,-1|-5.6309,22.8594,5.9448|0.2113,-0.0076,0.1536|6,0.5998,-10,-0.0001,1,0,0,0,'
  432. ..'-1,-1,-0.0001,-0.0001|-5.6881,23.5579,-4.0486|0.2019,-0.0073,0.1536|-5.7458,23.057,-14.054|0.1924,-0.007,0.1537|5.9999,0.6,10,-0.0001,1,-0.0001,0,0,-1,-1,0,0|-0.5,-0.6001,10,-0.0001,0,1,0,1,0,-1,-0.0001,0|-6.7917,23.1362,-22.0477|0.1848,-0.0067,0.1547|4,3.6,15|-0.5,-0.6,-6,-0.0001,0,1,0,1,-0.0001,-1,0,-0.0001|-22.7915,23.1422,-21.9558|0.1849,-0.0066,0.1699|0.5,-0.6001,-6,0,0,-1,-0.0001,1,-0.0001,1,-0.0001,-0.0001|8,0.5999,-8.0001,0,-1,-0.0001,-0.0001,-0.0001,-1,1,-0.0001,0|-14.8258,23.7984,-27.9954|0.1791,-0.0065,0.1623|1,4.8,16|1.9998,0.6,5.5,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|-2.0001,0.6,3.5,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|0.0001,-1.2002,-8,1,0,0,-0.0001,-0.0001,1,0,-1,-0.0001|-20.8145,23.1809,-25.9671|0.1811,-0.0065,0.168|4,3.6,11|-8.8147,23.1764,-26.036|0.181,-0.0066,0.1566|-0.5,-0.6,-2,-0.0'
  433. ..'001,0,1,0,1,-0.0001,-1,0,-0.0001|-10.8376,23.2166,-30.0242|0.1772,-0.0065,0.1585|4,3.6,7|-0.5,-0.6001,2,-0.0001,0,1,0,1,0,-1,-0.0001,0|-4,0.5999,0,-0.0001,1,-0.0001,0,0,-1,-1,0,0|-18.8375,23.2196,-29.9783|0.1773,-0.0064,0.1661|-16.8605,23.2583,-33.9895|0.1734,-0.0063,0.1642|4,3.6,3|0,0,1.5,1,0,0,0,1,0,0,0,1|0.5,-0.6002,6,0,0,-1,-0.0001,1,0,1,0,0|-12.8605,23.2569,-34.0125|0.1734,-0.0063,0.1604|-0.5001,-0.6001,6,-0.0001,0,1,0,1,0,-1,-0.0001,0|-2,0.5999,3.9999,-0.0001,1,-0.0001,0,0,-1,-1,0,0|-14.8861,23.9019,-38.4948|0.1692,-0.0062,0.1624|1,4.8,5|0,-0.0003,8,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|-14.7784,27.3193,-19.9604|0.1868,-0.0067,0.1624|1,2.4,32|-14.6175,27.0431,8.0378|0.2134,-0.0076,0.1622|1,2.4,24|0,0,12,1,0,0,0,1,0,0,0,1|0,0,15.9999,-1,-0.0001,-0.0001,0,1,-0.0001,-0.0001,0,-1|-0.0001,2.4,-12,1,0,-0.0001,0,-0.0'
  434. ..'001,-1,0,1,0|-0.0001,2.4,8,1,0,-0.0001,0,-0.0001,-1,0,1,0|-30.4435,23.4065,-48.4111|0.1598,-0.0058,0.1771|-0.0001,0,-16.5,1,0,0,0,1,-0.0001,0,-0.0001,1|-31.8551,21.6541,-32.9192|0.1745,-0.0063,0.1784|1,0.4,26|2.1443,21.6415,-33.1145|0.1743,-0.0065,0.1461|-1.5001,0.6002,-24,1,-0.0001,0,0,-0.0001,-1,0,1,-0.0001|-6.5849,22.7805,13.9501|0.2189,-0.0078,0.1545|-22.5847,22.7864,14.0421|0.219,-0.0077,0.1696|-20.5617,22.7461,18.0303|0.2228,-0.0078,0.1677|4,0.5999,9.9999,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|1,1.1999,13.4999,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|6,0.5999,-1.5,0,-1,-0.0001,-0.0001,-0.0001,-1,1,-0.0001,0|-8.5619,22.7417,17.9614|0.2227,-0.0079,0.1563|2,0,0,0,0,1,0,1,0,-1,-0,-0|-1.0001,1.1999,13.4999,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|-4,0.5999,9.9999,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|-6,0.5999'
  435. ..',-1.5001,-0.0001,1,-0.0001,0,0,-1,-1,0,0|-14.5731,23.3636,16.0019|0.2209,-0.0078,0.1621|1,4.8,8|0,0,-4,-1,-0,-0,0,1,0,-0,-0,-1|0,0,4.9999,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|-2,0.5999,5.5,-1,0,0,-0.0001,1,-0.0001,0,0,-1|2,0.5999,5.4999,-1,-0.0001,0,0,1,0,0,-0.0001,-1|-2,0.5999,7.4999,-1,-0.0001,0,0,1,0,0,-0.0001,-1|2,0.5999,7.5,-1,0,0,-0.0001,1,-0.0001,0,0,-1|0,0.5999,0.4999,1,0,-0.0001,0,-0.0001,-1,0,1,0|-14.5214,23.2749,25.0013|0.2294,-0.0081,0.162|1,4.8,10|0,0.6001,-8.5001,1,-0.0001,0,0,-0.0001,-1,0,1,-0.0001|-30.9905,14.2222,31.0069|0.2351,-0.0081,0.1774|2,13.2,18|16.5,0.6,-55.0001,1,0,-0.0001,0,-0.0001,-1,0,1,0|0,0,9,1,0,0,0,1,0,0,0,1|16.5,-6,-5.5001,1,0,0,0,1,-0.0001,0,-0.0001,1|0.5,-0.6,-5.5001,1,0,0,0,1,-0.0001,0,-0.0001,1|0.5,5.4,-26.0001,1,0,0,0,1,-0.0001,0,-0.0001,1|2.009,14.21,30.8173|0.2349,-0.0083,0.1461|-'
  436. ..'16.5,0.6,-55.0001,1,0,-0.0001,0,-0.0001,-1,0,1,0|-16.5001,-6,-5.5001,1,0,0,0,1,-0.0001,0,-0.0001,1|-0.5,-0.6,-5.5001,1,0,0,0,1,-0.0001,0,-0.0001,1|-0.5001,5.3999,-26.0001,1,0,0,0,1,-0.0001,0,-0.0001,1|0.5289,13.5761,34.3198|0.2382,-0.0084,0.1474|1,12,25|-15,0.5999,-58.5001,1,0,-0.0001,0,-0.0001,-1,0,1,0|-14.4048,6.8634,46.3401|0.2496,-0.0087,0.1614|31,1.2,13|0,0,6.5,1,0,0,0,1,0,0,0,1|0,-0.0001,-64.0001,1,0,0,0,1,-0.0001,0,-0.0001,1|-15.5,0,0,-0,-0,-1,0,1,0,1,0,0|-0.1,-3.1,1,0,-1,0,-1,0,0,0,0,-1|15,-6,-12.0001,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-5,-6.6001,4.9999,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-14.0001,-3,6.9999,-1,-0.0001,0,-0.0001,0,1,0,1,0|0,-6.0001,3.5,-1,-0.0001,-0.0001,-0.0001,-0.0001,1,-0.0001,1,0|12,-6,13.5,0,-1,0,-0.0001,-0.0001,1,-1,0,0|6.5,-1.2001,-11.5,0,-1,0,-0.0001,-0.0001,1,-1,0,0|12,-6.0001,-13'
  437. ..'.5,0,-1,0,-0.0001,-0.0001,1,-1,0,0|-0.0001,0.6003,-19.0001,1,-0.0001,0,0,-0.0001,-1,0,1,-0.0001|-9,-6.0001,3.5,-1,-0.0001,-0.0001,-0.0001,-0.0001,1,-0.0001,1,0|-29.4706,13.5871,34.4922|0.2384,-0.0082,0.1759|14.9999,0.6,12,1,0,-0.0001,0,-0.0001,-1,0,1,0|15,0.6,-58.5,1,0,-0.0001,0,-0.0001,-1,0,1,0|1,-0.6001,6.4999,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|-14.4681,20.1813,34.4711|0.2384,-0.0083,0.1619|31,1.2,25|14,-1.8001,-0.0001,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|0,6,13.4999,-0.0001,-1,-0.0001,0,-0.0001,-1,1,0,-0.0001|5,-0.6001,-1,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-2,-1.2001,-4.5,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|2,-1.2001,-4.5001,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|4.9999,4.1999,-11.5001,-1,-0.0001,0,0,-0.0001,-1,-0.0001,-1,-0.0001|-5,5.9999,4.5,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|15,6'
  438. ..',0,1,0,-0.0001,0,-0.0001,-1,0,1,0|-5,-0.6001,-1,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-0.0001,5.9999,-13.5,-0.0001,-1,-0.0001,0,-0.0001,-1,1,0,-0.0001|-14,5.9999,6.5,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|0,-2.4,-9.5,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-15,5.9999,0,1,0,-0.0001,0,-0.0001,-1,0,1,0|-16.4931,22.0264,30.0007|0.2342,-0.0082,0.1638|3,2.4,20|-12.4932,22.0249,29.9777|0.2341,-0.0082,0.16|-2,0.5999,-13.5,1,0,-0.0001,0,-0.0001,-1,0,1,0|-28.3613,13.9992,53.4911|0.2564,-0.0088,0.1749|3,13.2,13|0,0.5999,6,1,0,-0.0001,0,-0.0001,-1,0,1,0|12.4999,0.6,0.4999,-0.0001,0,-1,0,1,-0.0001,1,0,0|13.9999,0.6,-7,1,0,-0.0001,0,-0.0001,-1,0,1,0|-0.3617,13.9888,53.3302|0.2563,-0.009,0.1483|0.9999,0.6,-12.5,1,0,0,0,1,-0.0001,0,-0.0001,1|-14.0001,-6,-12.5,1,0,0,0,1,-0.0001,0,-0.0001,1|-0.0001,0.5999,5.9999,1,0,-0.0001,0,-0.000'
  439. ..'1,-1,0,1,0|-0.0001,0.5999,2.4999,1,0,-0.0001,0,-0.0001,-1,0,1,0|12.4999,0.5999,-0.5001,-0.0001,0,-1,0,1,-0.0001,1,0,0|-14.0001,0.5999,-7,1,0,-0.0001,0,-0.0001,-1,0,1,0|-23.3817,13.4319,49.9568|0.2531,-0.0087,0.1701|7,12,6|-19.3729,14.0156,51.4395|0.2545,-0.0088,0.1663|1,13.2,9|-9.3731,14.0119,51.3821|0.2544,-0.0089,0.1569|-5.0001,-6,-12.5001,1,0,0,0,1,-0.0001,0,-0.0001,1|-0.0001,0.5999,2.9999,1,0,-0.0001,0,-0.0001,-1,0,1,0|-5.0001,5.4,-1,1,0,0,0,1,-0.0001,0,-0.0001,1|1,3.6,1,-1,-0.0001,-0.0001,0,1,-0.0001,-0.0001,0,-1|-5.0001,0.6,-5,1,0,-0.0001,0,-0.0001,-1,0,1,0|-5.382,13.4252,49.8533|0.253,-0.0088,0.153|1.5,3,1,-1,-0.0001,-0.0001,0,1,-0.0001,-0.0001,0,-1|-9,4.7999,-1,1,0,0,0,1,-0.0001,0,-0.0001,1|-2,3,0.9999,-1,-0.0001,-0.0001,0,1,-0.0001,-0.0001,0,-1|-9,0.5999,-3.5,1,0,-0.0001,0,-0.0001,-1,0,1,0|-14.3819,13.4286,49.9051|0.25'
  440. ..'3,-0.0088,0.1616|9,12,6|0,3,4.5001,-1,-0.0001,-0.0001,-0.0001,1,0,0,0,-1|-4,3,1.0001,-1,-0.0001,-0.0001,-0.0001,1,0,0,0,-1|0,-0.6,1,-1,0,0,0,1,0,-0.0001,0,-1|-14.4054,12.2681,45.8935|0.2492,-0.0087,0.1616|5,2.4,2|0,0.5999,3.5,1,0,0,-0.0001,0,-1,0,1,-0.0001|0,-1.2001,3,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|-9.4734,21.3893,33.4543|0.2374,-0.0083,0.1572|1,1.2,27|-19.4732,21.393,33.5118|0.2375,-0.0083,0.1667|-0.4673,22.576,34.4144|0.2384,-0.0084,0.1486|3,3.6,25|-28.4668,22.5863,34.5752|0.2385,-0.0082,0.1752|13.9999,0.6,0,1,0,-0.0001,0,-0.0001,-1,0,1,0|-28.5558,22.7392,19.0762|0.2238,-0.0078,0.1753|3,3.6,6|-0.0001,0,12.4999,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|13.9999,0.5999,-2.5,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-0.5563,22.7289,18.9153|0.2237,-0.008,0.1487|0,0,12.4999,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001'
  441. ..',-1|-14,0.5999,-2.5001,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-0.3505,6.7645,55.759|0.2585,-0.009,0.1481|3,1.2,6|0,-3.0001,-2.5,-1,-0.0001,0,-0.0001,0,1,0,1,0|-0.1001,6.3999,1,0,-1,0,-1,0,0,0,0,-1|-28.35,6.7748,55.9199|0.2587,-0.0089,0.1747|1.5,0,0,0,0,1,0,1,0,-1,-0,-0|0.0999,6.3999,1,0,1,0,1,0,-0.0001,0,-0.0001,-1|0,-3,-2.5,-1,-0.0001,0,-0.0001,0,1,0,1,0|0,-6.6001,-2.5,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-28.3659,3.1997,53.3845|0.2562,-0.0088,0.1746|3,6,13|0,-3,0,1,0,0,-0,-0,-1,0,1,0|0,-0.6,5.9999,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|13.9999,-0.6,-7,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-0.3663,3.1894,53.2236|0.2561,-0.009,0.148|-28.4721,3.3823,34.8857|0.2387,-0.0082,0.1747|3,6,24|0,3,0,-1,-0,-0,0,0,1,0,1,0|14,-0.6,-59,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|13.9999,-0.6,11.5,-1,0,0,-0.0001,-0.0001,1'
  442. ..',-0.0001,1,-0.0001|0,0,-12,-1,-0,-0,0,1,0,-0,-0,-1|0,0,6.5,1,-0.0001,0,0,-1,-0.0001,-0.0001,-0.0001,-1|0,0,21.9999,1,0,0,-0.0001,-1,0,-0.0001,0,-1|-0.4726,3.372,34.7248|0.2385,-0.0084,0.1481|-14.0001,-0.6,-59.0001,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-14.0001,-0.6,11.5,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|0,-0.0001,6.5,1,-0.0001,0,0,-1,-0.0001,-0.0001,-0.0001,-1|-28.6674,3.718,0.8878|0.2064,-0.0073,0.1749|3,6,44|14,-0.6,-25,1,-0.0001,0,0,0,1,0,-1,-0.0001|-0.6678,3.7077,0.7269|0.2063,-0.0074,0.1483|-14.0001,-0.6,-25,1,-0.0001,0,0,0,1,0,-1,-0.0001|0,0,22,1,0,0,0,1,0,0,0,1|0,0,11.9999,1,-0.0001,-0.0001,0,-1,0,0,0,-1|2.0052,5.2105,30.7285|0.2348,-0.0083,0.1458|2,2.4,18|-16.5,-0.6,-55.0001,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|1.7209,5.6992,-18.7684|0.1878,-0.0069,0.1461|2,2.4,5|-16.5001,-0.6,-5.5,1,-0.0001,0,0,0,1,'
  443. ..'0,-1,-0.0001|-0.0001,0,19,1,-0.0001,-0.0001,0,-1,0,0,0,-1|-31.2786,5.7114,-18.5788|0.188,-0.0067,0.1774|16.5,-0.6001,-5.5,1,-0.0001,0,0,0,1,0,-1,-0.0001|1.8444,5.4869,2.7302|0.2082,-0.0075,0.146|2,2.4,38|-16.5001,-0.6,-27.0001,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|0,0,-19,-1,-0,-0,0,1,0,-0,-0,-1|0,0,9,1,-0.0001,0,0,-1,-0.0001,-0.0001,-0.0001,-1|-31.1551,5.4991,2.9198|0.2084,-0.0073,0.1773|16.4999,-0.6,-27,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|0,0,19,1,0,0,0,1,0,0,0,1|-0.0001,-0.0001,2.5,1,0,0,-0.0001,-1,0,-0.0001,0,-1|-0.0001,0,9,1,-0.0001,0,0,-1,-0.0001,-0.0001,-0.0001,-1|-30.9943,5.2227,30.9181|0.2349,-0.0081,0.1771|16.4999,-0.6,-55.0001,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-32.2768,7.0662,16.4427|0.2212,-0.0077,0.1784|1,0.4,47|17.5,-0.1,-40.5,-0.0001,0,-1,-1,-0.0001,-0.0001,0,1,-0.0001|3.1226,7.0531,16.2392|0'
  444. ..'.221,-0.0079,0.1448|-17.5,-0.1001,-40.5,-0.0001,-0.0001,1,-1,0,0,0,-1,0|2.1127,6.7267,49.344|-0.02,-89.67,-90.57|0.2524,-0.0089,0.1457|1,19.2,2|0,-9.6001,0,1,0,0,-0,-0,-1,0,1,0|-16.5,-0.1001,-64.0001,-0.0001,1,-0.0001,-1,-0.0001,0,0,0,1|-30.8868,6.7389,49.5337|0.0199,90.33,90.5699|0.2526,-0.0087,0.1771|16.5,-0.1,-64.0001,0,-1,0,1,-0.0001,-0.0001,-0.0001,-0.0001,1|1.5,-0.1,9.8999,0,-0.0001,-1,1,0,-0.0001,-0.0001,-1,-0.0001|15.4999,-0.1,-3.1001,0,-0.0001,-1,1,0,-0.0001,-0.0001,-1,-0.0001|-19.3588,6.7859,54.3683|0.2572,-0.0089,0.1661|1,1.2,3|0,-6.6005,-3.0001,-1,0,0,0,0,1,0,1,-0.0001|-9.3589,6.7826,54.3108|0.2571,-0.0089,0.1566|-9.3773,4.412,51.2873|0.2543,-0.0088,0.1566|1,3.6,9|0,-0.6,2.9999,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-5.0001,-1.2,-19.5,-1,-0.0001,0,-0.0001,-1,-0.0001,-0.0001,0,1|-5.0001,-0.6,-5.0001,-1,0,0,-0.000'
  445. ..'1,-0.0001,1,-0.0001,1,-0.0001|-19.3771,4.4156,51.3448|0.2543,-0.0088,0.1661|4.9999,-1.2001,-19.5,-1,-0.0001,0,-0.0001,-1,-0.0001,-0.0001,0,1|4.9999,-0.6001,-5.0001,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|0,0.5999,-8.0001,-1,-0.0001,0,-0.0001,-1,-0.0001,-0.0001,0,1|-23.3764,5.6175,51.3796|0.2544,-0.0088,0.1699|7,1.2,3|8.9999,-0.6,-5,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-14.3766,5.6142,51.3279|0.2543,-0.0088,0.1614|9,1.2,3|-0.0001,-0.6,-5,-1,-0.0001,-0.0001,-0.0001,-0.0001,1,-0.0001,1,0|-5.3768,5.6108,51.2762|0.2543,-0.0089,0.1528|0,0,-1.5,-1,-0.0001,0,-0.0001,-1,-0.0001,-0.0001,0,1|-9,-0.6,-5.0001,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-5.394,5.6404,48.2764|0.2514,-0.0088,0.1528|-9.0001,-0.6001,-2.0001,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-23.3937,5.6471,48.3798|0.2515,-0.0087,0.1699|0,0,-1.5,-1,-0,-0,0,1,0,-0'
  446. ..',-0,-1|0,0,1.4999,1,-0.0001,0,0,-1,-0.0001,-0.0001,-0.0001,-1|8.9999,-0.6,-2.0001,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-14.3938,5.6437,48.3281|0.2515,-0.0087,0.1614|-0.0001,0,1.4999,1,-0.0001,0,0,-1,-0.0001,-0.0001,-0.0001,-1|0,-0.6001,-2,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|-14.5146,5.8509,27.3294|0.2315,-0.0081,0.1615|25,1.2,39|0.0001,-0.6002,-51.5001,-1,0,0,0,0,1,0,1,-0.0001|-5,1.1999,11.4999,1,-0.0001,0,0,-0.0001,-1,0,1,-0.0001|0,0,19.5,1,0,0,0,1,0,0,0,1|0.0002,0,1,1,0,0,0,-1,-0.0001,0,0,-1|-19.4492,3.9392,38.8396|0.2424,-0.0084,0.1661|1,2.4,16|-9.4494,3.9355,38.7821|0.2424,-0.0085,0.1566|-5.0001,-0.6,-11.5,-1,0,0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|0,0,-8,-1,-0,-0,0,1,0,-0,-0,-1|0,0.5999,4.5,1,-0.0001,0,0,-1,-0.0001,-0.0001,-0.0001,-1|-14.5297,4.0757,24.8118|0.2291,-0.008,0.1615|25,2.4,12|-0.0001,-0.6,2.5,-1,0,'
  447. ..'0,-0.0001,-0.0001,1,-0.0001,1,-0.0001|0,-0.0001,5.4999,1,0,0,-0.0001,-1,0,-0.0001,0,-1|-14.5959,4.1891,13.3125|0.2182,-0.0077,0.1615|25,2.4,11|0,-0.6003,14,1,0,-0.0001,0,0,1,0,-1,0|-14.6321,6.0535,6.8307|0.2121,-0.0075,0.1616|25,1.2,2|0,-0.6001,-31.0001,1,0,-0.0001,0,0,1,0,-1,0|-38.7542,7.3736,-14.4192|0.1919,-0.0067,0.1845|1,13.2,13|17.4999,-0.1,-9.6,0,-0.0001,-1,1,0,-0.0001,-0.0001,-1,-0.0001|9.245,7.3559,-14.695|0.1917,-0.0071,0.139|-17.5,-0.1,-9.6,-0.0001,-0.0001,1,-1,0,0,0,-1,0|-0.0001,-0.1,-33.5,-0.0001,1,0,-1,0,-0.0001,0,0,1|-8.1893,20.559,-4.0638|0.0199,90.33,-179.43|0.2018,-0.0072,0.1559|10,1.2,12|0,-2.4001,2.4999,1,-0.0001,0,-0.0001,0,1,-0.0001,-1,0|-21.1892,20.5642,-3.9894|-0.02,-89.67,179.4299|0.2019,-0.0072,0.1683|-14.7323,20.6357,-11.5261|0.1947,-0.007,0.1621|1,1.2,15|-14.6461,20.4873,3.473|0.209,-0.0074,0.162|-0.'
  448. ..'0001,-0.0001,5.5,1,-0.0001,-0.0001,0,-1,0,0,0,-1|-0.0001,-2.4001,-7.5001,1,-0.0001,0,0,0,1,0,-1,-0.0001|0.5283,25.8441,-53.5651|0.1549,-0.0059,0.1478|4,1.2,5|0,-0.0001,-11.5001,1,0,0,0,1,-0.0001,0,-0.0001,1|-30.5515,25.9936,-67.3862|0.1418,-0.0053,0.1773|4,1.2,23|-0.0001,1.7999,0,1,-0.0001,0,0,-0.0001,-1,0,1,-0.0001|-30.4711,25.8557,-53.3871|0.1551,-0.0057,0.1772|-0.0001,0,-11.5,1,0,0,0,1,-0.0001,0,-0.0001,1|-0.0001,1.8,-14,1,-0.0001,0,0,-0.0001,-1,0,1,-0.0001|-30.632,26.1317,-81.3853|0.1285,-0.0049,0.1774|0,0,11.4999,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|0,1.8,14,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|0.3675,26.1202,-81.5633|0.1283,-0.0051,0.148|0.4479,25.9822,-67.5642|0.1416,-0.0055,0.1479|0,0,2.4999,-1,-0.0001,-0.0001,0,1,-0.0001,-0.0001,0,-1|0.3|-96.1232,7.687,-43.6886|0.1641,-0.0055,0.239|3,12,3|-96.1311,9.4017'
  449. ..',-45.1717|0.1627,-0.0055,0.2391|1,0.4,15|-1.5001,-1.5,-0.0001,-0.0001,0,1,-0.0001,-1,0,1,-0.0001,0|-96.4806,7.7858,-53.6862|0.1547,-0.0052,0.2393|3,3.6,8|0.3,-0.2001,8.5,-0.0001,1,-0.0001,-0.0001,0,1,1,0,0|0,-6,0.3,-1,-0.0001,-0.0001,-0.0001,-0.0001,1,-0.0001,1,0|-97.8203,7.6827,-43.1789|0.1646,-0.0055,0.2406|1,0.4,13|1.4999,-0.1,6,-0.0001,0,-1,-1,-0.0001,-0.0001,0,1,-0.0001|0,1.3999,3.9999,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|-0.0001,0.4999,1.4999,1,0,0,-0.0001,-1,0,-0.0001,0,-1|-96.1325,6.0019,-45.2053|0.1627,-0.0055,0.239|-1.5,-0.3001,8.4999,-0.0001,-0.0001,1,-1,0,0,0,-1,0|1.4999,-1.5001,-0.0001,0,0,-1,0,-1,0,-1,0,0|-94.4002,7.6469,-39.6986|0.1679,-0.0056,0.2374|1,0.4,6|-1.5001,-0.1,2.5,0,0,1,1,-0.0001,0,-0.0001,1,0|0,3.9999,-1.5001,-1,0,-0.0001,0,-1,-0.0001,0,0,1|-96.0745,7.4031,-35.1911|0.1722,-0.0058,0.2389|3,3,3|0'
  450. ..',-0.3,-0.5,-1,-0.0001,0,-0.0001,-1,-0.0001,-0.0001,0,1|66.5167,7.7256,-54.6229|0.1538,-0.0063,0.0846|-0.3001,-0.2001,8.5,-0.0001,-1,0,0,-0.0001,1,-1,-0.0001,-0.0001|-0.0001,-6.0001,-0.3001,1,0,-0.0001,-0.0001,0,1,-0.0001,-1,-0.0001|66.2741,7.627,-44.6218|0.1633,-0.0066,0.0849|0,-0.2001,-1.5001,1,-0.0001,0,0,0,1,0,-1,-0.0001|67.9769,7.6215,-44.1316|0.1637,-0.0066,0.0833|-1.5,-0.1,6,0,0,1,1,-0.0001,0,-0.0001,1,0|0,0.5,-1.5,-1,0,-0.0001,0,-1,-0.0001,0,0,1|0,1.3999,4,-1,0,0,-0.0001,1,-0.0001,0,0,-1|66.2662,9.3418,-46.1049|0.1619,-0.0065,0.0849|66.2647,5.9419,-46.1385|0.1618,-0.0065,0.0848|1.5,-1.5,0,0,0,-1,0,-1,0,-1,0,0|1.5,-0.3001,8.5,0,0,-1,1,-0.0001,-0.0001,0,-1,0|64.5971,7.5882,-40.6123|0.1671,-0.0067,0.0865|0,4,1.5,1,0,0,-0.0001,-1,0,-0.0001,0,-1|1.5,-0.1,2.5,-0.0001,0,-1,-1,-0.0001,-0.0001,0,1,-0.0001|66.3228,7.3431,-36.1243|'
  451. ..'0.1713,-0.0068,0.0848|-27.3236,6.6291,60.5129|0.263,-0.009,0.1737|0.9,-0.0001,-0.5,0,-1,0,1,-0.0001,-0.0001,-0.0001,-0.0001,1|-1,-0.1001,-0.5001,-0.0001,1,-0.0001,-1,-0.0001,0,0,0,1|-29.3236,6.6299,60.5243|0.263,-0.009,0.1756|0.9,-0.0001,0.4999,-0.0001,-1,-0.0001,-1,-0.0001,0,0,-0.0001,-1|0.9999,-0.1,-0.5001,0,-1,0,1,-0.0001,-0.0001,-0.0001,-0.0001,1|0.6759,6.6187,60.3519|0.2629,-0.0092,0.1471|0.8999,0,-0.5,0,-1,0,1,-0.0001,-0.0001,-0.0001,-0.0001,1|-0.1001,0,-0.5,0,-1,0,1,-0.0001,-0.0001,-0.0001,-0.0001,1|-1.3241,6.6195,60.3634|0.2629,-0.0092,0.149|0.8999,-0.0001,0.5,-0.0001,-1,-0.0001,-1,-0.0001,0,0,-0.0001,-1|-0.1001,0,0.4999,-0.0001,-1,-0.0001,-1,-0.0001,0,0,-0.0001,-1|1,-0.1001,-0.5001,0,-1,0,1,-0.0001,-0.0001,-0.0001,-0.0001,1|-0.3247,6.6201,60.2577|0.2628,-0.0092,0.148|1,1,1|-28.3242,6.6305,60.4186|0.2629,-0.009,0.1746|0'
  452. ..',-0.1,0.4999,-0.0001,-1,0,-1,-0.0001,-0.0001,-0.0001,0,-1|-0.0001,-0.1,0.5,-0.0001,1,0,1,-0.0001,0,-0.0001,-0.0001,-1|0,-0.1,-0.5001,-1,-0.0001,0,-0.0001,-1,-0.0001,-0.0001,0,1|-28.3184,6.6206,61.4185|0.2639,-0.009,0.1746|-0.3189,6.6102,61.2576|0.2637,-0.0092,0.148|-0.5001,-0.0001,-0.0001,-0.0001,0,1,0,1,0,-1,-0.0001,0|-28.3127,6.6107,62.4185|0.2648,-0.009,0.1746|-0.5,0,0,0,-0.0001,1,0,1,0,-1,0,0|-0.3132,6.6003,62.2576|0.2647,-0.0092,0.148|-0.5001,0,0,-0.0001,0,1,0,1,0,-1,-0.0001,0|-22.4741,12.3896,33.9401|0.2378,-0.0083,0.1692|9,2.4,2|0.4999,-0.6001,-0.0001,-1,0,-0.0001,0,0,1,-0.0001,1,0|-0.0001,1.8,5.4999,1,0,0,-0.0001,0,-1,0,1,-0.0001|-11.4435,10.5313,39.3588|0.243,-0.0085,0.1587|-2.963,12.3626,35.8279|0.2396,-0.0084,0.1507|2,2.4,2|-10.4062,10.4667,45.8526|0.2491,-0.0087,0.1577|-3.4063,10.4641,45.8124|0.2491,-0.0087,0.1511|-'
  453. ..'6.4744,12.3837,33.8482|0.2378,-0.0084,0.1541|-0.0001,1.8,5.5,1,0,0,-0.0001,0,-1,0,1,-0.0001|-17.4434,10.5335,39.3933|0.243,-0.0085,0.1644|-25.9519,10.5514,37.9422|0.2416,-0.0084,0.1725|2,1.2,6|-2,1.2,0,0,1,-0.0001,-0.0001,0,-1,-1,-0.0001,-0.0001|0,-1.2,-2.0001,1,-0.0001,0,0,0,1,0,-1,-0.0001|-18.4061,10.4697,45.8986|0.2492,-0.0086,0.1653|4,-3.0001,3,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|-1,-3.6001,4.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|-25.4059,10.4723,45.9389|0.2492,-0.0086,0.172|11,1.2,0,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|2,-3,2.9999,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|-14.4554,9.3522,37.3643|0.2411,-0.0084,0.1615|5,1.2,1|-9.4042,15.2661,45.8943|0.2492,-0.0087,0.1569|1,8.4,2|1,0.5999,-0.0001,1,0,0,-0.0001,0,-1,0,1,-0.0001|0,4.2,0,-1,-0,-0,0,0,1,0,1,0|-5,-0.6001,-11.5,1,-0.0001,0,0,0'
  454. ..',1,0,-1,-0.0001|0,1.1999,4.5,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|-2.9523,10.543,37.81|0.2415,-0.0085,0.1507|-2.0001,1.2,-0.0001,0,1,-0.0001,-0.0001,0,-1,-1,-0.0001,-0.0001|-0.0001,-1.2001,-2.0001,1,-0.0001,0,0,0,1,0,-1,-0.0001|-25.9626,12.371,35.9601|0.2398,-0.0083,0.1725|-21.4673,8.1746,35.3928|0.2392,-0.0083,0.1682|7,1.2,1|6.9999,0.6,-59.5,1,0,-0.0001,0,-0.0001,-1,0,1,0|-14.5246,8.8707,25.3591|0.2297,-0.0081,0.1616|5,2.4,7|0,0.6,-49.5001,0,-1,-0.0001,-0.0001,-0.0001,-1,1,-0.0001,0|-7.4676,8.1694,35.3124|0.2391,-0.0084,0.1549|-7,0.5999,-59.5001,1,0,-0.0001,0,-0.0001,-1,0,1,0|-12.5479,8.3095,21.3419|0.2259,-0.008,0.1597|-2.0001,0.6,-45.5,0,-1,0,-0.0001,-0.0001,-1,1,0,-0.0001|-22.507,9.444,28.4108|0.2326,-0.0081,0.1692|9,3.6,13|7.9999,0.5999,-52.5,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|0.5,-2.4001,0,-1,0,-0.0001,0,'
  455. ..'0,1,-0.0001,1,0|-14.4046,14.068,45.9113|5,1.2,2|-23.0454,13.7131,21.4556|0.226,-0.0079,0.1698|8.5,0.6,-45.5,-0.0001,1,-0.0001,0,0,-1,-1,0,0|0,0,-6,-1,-0,-0,0,1,0,-0,-0,-1|0,5.4,0.5,-1,0,0,-0.0001,1,-0.0001,0,0,-1|8.5,-0.6001,-5,0,1,0,-0.0001,0,1,1,0,-0.0001|-6.0456,13.7067,21.3577|0.2259,-0.008,0.1537|-8.5001,0.5998,-45.4996,-0.0001,1,-0.0001,-0.0001,-0.0001,-1,-1,-0.0001,0|0.0002,5.3998,0.5,-1.0001,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|-14.544,17.3096,21.4422|0.226,-0.0079,0.1619|-0.0001,-0.6,-5.0001,0,1,0,-0.0001,0,1,1,0,-0.0001|-16.5478,8.311,21.365|0.2259,-0.0079,0.1635|2,0.6,-45.5,-0.0001,1,-0.0001,0,0,-1,-1,0,0|-27.9707,13.5866,34.4835|0.2384,-0.0082,0.1745|25,12,2|13.4999,0.6,-58.5,-0.0001,1,-0.0001,0,0,-1,-1,0,0|-16.5453,14.3107,21.4242|0.226,-0.0079,0.1637|-0.0001,-2.4001,2,-1,-0.0001,0,-0.0001,0,1,0,1,0|-0.00'
  456. ..'01,0.5999,-6.0001,-1,-0.0001,-0.0001,-0.0001,-1,0,0,-0.0001,1|-14.4069,8.6683,45.8579|0.2491,-0.0087,0.1615|25,2.4,2|-11,-0.6,0,1,-0.0001,-0.0001,-0.0001,-0.0001,1,0,-1,0|0,-0.6001,3.5,1,-0.0001,-0.0001,-0.0001,-0.0001,1,0,-1,0|0,0,-1,-1,-0,-0,0,1,0,-0,-0,-1|0,-4.8,2.9999,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|-5,-5.4001,4.4999,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|-4.0001,-0.6,0,1,-0.0001,-0.0001,-0.0001,-0.0001,1,0,-1,0|4,-0.6,0,1,-0.0001,-0.0001,-0.0001,-0.0001,1,0,-1,0|-9,-4.8,2.9999,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|-0.0001,0.6,0.4999,1,0,-0.0001,0,-0.0001,-1,0,1,0|-12.5453,14.309,21.401|0.226,-0.008,0.1599|-0.0001,-2.4001,-2.0001,1,0,0,0,-0.0001,1,-0.0001,-1,0|0,0.5999,5.9999,1,-0.0001,0,0,-1,-0.0001,-0.0001,-0.0001,-1|-2.9415,8.7233,39.7921|0.2434,-0.0086,0.1506|10,2.4,2|-11.5,0.6,-64.0001,-0.0001,1,'
  457. ..'-0.0001,0,0,-1,-1,0,0|-11.5001,0.6,6.4999,-0.0001,1,-0.0001,0,0,-1,-1,0,0|-25.9412,8.7317,39.9243|0.2435,-0.0084,0.1724|11.5,0.5999,-64,-0.0001,1,0,0,0,-1,-1,-0.0001,-0.0001|-19.404,15.2698,45.9517|0.2493,-0.0086,0.1664|0,1.1999,4.4999,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|-1,0.6,-0.0001,1,0,0,-0.0001,0,-1,0,1,-0.0001|-14.4327,8.7127,41.3581|0.2449,-0.0085,0.1615|9,2.4,7|0,0.6,-65.5001,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|0,-0.6001,-1,-1,0,-0.0001,0,0,1,-0.0001,1,0|2,-0.6001,3,-0.0001,1,0,0,0,1,1,-0.0001,0|1.4999,-0.6001,3.5,0,-1,-0.0001,0,0,1,-1,0,-0.0001|-2,-0.6001,3,0,-1,-0.0001,0,0,1,-1,0,-0.0001|-1.5001,-0.6001,3.5,-0.0001,1,0,0,0,1,1,-0.0001,0|-0.0001,0.6,4.9999,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-14.5421,8.3004,22.3534|0.2268,-0.008,0.1616|0,0.6,-46.5,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-'
  458. ..'6.9063,10.4654,45.8326|0.2491,-0.0087,0.1544|-7.5,1.2,0,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-9.9908,14.2145,30.8862|0.235,-0.0083,0.1574|0,1.1999,0.4999,0,-1,0,0,0,-1,1,-0.0001,-0.0001|-18.9907,14.2178,30.938|0.235,-0.0082,0.166|-17.9233,10.4991,42.8959|0.2463,-0.0085,0.1649|-21.906,10.471,45.9188|0.2492,-0.0086,0.1686|7.5,1.2,0,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-1.5,-3,3,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|-25.9232,10.5021,42.9419|0.2464,-0.0085,0.1725|3,1.2,-0.0001,1,-0.0001,-0.0001,0,0,-1,-0.0001,1,-0.0001|-2.9235,10.4936,42.8097|0.2463,-0.0086,0.1506|3,1.2,-0.0001,-1,0,-0.0001,-0.0001,-0.0001,-1,0,-1,-0.0001|-10.9234,10.4965,42.8557|0.2463,-0.0086,0.1582|-18.9943,12.4228,30.4202|0.2345,-0.0082,0.1659|0.4999,-0.6,-0.0001,0,-1,-0.0001,0,0,1,-1,0,-0.0001|3.4999,1.8,1.9999,1,0,0,-0.0001,0,-1,0,1,-0.0'
  459. ..'001|-14.4262,10.5027,42.3758|0.2458,-0.0086,0.1615|5,1.2,9|-2,-1.2001,0.5,1,0,-0.0001,0,0,1,0,-1,0|-1.5001,-0.6001,2.9999,-1,-0.0001,0,0,0,1,-0.0001,1,-0.0001|1.4999,-1.8001,0,-0.0001,1,-0.0001,0,0,1,1,0,-0.0001|-6.5073,9.4381,28.3189|0.2325,-0.0082,0.154|-8,0.6,-52.5001,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-0.5,-2.4001,0,-1,0,-0.0001,0,0,1,-0.0001,1,0|3.4999,-1.2001,-2,-1,0,-0.0001,0,0,1,-0.0001,1,0|2,-1.2,2.4999,1,-0.0001,0,0,0,1,0,-1,-0.0001|-9.9944,12.4195,30.3685|0.2345,-0.0082,0.1574|-0.9711,13.5766,34.3284|0.2382,-0.0084,0.1489|-13.5,0.5999,-58.5,-0.0001,1,-0.0001,0,0,-1,-1,0,0|-22.9734,14.1897,33.9608|0.2379,-0.0083,0.1698|-14.4818,8.1967,32.8527|0.2368,-0.0083,0.1615|7,1.2,10|-0.0001,-0.6001,-4.5,-1,0,-0.0001,0,0,1,-0.0001,1,0|-0.0001,0.6,-57.0001,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-5.9737,14.1834,33.'
  460. ..'8631|0.2378,-0.0084,0.1536|0.5,1.1999,-0.0001,1,0,0,-0.0001,0,-1,0,1,-0.0001|-5.0908,8.9807,13.8053|0.2187,-0.0078,0.1526|10,2.4,6|-9.5,0.6,-38,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-24.0905,8.9878,13.9145|0.2188,-0.0077,0.1707|9.5,0.6,-38.0001,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|0.898,0.8941,0.8745|-0.5807,19.2688,14.881|0.2198,-0.0078,0.1487|1,10,1|0,5,0,-1,-0,-0,0,0,1,0,1,0|-0.0001,-0.1,0.5,-0.0001,-1,0,-1,-0.0001,-0.0001,-0.0001,0,-1|1,-0.6002,-19,1,0,-0.0001,0,0,1,0,-1,0|0,-5,0,1,0,0,-0,-0,-1,0,1,0|-0.0001,-0.1002,0.4999,-0.0001,1,-0.0001,1,0,-0.0001,-0.0001,-0.0001,-1|-14.0001,-0.5998,1.5,1,0,-0.0001,0,0,1,0,-1,0|-0.6124,19.2232,9.3804|0.2146,-0.0077,0.1487|0.9999,-0.6002,-13.5,1,0,-0.0001,0,0,1,0,-1,0|-28.5805,19.2789,15.0415|0.22,-0.0077,0.1752|-28.6122,19.2333,9.5409|0.2147,-0.0075,0.1753|0.0999,-5,0,-0'
  461. ..'.0001,1,-0.0001,-0.0001,-0.0001,1,1,-0.0001,-0.0001|-1,-0.6002,-13.5001,1,0,-0.0001,0,0,1,0,-1,0|-28.5487,19.1246,20.5406|0.2252,-0.0078,0.1752|0.1002,4.9999,0,0,1,-0.0001,0,-0.0001,-1,-1,0,0|13.9999,-0.6,-4,-1,-0.0001,-0.0001,-0.0001,-0.0001,1,-0.0001,1,0|-0.5491,19.1146,20.3796|0.225,-0.008,0.1486|-11.3463,9.4223,-30.6574|0.1765,-0.0065,0.1586|-3.5,0.6,6.5,0,-1,-0.0001,-0.0001,-0.0001,-1,1,-0.0001,0|-0.0001,-4.8,6,-1,-0.0001,-0.0001,-0.0001,1,0,0,0,-1|-18.3462,9.4249,-30.6172|0.1766,-0.0064,0.1652|3.5,0.6,6.4999,-0.0001,1,-0.0001,0,0,-1,-1,0,0|0.0001,-4.8002,-6.0001,1,0,0,-0.0001,1,-0.0001,-0.0001,0,1|-18.3421,19.0246,-30.5225|0.1767,-0.0064,0.1655|0,4.7999,-6,-1,-0.0001,-0.0001,-0.0001,-1,0,0,-0.0001,1|3.5,-0.6001,0.4999,0,1,0,-0.0001,0,1,1,0,-0.0001|-11.3422,19.0219,-30.5628|0.1767,-0.0065,0.1589|teleporter8c|-15.2002,8.172'
  462. ..'1,-5.1459|0.2007,-0.0072,0.1622|4,0.4,4|Enabled|0.5,0.6,-19.0001,1,0,-0.0001,0,-0.0001,-1,0,1,0|teleporter8d|-73.1763,13.7019,-140.2966|0.5699,180,0;0,1>2>4,2>2>4,3>2>4,9>18>4,9>19>249,10>18>4,10>19>313,34>18>33,34>19>1323,35>18>33,35>19>1314,36>18>33,36>19>1175,37>18>33,37>19>1133,40>18>39,40>19>1267,42>18>41,42>19>1305,43>18>41,43>19>1291,45>18>44,45>19>1460,55>2>1215,56>2>78,59>18>57,59>19>78,62>18>60,62>19>72,65>18>63,65>19>78,68>18>66,68>19>78,71>18>69,71>19>78,74>18>73,74>19>1460,77>18>75,77>19>73,81>18>79,81>19>78,84>18>82,84>19>1460,87>18>85,87>19>1460,90>2>100,93>18>92,93>19>98,94>18>92,94>19>1464,97>18>95,97>19>91,101>18>100,101>19>111,102>18>100,102>19>107,103>18>100,103>19>105,104>18>100,104>19>1464,114>18>112,114>19>111,116>18>115,116>19>1464,117>2>128,119>18>118,119>19>1380,121>18>120,121>19>126,122>18>120,122>19>'
  463. ..'1380,125>18>123,125>19>118,129>18>128,129>19>139,130>18>128,130>19>132,131>18>128,131>19>1380,136>18>134,136>19>128,142>18>140,142>19>139,144>18>143,144>19>1380,145>2>158,147>18>146,147>19>1031,149>18>148,149>19>1031,150>18>148,150>19>154,152>18>151,152>19>1031,153>18>151,153>19>156,159>18>158,159>19>170,160>18>158,160>19>1031,161>18>158,161>19>165,162>18>158,162>19>163,169>18>167,169>19>1031,173>18>171,173>19>170,174>2>187,176>18>175,176>19>1031,178>18>177,178>19>1031,179>18>177,179>19>182,181>18>180,181>19>1031,186>18>184,186>19>180,188>18>187,188>19>1031,189>18>187,189>19>193,190>18>187,190>19>191,197>18>195,197>19>1031,199>18>198,199>19>201,200>18>198,200>19>187,203>2>211,205>18>204,205>19>4,207>18>206,207>19>4,210>18>208,210>19>206,212>18>211,212>19>217,213>18>211,213>19>215,214>18>211,214>19>4,219>18>218,219>19>4,221>18>2'
  464. ..'20,221>19>4,224>18>222,224>19>220,227>18>225,227>19>211,229>18>228,229>19>4,231>18>230,231>19>4,233>18>232,233>19>4,234>2>242,236>18>235,236>19>4,238>18>237,238>19>240,239>18>237,239>19>4,243>18>242,243>19>4,246>18>244,246>19>242,248>18>247,248>19>242,251>18>250,251>19>4,252>18>250,252>19>253,257>18>255,257>19>242,259>18>258,259>19>4,261>18>260,261>19>4,263>18>262,263>19>4,264>2>272,266>18>265,266>19>4,268>18>267,268>19>4,271>18>269,271>19>267,273>18>272,273>19>4,276>18>274,276>19>272,278>18>277,278>19>272,280>18>279,280>19>4,282>18>281,282>19>284,283>18>281,283>19>4,288>18>286,288>19>272,290>18>289,290>19>4,292>18>291,292>19>4,294>18>293,294>19>4,295>2>303,297>18>296,297>19>4,299>18>298,299>19>4,300>18>298,300>19>301,304>18>303,304>19>4,305>18>303,305>19>317,306>18>303,306>19>310,307>18>303,307>19>308,312>18>311,312>19>4,316>1'
  465. ..'8>314,316>19>313,320>18>319,320>19>4,322>18>321,322>19>4,324>18>323,324>19>4,326>18>325,326>19>4,327>18>325,327>19>478,328>18>325,328>19>355,329>18>325,329>19>1232,330>18>325,330>19>454,331>18>325,331>19>404,332>18>325,332>19>357,333>18>325,333>19>347,335>18>334,335>19>4,337>18>336,337>19>679,338>18>336,338>19>4,340>18>339,340>19>4,343>18>341,343>19>325,345>18>344,345>19>436,346>18>344,346>19>334,348>18>347,348>19>478,349>18>347,349>19>434,350>18>347,350>19>454,351>18>347,351>19>510,352>18>347,352>19>508,353>18>347,353>19>414,354>18>347,354>19>404,358>18>357,358>19>478,359>18>357,359>19>724,360>18>357,360>19>404,361>18>357,361>19>741,362>18>357,362>19>449,363>18>357,363>19>743,364>18>357,364>19>728,365>18>357,365>19>454,366>18>357,366>19>739,367>18>357,367>19>451,369>18>368,369>19>380,370>18>368,370>19>334,371>18>368,371>19>722'
  466. ..',372>18>368,372>19>474,375>18>373,375>19>334,378>18>376,378>19>436,379>18>376,379>19>334,382>18>380,382>19>344,383>18>380,383>19>334,386>18>384,386>19>347,387>18>384,387>19>325,388>18>384,388>19>357,389>18>384,389>19>404,391>18>390,391>19>380,392>18>390,392>19>368,393>18>390,393>19>344,394>18>390,394>19>334,397>18>395,397>19>390,400>18>398,400>19>1287,401>18>398,401>19>395,402>18>398,402>19>1291,403>18>398,403>19>390,405>18>404,405>19>406,410>18>408,410>19>404,411>18>408,411>19>1267,412>18>408,412>19>1271,413>18>408,413>19>406,418>18>416,418>19>341,419>18>416,419>19>347,420>18>416,420>19>414,423>18>421,423>19>376,424>18>421,424>19>344,427>18>425,427>19>421,428>18>425,428>19>344,431>18>429,431>19>341,432>18>429,432>19>347,433>18>429,433>19>434,440>18>438,440>19>436,441>18>438,441>19>344,444>18>442,444>19>368,447>18>445,447>19>44'
  467. ..'2,448>18>445,448>19>368,453>18>451,453>19>449,458>18>456,458>19>722,459>18>456,459>19>344,460>18>456,460>19>334,461>18>456,461>19>368,464>18>462,464>19>344,465>18>462,465>19>334,466>18>462,466>19>368,468>18>467,468>19>517,469>18>467,469>19>462,470>18>467,470>19>491,471>18>467,471>19>474,472>18>467,472>19>521,473>18>467,473>19>456,476>18>474,476>19>334,477>18>474,477>19>344,480>18>478,480>19>487,483>18>481,483>19>487,484>18>481,484>19>347,485>18>481,485>19>325,486>18>481,486>19>357,488>18>487,488>19>494,489>18>487,489>19>510,490>18>487,490>19>454,493>18>491,493>19>456,496>18>494,496>19>454,499>18>497,499>19>454,502>18>500,502>19>456,505>18>503,505>19>530,506>18>503,506>19>521,507>18>503,507>19>344,511>18>510,511>19>508,514>18>512,514>19>510,515>18>512,515>19>525,516>18>512,516>19>487,519>18>517,519>19>530,520>18>517,520>19>521,5'
  468. ..'22>18>521,522>19>530,523>18>521,523>19>760,524>18>521,524>19>344,527>18>525,527>19>510,528>18>525,528>19>508,529>18>525,529>19>535,532>18>530,532>19>533,539>18>537,539>19>535,542>18>540,542>19>533,544>18>543,544>19>4,545>18>543,545>19>568,546>18>543,546>19>570,547>18>543,547>19>550,548>18>543,548>19>580,549>18>543,549>19>578,552>18>550,552>19>4,555>18>553,555>19>4,556>18>553,556>19>570,557>18>553,557>19>543,560>18>558,560>19>628,561>18>558,561>19>543,562>18>558,562>19>568,565>18>563,565>19>630,566>18>563,566>19>568,567>18>563,567>19>543,569>18>568,569>19>643,571>18>570,571>19>550,572>18>570,572>19>4,573>18>570,573>19>611,576>18>574,576>19>543,577>18>574,577>19>589,582>18>580,582>19>594,585>18>583,585>19>543,586>18>583,586>19>587,593>18>591,593>19>578,598>18>596,598>19>604,599>18>596,599>19>568,602>18>600,602>19>604,603>18>600,6'
  469. ..'03>19>568,605>18>604,605>19>643,606>18>604,606>19>568,609>18>607,609>19>611,610>18>607,610>19>570,614>18>612,614>19>611,615>18>612,615>19>570,617>18>616,617>19>336,618>18>616,618>19>628,619>18>616,619>19>720,620>18>616,620>19>718,621>18>616,621>19>780,622>18>616,622>19>630,623>18>616,623>19>716,624>18>616,624>19>543,625>18>616,625>19>793,626>18>616,626>19>339,627>18>616,627>19>788,634>18>632,634>19>636,635>18>632,635>19>568,637>18>636,637>19>643,638>18>636,638>19>568,641>18>639,641>19>636,642>18>639,642>19>568,646>18>645,646>19>991,647>18>645,647>19>823,648>18>645,648>19>336,649>18>645,649>19>908,650>18>645,650>19>948,651>18>645,651>19>910,652>18>645,652>19>959,653>18>645,653>19>990,654>18>645,654>19>955,655>18>645,655>19>704,656>18>645,656>19>929,657>18>645,657>19>977,658>18>645,658>19>1517,659>18>645,659>19>970,660>18>645,660'
  470. ..'>19>961,661>18>645,661>19>667,662>18>645,662>19>968,663>18>645,663>19>1244,664>18>645,664>19>680,665>18>645,665>19>669,666>18>645,666>19>339,668>18>667,668>19>4,670>18>669,670>19>1517,671>18>669,671>19>4,673>18>672,673>19>990,674>18>672,674>19>987,675>18>672,675>19>688,676>18>672,676>19>716,677>18>672,677>19>680,678>18>672,678>19>339,681>18>680,681>19>679,682>18>680,682>19>704,683>18>680,683>19>616,684>18>680,684>19>801,685>18>680,685>19>804,686>18>680,686>19>800,687>18>680,687>19>798,689>18>688,689>19>704,690>18>688,690>19>645,691>18>688,691>19>694,692>18>688,692>19>680,693>18>688,693>19>616,695>18>694,695>19>698,696>18>694,696>19>680,697>18>694,697>19>616,699>18>698,699>19>704,700>18>698,700>19>645,701>18>698,701>19>680,702>18>698,702>19>679,703>18>698,703>19>616,707>18>705,707>19>679,709>18>708,709>19>705,710>18>708,710>19>6'
  471. ..'79,711>18>708,711>19>1265,712>18>708,712>19>1263,713>18>708,713>19>1250,714>18>708,714>19>720,715>18>708,715>19>616,717>18>716,717>19>718,726>18>724,726>19>728,727>18>724,727>19>454,730>18>729,730>19>722,731>18>729,731>19>368,734>18>732,734>19>746,735>18>732,735>19>368,738>18>736,738>19>368,744>18>743,744>19>741,745>18>743,745>19>739,747>18>746,747>19>750,748>18>746,748>19>736,749>18>746,749>19>368,752>18>750,752>19>368,755>18>753,755>19>743,756>18>753,756>19>357,759>18>757,759>19>760,764>18>762,764>19>757,767>18>765,767>19>510,770>18>768,770>19>765,773>18>771,773>19>768,775>18>774,775>19>4,776>18>774,776>19>616,778>18>777,778>19>4,779>18>777,779>19>616,781>18>780,781>19>4,783>18>782,783>19>4,784>18>782,784>19>616,786>18>785,786>19>4,787>18>785,787>19>616,789>18>788,789>19>4,791>18>790,791>19>4,792>18>790,792>19>616,794>18>793,'
  472. ..'794>19>4,796>18>795,796>19>4,797>18>795,797>19>616,799>18>798,799>19>804,802>18>801,802>19>800,803>18>801,803>19>798,805>18>804,805>19>800,807>18>806,807>19>4,808>18>806,808>19>851,809>18>806,809>19>831,810>18>806,810>19>824,812>18>811,812>19>4,813>18>811,813>19>825,814>18>811,814>19>823,815>18>811,815>19>826,817>18>816,817>19>848,818>18>816,818>19>833,819>18>816,819>19>851,820>18>816,820>19>831,821>18>816,821>19>645,822>18>816,822>19>806,828>18>827,828>19>842,829>18>827,829>19>840,830>18>827,830>19>806,835>18>833,835>19>895,838>18>836,838>19>827,839>18>836,839>19>806,846>18>844,846>19>827,847>18>844,847>19>806,850>18>848,850>19>895,855>18>853,855>19>811,856>18>853,856>19>826,859>18>857,859>19>823,860>18>857,860>19>811,863>18>861,863>19>903,864>18>861,864>19>823,867>18>865,867>19>826,868>18>865,868>19>903,871>18>869,871>19>826,'
  473. ..'872>18>869,872>19>811,875>18>873,875>19>826,876>18>873,876>19>903,879>18>877,879>19>823,882>18>880,882>19>823,883>18>880,883>19>811,885>18>884,885>19>1503,886>18>884,886>19>826,887>18>884,887>19>1105,888>18>884,888>19>993,889>18>884,889>19>1389,890>18>884,890>19>1061,891>18>884,891>19>1107,892>18>884,892>19>995,893>18>884,893>19>1493,894>18>884,894>19>827,896>18>895,896>19>920,897>18>895,897>19>1493,898>18>895,898>19>842,899>18>895,899>19>1242,900>18>895,900>19>840,901>18>895,901>19>824,902>18>895,902>19>922,904>18>903,904>19>942,905>18>903,905>19>877,906>18>903,906>19>825,907>18>903,907>19>1239,914>18>912,914>19>929,915>18>912,915>19>884,918>18>916,918>19>929,919>18>916,919>19>884,926>18>924,926>19>929,927>18>924,927>19>1242,928>18>924,928>19>895,930>18>929,930>19>884,931>18>929,931>19>939,932>18>929,932>19>920,933>18>929,933>'
  474. ..'19>942,934>18>929,934>19>1244,935>18>929,935>19>980,936>18>929,936>19>910,937>18>929,937>19>908,938>18>929,938>19>922,941>18>939,941>19>903,946>18>944,946>19>903,947>18>944,947>19>929,950>18>948,950>19>955,953>18>951,953>19>955,954>18>951,954>19>645,956>18>955,956>19>959,957>18>955,957>19>968,958>18>955,958>19>980,963>18>961,963>19>955,966>18>964,966>19>955,967>18>964,967>19>645,972>18>970,972>19>955,975>18>973,975>19>955,976>18>973,976>19>645,979>18>977,979>19>955,984>18>982,984>19>980,985>18>982,985>19>929,986>18>982,986>19>1007,989>18>987,989>19>716,992>18>991,992>19>679,999>18>997,999>19>1061,1000>18>997,1000>19>1107,1001>18>997,1001>19>884,1004>18>1002,1004>19>1105,1005>18>1002,1005>19>1063,1006>18>1002,1006>19>884,1008>18>1007,1008>19>1014,1009>18>1007,1009>19>1002,1010>18>1007,1010>19>997,1011>18>1007,1011>19>995,1012>18'
  475. ..'>1007,1012>19>993,1013>18>1007,1013>19>884,1016>18>1014,1016>19>884,1019>18>1017,1019>19>4,1020>18>1017,1020>19>884,1021>18>1017,1021>19>827,1022>18>1017,1022>19>806,1025>18>1023,1025>19>4,1026>18>1023,1026>19>884,1027>18>1023,1027>19>826,1028>18>1023,1028>19>811,1030>18>1029,1030>19>4,1032>18>1031,1032>19>4,1033>18>1031,1033>19>1175,1034>18>1031,1034>19>1029,1035>18>1031,1035>19>1081,1036>18>1031,1036>19>1133,1037>18>1031,1037>19>1096,1038>18>1031,1038>19>1470,1039>18>1031,1039>19>1419,1040>18>1031,1040>19>1397,1041>18>1031,1041>19>1215,1042>18>1031,1042>19>1079,1044>18>1043,1044>19>1031,1045>18>1043,1045>19>4,1046>18>1043,1046>19>1066,1048>18>1047,1048>19>1109,1049>18>1047,1049>19>1470,1050>18>1047,1050>19>1105,1051>18>1047,1051>19>1061,1052>18>1047,1052>19>1063,1053>18>1047,1053>19>1421,1054>18>1047,1054>19>1081,1055>18>1047'
  476. ..',1055>19>1029,1056>18>1047,1056>19>1107,1057>18>1047,1057>19>1397,1058>18>1047,1058>19>1066,1059>18>1047,1059>19>1014,1060>18>1047,1060>19>1043,1065>18>1063,1065>19>884,1068>18>1066,1068>19>38,1069>18>1066,1069>19>1397,1070>18>1066,1070>19>1031,1073>18>1071,1073>19>1029,1074>18>1071,1074>19>1047,1075>18>1071,1075>19>33,1076>18>1071,1076>19>1122,1077>18>1071,1077>19>1470,1078>18>1071,1078>19>1031,1085>18>1083,1085>19>1047,1086>18>1083,1086>19>1185,1087>18>1083,1087>19>1403,1088>18>1083,1088>19>1343,1089>18>1083,1089>19>1031,1092>18>1090,1092>19>1435,1093>18>1090,1093>19>1403,1094>18>1090,1094>19>1344,1095>18>1090,1095>19>1031,1098>18>1096,1098>19>1460,1099>18>1096,1099>19>1343,1100>18>1096,1100>19>1383,1102>18>1101,1102>19>1460,1103>18>1101,1103>19>1383,1104>18>1101,1104>19>1096,1113>18>1111,1113>19>1047,1116>18>1114,1116>19>111'
  477. ..'1,1117>18>1114,1117>19>884,1120>18>1118,1120>19>1109,1121>18>1118,1121>19>884,1123>18>1122,1123>19>1133,1124>18>1122,1124>19>1175,1126>18>1125,1126>19>1178,1127>18>1125,1127>19>1129,1128>18>1125,1128>19>1066,1131>18>1129,1131>19>38,1132>18>1129,1132>19>1031,1136>18>1135,1136>19>4,1137>18>1135,1137>19>1031,1138>18>1135,1138>19>1129,1139>18>1135,1139>19>1144,1141>18>1140,1141>19>4,1142>18>1140,1142>19>1031,1143>18>1140,1143>19>1133,1146>18>1144,1146>19>4,1149>18>1147,1149>19>4,1150>18>1147,1150>19>1140,1153>18>1151,1153>19>4,1156>18>1154,1156>19>4,1157>18>1154,1157>19>1161,1160>18>1158,1160>19>4,1162>18>1161,1162>19>4,1163>18>1161,1163>19>1151,1165>18>1164,1165>19>4,1166>18>1164,1166>19>1158,1167>18>1164,1167>19>1168,1170>18>1168,1170>19>4,1172>18>1171,1172>19>4,1174>18>1173,1174>19>4,1177>18>1175,1177>19>4,1180>18>1178,1180>19>4'
  478. ..',1181>18>1178,1181>19>38,1182>18>1178,1182>19>1031,1184>18>1183,1184>19>1081,1188>18>1186,1188>19>1185,1189>18>1186,1189>19>1215,1190>18>1186,1190>19>1031,1193>18>1191,1193>19>1183,1194>18>1191,1194>19>1215,1195>18>1191,1195>19>1031,1196>18>1191,1196>19>1219,1199>18>1197,1199>19>1031,1202>18>1200,1202>19>1031,1205>18>1203,1205>19>1207,1206>18>1203,1206>19>1031,1208>18>1207,1208>19>1031,1210>18>1209,1210>19>1197,1211>18>1209,1211>19>1031,1213>18>1212,1213>19>1200,1214>18>1212,1214>19>1031,1216>18>1215,1216>19>4,1217>18>1215,1217>19>1219,1218>18>1215,1218>19>1229,1221>18>1220,1221>19>1215,1222>18>1220,1222>19>1186,1224>18>1223,1224>19>1215,1225>18>1223,1225>19>1226,1228>18>1226,1228>19>1215,1231>18>1229,1231>19>4,1234>18>1232,1234>19>4,1237>18>1235,1237>19>4,1238>18>1235,1238>19>334,1241>18>1239,1241>19>942,1248>18>1246,1248>19>8'
  479. ..'84,1249>18>1246,1249>19>929,1252>18>1250,1252>19>1265,1254>18>1253,1254>19>716,1257>18>1255,1257>19>1253,1258>18>1255,1258>19>716,1261>18>1259,1261>19>1253,1262>18>1259,1262>19>716,1266>18>1265,1266>19>1263,1270>18>1269,1270>19>1267,1273>18>1271,1273>19>1269,1274>18>1271,1274>19>1267,1276>18>1275,1276>19>39,1277>18>1275,1277>19>1271,1278>18>1275,1278>19>1267,1280>18>1279,1280>19>1271,1281>18>1279,1281>19>1267,1283>18>1282,1283>19>39,1284>18>1282,1284>19>1267,1286>18>1285,1286>19>39,1289>18>1287,1289>19>1298,1290>18>1287,1290>19>1291,1293>18>1291,1293>19>1298,1295>18>1294,1295>19>41,1296>18>1294,1296>19>1291,1297>18>1294,1297>19>1287,1300>18>1299,1300>19>1291,1301>18>1299,1301>19>1287,1303>18>1302,1303>19>1291,1304>18>1302,1304>19>41,1308>18>1306,1308>19>1329,1309>18>1306,1309>19>38,1312>18>1310,1312>19>1329,1313>18>1310,1313>19'
  480. ..'>38,1316>18>1314,1316>19>1330,1317>18>1314,1317>19>1323,1320>18>1318,1320>19>1330,1321>18>1318,1321>19>1323,1322>18>1318,1322>19>33,1325>18>1324,1325>19>1329,1326>18>1324,1326>19>1310,1327>18>1324,1327>19>1306,1328>18>1324,1328>19>38,1331>18>1330,1331>19>1323,1333>18>1332,1333>19>1329,1335>18>1334,1335>19>1330,1337>18>1336,1337>19>1472,1338>18>1336,1338>19>1380,1346>18>1345,1346>19>1464,1350>18>1349,1350>19>1419,1351>18>1349,1351>19>1367,1353>18>1352,1353>19>1096,1354>18>1352,1354>19>1081,1356>18>1355,1356>19>1403,1357>18>1355,1357>19>1079,1361>18>1359,1361>19>1343,1362>18>1359,1362>19>1047,1363>18>1359,1363>19>1083,1365>18>1364,1365>19>1416,1366>18>1364,1366>19>1341,1371>18>1369,1371>19>4,1373>18>1372,1373>19>4,1376>18>1374,1376>19>4,1379>18>1377,1379>19>4,1381>18>1380,1381>19>4,1382>18>1380,1382>19>137,1386>18>1385,1386>19>4,'
  481. ..'1387>18>1385,1387>19>1394,1388>18>1385,1388>19>884,1390>18>1389,1390>19>4,1391>18>1389,1391>19>1377,1393>18>1392,1393>19>884,1396>18>1394,1396>19>4,1398>18>1397,1398>19>4,1401>18>1399,1401>19>1392,1402>18>1399,1402>19>1385,1404>18>1403,1404>19>1344,1405>18>1403,1405>19>1460,1406>18>1403,1406>19>1096,1407>18>1403,1407>19>1081,1408>18>1403,1408>19>1343,1409>18>1403,1409>19>1352,1410>18>1403,1410>19>1079,1411>18>1403,1411>19>1031,1414>18>1412,1414>19>1392,1415>18>1412,1415>19>1389,1417>18>1416,1417>19>4,1418>18>1416,1418>19>1031,1420>18>1419,1420>19>4,1423>18>1421,1423>19>1081,1424>18>1421,1424>19>1352,1426>18>1425,1426>19>4,1427>18>1425,1427>19>1460,1428>18>1425,1428>19>1339,1429>18>1425,1429>19>1443,1430>18>1425,1430>19>1347,1431>18>1425,1431>19>1455,1432>18>1425,1432>19>1031,1434>18>1433,1434>19>4,1437>18>1435,1437>19>1403,1440'
  482. ..'>18>1438,1440>19>1469,1447>18>1445,1447>19>1403,1448>18>1445,1448>19>1079,1451>18>1449,1451>19>1419,1454>18>1452,1454>19>1416,1458>18>1457,1458>19>1441,1459>18>1457,1459>19>1380,1461>18>1460,1461>19>72,1462>18>1460,1462>19>88,1463>18>1460,1463>19>78,1465>18>1464,1465>19>4,1466>18>1464,1466>19>109,1467>18>1464,1467>19>1469,1468>18>1464,1468>19>91,1471>18>1470,1471>19>4,1475>18>1474,1475>19>1358,1476>18>1474,1476>19>4,1479>18>1477,1479>19>1345,1481>18>1480,1481>19>4,1483>18>1482,1483>19>4,1486>18>1484,1486>19>1503,1487>18>1484,1487>19>903,1488>18>1484,1488>19>1490,1489>18>1484,1489>19>884,1492>18>1490,1492>19>903,1497>18>1495,1497>19>1493,1498>18>1495,1498>19>895,1501>18>1499,1501>19>1493,1502>18>1499,1502>19>884,1507>18>1505,1507>19>4,1508>18>1505,1508>19>669,1511>18>1509,1511>19>4,1512>18>1509,1512>19>667,1515>18>1513,1515>19>6'
  483. ..'67,1516>18>1513,1516>19>645,1522>18>1519,1522>19>4;2|1:2;n;2|1:3;n;2|1:4;n;1|1:5|3:6|4:7|5:8|6:9|7:10|8:11|9:11|10:11|11:11|12:11|13:11|3:6|3:6;n;3|4:12|14:13;4|15:13;5;6|1:14;7|16:15|17:16;7|16:15|17:17;p;8|1:18|20:19;8|1:18|20:20;8|1:18|20:21;8|1:18|20:22;8|1:18|20:23;8|1:18|20:24;8|1:18|20:25;8|1:18|20:26;8|1:18|20:27;8|1:18|20:28;8|1:18|20:29;8|1:18|20:30;8|1:18|20:31;8|1:18|20:32;9|1:33|20:34;8|1:18|20:35;8|1:18|20:36;8|1:18|20:36;9|1:37;8|1:18|20:38;8|1:18|20:39;8|1:18|20:40;1|1:41|3:6|4:42|5:8|6:43|7:44|9:45|13:45|3:6|3:6;n;7|16:46|17:47;7|16:46|17:48;7|16:49|17:50;7|16:51|17:52;p;1|1:53|3:6|4:54|5:8|6:55|7:44|9:45|13:45|3:6|3:6;1|1:56|3:6|4:57|5:8|6:58|7:59|9:45|13:45|3:6|3:6;n;7|16:60|17:61;p;1|1:62|3:6|4:63|5:8|6:64|7:59|9:45|13:45|3:6|3:6;n;7|16:46|17:65;7|16:60|17:61;p;10|3:66|4:67|5:8|6:68|7:69|9:11|13:11|3:66|3:66'
  484. ..';n;7|16:51|17:70;p;8|1:18|20:71;8|1:18|20:72;8|1:18|20:73;8|1:18|20:74;8|1:18|20:75;5;8|1:18|20:19;p;6|1:76;6|1:77;2|1:78;n;2|1:79;n;1|3:6|4:80|5:81|6:82|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:51|17:85;p;1|3:6|4:86|5:8|6:87|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:51|17:88;p;1|3:6|4:89|5:81|6:90|7:91|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:92|17:93;p;1|3:94|4:95|5:81|6:96|7:97|21:84|9:11|13:11|3:94|3:94;n;11|22:11;7|16:98|17:99;p;1|3:6|4:100|5:81|6:101|7:91|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:92|17:102;p;1|3:6|4:103|5:8|6:87|7:91|21:84|9:11|13:11|3:6|3:6;1|3:6|4:104|5:8|6:105|7:91|21:84|9:11|13:11|3:6|3:6;n;7|16:92|17:106;p;1|3:6|4:107|5:8|6:108|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:51|17:109;p;1|3:6|4:110|5:111|6:112|7:113|21:84|9:11|13:11|3:6|3:6;1|3:6|4:114|5:81|6:115|7:83|21:84|9:11|13:11|3:6|3:6;n'
  485. ..';11|22:11;7|16:51|17:116;p;1|3:6|4:117|5:81|6:118|7:119|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:51|17:120;p;1|3:94|4:121|5:81|6:122|7:123|21:84|9:11|13:11|3:94|3:94;n;11|22:11;7|16:98|17:124;p;1|3:6|4:125|5:81|6:126|7:119|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;p;2|1:127;n;1|3:6|4:128|5:8|6:129|7:91|21:84|9:11|13:11|3:6|3:6;1|3:6|4:130|5:8|6:131|7:91|21:84|9:11|13:11|3:6|3:6;n;7|16:132|17:133;7|16:92|17:134;p;1|3:6|4:135|5:8|6:129|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:51|17:109;p;1|3:6|4:136|5:8|6:137|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;1|3:6|4:138|5:111|6:139|7:140|21:84|9:11|13:11|3:6|3:6;n;7|16:141|17:142;7|16:141|17:143;7|16:141|17:144;7|16:98|17:145;p;1|3:6|4:146|5:111|6:147|7:148|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;1|3:6|4:149|5:150|6:151|7:148|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;1|3:6|4:152|5:81|6:153|7'
  486. ..':154|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;1|3:6|4:155|5:111|6:156|7:83|21:84|9:11|13:11|3:6|3:6;1|3:6|4:157|5:81|6:158|7:119|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:51|17:159;p;10|3:6|4:160|5:111|6:161|7:162|9:11|13:11|3:6|3:6;n;7|16:51|17:163;p;p;2|1:127;n;1|3:6|4:164|5:8|6:165|7:91|21:84|9:11|13:11|3:6|3:6;n;7|16:92|17:166;p;1|3:6|4:167|5:8|6:168|7:91|21:84|9:11|13:11|3:6|3:6;n;7|16:132|17:169;7|16:92|17:170;p;1|3:6|4:171|5:8|6:172|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:51|17:173;p;1|3:6|4:174|5:8|6:168|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;1|3:6|4:175|5:111|6:176|7:140|21:84|9:11|13:11|3:6|3:6;n;7|16:141|17:177;7|16:141|17:178;7|16:98|17:179;p;1|3:6|4:180|5:111|6:181|7:148|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;1|3:6|4:182|5:150|6:183|7:148|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:51|17:184;p;1|3:6|4:185|5:81|6:'
  487. ..'186|7:154|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;1|3:6|4:187|5:111|6:176|7:83|21:84|9:11|13:11|3:6|3:6;1|3:6|4:188|5:81|6:189|7:119|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:51|17:190;p;10|3:6|4:191|5:150|6:192|7:162|9:11|13:11|3:6|3:6;n;7|16:51|17:193;p;p;2|1:127;n;10|3:6|4:194|5:8|6:195|7:162|13:11|3:6|3:6;n;7|16:51|17:196;p;1|3:6|4:197|5:8|6:198|7:91|21:84|9:11|13:11|3:6|3:6;n;7|16:92|17:199;7|16:132|17:133;p;1|3:6|4:200|5:8|6:201|7:91|21:84|9:11|13:11|3:6|3:6;n;7|16:92|17:202;7|16:132|17:169;p;1|3:6|4:203|5:8|6:204|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;1|3:6|4:205|5:8|6:201|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;1|3:6|4:206|5:111|6:207|7:140|21:84|9:11|13:11|3:6|3:6;n;7|16:141|17:177;7|16:98|17:208;7|16:141|17:209;7|16:141|17:144;p;1|3:6|4:210|5:111|6:211|7:148|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;1|3:6|4:212|5:150|'
  488. ..'6:213|7:148|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;1|3:6|4:214|5:81|6:215|7:154|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:216|17:217;p;1|3:6|4:218|5:111|6:219|7:83|21:84|9:11|13:11|3:6|3:6;1|3:6|4:220|5:81|6:219|7:119|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:51|17:221;p;p;2|1:127;n;10|3:6|4:222|5:8|6:223|7:162|13:11|3:6|3:6;n;7|16:51|17:224;p;1|3:6|4:225|5:8|6:226|7:91|21:84|9:11|13:11|3:6|3:6;n;7|16:92|17:227;7|16:132|17:228;p;1|3:6|4:229|5:8|6:230|7:91|21:84|9:11|13:11|3:6|3:6;n;7|16:92|17:231;p;1|3:6|4:232|5:8|6:226|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;1|3:6|4:233|5:8|6:234|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:51|17:109;p;1|3:6|4:235|5:111|6:236|7:140|21:84|9:11|13:11|3:6|3:6;n;7|16:98|17:237;7|16:141|17:143;7|16:141|17:144;p;1|3:6|4:238|5:111|6:239|7:148|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;1|3:6|4:240|5:150|6'
  489. ..':241|7:148|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;1|3:6|4:242|5:81|6:243|7:154|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:216|17:244;p;1|3:6|4:245|5:111|6:246|7:83|21:84|9:11|13:11|3:6|3:6;n;7|16:15|17:247;7|16:51|17:248;p;1|3:6|4:249|5:81|6:246|7:119|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;p;2|1:250;n;10|3:6|4:251|5:81|6:252|7:162|9:11|13:45|3:6|3:6;n;7|16:51|17:253;p;1|3:6|4:254|5:81|6:255|7:91|21:84|9:11|13:11|3:6|3:6;n;7|16:92|17:256;p;1|3:6|4:257|5:81|6:258|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:51|17:259;p;1|3:6|4:260|5:150|6:261|7:262|21:84|9:11|13:11|3:6|3:6;n;7|16:141|17:263;7|16:141|17:264;7|16:98|17:265;p;1|3:6|4:266|5:111|6:267|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;1|3:6|4:268|5:150|6:269|7:270|21:84|9:11|13:45|3:6|3:6;1|3:6|4:271|5:150|6:272|7:119|21:84|9:11|13:45|3:6|3:6;n;7|16:51|17:273;p;1|3:6|4:274|5:81|'
  490. ..'6:275|7:91|21:84|9:11|13:11|3:6|3:6;n;7|16:92|17:276;p;1|3:6|4:277|5:81|6:275|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:51|17:259;p;1|3:6|4:278|5:150|6:279|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:51|17:280;p;1|3:6|4:281|5:150|6:282|7:119|21:84|9:11|13:45|3:6|3:6;n;7|16:51|17:283;p;10|3:6|4:284|5:81|6:285|7:162|9:11|13:45|3:6|3:6;n;7|16:51|17:286;p;10|3:6|4:287|5:81|6:288|7:162|9:11|13:45|3:6|3:6;n;7|16:51|17:289;p;p;2|1:250;n;10|3:6|4:290|5:81|6:291|7:162|9:11|13:45|3:6|3:6;n;7|16:51|17:292;p;1|3:6|4:293|5:81|6:294|7:91|21:84|9:11|13:11|3:6|3:6;n;7|16:132|17:295;7|16:92|17:296;p;1|3:6|4:297|5:81|6:298|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;1|3:6|4:299|5:150|6:300|7:262|21:84|9:11|13:11|3:6|3:6;n;7|16:98|17:301;p;1|3:6|4:302|5:111|6:303|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:51|17:304;p;1|3:6|4:305|5:150|6:3'
  491. ..'00|7:270|21:84|9:11|13:45|3:6|3:6;n;7|16:51|17:306;p;1|3:6|4:307|5:150|6:308|7:119|21:84|9:11|13:45|3:6|3:6;1|3:6|4:309|5:81|6:310|7:91|21:84|9:11|13:11|3:6|3:6;n;7|16:92|17:311;7|16:132|17:312;p;1|3:6|4:313|5:81|6:314|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;1|3:6|4:315|5:150|6:316|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:51|17:317;p;1|3:6|4:318|5:150|6:319|7:119|21:84|9:11|13:45|3:6|3:6;n;7|16:51|17:320;p;10|3:6|4:321|5:81|6:322|7:162|9:11|13:45|3:6|3:6;n;7|16:51|17:323;p;10|3:6|4:324|5:81|6:325|7:162|9:11|13:45|3:6|3:6;n;7|16:51|17:326;p;p;2|1:250;n;10|3:6|4:327|5:8|6:328|7:162|9:11|13:45|3:6|3:6;n;7|16:51|17:329;p;1|3:6|4:330|5:8|6:331|7:91|21:84|9:11|13:11|3:6|3:6;n;7|16:92|17:332;p;1|3:6|4:333|5:8|6:334|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:51|17:335;p;1|3:6|4:336|5:111|6:337|7:262|21:84|9:11|13:11|3:6|3:6;'
  492. ..'n;7|16:98|17:338;p;1|3:6|4:339|5:150|6:340|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:51|17:341;p;1|3:6|4:342|5:111|6:343|7:270|21:84|9:11|13:45|3:6|3:6;n;7|16:51|17:344;p;1|3:6|4:345|5:111|6:346|7:119|21:84|9:11|13:45|3:6|3:6;n;7|16:51|17:347;p;1|3:6|4:348|5:8|6:349|7:91|21:84|9:11|13:11|3:6|3:6;n;7|16:132|17:350;7|16:92|17:351;p;1|3:6|4:352|5:8|6:353|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;1|3:6|4:354|5:111|6:355|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:51|17:356;p;1|3:6|4:357|5:111|6:358|7:119|21:84|9:11|13:45|3:6|3:6;n;7|16:51|17:359;p;10|3:6|4:360|5:8|6:361|7:162|9:11|13:45|3:6|3:6;n;7|16:51|17:362;p;10|3:6|4:363|5:8|6:364|7:162|9:11|13:45|3:6|3:6;n;7|16:51|17:365;p;p;2|1:250;n;10|3:6|4:366|5:8|6:367|7:162|9:11|13:45|3:6|3:6;n;7|16:51|17:368;p;1|3:6|4:369|5:8|6:370|7:91|21:84|9:11|13:11|3:6|3:6;n;7|16:92|17:371;'
  493. ..'7|16:132|17:133;p;1|3:6|4:372|5:8|6:370|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;1|3:6|4:373|5:111|6:374|7:262|21:84|9:11|13:11|3:6|3:6;n;7|16:98|17:375;7|16:141|17:376;7|16:141|17:377;7|16:141|17:378;p;1|3:6|4:379|5:150|6:380|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;1|3:6|4:381|5:111|6:382|7:270|21:84|9:11|13:45|3:6|3:6;1|3:6|4:383|5:111|6:384|7:119|21:84|9:11|13:45|3:6|3:6;n;7|16:51|17:385;p;1|3:6|4:386|5:8|6:387|7:91|21:84|9:11|13:11|3:6|3:6;1|3:6|4:388|5:8|6:389|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;7|16:51|17:88;p;1|3:6|4:390|5:111|6:391|7:83|21:84|9:11|13:11|3:6|3:6;n;11|22:11;p;1|3:6|4:392|5:111|6:393|7:119|21:84|9:11|13:45|3:6|3:6;n;7|16:51|17:394;p;10|3:6|4:395|5:8|6:396|7:162|9:11|13:45|3:6|3:6;n;7|16:51|17:397;p;10|3:6|4:398|5:8|6:399|7:162|9:11|13:45|3:6|3:6;n;7|16:51|17:400;p;p;1|3:94|4:401|5:8|6:402|7:403|9'
  494. ..':11|13:11|3:94|3:94;n;7|16:404|17:405;7|16:406|17:407;7|16:51|17:408;7|16:409|17:410;7|16:406|17:411;7|16:412|17:413;7|16:51|17:414;7|16:15|17:415;p;1|3:94|4:416|5:8|6:417|7:403|9:11|13:11|3:94|3:94;n;7|16:412|17:418;p;1|3:6|4:419|5:8|6:420|7:421|9:11|13:11|3:6|3:6;n;7|16:422|17:423;7|16:424|17:425;p;1|3:6|4:426|5:8|6:427|7:421|9:11|13:11|3:6|3:6;n;7|16:424|17:428;p;1|3:94|4:429|5:8|6:430|7:431|9:11|13:11|3:94|3:94;n;11|22:11;7|16:432|17:433;p;1|3:94|4:434|5:8|6:435|7:436|9:11|13:11|3:94|3:94;n;7|16:404|17:437;7|16:432|17:438;p;1|3:94|4:439|5:8|6:440|7:436|9:11|13:11|3:94|3:94;n;7|16:441|17:442;7|16:412|17:443;7|16:441|17:444;7|16:445|17:446;7|16:445|17:447;7|16:412|17:448;7|16:412|17:449;p;1|3:94|4:450|5:451|6:452|7:453|9:11|13:11|3:94|3:94;n;11|22:11;p;1|3:94|4:454|5:8|6:455|7:456|9:11|13:11|3:94|3:94;n;7|16:441|17:457;7|16:4'
  495. ..'41|17:458;7|16:412|17:459;7|16:216|17:460;7|16:412|17:461;7|16:216|17:335;7|16:216|17:462;7|16:441|17:463;7|16:216|17:464;7|16:412|17:465;p;1|3:94|4:466|5:8|6:467|7:456|9:11|13:11|3:94|3:94;n;7|16:404|17:468;7|16:469|17:470;7|16:441|17:471;7|16:441|17:472;p;1|3:94|4:473|5:451|6:474|7:453|9:11|13:11|3:94|3:94;n;11|22:11;7|16:216|17:475;p;1|3:94|4:476|5:477|6:478|7:431|9:11|13:11|3:94|3:94;n;11|22:11;7|16:404|17:479;7|16:432|17:480;p;1|3:94|4:481|5:482|6:483|7:484|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:485|17:486;7|16:485|17:487;p;1|3:94|4:488|5:489|6:490|7:484|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:485|17:491;7|16:485|17:492;7|16:485|17:493;7|16:494|17:495;p;1|3:94|4:496|5:497|6:498|7:484|9:11|13:11|3:94|3:94;n;7|16:494|17:499;7|16:485|17:500;7|16:485|17:501;7|16:485|17:502;p;1|3:94|4:503|5:482|6:504|7:505|8:11|9:11|13:45|'
  496. ..'3:94|3:94;n;11|22:11;7|16:506|17:507;p;1|3:94|4:508|5:509|6:510|7:511|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:512|17:513;7|16:494|17:514;7|16:512|17:515;7|16:494|17:516;p;1|3:94|4:517|5:509|6:518|7:484|9:11|13:11|3:94|3:94;n;7|16:519|17:520;p;1|3:94|4:521|5:489|6:522|7:505|8:11|9:11|13:45|3:94|3:94;n;11|22:11;p;1|3:94|4:523|5:497|6:524|7:511|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:494|17:525;7|16:512|17:526;7|16:512|17:527;7|16:494|17:528;p;1|3:94|4:529|5:489|6:530|7:531|8:11|9:11|13:45|3:94|3:94;n;11|22:11;p;1|3:94|4:532|5:509|6:533|7:534|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:535|17:536;7|16:535|17:537;7|16:441|17:538;p;1|3:94|4:539|5:540|6:541|7:534|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:535|17:542;7|16:535|17:543;p;1|3:94|4:544|5:545|6:546|7:531|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:494|17:547;7|16:535|17:548;'
  497. ..'p;1|3:94|4:549|5:509|6:550|7:551|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:424|17:552;7|16:424|17:553;7|16:554|17:538;p;1|3:94|4:555|5:489|6:556|7:557|8:11|9:11|13:45|3:94|3:94;n;11|22:11;p;1|3:94|4:558|5:497|6:559|7:551|8:11|9:11|13:45|3:94|3:94;n;11|22:11;p;1|3:94|4:560|5:482|6:561|7:557|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:494|17:562;7|16:424|17:563;p;1|4:564|5:497|6:565|7:566|8:11|9:11|13:45;n;11|22:11;7|16:567|17:568;p;1|4:569|5:482|6:570|7:571|8:11|9:11|13:45;n;11|22:11;7|16:572|17:573;7|16:567|17:574;p;1|4:575|5:509|6:576|7:566|8:11|9:11|13:45;n;11|22:11;p;1|4:577|5:489|6:578|7:571|8:11|9:11|13:45;n;11|22:11;7|16:572|17:579;p;1|3:6|4:580|5:581|6:582|7:583|9:11|13:11|3:6|3:6;n;11;p;1|3:6|4:584|5:581|6:585|7:583|9:11|13:11|3:6|3:6;n;11;7|16:586|17:587;7|16:588|17:589;7|16:588|17:590;7|16:588|17:591;p;1|3:94|4:592|5:59'
  498. ..'3|6:594|7:595|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:572|17:596;7|16:572|17:597;7|16:572|17:598;p;1|3:94|4:599|5:8|6:600|7:601|9:11|13:11|3:94|3:94;n;7|16:602|17:603;7|16:604|17:605;7|16:572|17:606;7|16:604|17:607;7|16:602|17:608;7|16:604|17:609;p;1|3:94|4:610|5:593|6:611|7:595|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:572|17:612;7|16:572|17:613;p;1|3:94|4:614|5:593|6:615|7:595|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:424|17:616;p;1|3:94|4:617|5:593|6:618|7:595|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:424|17:619;7|16:572|17:620;7|16:572|17:621;7|16:572|17:622;p;1|3:94|4:623|5:8|6:624|7:601|9:11|13:11|3:94|3:94;n;7|16:572|17:625;7|16:602|17:626;7|16:604|17:627;p;1|3:94|4:628|5:81|6:629|7:630|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:604|17:631;p;1|3:94|4:632|5:633|6:634|7:630|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:604|17'
  499. ..':635;p;1|3:636|23:637|24:638|4:639|5:581|6:640|7:641|9:11|13:11|3:636|3:636;n;11;7|16:51|17:642;p;1|3:636|23:637|24:638|4:643|5:581|6:644|7:641|9:11|13:11|3:636|3:636;n;11;7|16:51|17:645;p;1|3:94|4:646|5:8|6:647|7:648|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:404|17:649;7|16:650|17:651;7|16:216|17:652;p;1|3:94|4:653|5:8|6:654|7:648|8:11|9:11|13:45|3:94|3:94;n;11|22:11;p;1|3:94|4:655|5:8|6:656|7:657|9:11|13:45|3:94|3:94;n;7|16:658|17:659;p;1|3:94|4:660|5:81|6:661|7:662|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:663|17:664;7|16:404|17:665;7|16:216|17:666;p;1|3:94|4:667|5:633|6:668|7:662|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:412|17:669;7|16:663|17:538;p;1|3:94|4:670|5:477|6:671|7:657|9:11|13:45|3:94|3:94;n;7|16:404|17:672;7|16:469|17:673;7|16:216|17:674;p;1|3:94|4:675|5:509|6:676|7:677|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:'
  500. ..'424|17:678;7|16:424|17:679;7|16:680|17:681;p;1|3:94|4:682|5:540|6:683|7:677|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:680|17:684;p;1|3:94|4:685|5:686|6:687|7:688|8:11|9:11|13:45|3:94|3:94;n;11|22:11;p;1|3:94|4:689|5:482|6:690|7:688|8:11|9:11|13:45|3:94|3:94;n;11|22:11;p;1|3:94|4:691|5:509|6:692|7:693|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:51|17:694;p;1|3:94|4:695|5:540|6:696|7:693|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:51|17:697;p;1|3:6|4:698|5:111|6:699|7:700|9:11|13:11|3:6|3:6;n;7|16:424|17:701;7|16:702|17:703;7|16:702|17:704;7|16:702|17:705;7|16:702|17:706;7|16:702|17:707;p;1|3:6|4:708|5:709|6:710|7:711|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:712|17:713;p;1|3:6|4:714|5:715|6:716|7:711|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:712|17:717;7|16:718|17:719;7|16:712|17:720;p;1|3:6|4:721|5:709|6:722|7:711|8:11|9:11|13:45|3:6|3'
  501. ..':6;n;11|22:11;7|16:723|17:724;7|16:712|17:725;7|16:718|17:726;p;1|3:6|4:727|5:715|6:728|7:711|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:729|17:730;7|16:718|17:719;7|16:712|17:731;p;1|3:6|4:732|5:709|6:733|7:734|9:11|13:45|3:6|3:6;n;7|16:723|17:735;p;1|3:6|4:736|5:709|6:737|7:734|9:11|13:45|3:6|3:6;n;7|16:738|17:739;7|16:712|17:740;7|16:741|17:742;p;1|3:6|4:743|5:581|6:744|7:745|9:11|13:11|3:6|3:6;n;11;7|16:746|17:747;7|16:748|17:377;p;1|3:6|4:749|5:581|6:750|7:751|9:11|13:11|3:6|3:6;n;11;p;1|3:6|4:752|5:581|6:753|7:751|9:11|13:11|3:6|3:6;n;11;7|16:754|17:377;p;1|3:6|4:755|5:581|6:756|7:745|9:11|13:11|3:6|3:6;n;11;7|16:746|17:757;7|16:748|17:758;p;1|3:636|23:637|24:638|4:759|5:581|6:760|7:761|9:11|13:11|3:636|3:636;n;11;p;1|3:636|23:637|24:638|4:762|5:581|6:763|7:761|9:11|13:11|3:636|3:636;n;11;p;1|3:636|23:637|24:638|4:764|5:581|'
  502. ..'6:765|7:766|9:11|13:11|3:636|3:636;n;11;7|16:51|17:767;p;1|3:636|23:637|24:638|4:768|5:581|6:769|7:766|9:11|13:11|3:636|3:636;n;11;p;1|3:6|4:770|5:709|6:771|7:772|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:663|17:773;7|16:216|17:774;p;1|3:6|4:775|5:715|6:776|7:772|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:663|17:777;7|16:216|17:778;p;1|3:6|4:779|5:709|6:780|7:154|9:11|13:45|3:6|3:6;n;7|16:723|17:781;7|16:216|17:782;p;1|3:6|4:783|5:709|6:784|7:772|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:663|17:773;7|16:216|17:785;p;1|3:6|4:786|5:709|6:787|7:154|9:11|13:45|3:6|3:6;1|3:6|4:788|5:715|6:789|7:772|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:663|17:790;7|16:216|17:791;p;1|3:6|4:792|5:477|6:793|7:794|9:11|13:45|3:6|3:6;n;7|16:51|17:795;7|16:494|17:796;7|16:15|17:797;7|16:15|17:798;7|16:51|17:799;7|16:494|17:800;7|16:15|17:801;7|16:51|17:802;7|1'
  503. ..'6:51|17:803;7|16:51|17:804;7|16:51|17:805;p;1|3:6|4:806|5:633|6:807|7:808|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:809|5:633|6:810|7:808|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:811|5:81|6:812|7:813|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:814|17:815;7|16:51|17:816;p;1|3:6|4:817|5:8|6:818|7:819|9:11|13:45|3:6|3:6;n;7|16:820|17:821;7|16:51|17:822;p;1|3:6|4:823|5:81|6:824|7:813|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:814|17:825;7|16:51|17:826;p;1|3:6|4:827|5:81|6:828|7:829|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:830|5:8|6:831|7:832|9:11|13:45|3:6|3:6;n;7|16:15|17:833;7|16:51|17:834;7|16:51|17:835;7|16:15|17:836;7|16:15|17:837;7|16:15|17:838;7|16:15|17:839;7|16:15|17:840;7|16:15|17:841;7|16:842|17:843;7|16:15|17:844;7|16:15|17:845;7|16:51|17:846;7|16:15|17:847;7|16:15|17:848;7|16:51|17:849;7|16:15|17:850;7|16:851|17:85'
  504. ..'2;7|16:842|17:853;7|16:51|17:854;7|16:51|17:855;p;1|3:6|4:856|5:111|6:857|7:858|9:11|13:11|3:6|3:6;n;7|16:424|17:859;p;1|3:6|4:860|5:861|6:862|7:858|9:11|13:11|3:6|3:6;n;7|16:863|17:864;7|16:424|17:865;p;1|3:6|4:866|5:8|6:867|7:868|9:11|13:45|3:6|3:6;n;7|16:15|17:869;7|16:15|17:870;7|16:871|17:872;7|16:15|17:873;7|16:871|17:874;7|16:51|17:875;p;1|3:6|4:876|5:477|6:877|7:868|9:11|13:45|3:6|3:6;1|3:94|4:878|5:8|6:879|7:880|8:11|9:11|10:11|11:11|12:11|13:11|3:94|3:94;n;7|16:881|17:882;7|16:883|17:884;7|16:680|17:885;7|16:886|17:887;7|16:886|17:888;7|16:886|17:889;7|16:886|17:890;p;1|3:66|4:891|5:8|6:892|7:893|8:11|9:11|10:11|11:11|12:11|13:45|3:66|3:66;n;7|16:702|17:894;7|16:895|17:896;7|16:702|17:897;7|16:886|17:898;7|16:680|17:899;p;1|3:66|4:900|5:111|6:901|7:902|8:11|9:11|10:11|11:11|12:11|13:45|3:66|3:66;n;7|16:903|17:904;7|16'
  505. ..':886|17:905;7|16:702|17:906;p;1|3:66|4:907|5:8|6:908|7:893|8:11|9:11|10:11|11:11|12:11|13:45|3:66|3:66;n;7|16:909|17:910;7|16:895|17:911;7|16:886|17:912;7|16:702|17:913;7|16:680|17:914;p;1|3:66|4:915|5:111|6:916|7:902|8:11|9:11|10:11|11:11|12:11|13:45|3:66|3:66;1|3:6|4:917|5:477|6:918|7:919|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:98|17:920;p;1|3:6|4:921|5:477|6:922|7:923|9:11|13:45|3:6|3:6;n;7|16:924|17:925;7|16:98|17:926;7|16:141|17:350;7|16:141|17:927;7|16:141|17:928;7|16:441|17:929;7|16:98|17:930;p;1|3:6|4:931|5:477|6:932|7:923|9:11|13:45|3:6|3:6;n;7|16:441|17:933;p;1|3:6|4:934|5:633|6:935|7:936|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:937|5:633|6:938|7:936|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:94|4:939|5:593|6:940|7:941|8:11|9:11|13:45|3:94|3:94;n;11|22:11;p;1|3:94|4:942|5:593|6:943|7:941|8:11|9:11|13:45|3:94|3:94;n;'
  506. ..'11|22:11;7|16:842|17:944;7|16:98|17:945;p;1|3:94|4:946|5:8|6:947|7:948|9:45|13:11|3:94|3:94;1|3:94|4:949|5:8|6:950|7:948|9:45|13:11|3:94|3:94;n;7|16:951|17:952;7|16:132|17:953;p;1|3:94|4:954|5:593|6:955|7:956|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:951|17:957;7|16:92|17:958;p;1|3:94|4:959|5:593|6:960|7:956|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:92|17:961;p;1|3:94|4:962|5:593|6:963|7:956|8:11|9:11|13:45|3:94|3:94;n;11|22:11;p;1|3:94|4:964|5:593|6:965|7:956|8:11|9:11|13:45|3:94|3:94;n;11|22:11;p;1|3:94|4:966|5:8|6:967|7:968|9:45|13:11|3:94|3:94;n;7|16:969|17:970;7|16:969|17:971;p;1|3:94|4:972|5:8|6:973|7:968|9:45|13:11|3:94|3:94;n;7|16:974|17:975;7|16:969|17:976;7|16:132|17:977;p;1|3:94|4:978|5:451|6:979|7:980|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:92|17:981;p;1|3:94|4:982|5:451|6:983|7:980|8:11|9:11|13:45|3:94|3:94;n;11|'
  507. ..'22:11;7|16:951|17:984;7|16:92|17:985;p;1|3:94|4:986|5:593|6:987|7:988|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:989|17:990;p;1|3:94|4:991|5:477|6:992|7:505|8:11|9:11|13:45|3:94|3:94;n;11|22:11;p;1|3:94|4:993|5:8|6:994|7:995|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:92|17:996;p;1|3:94|4:997|5:8|6:998|7:505|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:506|17:999;p;1|3:94|4:1000|5:593|6:1001|7:988|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:989|17:1002;p;1|3:94|4:1003|5:8|6:1004|7:995|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:92|17:1005;p;1|4:1006|5:111|6:1007|7:1008|9:11|13:11;n;7|16:424|17:1009;7|16:422|17:1010;p;1|4:1011|5:111|6:1012|7:1008|9:11|13:11;n;7|16:424|17:1013;7|16:422|17:1014;p;1|4:1015|5:861|6:1016|7:1008|9:11|13:11;n;7|16:424|17:1017;p;1|4:1018|5:111|6:1019|7:1008|21:84|9:11|13:11;n;7|16:424|17:1020;7|16:422|17:1021;p;1'
  508. ..'|4:1022|5:111|6:1023|7:1008|21:84|9:11|13:11;n;7|16:424|17:1024;7|16:422|17:1025;p;1|4:1026|5:861|6:1027|7:1008|21:84|9:11|13:11;n;7|16:424|17:1028;p;1|4:1029|5:111|6:1030|7:1008|21:84|9:11|13:11;n;7|16:424|17:1031;7|16:422|17:1032;p;1|4:1033|5:861|6:1034|7:1008|21:84|9:11|13:11;n;7|16:424|17:1035;p;1|4:1036|5:111|6:1037|7:1008|21:84|9:11|13:11;n;7|16:424|17:1038;7|16:422|17:1039;p;1|3:66|4:1040|5:1041|6:892|7:893|8:11|9:11|10:11|11:11|12:11|13:45|3:66|3:66;n;7|16:702|17:1042;p;1|3:66|4:1043|5:1041|6:1044|7:893|8:11|9:11|10:11|11:11|12:11|13:45|3:66|3:66;1|3:66|4:1045|5:1046|6:916|7:902|8:11|9:11|10:11|11:11|12:11|13:45|3:66|3:66;n;7|16:903|17:1047;7|16:1048|17:1049;p;1|3:66|4:1050|5:1046|6:901|7:902|8:11|9:11|10:11|11:11|12:11|13:45|3:66|3:66;n;7|16:903|17:1051;p;1|3:6|4:1052|5:8|6:1053|7:1054|9:11|13:11|3:6|3:6;n;7|16:92|17:1'
  509. ..'055;7|16:132|17:1056;7|16:132|17:1057;7|16:132|17:1058;p;1|3:6|4:1059|5:8|6:1060|7:1054|9:11|13:11|3:6|3:6;n;7|16:92|17:1061;7|16:132|17:1062;7|16:132|17:1063;7|16:132|17:1064;p;1|3:6|4:1065|5:8|6:1066|7:1067|9:11|13:11|3:6|3:6;n;7|16:1068|17:1069;7|16:1068|17:1070;7|16:1068|17:1071;7|16:1068|17:1072;7|16:741|17:1073;7|16:712|17:1074;p;1|3:6|4:1075|5:8|6:1076|7:1067|9:11|13:11|3:6|3:6;1|3:6|23:638|24:1077|4:1078|5:8|6:1079|7:1080|9:11|13:11|3:6|3:6;1|3:6|23:638|24:1077|4:1081|5:8|6:1082|7:1080|9:11|13:11|3:6|3:6;1|3:6|4:1083|5:8|6:1084|7:1067|9:11|13:11|3:6|3:6;1|3:6|4:1085|5:8|6:1086|7:1067|9:11|13:11|3:6|3:6;n;7|16:586|17:1087;7|16:586|17:1088;7|16:712|17:1089;p;1|3:6|4:1090|5:8|6:1091|7:1092|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:1093|5:451|6:1094|7:1092|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:216|17:1095;p;1|3:6|4:109'
  510. ..'6|5:81|6:1097|7:1098|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:1099|17:1100;7|16:92|17:1101;p;1|3:6|4:1102|5:593|6:1103|7:1098|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:1104|5:593|6:1105|7:1098|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:1106|5:81|6:1107|7:1098|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:1099|17:1108;7|16:92|17:1109;p;1|3:6|4:1110|5:451|6:1111|7:1092|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:216|17:1112;p;1|3:6|4:1113|5:8|6:1114|7:1092|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:1115|5:81|6:1116|7:1098|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:92|17:1117;7|16:1099|17:1100;p;1|3:6|4:1118|5:8|6:1119|7:1092|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:650|17:1120;7|16:216|17:1121;p;1|3:6|4:1122|5:1123|6:1124|7:1092|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:216|17:1125;7|16:650|17:1126;p;1|3:6|4:1127|5:1041|6:1128|7:1098|8:11|'
  511. ..'9:11|13:45|3:6|3:6;n;11|22:11;7|16:1099|17:1129;7|16:92|17:1130;p;1|3:6|4:1131|5:81|6:1132|7:1098|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:1099|17:1133;7|16:92|17:1134;p;1|3:6|4:1135|5:1041|6:1136|7:1098|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:1099|17:1137;7|16:92|17:1138;p;1|3:6|4:1139|5:451|6:1140|7:1092|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:650|17:1141;p;1|3:6|4:1142|5:8|6:1143|7:1092|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:650|17:1144;7|16:216|17:1145;p;1|3:6|4:1146|5:8|6:1147|7:1148|9:11|13:45|3:6|3:6;n;7|16:51|17:1149;7|16:51|17:1150;7|16:15|17:1151;7|16:15|17:1152;7|16:51|17:1153;7|16:15|17:1154;7|16:15|17:1155;7|16:15|17:1156;7|16:51|17:1157;7|16:51|17:1158;p;1|3:6|4:1159|5:8|6:1160|7:1161|9:11|13:45|3:6|3:6;n;7|16:15|17:1162;7|16:51|17:1163;7|16:51|17:1164;7|16:1165|17:1166;7|16:51|17:1167;7|16:51|17:1168;7|16:15|17:1'
  512. ..'169;p;1|3:6|4:1170|5:8|6:1171|7:1161|9:11|13:45|3:6|3:6;n;7|16:15|17:1172;7|16:51|17:1173;7|16:51|17:1174;7|16:1175|17:1176;p;1|3:6|4:1177|5:111|6:1178|7:1179|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:1180|5:150|6:1181|7:1179|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:1182|5:111|6:1183|7:1179|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:1184|17:1185;7|16:216|17:1186;p;1|3:6|4:1187|5:150|6:1188|7:1179|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:1184|17:1189;7|16:216|17:1190;p;1|3:6|23:1191|24:1077|4:1192|5:150|6:1193|7:1194|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|23:1191|24:1077|4:1195|5:150|6:1196|7:1194|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:1197|5:150|6:1198|7:1199|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:1184|17:1200;7|16:216|17:1201;7|16:216|17:1202;p;1|3:6|4:1203|5:8|6:1204|7:1205|9:11|13:45|3:6|3:6;n;7|16:216|17:1206;'
  513. ..'7|16:702|17:1207;7|16:909|17:1208;7|16:702|17:1209;7|16:216|17:1210;7|16:469|17:1211;7|16:909|17:1212;7|16:702|17:1213;7|16:909|17:1214;p;1|3:6|23:1191|24:1077|4:1215|5:861|6:1216|7:1194|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:98|17:1217;p;1|3:6|4:1218|5:111|6:1219|7:1199|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|23:1191|24:1077|4:1220|5:111|6:1221|7:1194|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:98|17:1222;7|16:1184|17:1223;p;1|3:6|4:1224|5:111|6:1225|7:1226|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:494|17:1227;p;1|3:6|4:1228|5:150|6:1229|7:1226|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:494|17:1230;7|16:98|17:1231;p;1|3:6|4:1232|5:8|6:1233|7:1234|9:11|13:45|3:6|3:6;n;7|16:909|17:1235;7|16:909|17:1236;7|16:469|17:1237;p;1|3:6|4:1238|5:150|6:1239|7:1240|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:1241|5:111|6:1242|7:1240|8:11|9:11|1'
  514. ..'3:45|3:6|3:6;n;11|22:11;7|16:586|17:1243;p;1|3:6|4:1244|5:111|6:1245|7:1246|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:1099|17:1247;7|16:98|17:1248;p;1|3:6|4:1249|5:150|6:1250|7:1246|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:1251|5:150|6:1252|7:1253|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:1254|17:1255;p;1|3:6|4:1256|5:111|6:1257|7:1253|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:1254|17:1258;7|16:98|17:1259;p;1|3:6|4:1260|5:81|6:1261|7:1262|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:820|17:1263;p;1|3:6|4:1264|5:81|6:1265|7:1266|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:1267|5:8|6:1268|7:1269|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:1270|17:1271;7|16:92|17:1272;7|16:92|17:1273;p;1|3:6|4:1274|5:477|6:1275|7:919|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:820|17:1276;p;1|3:94|4:1277|5:8|6:1278|7:1279|9:11|13:45|3:94|3:94;1|3:94|4:1280|5:8|'
  515. ..'6:1281|7:1279|9:11|13:45|3:94|3:94;n;7|16:886|17:1282;p;1|3:6|4:1283|5:111|6:1284|7:1226|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:1285|5:150|6:1286|7:1226|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:1287|5:150|6:1288|7:1240|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:871|17:1289;7|16:871|17:1290;7|16:98|17:1291;p;1|3:6|4:1292|5:111|6:1293|7:1240|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:1294|17:1295;7|16:1294|17:1296;7|16:98|17:1297;p;1|3:6|4:1298|5:8|6:1299|7:1300|9:11|13:45|3:6|3:6;n;7|16:1301|17:1302;7|16:702|17:1303;7|16:909|17:1304;7|16:909|17:1305;7|16:702|17:1306;7|16:216|17:1307;p;1|3:6|4:1308|5:8|6:1309|7:1310|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:216|17:1311;p;1|3:6|4:1312|5:8|6:1313|7:1314|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:432|17:1315;7|16:1316|17:1317;7|16:1316|17:1318;7|16:1316|17:1319;p;1|3:6|4:1320|5:8|6:1'
  516. ..'321|7:1314|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:432|17:1322;7|16:1316|17:1323;7|16:1316|17:1324;7|16:1316|17:1325;p;1|3:94|4:1326|5:8|6:1327|7:1328|9:11|13:11|3:94|3:94;n;7|16:424|17:1329;p;1|3:94|4:1330|5:8|6:1331|7:1332|9:11|13:11|3:94|3:94;n;7|16:1333|17:1334;7|16:1335|17:1336;7|16:15|17:1337;7|16:15|17:1338;7|16:51|17:1339;7|16:15|17:1340;7|16:15|17:1341;7|16:15|17:1342;7|16:15|17:1343;7|16:51|17:1344;7|16:15|17:1345;p;1|3:94|4:1346|5:8|6:1347|7:1328|9:11|13:11|3:94|3:94;n;7|16:424|17:1348;7|16:424|17:1349;7|16:903|17:1350;p;1|3:94|4:1351|5:8|6:1352|7:1353|9:11|13:45|3:94|3:94;n;7|16:15|17:1354;7|16:51|17:1355;7|16:15|17:1356;7|16:15|17:1357;7|16:15|17:1358;7|16:51|17:1359;7|16:903|17:1360;7|16:51|17:1361;7|16:15|17:1362;7|16:51|17:1363;7|16:903|17:1364;7|16:15|17:1365;7|16:51|17:1366;p;1|3:6|4:1367|5:8|6:1368|7:1369|8:1'
  517. ..'1|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:1370|5:8|6:1371|7:1369|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:92|17:1372;p;1|3:94|4:1373|5:8|6:1374|7:1375|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:432|17:1376;7|16:1333|17:1377;7|16:432|17:1378;p;1|3:94|4:1379|5:8|6:1380|7:1375|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:1333|17:1381;7|16:1333|17:1382;7|16:432|17:1383;7|16:432|17:1384;7|16:1333|17:1385;7|16:432|17:1386;p;1|3:6|23:638|24:1077|4:1387|5:8|6:1388|7:1389|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:94|4:1390|5:8|6:1391|7:1392|8:11|9:11|13:45|3:94|3:94;n;11|22:11;p;1|3:94|4:1393|5:8|6:1394|7:1392|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:663|17:1395;7|16:432|17:1396;7|16:663|17:1397;7|16:663|17:1398;7|16:432|17:1399;p;1|3:6|23:638|24:1077|4:1400|5:8|6:1401|7:1389|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:951|17:1402;7|16:951|17:14'
  518. ..'03;7|16:951|17:1404;7|16:424|17:1405;p;1|3:6|23:638|24:1077|4:1406|5:8|6:1407|7:1408|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:951|17:1409;7|16:951|17:1410;7|16:951|17:1411;p;1|3:94|4:1412|5:81|6:1413|7:1414|9:11|13:45|3:94|3:94;n;7|16:92|17:1415;7|16:132|17:295;7|16:814|17:1416;p;1|3:94|4:1417|5:8|6:1418|7:1419|8:11|9:11|13:45|3:94|3:94;n;11|22:11;p;1|3:94|4:1420|5:8|6:1421|7:1419|8:11|9:11|13:45|3:94|3:94;n;11|22:11;p;1|3:94|4:1422|5:8|6:1423|7:1424|8:11|9:11|13:45|3:94|3:94;n;11|22:11;p;1|3:94|4:1425|5:8|6:1426|7:1424|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:98|17:1427;p;1|3:94|4:1428|5:81|6:1429|7:1430|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:951|17:1431;7|16:98|17:1432;p;1|3:94|4:1433|5:81|6:1434|7:1430|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:951|17:1435;7|16:98|17:1436;p;1|3:94|4:1437|5:8|6:1438|7:1439|9:11|13:11|3:94|3'
  519. ..':94;n;7|16:51|17:1440;7|16:49|17:1441;p;1|3:94|4:1442|5:8|6:1443|7:1439|9:11|13:11|3:94|3:94;n;7|16:1444|17:1445;7|16:51|17:1446;7|16:15|17:1447;p;1|3:94|4:1448|5:451|6:1449|7:1450|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:1451|17:1452;7|16:1451|17:1453;p;1|3:94|4:1454|5:451|6:1455|7:1450|8:11|9:11|13:45|3:94|3:94;n;11|22:11;p;1|3:94|4:1456|5:8|6:1457|7:1458|9:45|13:11|3:94|3:94;n;7|16:1459|17:1460;7|16:1459|17:1461;7|16:1462|17:1463;7|16:1270|17:1464;p;1|3:94|4:1465|5:8|6:1466|7:1458|9:45|13:11|3:94|3:94;n;7|16:1459|17:1467;7|16:1459|17:1468;7|16:1462|17:1469;p;1|3:94|4:1470|5:593|6:1471|7:1472|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:1451|17:1473;p;1|3:94|4:1474|5:593|6:1475|7:1472|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:1451|17:1476;7|16:1477|17:1478;p;1|3:6|4:1479|5:451|6:1480|7:1481|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|'
  520. ..'16:92|17:1482;p;1|3:6|4:1483|5:593|6:1484|7:1485|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:92|17:1486;7|16:820|17:1487;p;1|3:6|4:1488|5:593|6:1489|7:1485|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:92|17:1490;p;1|3:6|4:1491|5:8|6:1492|7:1493|9:45|13:11|3:6|3:6;n;7|16:132|17:1494;7|16:1495|17:1496;p;1|3:6|4:1497|5:8|6:1498|7:1493|9:45|13:11|3:6|3:6;n;7|16:132|17:1499;7|16:1500|17:1501;7|16:1495|17:1502;p;1|3:6|4:1503|5:451|6:1504|7:1481|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:92|17:1505;p;1|3:94|4:1506|5:509|6:1507|7:1508|9:11|13:45|3:94|3:94;n;7|16:886|17:1509;p;1|3:94|4:1510|5:482|6:1511|7:1508|9:11|13:45|3:94|3:94;n;7|16:886|17:1512;p;1|3:94|4:1513|5:1514|6:1515|7:1516|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:1517|17:1518;p;1|3:94|4:1519|5:1520|6:1521|7:1516|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:1517|17:1522;7|16:814|17:1523;7'
  521. ..'|16:814|17:1524;p;1|3:94|4:1525|5:8|6:1526|7:1527|9:11|13:11|3:94|3:94;n;7|16:15|17:1528;p;1|3:94|4:1529|5:8|6:1530|7:1527|9:11|13:11|3:94|3:94;1|3:94|4:1531|5:451|6:1532|7:1533|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:98|17:1534;7|16:663|17:1535;7|16:98|17:1536;p;1|3:94|4:1537|5:451|6:1538|7:1533|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:98|17:1534;7|16:663|17:1539;7|16:98|17:1540;7|16:663|17:1541;p;1|3:94|4:1542|5:451|6:1543|7:1544|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:51|17:1545;p;1|3:94|4:1546|5:451|6:1547|7:1548|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:51|17:1549;p;1|3:94|4:1550|5:451|6:1551|7:1544|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:1254|17:1552;7|16:51|17:1553;p;1|3:94|4:1554|5:8|6:1555|7:1544|9:45|13:11|3:94|3:94;n;7|16:15|17:1556;p;1|3:94|4:1557|5:8|6:1558|7:1544|9:45|13:11|3:94|3:94;n;7|16:1559|17:1560;7|1'
  522. ..'6:15|17:1561;p;1|3:94|4:1562|5:8|6:1563|7:1548|9:45|13:11|3:94|3:94;n;7|16:1559|17:1564;7|16:15|17:1565;p;1|3:94|4:1566|5:8|6:1567|7:1568|9:45|13:11|3:94|3:94;n;7|16:15|17:1569;7|16:51|17:1570;7|16:1571|17:1572;p;1|3:94|4:1573|5:8|6:1574|7:1575|9:45|13:11|3:94|3:94;1|3:94|4:1576|5:8|6:1577|7:1575|9:45|13:11|3:94|3:94;n;7|16:132|17:1578;7|16:1579|17:1580;p;1|3:94|4:1581|5:8|6:1582|7:1583|9:45|13:11|3:94|3:94;n;7|16:132|17:1584;7|16:863|17:1585;p;1|3:94|4:1586|5:593|6:1587|7:1588|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:92|17:1589;p;1|3:94|4:1590|5:593|6:1591|7:1592|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:51|17:1593;p;1|3:94|4:1594|5:1520|6:1595|7:1596|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:1333|17:1597;p;1|3:94|4:1598|5:1514|6:1599|7:1596|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:1333|17:1600;7|16:432|17:1601;p;1|3:6|4:160'
  523. ..'2|5:1603|6:1604|7:1605|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:51|17:1606;p;1|3:6|4:1607|5:1608|6:1609|7:1605|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:1610|5:451|6:1611|7:1612|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:1613|5:593|6:1614|7:1612|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:494|17:1615;7|16:51|17:1616;p;1|3:6|4:1617|5:477|6:1618|7:1619|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:820|17:1620;p;1|3:6|4:1621|5:477|6:1622|7:1623|9:11|13:45|3:6|3:6;n;7|16:51|17:1624;p;1|3:6|4:1625|5:477|6:1626|7:1619|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:820|17:1627;7|16:51|17:1628;p;1|3:6|4:1629|5:633|6:1630|7:1619|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:820|17:1631;7|16:51|17:1632;p;1|3:6|4:1633|5:633|6:1634|7:1619|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:1635|5:477|6:1636|7:1623|9:11|13:45|3:6|3:6;n;7|16:650|17:1637;p;1|23:1638|4'
  524. ..':1639|5:1514|6:1640|7:1641|8:11|9:11|10:11|11:11|12:11|13:11;n;11;p;1|3:6|4:1642|5:8|6:1643|7:1644|9:11|13:45|3:6|3:6;n;7|16:886|17:1645;p;1|3:6|4:1646|5:489|6:1647|7:1648|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:1444|17:1649;7|16:718|17:1650;p;1|3:6|4:1651|5:509|6:1652|7:1653|9:11|13:45|3:6|3:6;n;7|16:886|17:1654;7|16:1333|17:1655;7|16:886|17:1656;p;1|3:6|4:1657|5:451|6:1658|7:1644|9:11|13:45|3:6|3:6;n;7|16:886|17:1659;7|16:886|17:1660;p;1|3:6|4:1661|5:497|6:1662|7:1663|9:11|13:45|3:6|3:6;n;7|16:886|17:1664;7|16:886|17:1665;p;1|23:1638|4:1666|5:1608|6:1667|7:1668|25:11|9:45|11:11|12:11|13:45;n;7|16:1444|17:1669;p;1|3:6|4:1670|5:482|6:1671|7:1648|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:49|17:1672;7|16:718|17:1673;p;1|23:1638|4:1674|5:1514|6:1675|7:1641|8:11|9:11|10:11|11:11|12:11|13:11;n;11;7|16:49|17:1676;p;1|3:6|4:1677|5:497|6'
  525. ..':1678|7:1653|9:11|13:45|3:6|3:6;n;7|16:886|17:1679;7|16:886|17:1680;7|16:1333|17:1681;p;1|3:6|4:1682|5:8|6:1683|7:1644|9:11|13:45|3:6|3:6;1|3:6|4:1684|5:451|6:1685|7:1644|9:11|13:45|3:6|3:6;n;7|16:886|17:1686;7|16:886|17:1687;p;1|3:6|4:1688|5:509|6:1689|7:1663|9:11|13:45|3:6|3:6;n;7|16:886|17:1690;7|16:886|17:1691;p;1|23:1638|4:1692|5:1608|6:1693|7:1668|25:11|9:45|11:11|12:11|13:45;1|3:94|4:1694|5:1514|6:1695|7:148|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:60|17:1696;7|16:51|17:1697;p;1|3:94|4:1698|5:1520|6:1699|7:148|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:60|17:1700;7|16:51|17:1701;p;1|3:94|4:1702|5:1514|6:1703|7:148|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:60|17:1704;7|16:60|17:1705;p;1|3:94|4:1706|5:1520|6:1707|7:148|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:60|17:1708;7|16:60|17:1709;7|16:51|17:1710;p;1|23:1638|4:1711|5'
  526. ..':1608|6:1712|7:1713|25:11|9:45|11:11|12:11|13:45;1|23:1638|4:1714|5:1608|6:1715|7:1713|25:11|9:45|11:11|12:11|13:45;n;7|16:702|17:1200;7|16:60|17:1716;7|16:46|17:1717;7|16:909|17:1718;p;1|23:1638|4:1719|5:1608|6:1720|7:1713|25:11|9:45|11:11|12:11|13:45;1|23:1638|4:1721|5:1608|6:1722|7:1713|25:11|9:45|11:11|12:11|13:45;n;7|16:909|17:1723;p;1|3:6|23:1638|4:1724|5:1608|6:1725|7:1713|25:11|9:45|11:11|12:11|13:45|3:6|3:6;n;7|16:909|17:1726;p;1|3:6|23:1638|4:1727|5:1608|6:1728|7:1713|25:11|9:45|11:11|12:11|13:45|3:6|3:6;n;7|16:909|17:1729;p;1|3:94|4:1730|5:81|6:1731|7:1732|9:11|13:45|3:94|3:94;n;7|16:132|17:1733;7|16:92|17:1734;p;1|3:94|4:1735|5:111|6:1736|7:44|9:11|13:45|3:94|3:94;n;11|22:11;p;1|3:94|4:1737|5:8|6:1738|7:1739|9:11|13:45|3:94|3:94;n;11|22:11;p;1|3:94|4:1740|5:81|6:1741|7:69|9:11|13:45|3:94|3:94;1|3:94|4:1742|5:81|6:17'
  527. ..'43|7:69|9:11|13:45|3:94|3:94;1|3:94|4:1744|5:81|6:1745|7:1732|9:11|13:45|3:94|3:94;n;7|16:92|17:1746;p;1|3:94|4:1747|5:150|6:1748|7:44|9:11|13:45|3:94|3:94;n;11|22:11;p;1|3:94|4:1749|5:81|6:1750|7:1751|9:11|13:45|3:94|3:94;n;7|16:51|17:1752;7|16:15|17:1753;p;1|3:94|4:1754|5:81|6:1755|7:69|9:11|13:45|3:94|3:94;n;7|16:814|17:1756;7|16:814|17:1757;p;1|3:94|4:1758|5:81|6:1759|7:69|9:11|13:45|3:94|3:94;n;7|16:51|17:1760;7|16:814|17:1761;p;1|3:94|4:1762|5:81|6:1763|7:1764|9:11|13:45|3:94|3:94;1|3:94|4:1765|5:81|6:1766|7:1767|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:506|17:1768;7|16:1769|17:1770;7|16:814|17:1771;p;1|3:94|4:1772|5:81|6:1773|7:1751|9:11|13:45|3:94|3:94;n;7|16:51|17:1774;7|16:15|17:1775;p;1|3:94|4:1776|5:8|6:1777|7:1739|9:11|13:45|3:94|3:94;n;11|22:11;p;1|3:94|4:1778|5:8|6:1779|7:1780|9:11|13:45|3:94|3:94;n;11|22:11;7|1'
  528. ..'6:51|17:1781;p;1|3:94|4:1782|5:150|6:1783|7:1784|9:11|13:45|3:94|3:94;n;7|16:92|17:1785;p;1|3:94|4:1786|5:8|6:1787|7:1780|9:11|13:45|3:94|3:94;n;11|22:11;7|16:51|17:1788;p;1|3:6|4:1789|5:150|6:1790|7:148|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:51|17:1791;p;1|3:94|4:1792|5:81|6:1793|7:1794|9:11|13:45|3:94|3:94;n;7|16:98|17:1795;7|16:141|17:1796;p;1|3:6|4:1797|5:81|6:1413|7:1798|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:1799|5:111|6:1800|7:858|9:11|13:11|3:6|3:6;n;7|16:424|17:1801;7|16:1802|17:1803;7|16:422|17:1804;p;1|3:6|4:1805|5:111|6:1806|7:858|9:11|13:11|3:6|3:6;n;7|16:424|17:1807;7|16:863|17:1808;p;1|3:6|4:1809|5:111|6:1810|7:1262|9:11|13:11|3:6|3:6;n;7|16:469|17:1811;p;1|3:6|4:1812|5:111|6:1813|7:148|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:51|17:1814;p;1|3:94|4:1815|5:111|6:1816|7:1817|9:11|13:11|3:94|3:94;n;7|16:424|17:1818'
  529. ..';p;1|3:6|4:1819|5:1608|6:1820|7:148|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:51|17:1821;7|16:60|17:1822;p;1|3:94|4:1823|5:8|6:1824|7:1825|9:11|13:45|3:94|3:94;n;7|16:132|17:1826;7|16:132|17:1827;7|16:1828|17:1829;7|16:1828|17:1830;7|16:132|17:1831;7|16:132|17:1832;7|16:1828|17:1833;7|16:92|17:1834;p;1|3:6|4:1835|5:1603|6:1836|7:148|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:51|17:1837;7|16:60|17:1838;p;1|3:94|4:1839|5:111|6:1840|7:1841|9:11|13:45|3:94|3:94;n;7|16:92|17:1842;7|16:92|17:1843;p;1|3:94|4:1844|5:111|6:1845|7:1841|9:11|13:45|3:94|3:94;n;7|16:92|17:1846;p;1|3:94|4:1847|5:81|6:1848|7:1767|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:814|17:1849;7|16:506|17:1850;p;1|3:94|4:1851|5:81|6:1852|7:1853|9:11|13:45|3:94|3:94;n;7|16:92|17:1854;7|16:132|17:1855;7|16:132|17:1856;7|16:132|17:1857;7|16:132|17:1858;7|16:132|17:1859;7|16:92|'
  530. ..'17:1860;p;1|3:94|4:1861|5:81|6:1862|7:1780|9:11|13:45|3:94|3:94;n;7|16:51|17:1863;p;1|3:6|4:1864|5:81|6:1865|9:11|13:45|3:6|3:6;n;11|22:11;7|16:51|17:1866;p;1|3:6|4:1867|5:111|6:1868|9:11|13:45|3:6|3:6;n;11|22:11;7|16:51|17:1869;p;1|3:6|4:1870|5:150|6:1871|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:1872|5:150|6:1873|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:6|4:1874|5:81|6:1875|9:11|13:45|3:6|3:6;n;11|22:11;7|16:51|17:1876;7|16:814|17:1877;p;1|3:6|4:1878|5:111|6:1879|9:11|13:45|3:6|3:6;n;11|22:11;7|16:51|17:1880;p;1|3:6|4:1881|5:150|6:1882|9:11|13:45|3:6|3:6;n;11|22:11;7|16:51|17:1883;p;1|3:6|4:1884|5:111|6:1885|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:94|4:1886|5:81|6:1887|7:1485|9:11|13:45|3:94|3:94;n;7|16:132|17:1888;7|16:92|17:1889;p;1|3:94|4:1890|5:81|6:1891|7:1892|9:11|13:45|3:94|3:94;n;7|16:15|17:1893;7|16:15|17:1894;7|16:15|17:1895;p'
  531. ..';1|3:94|4:1896|5:81|6:1897|7:1794|9:11|13:45|3:94|3:94;n;7|16:98|17:1898;7|16:141|17:1899;7|16:141|17:1900;7|16:141|17:1901;p;1|3:94|4:1902|5:81|6:1903|7:1485|9:11|13:45|3:94|3:94;1|3:94|4:1904|5:111|6:1905|7:1817|9:11|13:11|3:94|3:94;n;7|16:424|17:1906;p;1|3:6|4:1907|5:81|6:1908|9:11|13:45|3:6|3:6;n;11|22:11;p;1|3:94|4:1909|5:81|6:1910|7:1911|9:11|13:45|3:94|3:94;n;7|16:15|17:1912;7|16:51|17:1913;p;1|3:6|4:1914|5:81|6:1915|9:11|13:45|3:6|3:6;n;11|22:11;7|16:51|17:1916;p;1|3:6|4:1917|5:81|6:1918|7:1919|9:11|13:45|3:6|3:6;n;7|16:92|17:1920;p;1|3:6|4:1921|5:81|6:1922|7:1919|9:11|13:45|3:6|3:6;n;7|16:92|17:1923;p;1|3:1924|23:1077|4:1925|5:1514|6:1926|7:1927|9:11|13:45|3:1924|3:1924;n;11;7|16:1928|17:1929;7|16:702|17:1930;7|16:1931|17:1932;7|16:702|17:1933;p;1|3:94|4:1934|5:1041|6:1935|7:148|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|1'
  532. ..'6:51|17:1936;p;1|3:1924|23:1077|4:1937|5:1514|6:1938|7:1927|9:11|13:45|3:1924|3:1924;n;11;p;1|3:94|4:1939|5:593|6:1940|7:148|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:60|17:1941;7|16:51|17:1942;p;1|3:94|4:1943|5:451|6:1944|7:148|8:11|9:11|13:45|3:94|3:94;n;11|22:11;7|16:60|17:1945;7|16:51|17:1946;p;1|3:94|4:1947|5:451|6:1948|7:148|8:11|9:11|13:45|3:94|3:94;n;11|22:11;p;1|3:6|4:1949|5:150|6:1950|7:91|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:92|17:1951;7|16:814|17:1952;p;1|3:6|4:1953|5:111|6:1954|7:91|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:92|17:1955;7|16:814|17:1956;p;1|3:6|4:1957|5:1608|6:1958|7:91|8:11|9:11|13:45|3:6|3:6;n;11|22:11;7|16:814|17:1959;7|16:92|17:1960;p;1|3:6|4:1961|5:1603|6:1962|7:91|8:11|9:11|13:45|3:6|3:6;n;11|22:11;p;1|1:1963|3:636|4:1964|5:8|6:1965|7:1966|13:45|3:636|3:636;n;6|1:1967|20:34;5;7|16:886|17:1968;'
  533. ..'p;1|1:1969|26:34|3:636|4:1970|5:1971|7:1966|9:11|13:45|3:636|3:636;n;6|1:1967|20:34;5;p;p;5;p;p;')
  534. for _,Object in pairs(Objects) do
  535. Object.Parent = script and script.Parent==workspace and script or workspace
  536. end
  537. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement