Advertisement
lafur

Untitled

May 21st, 2020
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 138.29 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 95909
  3. local genv={}
  4. local Scripts = {
  5. function() local sp = script.Parent
  6.  
  7. sp.Platform.BodyPosition.position = sp.Start.Position
  8.  
  9. local function onClicked1()
  10. sp.Platform.BodyPosition.position = sp.Finish.Position
  11. sp.ButtonSound:play()
  12. end
  13.  
  14. sp.Button1.ClickDetector.MouseClick:connect(onClicked1)
  15.  
  16.  
  17. local function onClicked2()
  18. sp.Platform.BodyPosition.position = sp.Start.Position
  19. sp.ButtonSound:play()
  20. end
  21.  
  22. sp.Button2.ClickDetector.MouseClick:connect(onClicked2)
  23.  
  24. end;
  25. function() r = game:service("RunService")
  26.  
  27. shaft = script.Parent
  28. position = shaft.Position
  29.  
  30. moveDir=shaft.CFrame.lookVector
  31.  
  32. function fly()
  33. direction = moveDir
  34. position = position + direction *30
  35. error = position - shaft.Position
  36. shaft.Velocity = 5*error
  37. end
  38.  
  39. function blow(hit)
  40. if string.lower(hit.Name)=="cannon" then return end
  41. explosion = Instance.new("Explosion")
  42. explosion.Position = shaft.Position
  43. explosion.BlastRadius = 7
  44. -- find instigator tag
  45. local creator = script.Parent:findFirstChild("creator")
  46. if creator ~= nil then
  47. explosion.Hit:connect(function(part, distance) onPlayerBlownUp(part, distance, creator) end)
  48. end
  49.  
  50. explosion.Parent = game.Workspace
  51. connection:disconnect()
  52. wait(.1)
  53. shaft:remove()
  54. end
  55.  
  56. function onPlayerBlownUp(part, distance, creator)
  57.  
  58. if part.Name == "Head" then
  59.  
  60. local humanoid = part.Parent.Humanoid
  61. tagHumanoid(humanoid, creator)
  62. end
  63. end
  64.  
  65. function tagHumanoid(humanoid, creator)
  66. -- tag does not need to expire iff all explosions lethal
  67.  
  68. if creator ~= nil then
  69. local new_tag = creator:clone()
  70. new_tag.Parent = humanoid
  71.  
  72. end
  73. end
  74.  
  75. function untagHumanoid(humanoid)
  76. if humanoid ~= nil then
  77. local tag = humanoid:findFirstChild("creator")
  78. if tag ~= nil then
  79.  
  80. tag.Parent = nil
  81. end
  82. end
  83. end
  84.  
  85. t, s = r.Stepped:wait()
  86.  
  87. d = t + 10.0 - s
  88. connection = shaft.Touched:connect(blow)
  89.  
  90. while t < d do
  91. fly()
  92. t = r.Stepped:wait()
  93. end
  94.  
  95. shaft:remove()
  96. end;
  97. function() local Rocket = Instance.new("Part")
  98. local Tool = script.Parent
  99.  
  100. Rocket.Locked = true
  101. Rocket.BackSurface = 0
  102. Rocket.BottomSurface = 0
  103. Rocket.FrontSurface = 0
  104. Rocket.LeftSurface = 0
  105. Rocket.RightSurface = 0
  106. Rocket.TopSurface = 0
  107. Rocket.Reflectance=0.2
  108. Rocket.Size = Vector3.new(1,1,7)
  109. Rocket.BrickColor = BrickColor.new"Really red"
  110. Rocket.CanCollide=false
  111.  
  112. Tool.RocketScript:clone().Parent = Rocket
  113. Tool.Explosion:clone().Parent = Rocket
  114.  
  115.  
  116. function fire(vTarget)
  117.  
  118. local sound = script.Parent:findFirstChild("GunSound")
  119. if sound == nil then
  120. sound = Instance.new("Sound")
  121. sound.Name = "GunSound"
  122. sound.SoundId = "http://www.roblox.com/asset/?id=1369158"
  123. sound.Volume = 1
  124. sound.Parent = Rocket
  125. end
  126. sound:play()
  127.  
  128. vHandle = script.Parent
  129.  
  130. local dir = vTarget - vHandle.Position
  131.  
  132. dir = computeDirection(dir)
  133.  
  134. local missile = Rocket:clone()
  135.  
  136. local pos = vHandle.Position + (dir * 30)
  137.  
  138. missile.CFrame = CFrame.new(pos, pos + dir)
  139.  
  140. missile.RocketScript.Disabled = false
  141.  
  142. missile.Parent = game.Workspace
  143. end
  144.  
  145. function computeDirection(vec)
  146. local lenSquared = vec.magnitude * vec.magnitude
  147. local invSqrt = 1 / math.sqrt(lenSquared)
  148. return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
  149. end
  150.  
  151. enabled=true
  152. function onClicked()
  153. if enabled==false then return end
  154. enabled=false
  155. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  156. if a.Name=="launch" then
  157. a.BrickColor=BrickColor.new("Bright red")
  158. end
  159. end
  160. fire(script.Parent.CFrame.lookVector*1000000)
  161. wait(1)
  162. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  163. if a.Name=="launch" then
  164. a.BrickColor=BrickColor.new("Really black")
  165. end
  166. end
  167. enabled=true
  168. end
  169.  
  170. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  171. if a.Name=="launch" then
  172. a.ClickDetector.MouseClick:connect(onClicked)
  173. end
  174. end
  175.  
  176. end;
  177. function() --------------MADE BY Radioaktiivinen
  178. --------------Should be configurable with some crappy configuration tool of roblox >_>
  179. local seat=script.Parent
  180. local data=seat.Configuration
  181. local owner=nil
  182. local running=false
  183. local x=0
  184. local y=0
  185.  
  186. seat.ChildAdded:connect(
  187. function(w)
  188. if w.className=="Weld" and w.Name=="SeatWeld" then
  189. local char=w.Part1.Parent
  190. local player=game.Players:FindFirstChild(char.Name)
  191. if player~=nil then
  192. owner=player
  193. seat.ChildRemoved:connect(
  194. function(w2)
  195. if w2==w then
  196. owner=nil
  197. end
  198. end
  199. )
  200. seat.BodyVelocity.maxForce=Vector3.new(1,1,1)*data.MaxForce.Value
  201. seat.BodyGyro.maxTorque=Vector3.new(1,1,1)*50000
  202. local spd=0
  203. local gui=seat.ScreenGui:clone()
  204. gui.Parent=player.PlayerGui
  205. gui.Frame.Faster.MouseButton1Click:connect(
  206. function()
  207. spd=math.min(spd+data.MaxSpeed.Value/20,data.MaxSpeed.Value)
  208. gui.Frame.Speed.Text=math.floor(spd)
  209. end
  210. )
  211. gui.Frame.Slower.MouseButton1Click:connect(
  212. function()
  213. spd=math.max(spd-data.MaxSpeed.Value/20,0)
  214. gui.Frame.Speed.Text=math.floor(spd)
  215. end
  216. )
  217. while owner==player do
  218. seat.BodyVelocity.velocity=seat.CFrame.lookVector*spd
  219. wait()
  220. end
  221. gui:remove()
  222. seat.BodyVelocity.velocity=Vector3.new(0,0,0)
  223. seat.BodyVelocity.maxForce=Vector3.new(0,0,0)
  224. seat.BodyGyro.maxTorque=Vector3.new(0,0,0)
  225. end
  226. end
  227. end
  228. )
  229.  
  230. seat.Changed:connect(
  231. function()
  232. if not running then
  233. local cur=seat.Steer
  234. local cur2=seat.Throttle
  235. running=true
  236. while (cur~=0 or cur2~=0) do
  237. y=y-seat.Steer*data.TurnSpeed.Value
  238. x=x-seat.Throttle*data.TurnSpeed.Value
  239. seat.BodyGyro.cframe=CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(y),0)*CFrame.Angles(math.rad(x),0,0)
  240. wait()
  241. end
  242. running=false
  243. end
  244. end
  245. ) end;
  246. function() r = game:service("RunService")
  247.  
  248. shaft = script.Parent
  249. position = shaft.Position
  250.  
  251. moveDir=shaft.CFrame.lookVector
  252.  
  253. function fly()
  254. direction = moveDir
  255. position = position + direction *30
  256. error = position - shaft.Position
  257. shaft.Velocity = 5*error
  258. end
  259.  
  260. function blow(hit)
  261. if string.lower(hit.Name)=="cannon" then return end
  262. explosion = Instance.new("Explosion")
  263. explosion.Position = shaft.Position
  264. explosion.BlastRadius = 7
  265. -- find instigator tag
  266. local creator = script.Parent:findFirstChild("creator")
  267. if creator ~= nil then
  268. explosion.Hit:connect(function(part, distance) onPlayerBlownUp(part, distance, creator) end)
  269. end
  270.  
  271. explosion.Parent = game.Workspace
  272. connection:disconnect()
  273. wait(.1)
  274. shaft:remove()
  275. end
  276.  
  277. function onPlayerBlownUp(part, distance, creator)
  278.  
  279. if part.Name == "Head" then
  280.  
  281. local humanoid = part.Parent.Humanoid
  282. tagHumanoid(humanoid, creator)
  283. end
  284. end
  285.  
  286. function tagHumanoid(humanoid, creator)
  287. -- tag does not need to expire iff all explosions lethal
  288.  
  289. if creator ~= nil then
  290. local new_tag = creator:clone()
  291. new_tag.Parent = humanoid
  292.  
  293. end
  294. end
  295.  
  296. function untagHumanoid(humanoid)
  297. if humanoid ~= nil then
  298. local tag = humanoid:findFirstChild("creator")
  299. if tag ~= nil then
  300.  
  301. tag.Parent = nil
  302. end
  303. end
  304. end
  305.  
  306. t, s = r.Stepped:wait()
  307.  
  308. d = t + 10.0 - s
  309. connection = shaft.Touched:connect(blow)
  310.  
  311. while t < d do
  312. fly()
  313. t = r.Stepped:wait()
  314. end
  315.  
  316. shaft:remove()
  317. end;
  318. function() local Rocket = Instance.new("Part")
  319. local Tool = script.Parent
  320.  
  321. Rocket.Locked = true
  322. Rocket.BackSurface = 0
  323. Rocket.BottomSurface = 0
  324. Rocket.FrontSurface = 0
  325. Rocket.LeftSurface = 0
  326. Rocket.RightSurface = 0
  327. Rocket.TopSurface = 0
  328. Rocket.Reflectance=0.2
  329. Rocket.Size = Vector3.new(1,1,7)
  330. Rocket.BrickColor = BrickColor.new"Really red"
  331. Rocket.CanCollide=false
  332.  
  333. Tool.RocketScript:clone().Parent = Rocket
  334. Tool.Explosion:clone().Parent = Rocket
  335.  
  336.  
  337. function fire(vTarget)
  338.  
  339. local sound = script.Parent:findFirstChild("GunSound")
  340. if sound == nil then
  341. sound = Instance.new("Sound")
  342. sound.Name = "GunSound"
  343. sound.SoundId = "http://www.roblox.com/asset/?id=1369158"
  344. sound.Volume = 1
  345. sound.Parent = Rocket
  346. end
  347. sound:play()
  348.  
  349. vHandle = script.Parent
  350.  
  351. local dir = vTarget - vHandle.Position
  352.  
  353. dir = computeDirection(dir)
  354.  
  355. local missile = Rocket:clone()
  356.  
  357. local pos = vHandle.Position + (dir * 30)
  358.  
  359. missile.CFrame = CFrame.new(pos, pos + dir)
  360.  
  361. missile.RocketScript.Disabled = false
  362.  
  363. missile.Parent = game.Workspace
  364. end
  365.  
  366. function computeDirection(vec)
  367. local lenSquared = vec.magnitude * vec.magnitude
  368. local invSqrt = 1 / math.sqrt(lenSquared)
  369. return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
  370. end
  371.  
  372. enabled=true
  373. function onClicked()
  374. if enabled==false then return end
  375. enabled=false
  376. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  377. if a.Name=="launch" then
  378. a.BrickColor=BrickColor.new("Bright red")
  379. end
  380. end
  381. fire(script.Parent.CFrame.lookVector*1000000)
  382. wait(1)
  383. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  384. if a.Name=="launch" then
  385. a.BrickColor=BrickColor.new("Really black")
  386. end
  387. end
  388. enabled=true
  389. end
  390.  
  391. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  392. if a.Name=="launch" then
  393. a.ClickDetector.MouseClick:connect(onClicked)
  394. end
  395. end
  396.  
  397. end;
  398. function() r = game:service("RunService")
  399.  
  400. shaft = script.Parent
  401. position = shaft.Position
  402.  
  403. moveDir=shaft.CFrame.lookVector
  404.  
  405. function fly()
  406. direction = moveDir
  407. position = position + direction *30
  408. error = position - shaft.Position
  409. shaft.Velocity = 5*error
  410. end
  411.  
  412. function blow(hit)
  413. if string.lower(hit.Name)=="cannon" then return end
  414. explosion = Instance.new("Explosion")
  415. explosion.Position = shaft.Position
  416. explosion.BlastRadius = 7
  417. -- find instigator tag
  418. local creator = script.Parent:findFirstChild("creator")
  419. if creator ~= nil then
  420. explosion.Hit:connect(function(part, distance) onPlayerBlownUp(part, distance, creator) end)
  421. end
  422.  
  423. explosion.Parent = game.Workspace
  424. connection:disconnect()
  425. wait(.1)
  426. shaft:remove()
  427. end
  428.  
  429. function onPlayerBlownUp(part, distance, creator)
  430.  
  431. if part.Name == "Head" then
  432.  
  433. local humanoid = part.Parent.Humanoid
  434. tagHumanoid(humanoid, creator)
  435. end
  436. end
  437.  
  438. function tagHumanoid(humanoid, creator)
  439. -- tag does not need to expire iff all explosions lethal
  440.  
  441. if creator ~= nil then
  442. local new_tag = creator:clone()
  443. new_tag.Parent = humanoid
  444.  
  445. end
  446. end
  447.  
  448. function untagHumanoid(humanoid)
  449. if humanoid ~= nil then
  450. local tag = humanoid:findFirstChild("creator")
  451. if tag ~= nil then
  452.  
  453. tag.Parent = nil
  454. end
  455. end
  456. end
  457.  
  458. t, s = r.Stepped:wait()
  459.  
  460. d = t + 10.0 - s
  461. connection = shaft.Touched:connect(blow)
  462.  
  463. while t < d do
  464. fly()
  465. t = r.Stepped:wait()
  466. end
  467.  
  468. shaft:remove()
  469. end;
  470. function() local Rocket = Instance.new("Part")
  471. local Tool = script.Parent
  472.  
  473. Rocket.Locked = true
  474. Rocket.BackSurface = 0
  475. Rocket.BottomSurface = 0
  476. Rocket.FrontSurface = 0
  477. Rocket.LeftSurface = 0
  478. Rocket.RightSurface = 0
  479. Rocket.TopSurface = 0
  480. Rocket.Reflectance=0.2
  481. Rocket.Size = Vector3.new(1,1,7)
  482. Rocket.BrickColor = BrickColor.new"Really red"
  483. Rocket.CanCollide=false
  484.  
  485. Tool.RocketScript:clone().Parent = Rocket
  486. Tool.Explosion:clone().Parent = Rocket
  487.  
  488.  
  489. function fire(vTarget)
  490.  
  491. local sound = script.Parent:findFirstChild("GunSound")
  492. if sound == nil then
  493. sound = Instance.new("Sound")
  494. sound.Name = "GunSound"
  495. sound.SoundId = "http://www.roblox.com/asset/?id=1369158"
  496. sound.Volume = 1
  497. sound.Parent = Rocket
  498. end
  499. sound:play()
  500.  
  501. vHandle = script.Parent
  502.  
  503. local dir = vTarget - vHandle.Position
  504.  
  505. dir = computeDirection(dir)
  506.  
  507. local missile = Rocket:clone()
  508.  
  509. local pos = vHandle.Position + (dir * 30)
  510.  
  511. missile.CFrame = CFrame.new(pos, pos + dir)
  512.  
  513. missile.RocketScript.Disabled = false
  514.  
  515. missile.Parent = game.Workspace
  516. end
  517.  
  518. function computeDirection(vec)
  519. local lenSquared = vec.magnitude * vec.magnitude
  520. local invSqrt = 1 / math.sqrt(lenSquared)
  521. return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
  522. end
  523.  
  524. enabled=true
  525. function onClicked()
  526. if enabled==false then return end
  527. enabled=false
  528. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  529. if a.Name=="launch" then
  530. a.BrickColor=BrickColor.new("Bright red")
  531. end
  532. end
  533. fire(script.Parent.CFrame.lookVector*1000000)
  534. wait(1)
  535. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  536. if a.Name=="launch" then
  537. a.BrickColor=BrickColor.new("Really black")
  538. end
  539. end
  540. enabled=true
  541. end
  542.  
  543. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  544. if a.Name=="launch" then
  545. a.ClickDetector.MouseClick:connect(onClicked)
  546. end
  547. end
  548.  
  549. end;
  550. function() --------------MADE BY Radioaktiivinen
  551. --------------Should be configurable with some crappy configuration tool of roblox >_>
  552. local seat=script.Parent
  553. local data=seat.Configuration
  554. local owner=nil
  555. local running=false
  556. local x=0
  557. local y=0
  558.  
  559. seat.ChildAdded:connect(
  560. function(w)
  561. if w.className=="Weld" and w.Name=="SeatWeld" then
  562. local char=w.Part1.Parent
  563. local player=game.Players:FindFirstChild(char.Name)
  564. if player~=nil then
  565. owner=player
  566. seat.ChildRemoved:connect(
  567. function(w2)
  568. if w2==w then
  569. owner=nil
  570. end
  571. end
  572. )
  573. seat.BodyVelocity.maxForce=Vector3.new(1,1,1)*data.MaxForce.Value
  574. seat.BodyGyro.maxTorque=Vector3.new(1,1,1)*50000
  575. local spd=0
  576. local gui=seat.ScreenGui:clone()
  577. gui.Parent=player.PlayerGui
  578. gui.Frame.Faster.MouseButton1Click:connect(
  579. function()
  580. spd=math.min(spd+data.MaxSpeed.Value/20,data.MaxSpeed.Value)
  581. gui.Frame.Speed.Text=math.floor(spd)
  582. end
  583. )
  584. gui.Frame.Slower.MouseButton1Click:connect(
  585. function()
  586. spd=math.max(spd-data.MaxSpeed.Value/20,0)
  587. gui.Frame.Speed.Text=math.floor(spd)
  588. end
  589. )
  590. while owner==player do
  591. seat.BodyVelocity.velocity=seat.CFrame.lookVector*spd
  592. wait()
  593. end
  594. gui:remove()
  595. seat.BodyVelocity.velocity=Vector3.new(0,0,0)
  596. seat.BodyVelocity.maxForce=Vector3.new(0,0,0)
  597. seat.BodyGyro.maxTorque=Vector3.new(0,0,0)
  598. end
  599. end
  600. end
  601. )
  602.  
  603. seat.Changed:connect(
  604. function()
  605. if not running then
  606. local cur=seat.Steer
  607. local cur2=seat.Throttle
  608. running=true
  609. while (cur~=0 or cur2~=0) do
  610. y=y-seat.Steer*data.TurnSpeed.Value
  611. x=x-seat.Throttle*data.TurnSpeed.Value
  612. seat.BodyGyro.cframe=CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(y),0)*CFrame.Angles(math.rad(x),0,0)
  613. wait()
  614. end
  615. running=false
  616. end
  617. end
  618. ) end;
  619. function() r = game:service("RunService")
  620.  
  621. shaft = script.Parent
  622. position = shaft.Position
  623.  
  624. moveDir=shaft.CFrame.lookVector
  625.  
  626. function fly()
  627. direction = moveDir
  628. position = position + direction *30
  629. error = position - shaft.Position
  630. shaft.Velocity = 5*error
  631. end
  632.  
  633. function blow(hit)
  634. if string.lower(hit.Name)=="cannon" then return end
  635. explosion = Instance.new("Explosion")
  636. explosion.Position = shaft.Position
  637. explosion.BlastRadius = 7
  638. -- find instigator tag
  639. local creator = script.Parent:findFirstChild("creator")
  640. if creator ~= nil then
  641. explosion.Hit:connect(function(part, distance) onPlayerBlownUp(part, distance, creator) end)
  642. end
  643.  
  644. explosion.Parent = game.Workspace
  645. connection:disconnect()
  646. wait(.1)
  647. shaft:remove()
  648. end
  649.  
  650. function onPlayerBlownUp(part, distance, creator)
  651.  
  652. if part.Name == "Head" then
  653.  
  654. local humanoid = part.Parent.Humanoid
  655. tagHumanoid(humanoid, creator)
  656. end
  657. end
  658.  
  659. function tagHumanoid(humanoid, creator)
  660. -- tag does not need to expire iff all explosions lethal
  661.  
  662. if creator ~= nil then
  663. local new_tag = creator:clone()
  664. new_tag.Parent = humanoid
  665.  
  666. end
  667. end
  668.  
  669. function untagHumanoid(humanoid)
  670. if humanoid ~= nil then
  671. local tag = humanoid:findFirstChild("creator")
  672. if tag ~= nil then
  673.  
  674. tag.Parent = nil
  675. end
  676. end
  677. end
  678.  
  679. t, s = r.Stepped:wait()
  680.  
  681. d = t + 10.0 - s
  682. connection = shaft.Touched:connect(blow)
  683.  
  684. while t < d do
  685. fly()
  686. t = r.Stepped:wait()
  687. end
  688.  
  689. shaft:remove()
  690. end;
  691. function() local Rocket = Instance.new("Part")
  692. local Tool = script.Parent
  693.  
  694. Rocket.Locked = true
  695. Rocket.BackSurface = 0
  696. Rocket.BottomSurface = 0
  697. Rocket.FrontSurface = 0
  698. Rocket.LeftSurface = 0
  699. Rocket.RightSurface = 0
  700. Rocket.TopSurface = 0
  701. Rocket.Reflectance=0.2
  702. Rocket.Size = Vector3.new(1,1,7)
  703. Rocket.BrickColor = BrickColor.new"Really red"
  704. Rocket.CanCollide=false
  705.  
  706. Tool.RocketScript:clone().Parent = Rocket
  707. Tool.Explosion:clone().Parent = Rocket
  708.  
  709.  
  710. function fire(vTarget)
  711.  
  712. local sound = script.Parent:findFirstChild("GunSound")
  713. if sound == nil then
  714. sound = Instance.new("Sound")
  715. sound.Name = "GunSound"
  716. sound.SoundId = "http://www.roblox.com/asset/?id=1369158"
  717. sound.Volume = 1
  718. sound.Parent = Rocket
  719. end
  720. sound:play()
  721.  
  722. vHandle = script.Parent
  723.  
  724. local dir = vTarget - vHandle.Position
  725.  
  726. dir = computeDirection(dir)
  727.  
  728. local missile = Rocket:clone()
  729.  
  730. local pos = vHandle.Position + (dir * 30)
  731.  
  732. missile.CFrame = CFrame.new(pos, pos + dir)
  733.  
  734. missile.RocketScript.Disabled = false
  735.  
  736. missile.Parent = game.Workspace
  737. end
  738.  
  739. function computeDirection(vec)
  740. local lenSquared = vec.magnitude * vec.magnitude
  741. local invSqrt = 1 / math.sqrt(lenSquared)
  742. return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
  743. end
  744.  
  745. enabled=true
  746. function onClicked()
  747. if enabled==false then return end
  748. enabled=false
  749. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  750. if a.Name=="launch" then
  751. a.BrickColor=BrickColor.new("Bright red")
  752. end
  753. end
  754. fire(script.Parent.CFrame.lookVector*1000000)
  755. wait(1)
  756. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  757. if a.Name=="launch" then
  758. a.BrickColor=BrickColor.new("Really black")
  759. end
  760. end
  761. enabled=true
  762. end
  763.  
  764. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  765. if a.Name=="launch" then
  766. a.ClickDetector.MouseClick:connect(onClicked)
  767. end
  768. end
  769.  
  770. end;
  771. function() local sp = script.Parent
  772.  
  773. local function pressed(part)
  774. local parent = part.Parent
  775. if game.Players:GetPlayerFromCharacter(parent) then
  776. sp.backlight.Brightness = 4
  777. sp.frontlight.Brightness = 4
  778. sp.Sound:play()
  779. wait()
  780. sp.Transparency = .1
  781. wait()
  782. sp.Transparency = .2
  783. wait()
  784. sp.Transparency = .3
  785. wait()
  786. sp.Transparency = .4
  787. wait()
  788. sp.Transparency = .5
  789. sp.CanCollide = false
  790. wait(1.5)
  791. sp.backlight.Brightness = 0
  792. sp.frontlight.Brightness = 0
  793. sp.Transparency = .4
  794. wait()
  795. sp.Transparency = .3
  796. wait()
  797. sp.Transparency = .2
  798. wait()
  799. sp.Transparency = .1
  800. wait()
  801. sp.Transparency = 0
  802. sp.CanCollide = true
  803. end
  804. end
  805.  
  806. sp.Touched:connect(pressed)
  807.  
  808.  
  809.  
  810.  
  811. end;
  812. function() local sp = script.Parent
  813.  
  814. local function pressed(part)
  815. local parent = part.Parent
  816. if game.Players:GetPlayerFromCharacter(parent) then
  817. sp.backlight.Brightness = 4
  818. sp.frontlight.Brightness = 4
  819. sp.Sound:play()
  820. wait()
  821. sp.Transparency = .1
  822. wait()
  823. sp.Transparency = .2
  824. wait()
  825. sp.Transparency = .3
  826. wait()
  827. sp.Transparency = .4
  828. wait()
  829. sp.Transparency = .5
  830. sp.CanCollide = false
  831. wait(1.5)
  832. sp.backlight.Brightness = 0
  833. sp.frontlight.Brightness = 0
  834. sp.Transparency = .4
  835. wait()
  836. sp.Transparency = .3
  837. wait()
  838. sp.Transparency = .2
  839. wait()
  840. sp.Transparency = .1
  841. wait()
  842. sp.Transparency = 0
  843. sp.CanCollide = true
  844. end
  845. end
  846.  
  847. sp.Touched:connect(pressed)
  848.  
  849.  
  850.  
  851.  
  852. end;
  853. function() local sp = script.Parent
  854.  
  855. local function pressed(part)
  856. local parent = part.Parent
  857. if game.Players:GetPlayerFromCharacter(parent) then
  858. sp.backlight.Brightness = 4
  859. sp.frontlight.Brightness = 4
  860. sp.Sound:play()
  861. wait()
  862. sp.Transparency = .1
  863. wait()
  864. sp.Transparency = .2
  865. wait()
  866. sp.Transparency = .3
  867. wait()
  868. sp.Transparency = .4
  869. wait()
  870. sp.Transparency = .5
  871. sp.CanCollide = false
  872. wait(1.5)
  873. sp.backlight.Brightness = 0
  874. sp.frontlight.Brightness = 0
  875. sp.Transparency = .4
  876. wait()
  877. sp.Transparency = .3
  878. wait()
  879. sp.Transparency = .2
  880. wait()
  881. sp.Transparency = .1
  882. wait()
  883. sp.Transparency = 0
  884. sp.CanCollide = true
  885. end
  886. end
  887.  
  888. sp.Touched:connect(pressed)
  889.  
  890.  
  891.  
  892.  
  893. end;
  894. function() local sp = script.Parent
  895.  
  896. local function pressed(part)
  897. local parent = part.Parent
  898. if game.Players:GetPlayerFromCharacter(parent) then
  899. sp.backlight.Brightness = 4
  900. sp.frontlight.Brightness = 4
  901. sp.Sound:play()
  902. wait()
  903. sp.Transparency = .1
  904. wait()
  905. sp.Transparency = .2
  906. wait()
  907. sp.Transparency = .3
  908. wait()
  909. sp.Transparency = .4
  910. wait()
  911. sp.Transparency = .5
  912. sp.CanCollide = false
  913. wait(1.5)
  914. sp.backlight.Brightness = 0
  915. sp.frontlight.Brightness = 0
  916. sp.Transparency = .4
  917. wait()
  918. sp.Transparency = .3
  919. wait()
  920. sp.Transparency = .2
  921. wait()
  922. sp.Transparency = .1
  923. wait()
  924. sp.Transparency = 0
  925. sp.CanCollide = true
  926. end
  927. end
  928.  
  929. sp.Touched:connect(pressed)
  930.  
  931.  
  932.  
  933.  
  934. end;
  935. function() local sp = script.Parent
  936.  
  937. local function pressed(part)
  938. local parent = part.Parent
  939. if game.Players:GetPlayerFromCharacter(parent) then
  940. sp.backlight.Brightness = 4
  941. sp.frontlight.Brightness = 4
  942. sp.Sound:play()
  943. wait()
  944. sp.Transparency = .1
  945. wait()
  946. sp.Transparency = .2
  947. wait()
  948. sp.Transparency = .3
  949. wait()
  950. sp.Transparency = .4
  951. wait()
  952. sp.Transparency = .5
  953. sp.CanCollide = false
  954. wait(1.5)
  955. sp.backlight.Brightness = 0
  956. sp.frontlight.Brightness = 0
  957. sp.Transparency = .4
  958. wait()
  959. sp.Transparency = .3
  960. wait()
  961. sp.Transparency = .2
  962. wait()
  963. sp.Transparency = .1
  964. wait()
  965. sp.Transparency = 0
  966. sp.CanCollide = true
  967. end
  968. end
  969.  
  970. sp.Touched:connect(pressed)
  971.  
  972.  
  973.  
  974.  
  975. end;
  976. function() local sp = script.Parent
  977.  
  978. local function pressed(part)
  979. local parent = part.Parent
  980. if game.Players:GetPlayerFromCharacter(parent) then
  981. sp.backlight.Brightness = 4
  982. sp.frontlight.Brightness = 4
  983. sp.Sound:play()
  984. wait()
  985. sp.Transparency = .1
  986. wait()
  987. sp.Transparency = .2
  988. wait()
  989. sp.Transparency = .3
  990. wait()
  991. sp.Transparency = .4
  992. wait()
  993. sp.Transparency = .5
  994. sp.CanCollide = false
  995. wait(1.5)
  996. sp.backlight.Brightness = 0
  997. sp.frontlight.Brightness = 0
  998. sp.Transparency = .4
  999. wait()
  1000. sp.Transparency = .3
  1001. wait()
  1002. sp.Transparency = .2
  1003. wait()
  1004. sp.Transparency = .1
  1005. wait()
  1006. sp.Transparency = 0
  1007. sp.CanCollide = true
  1008. end
  1009. end
  1010.  
  1011. sp.Touched:connect(pressed)
  1012.  
  1013.  
  1014.  
  1015.  
  1016. end;
  1017. function() r = game:service("RunService")
  1018.  
  1019. shaft = script.Parent
  1020. position = shaft.Position
  1021.  
  1022. moveDir=shaft.CFrame.lookVector
  1023.  
  1024. function fly()
  1025. direction = moveDir
  1026. position = position + direction *30
  1027. error = position - shaft.Position
  1028. shaft.Velocity = 5*error
  1029. end
  1030.  
  1031. function blow(hit)
  1032. if string.lower(hit.Name)=="cannon" then return end
  1033. explosion = Instance.new("Explosion")
  1034. explosion.Position = shaft.Position
  1035. explosion.BlastRadius = 7
  1036. -- find instigator tag
  1037. local creator = script.Parent:findFirstChild("creator")
  1038. if creator ~= nil then
  1039. explosion.Hit:connect(function(part, distance) onPlayerBlownUp(part, distance, creator) end)
  1040. end
  1041.  
  1042. explosion.Parent = game.Workspace
  1043. connection:disconnect()
  1044. wait(.1)
  1045. shaft:remove()
  1046. end
  1047.  
  1048. function onPlayerBlownUp(part, distance, creator)
  1049.  
  1050. if part.Name == "Head" then
  1051.  
  1052. local humanoid = part.Parent.Humanoid
  1053. tagHumanoid(humanoid, creator)
  1054. end
  1055. end
  1056.  
  1057. function tagHumanoid(humanoid, creator)
  1058. -- tag does not need to expire iff all explosions lethal
  1059.  
  1060. if creator ~= nil then
  1061. local new_tag = creator:clone()
  1062. new_tag.Parent = humanoid
  1063.  
  1064. end
  1065. end
  1066.  
  1067. function untagHumanoid(humanoid)
  1068. if humanoid ~= nil then
  1069. local tag = humanoid:findFirstChild("creator")
  1070. if tag ~= nil then
  1071.  
  1072. tag.Parent = nil
  1073. end
  1074. end
  1075. end
  1076.  
  1077. t, s = r.Stepped:wait()
  1078.  
  1079. d = t + 10.0 - s
  1080. connection = shaft.Touched:connect(blow)
  1081.  
  1082. while t < d do
  1083. fly()
  1084. t = r.Stepped:wait()
  1085. end
  1086.  
  1087. shaft:remove()
  1088. end;
  1089. function() local Rocket = Instance.new("Part")
  1090. local Tool = script.Parent
  1091.  
  1092. Rocket.Locked = true
  1093. Rocket.BackSurface = 0
  1094. Rocket.BottomSurface = 0
  1095. Rocket.FrontSurface = 0
  1096. Rocket.LeftSurface = 0
  1097. Rocket.RightSurface = 0
  1098. Rocket.TopSurface = 0
  1099. Rocket.Reflectance=0.2
  1100. Rocket.Size = Vector3.new(1,1,7)
  1101. Rocket.BrickColor = BrickColor.new"Really red"
  1102. Rocket.CanCollide=false
  1103.  
  1104. Tool.RocketScript:clone().Parent = Rocket
  1105. Tool.Explosion:clone().Parent = Rocket
  1106.  
  1107.  
  1108. function fire(vTarget)
  1109.  
  1110. local sound = script.Parent:findFirstChild("GunSound")
  1111. if sound == nil then
  1112. sound = Instance.new("Sound")
  1113. sound.Name = "GunSound"
  1114. sound.SoundId = "http://www.roblox.com/asset/?id=1369158"
  1115. sound.Volume = 1
  1116. sound.Parent = Rocket
  1117. end
  1118. sound:play()
  1119.  
  1120. vHandle = script.Parent
  1121.  
  1122. local dir = vTarget - vHandle.Position
  1123.  
  1124. dir = computeDirection(dir)
  1125.  
  1126. local missile = Rocket:clone()
  1127.  
  1128. local pos = vHandle.Position + (dir * 30)
  1129.  
  1130. missile.CFrame = CFrame.new(pos, pos + dir)
  1131.  
  1132. missile.RocketScript.Disabled = false
  1133.  
  1134. missile.Parent = game.Workspace
  1135. end
  1136.  
  1137. function computeDirection(vec)
  1138. local lenSquared = vec.magnitude * vec.magnitude
  1139. local invSqrt = 1 / math.sqrt(lenSquared)
  1140. return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
  1141. end
  1142.  
  1143. enabled=true
  1144. function onClicked()
  1145. if enabled==false then return end
  1146. enabled=false
  1147. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  1148. if a.Name=="launch" then
  1149. a.BrickColor=BrickColor.new("Bright red")
  1150. end
  1151. end
  1152. fire(script.Parent.CFrame.lookVector*1000000)
  1153. wait(1)
  1154. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  1155. if a.Name=="launch" then
  1156. a.BrickColor=BrickColor.new("Really black")
  1157. end
  1158. end
  1159. enabled=true
  1160. end
  1161.  
  1162. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  1163. if a.Name=="launch" then
  1164. a.ClickDetector.MouseClick:connect(onClicked)
  1165. end
  1166. end
  1167.  
  1168. end;
  1169. function() --------------MADE BY Radioaktiivinen
  1170. --------------Should be configurable with some crappy configuration tool of roblox >_>
  1171. local seat=script.Parent
  1172. local data=seat.Configuration
  1173. local owner=nil
  1174. local running=false
  1175. local x=0
  1176. local y=0
  1177.  
  1178. seat.ChildAdded:connect(
  1179. function(w)
  1180. if w.className=="Weld" and w.Name=="SeatWeld" then
  1181. local char=w.Part1.Parent
  1182. local player=game.Players:FindFirstChild(char.Name)
  1183. if player~=nil then
  1184. owner=player
  1185. seat.ChildRemoved:connect(
  1186. function(w2)
  1187. if w2==w then
  1188. owner=nil
  1189. end
  1190. end
  1191. )
  1192. seat.BodyVelocity.maxForce=Vector3.new(1,1,1)*data.MaxForce.Value
  1193. seat.BodyGyro.maxTorque=Vector3.new(1,1,1)*50000
  1194. local spd=0
  1195. local gui=seat.ScreenGui:clone()
  1196. gui.Parent=player.PlayerGui
  1197. gui.Frame.Faster.MouseButton1Click:connect(
  1198. function()
  1199. spd=math.min(spd+data.MaxSpeed.Value/20,data.MaxSpeed.Value)
  1200. gui.Frame.Speed.Text=math.floor(spd)
  1201. end
  1202. )
  1203. gui.Frame.Slower.MouseButton1Click:connect(
  1204. function()
  1205. spd=math.max(spd-data.MaxSpeed.Value/20,0)
  1206. gui.Frame.Speed.Text=math.floor(spd)
  1207. end
  1208. )
  1209. while owner==player do
  1210. seat.BodyVelocity.velocity=seat.CFrame.lookVector*spd
  1211. wait()
  1212. end
  1213. gui:remove()
  1214. seat.BodyVelocity.velocity=Vector3.new(0,0,0)
  1215. seat.BodyVelocity.maxForce=Vector3.new(0,0,0)
  1216. seat.BodyGyro.maxTorque=Vector3.new(0,0,0)
  1217. end
  1218. end
  1219. end
  1220. )
  1221.  
  1222. seat.Changed:connect(
  1223. function()
  1224. if not running then
  1225. local cur=seat.Steer
  1226. local cur2=seat.Throttle
  1227. running=true
  1228. while (cur~=0 or cur2~=0) do
  1229. y=y-seat.Steer*data.TurnSpeed.Value
  1230. x=x-seat.Throttle*data.TurnSpeed.Value
  1231. seat.BodyGyro.cframe=CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(y),0)*CFrame.Angles(math.rad(x),0,0)
  1232. wait()
  1233. end
  1234. running=false
  1235. end
  1236. end
  1237. ) end;
  1238. function() r = game:service("RunService")
  1239.  
  1240. shaft = script.Parent
  1241. position = shaft.Position
  1242.  
  1243. moveDir=shaft.CFrame.lookVector
  1244.  
  1245. function fly()
  1246. direction = moveDir
  1247. position = position + direction *30
  1248. error = position - shaft.Position
  1249. shaft.Velocity = 5*error
  1250. end
  1251.  
  1252. function blow(hit)
  1253. if string.lower(hit.Name)=="cannon" then return end
  1254. explosion = Instance.new("Explosion")
  1255. explosion.Position = shaft.Position
  1256. explosion.BlastRadius = 7
  1257. -- find instigator tag
  1258. local creator = script.Parent:findFirstChild("creator")
  1259. if creator ~= nil then
  1260. explosion.Hit:connect(function(part, distance) onPlayerBlownUp(part, distance, creator) end)
  1261. end
  1262.  
  1263. explosion.Parent = game.Workspace
  1264. connection:disconnect()
  1265. wait(.1)
  1266. shaft:remove()
  1267. end
  1268.  
  1269. function onPlayerBlownUp(part, distance, creator)
  1270.  
  1271. if part.Name == "Head" then
  1272.  
  1273. local humanoid = part.Parent.Humanoid
  1274. tagHumanoid(humanoid, creator)
  1275. end
  1276. end
  1277.  
  1278. function tagHumanoid(humanoid, creator)
  1279. -- tag does not need to expire iff all explosions lethal
  1280.  
  1281. if creator ~= nil then
  1282. local new_tag = creator:clone()
  1283. new_tag.Parent = humanoid
  1284.  
  1285. end
  1286. end
  1287.  
  1288. function untagHumanoid(humanoid)
  1289. if humanoid ~= nil then
  1290. local tag = humanoid:findFirstChild("creator")
  1291. if tag ~= nil then
  1292.  
  1293. tag.Parent = nil
  1294. end
  1295. end
  1296. end
  1297.  
  1298. t, s = r.Stepped:wait()
  1299.  
  1300. d = t + 10.0 - s
  1301. connection = shaft.Touched:connect(blow)
  1302.  
  1303. while t < d do
  1304. fly()
  1305. t = r.Stepped:wait()
  1306. end
  1307.  
  1308. shaft:remove()
  1309. end;
  1310. function() local Rocket = Instance.new("Part")
  1311. local Tool = script.Parent
  1312.  
  1313. Rocket.Locked = true
  1314. Rocket.BackSurface = 0
  1315. Rocket.BottomSurface = 0
  1316. Rocket.FrontSurface = 0
  1317. Rocket.LeftSurface = 0
  1318. Rocket.RightSurface = 0
  1319. Rocket.TopSurface = 0
  1320. Rocket.Reflectance=0.2
  1321. Rocket.Size = Vector3.new(1,1,7)
  1322. Rocket.BrickColor = BrickColor.new"Really red"
  1323. Rocket.CanCollide=false
  1324.  
  1325. Tool.RocketScript:clone().Parent = Rocket
  1326. Tool.Explosion:clone().Parent = Rocket
  1327.  
  1328.  
  1329. function fire(vTarget)
  1330.  
  1331. local sound = script.Parent:findFirstChild("GunSound")
  1332. if sound == nil then
  1333. sound = Instance.new("Sound")
  1334. sound.Name = "GunSound"
  1335. sound.SoundId = "http://www.roblox.com/asset/?id=1369158"
  1336. sound.Volume = 1
  1337. sound.Parent = Rocket
  1338. end
  1339. sound:play()
  1340.  
  1341. vHandle = script.Parent
  1342.  
  1343. local dir = vTarget - vHandle.Position
  1344.  
  1345. dir = computeDirection(dir)
  1346.  
  1347. local missile = Rocket:clone()
  1348.  
  1349. local pos = vHandle.Position + (dir * 30)
  1350.  
  1351. missile.CFrame = CFrame.new(pos, pos + dir)
  1352.  
  1353. missile.RocketScript.Disabled = false
  1354.  
  1355. missile.Parent = game.Workspace
  1356. end
  1357.  
  1358. function computeDirection(vec)
  1359. local lenSquared = vec.magnitude * vec.magnitude
  1360. local invSqrt = 1 / math.sqrt(lenSquared)
  1361. return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
  1362. end
  1363.  
  1364. enabled=true
  1365. function onClicked()
  1366. if enabled==false then return end
  1367. enabled=false
  1368. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  1369. if a.Name=="launch" then
  1370. a.BrickColor=BrickColor.new("Bright red")
  1371. end
  1372. end
  1373. fire(script.Parent.CFrame.lookVector*1000000)
  1374. wait(1)
  1375. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  1376. if a.Name=="launch" then
  1377. a.BrickColor=BrickColor.new("Really black")
  1378. end
  1379. end
  1380. enabled=true
  1381. end
  1382.  
  1383. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  1384. if a.Name=="launch" then
  1385. a.ClickDetector.MouseClick:connect(onClicked)
  1386. end
  1387. end
  1388.  
  1389. end;
  1390. function() local sp = script.Parent
  1391.  
  1392. local function pressed(part)
  1393. local parent = part.Parent
  1394. if game.Players:GetPlayerFromCharacter(parent) then
  1395. sp.backlight.Brightness = 4
  1396. sp.frontlight.Brightness = 4
  1397. sp.Sound:play()
  1398. wait()
  1399. sp.Transparency = .1
  1400. wait()
  1401. sp.Transparency = .2
  1402. wait()
  1403. sp.Transparency = .3
  1404. wait()
  1405. sp.Transparency = .4
  1406. wait()
  1407. sp.Transparency = .5
  1408. sp.CanCollide = false
  1409. wait(1.5)
  1410. sp.backlight.Brightness = 0
  1411. sp.frontlight.Brightness = 0
  1412. sp.Transparency = .4
  1413. wait()
  1414. sp.Transparency = .3
  1415. wait()
  1416. sp.Transparency = .2
  1417. wait()
  1418. sp.Transparency = .1
  1419. wait()
  1420. sp.Transparency = 0
  1421. sp.CanCollide = true
  1422. end
  1423. end
  1424.  
  1425. sp.Touched:connect(pressed)
  1426.  
  1427.  
  1428.  
  1429.  
  1430. end;
  1431. function() local sp = script.Parent
  1432.  
  1433. local function pressed(part)
  1434. local parent = part.Parent
  1435. if game.Players:GetPlayerFromCharacter(parent) then
  1436. sp.backlight.Brightness = 4
  1437. sp.frontlight.Brightness = 4
  1438. sp.Sound:play()
  1439. wait()
  1440. sp.Transparency = .1
  1441. wait()
  1442. sp.Transparency = .2
  1443. wait()
  1444. sp.Transparency = .3
  1445. wait()
  1446. sp.Transparency = .4
  1447. wait()
  1448. sp.Transparency = .5
  1449. sp.CanCollide = false
  1450. wait(1.5)
  1451. sp.backlight.Brightness = 0
  1452. sp.frontlight.Brightness = 0
  1453. sp.Transparency = .4
  1454. wait()
  1455. sp.Transparency = .3
  1456. wait()
  1457. sp.Transparency = .2
  1458. wait()
  1459. sp.Transparency = .1
  1460. wait()
  1461. sp.Transparency = 0
  1462. sp.CanCollide = true
  1463. end
  1464. end
  1465.  
  1466. sp.Touched:connect(pressed)
  1467.  
  1468.  
  1469.  
  1470.  
  1471. end;
  1472. function() local sp = script.Parent
  1473.  
  1474. sp.Platform.BodyPosition.position = sp.Start.Position
  1475.  
  1476. local function onClicked1()
  1477. sp.Platform.BodyPosition.position = sp.Finish.Position
  1478. sp.ButtonSound:play()
  1479. end
  1480.  
  1481. sp.Button1.ClickDetector.MouseClick:connect(onClicked1)
  1482.  
  1483.  
  1484. local function onClicked2()
  1485. sp.Platform.BodyPosition.position = sp.Start.Position
  1486. sp.ButtonSound:play()
  1487. end
  1488.  
  1489. sp.Button2.ClickDetector.MouseClick:connect(onClicked2)
  1490.  
  1491. end;
  1492. function() r = game:service("RunService")
  1493.  
  1494. shaft = script.Parent
  1495. position = shaft.Position
  1496.  
  1497. moveDir=shaft.CFrame.lookVector
  1498.  
  1499. function fly()
  1500. direction = moveDir
  1501. position = position + direction *30
  1502. error = position - shaft.Position
  1503. shaft.Velocity = 5*error
  1504. end
  1505.  
  1506. function blow(hit)
  1507. if string.lower(hit.Name)=="cannon" then return end
  1508. explosion = Instance.new("Explosion")
  1509. explosion.Position = shaft.Position
  1510. explosion.BlastRadius = 7
  1511. -- find instigator tag
  1512. local creator = script.Parent:findFirstChild("creator")
  1513. if creator ~= nil then
  1514. explosion.Hit:connect(function(part, distance) onPlayerBlownUp(part, distance, creator) end)
  1515. end
  1516.  
  1517. explosion.Parent = game.Workspace
  1518. connection:disconnect()
  1519. wait(.1)
  1520. shaft:remove()
  1521. end
  1522.  
  1523. function onPlayerBlownUp(part, distance, creator)
  1524.  
  1525. if part.Name == "Head" then
  1526.  
  1527. local humanoid = part.Parent.Humanoid
  1528. tagHumanoid(humanoid, creator)
  1529. end
  1530. end
  1531.  
  1532. function tagHumanoid(humanoid, creator)
  1533. -- tag does not need to expire iff all explosions lethal
  1534.  
  1535. if creator ~= nil then
  1536. local new_tag = creator:clone()
  1537. new_tag.Parent = humanoid
  1538.  
  1539. end
  1540. end
  1541.  
  1542. function untagHumanoid(humanoid)
  1543. if humanoid ~= nil then
  1544. local tag = humanoid:findFirstChild("creator")
  1545. if tag ~= nil then
  1546.  
  1547. tag.Parent = nil
  1548. end
  1549. end
  1550. end
  1551.  
  1552. t, s = r.Stepped:wait()
  1553.  
  1554. d = t + 10.0 - s
  1555. connection = shaft.Touched:connect(blow)
  1556.  
  1557. while t < d do
  1558. fly()
  1559. t = r.Stepped:wait()
  1560. end
  1561.  
  1562. shaft:remove()
  1563. end;
  1564. function() local Rocket = Instance.new("Part")
  1565. local Tool = script.Parent
  1566.  
  1567. Rocket.Locked = true
  1568. Rocket.BackSurface = 0
  1569. Rocket.BottomSurface = 0
  1570. Rocket.FrontSurface = 0
  1571. Rocket.LeftSurface = 0
  1572. Rocket.RightSurface = 0
  1573. Rocket.TopSurface = 0
  1574. Rocket.Reflectance=0.2
  1575. Rocket.Size = Vector3.new(1,1,7)
  1576. Rocket.BrickColor = BrickColor.new"Really red"
  1577. Rocket.CanCollide=false
  1578.  
  1579. Tool.RocketScript:clone().Parent = Rocket
  1580. Tool.Explosion:clone().Parent = Rocket
  1581.  
  1582.  
  1583. function fire(vTarget)
  1584.  
  1585. local sound = script.Parent:findFirstChild("GunSound")
  1586. if sound == nil then
  1587. sound = Instance.new("Sound")
  1588. sound.Name = "GunSound"
  1589. sound.SoundId = "http://www.roblox.com/asset/?id=1369158"
  1590. sound.Volume = 1
  1591. sound.Parent = Rocket
  1592. end
  1593. sound:play()
  1594.  
  1595. vHandle = script.Parent
  1596.  
  1597. local dir = vTarget - vHandle.Position
  1598.  
  1599. dir = computeDirection(dir)
  1600.  
  1601. local missile = Rocket:clone()
  1602.  
  1603. local pos = vHandle.Position + (dir * 30)
  1604.  
  1605. missile.CFrame = CFrame.new(pos, pos + dir)
  1606.  
  1607. missile.RocketScript.Disabled = false
  1608.  
  1609. missile.Parent = game.Workspace
  1610. end
  1611.  
  1612. function computeDirection(vec)
  1613. local lenSquared = vec.magnitude * vec.magnitude
  1614. local invSqrt = 1 / math.sqrt(lenSquared)
  1615. return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
  1616. end
  1617.  
  1618. enabled=true
  1619. function onClicked()
  1620. if enabled==false then return end
  1621. enabled=false
  1622. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  1623. if a.Name=="launch" then
  1624. a.BrickColor=BrickColor.new("Bright red")
  1625. end
  1626. end
  1627. fire(script.Parent.CFrame.lookVector*1000000)
  1628. wait(1)
  1629. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  1630. if a.Name=="launch" then
  1631. a.BrickColor=BrickColor.new("Really black")
  1632. end
  1633. end
  1634. enabled=true
  1635. end
  1636.  
  1637. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  1638. if a.Name=="launch" then
  1639. a.ClickDetector.MouseClick:connect(onClicked)
  1640. end
  1641. end
  1642.  
  1643. end;
  1644. function() --------------MADE BY Radioaktiivinen
  1645. --------------Should be configurable with some crappy configuration tool of roblox >_>
  1646. local seat=script.Parent
  1647. local data=seat.Configuration
  1648. local owner=nil
  1649. local running=false
  1650. local x=0
  1651. local y=0
  1652.  
  1653. seat.ChildAdded:connect(
  1654. function(w)
  1655. if w.className=="Weld" and w.Name=="SeatWeld" then
  1656. local char=w.Part1.Parent
  1657. local player=game.Players:FindFirstChild(char.Name)
  1658. if player~=nil then
  1659. owner=player
  1660. seat.ChildRemoved:connect(
  1661. function(w2)
  1662. if w2==w then
  1663. owner=nil
  1664. end
  1665. end
  1666. )
  1667. seat.BodyVelocity.maxForce=Vector3.new(1,1,1)*data.MaxForce.Value
  1668. seat.BodyGyro.maxTorque=Vector3.new(1,1,1)*50000
  1669. local spd=0
  1670. local gui=seat.ScreenGui:clone()
  1671. gui.Parent=player.PlayerGui
  1672. gui.Frame.Faster.MouseButton1Click:connect(
  1673. function()
  1674. spd=math.min(spd+data.MaxSpeed.Value/20,data.MaxSpeed.Value)
  1675. gui.Frame.Speed.Text=math.floor(spd)
  1676. end
  1677. )
  1678. gui.Frame.Slower.MouseButton1Click:connect(
  1679. function()
  1680. spd=math.max(spd-data.MaxSpeed.Value/20,0)
  1681. gui.Frame.Speed.Text=math.floor(spd)
  1682. end
  1683. )
  1684. while owner==player do
  1685. seat.BodyVelocity.velocity=seat.CFrame.lookVector*spd
  1686. wait()
  1687. end
  1688. gui:remove()
  1689. seat.BodyVelocity.velocity=Vector3.new(0,0,0)
  1690. seat.BodyVelocity.maxForce=Vector3.new(0,0,0)
  1691. seat.BodyGyro.maxTorque=Vector3.new(0,0,0)
  1692. end
  1693. end
  1694. end
  1695. )
  1696.  
  1697. seat.Changed:connect(
  1698. function()
  1699. if not running then
  1700. local cur=seat.Steer
  1701. local cur2=seat.Throttle
  1702. running=true
  1703. while (cur~=0 or cur2~=0) do
  1704. y=y-seat.Steer*data.TurnSpeed.Value
  1705. x=x-seat.Throttle*data.TurnSpeed.Value
  1706. seat.BodyGyro.cframe=CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(y),0)*CFrame.Angles(math.rad(x),0,0)
  1707. wait()
  1708. end
  1709. running=false
  1710. end
  1711. end
  1712. ) end;
  1713. function() r = game:service("RunService")
  1714.  
  1715. shaft = script.Parent
  1716. position = shaft.Position
  1717.  
  1718. moveDir=shaft.CFrame.lookVector
  1719.  
  1720. function fly()
  1721. direction = moveDir
  1722. position = position + direction *30
  1723. error = position - shaft.Position
  1724. shaft.Velocity = 5*error
  1725. end
  1726.  
  1727. function blow(hit)
  1728. if string.lower(hit.Name)=="cannon" then return end
  1729. explosion = Instance.new("Explosion")
  1730. explosion.Position = shaft.Position
  1731. explosion.BlastRadius = 7
  1732. -- find instigator tag
  1733. local creator = script.Parent:findFirstChild("creator")
  1734. if creator ~= nil then
  1735. explosion.Hit:connect(function(part, distance) onPlayerBlownUp(part, distance, creator) end)
  1736. end
  1737.  
  1738. explosion.Parent = game.Workspace
  1739. connection:disconnect()
  1740. wait(.1)
  1741. shaft:remove()
  1742. end
  1743.  
  1744. function onPlayerBlownUp(part, distance, creator)
  1745.  
  1746. if part.Name == "Head" then
  1747.  
  1748. local humanoid = part.Parent.Humanoid
  1749. tagHumanoid(humanoid, creator)
  1750. end
  1751. end
  1752.  
  1753. function tagHumanoid(humanoid, creator)
  1754. -- tag does not need to expire iff all explosions lethal
  1755.  
  1756. if creator ~= nil then
  1757. local new_tag = creator:clone()
  1758. new_tag.Parent = humanoid
  1759.  
  1760. end
  1761. end
  1762.  
  1763. function untagHumanoid(humanoid)
  1764. if humanoid ~= nil then
  1765. local tag = humanoid:findFirstChild("creator")
  1766. if tag ~= nil then
  1767.  
  1768. tag.Parent = nil
  1769. end
  1770. end
  1771. end
  1772.  
  1773. t, s = r.Stepped:wait()
  1774.  
  1775. d = t + 10.0 - s
  1776. connection = shaft.Touched:connect(blow)
  1777.  
  1778. while t < d do
  1779. fly()
  1780. t = r.Stepped:wait()
  1781. end
  1782.  
  1783. shaft:remove()
  1784. end;
  1785. function() local Rocket = Instance.new("Part")
  1786. local Tool = script.Parent
  1787.  
  1788. Rocket.Locked = true
  1789. Rocket.BackSurface = 0
  1790. Rocket.BottomSurface = 0
  1791. Rocket.FrontSurface = 0
  1792. Rocket.LeftSurface = 0
  1793. Rocket.RightSurface = 0
  1794. Rocket.TopSurface = 0
  1795. Rocket.Reflectance=0.2
  1796. Rocket.Size = Vector3.new(1,1,7)
  1797. Rocket.BrickColor = BrickColor.new"Really red"
  1798. Rocket.CanCollide=false
  1799.  
  1800. Tool.RocketScript:clone().Parent = Rocket
  1801. Tool.Explosion:clone().Parent = Rocket
  1802.  
  1803.  
  1804. function fire(vTarget)
  1805.  
  1806. local sound = script.Parent:findFirstChild("GunSound")
  1807. if sound == nil then
  1808. sound = Instance.new("Sound")
  1809. sound.Name = "GunSound"
  1810. sound.SoundId = "http://www.roblox.com/asset/?id=1369158"
  1811. sound.Volume = 1
  1812. sound.Parent = Rocket
  1813. end
  1814. sound:play()
  1815.  
  1816. vHandle = script.Parent
  1817.  
  1818. local dir = vTarget - vHandle.Position
  1819.  
  1820. dir = computeDirection(dir)
  1821.  
  1822. local missile = Rocket:clone()
  1823.  
  1824. local pos = vHandle.Position + (dir * 30)
  1825.  
  1826. missile.CFrame = CFrame.new(pos, pos + dir)
  1827.  
  1828. missile.RocketScript.Disabled = false
  1829.  
  1830. missile.Parent = game.Workspace
  1831. end
  1832.  
  1833. function computeDirection(vec)
  1834. local lenSquared = vec.magnitude * vec.magnitude
  1835. local invSqrt = 1 / math.sqrt(lenSquared)
  1836. return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
  1837. end
  1838.  
  1839. enabled=true
  1840. function onClicked()
  1841. if enabled==false then return end
  1842. enabled=false
  1843. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  1844. if a.Name=="launch" then
  1845. a.BrickColor=BrickColor.new("Bright red")
  1846. end
  1847. end
  1848. fire(script.Parent.CFrame.lookVector*1000000)
  1849. wait(1)
  1850. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  1851. if a.Name=="launch" then
  1852. a.BrickColor=BrickColor.new("Really black")
  1853. end
  1854. end
  1855. enabled=true
  1856. end
  1857.  
  1858. for count,a in pairs(script.Parent.Parent:GetChildren()) do
  1859. if a.Name=="launch" then
  1860. a.ClickDetector.MouseClick:connect(onClicked)
  1861. end
  1862. end
  1863.  
  1864. end;}local ActualScripts = {}
  1865. function s(var)
  1866. local func = table.remove(Scripts,1)
  1867. setfenv(func,setmetatable({script=var,require=fake_require or require,global=genv},{
  1868. __index = getfenv(func),
  1869. }))
  1870. table.insert(ActualScripts,coroutine.wrap(func))
  1871. end
  1872. Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  1873. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  1874. function(t,f)
  1875. for a,b in pairs(t) do
  1876. f(a,b)
  1877. end
  1878. end
  1879. local Types = {
  1880. Color3 = Color3.new,
  1881. Vector3 = Vector3.new,
  1882. Vector2 = Vector2.new,
  1883. UDim = UDim.new,
  1884. UDim2 = UDim2.new,
  1885. CFrame = CFrame.new,
  1886. Rect = Rect.new,
  1887. NumberRange = NumberRange.new,
  1888. BrickColor = BrickColor.new,
  1889. PhysicalProperties = PhysicalProperties.new,
  1890. NumberSequence = function(...)
  1891. local a = {...}
  1892. local t = {}
  1893. repeat
  1894. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  1895. until #a==0
  1896. return NumberSequence.new(t)
  1897. end,
  1898. ColorSequence = function(...)
  1899. local a = {...}
  1900. local t = {}
  1901. repeat
  1902. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  1903. until #a==0
  1904. return ColorSequence.new(t)
  1905. end,
  1906. number = tonumber,
  1907. boolean = function(a)
  1908. return a=="1"
  1909. end
  1910. }
  1911. split = function(str,sep)
  1912. if not str then return end
  1913. local fields = {}
  1914. local ConcatNext = false
  1915. str:gsub(("([^%s]+)"):format(sep),function(c)
  1916. if ConcatNext == true then
  1917. fields[#fields] = fields[#fields]..sep..c
  1918. ConcatNext = false
  1919. else
  1920. fields[#fields+1] = c
  1921. end
  1922. if c:sub(#c)=="\\" then
  1923. c = fields[#fields]
  1924. fields[#fields] = c:sub(1,#c-1)
  1925. ConcatNext = true
  1926. end
  1927. end)
  1928. return fields
  1929. end
  1930. RemoveAndSplit = function(t)
  1931. return split(table_remove(t,1),comma)
  1932. end
  1933. t = split(str,";")
  1934. props = RemoveAndSplit(t)
  1935. classes = RemoveAndSplit(t)
  1936. values = split(table_remove(t,1),'|')
  1937. ICList = RemoveAndSplit(t)
  1938. InstanceList = {}
  1939. Model = inst"Model"
  1940. CurPar = Model
  1941. table_foreach(t,function(ct,c)
  1942. if c=="n" or c=="p" then
  1943. CurPar = c=="n" and LastIns or CurPar[parnt]
  1944. else
  1945. ct = split(c,"|")
  1946. local class = classes[tonum(table_remove(ct,1))]
  1947. if class=="UnionOperation" then
  1948. LastIns = {UsePartColor="1"}
  1949. else
  1950. LastIns = inst(class)
  1951. if LastIns:IsA"Script" then
  1952. s(LastIns)
  1953. elseif LastIns:IsA("ModuleScript") then
  1954. ms(LastIns)
  1955. end
  1956. end
  1957.  
  1958. local function SetProperty(LastIns,p,str,s)
  1959. s = Types[typeof(LastIns[p])]
  1960. if p=="CustomPhysicalProperties" then
  1961. s = PhysicalProperties.new
  1962. end
  1963. if s then
  1964. LastIns[p] = s(unpack(split(str,comma)))
  1965. else
  1966. LastIns[p] = str
  1967. end
  1968. end
  1969.  
  1970. local UnionData
  1971. table_foreach(ct,function(s,p,a,str)
  1972. a = p:find":"
  1973. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  1974. if p=="UnionData" then
  1975. UnionData = split(str," ")
  1976. return
  1977. end
  1978. if class=="UnionOperation" then
  1979. LastIns[p] = str
  1980. return
  1981. end
  1982. SetProperty(LastIns,p,str)
  1983. end)
  1984.  
  1985. if UnionData then
  1986. local LI_Data = LastIns
  1987. LastIns = DecodeUnion(UnionData)
  1988. table_foreach(LI_Data,function(p,str)
  1989. SetProperty(LastIns,p,str)
  1990. end)
  1991. end
  1992. table.insert(InstanceList,LastIns)
  1993. LastIns[parnt] = CurPar
  1994. end
  1995. end)
  1996. table_remove(ICList,1)
  1997. table_foreach(ICList,function(a,b)
  1998. b = split(b,">")
  1999. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  2000. end)
  2001.  
  2002. return Model:GetChildren()
  2003. end
  2004.  
  2005. local Objects = Decode('Name,Anchored,Color,Position,Orientation,Size,BottomSurface,TopSurface,Material,Transparency,CanCollide,BackSurface,LeftSurface,MaxActivationDistance,Texture,Face,MaxForce,P,D,MaxTorque,PlaybackSpeed,SoundId,Volume,RightSurface,FrontSurface,PlayOnRemove,C0,C1,Part0,Part1,Enabled,Heat,SecondaryColor,CFrame,Velocity,Value,BackgroundColor3,BorderSizePixel,SizeConstraint,BorderColor3,Text,TextColor3,TextSize,Range,Brightness,Shadows;Part,Model,ClickDetector,Decal,BodyPosition,BodyGyro,Script,Sound,Weld,WedgePart,Fire,VehicleSeat,BodyVelocity,Configuration,NumberValue,ScreenGui,Frame,TextButton,TextLabel,SurfaceLight,SpawnLocation;Part|'
  2006. ..'1|0.3882,0.3725,0.3843|-142.1,2861.5473,124.9419|-90,0,0|0.2,32.5999,1.2|0|0.549,0.3568,0.6235|832|0.3999|-141.5,2856.1489,124.9419|1,10,33|0|-142.1,2850.7468,124.9419|-141.5,2850.6491,124.9419|0,-90,90|1,47,1|-142.1,2856.1489,108.0419|0.2,1.2,12|-140.9,2861.5473,124.9419|0.2,32.6,1.2|-141.5,2861.6489,124.9419|-140.9,2850.7468,124.9419|-141.5,2856.1489,100.9419|1,1,10|0.4549,0.5254,0.6156|0.5|-141.5,2856.1489,104.442|1,10,6|-141.5,2856.1489,141.9419|-141.5,2856.1489,107.942|-140.9,2856.1489,108.0419|-142.1,2861.5473,2.9419|-141.5,2856.145,-14.0581|-142.1,2856.145,19.8419|-141.5,2856.145,26.9419|-141.5,2856.145,2.9419|-141.5,2856.14'
  2007. ..'5,19.9419|-140.9,2856.145,-13.9581|-140.9,2856.145,19.8419|-140.9,2850.7468,2.9419|-142.1,2850.7468,2.9419|-141.5,2856.145,-17.5581|-141.5,2856.145,-21.0581|-141.5,2850.6452,2.9419|-141.5,2856.145,23.4419|-142.1,2856.145,-13.9581|-140.9,2861.5473,2.9419|-141.5,2861.6489,2.9419|-140.9,2856.1489,141.8419|-142.1,2856.1489,141.8419|-141.5,2856.1489,148.9418|-141.5,2856.1489,145.4418|-117.5,2850.6452,-21.0581|0,0,90|-120.7,2851.6452,63.5419|0,90,0|10.1999,1,1|-125.5,2857.645,73.9419|1,11,1|-122.5,2863.645,63.5419|8.1999,1,5|10|-125.5,2857.645,53.9419|-125.5,2869.645,53.9419|-125.5,2869.6606,63.9419|0,180,0|1,11,19|-125.5,2857.645,63.941'
  2008. ..'9|-125.5,2875.6567,63.9419|19,1,1|-125.5,2863.6567,63.9419|-125.5,2851.6452,63.9419|-125.5,2869.645,73.9419|Elevator|Finish|0.4196,0.196,0.4862|-115.9002,2863.6411,63.542|0,-90,0|4,1,4|Button2|1,0,0|-115.5001,2867.0395,68.342|-89.9701,-139.6601,40.34|2,1,2|8|http://www.roblox.com/asset/?id=7559620|1|Platform|0.0666,0.0666,0.0666|-115.9002,2851.6452,63.542|8,1,8|4000,400000,4000|9000|7500|99999997952,0,99999997952|Start|Button1|-115.5001,2855.0434,68.342|-89.9701,0,0|http://www.roblox.com/asset/?id=32877095|ButtonSound|10|http://www.roblox.com/asset/?id=14863866|-115.5,2851.6452,53.9419|-117.5,2856.1489,100.942|1,10,47|-117.5,2850.6'
  2009. ..'491,100.942|-117.5,2850.6452,26.9419|-117.5,2861.6489,26.9419|-117.5,2862.6489,2.9419|1,47,47|-117.5,2856.145,-21.0581|-117.5,2861.6489,-21.0581|-117.5,2849.6452,2.9419|-117.5,2856.145,26.9419|0.949,0.9529,0.9529|-115.5,2852.6452,68.9419|1.5999,3,2|-115.5,2851.6452,73.9419|-119.7001,2857.645,68.1419|-115.5,2850.6452,63.9419|19,1,19|-116,2851.6452,68.1419|1,1,8.3999|-120.7001,2857.645,67.1419|-120.7,2857.645,59.9419|-115.5,2851.6452,58.9419|9.3999,1,1|-119.7,2857.645,58.9419|-115.5,2857.645,53.9419|-115.5,2863.645,53.9419|-115.5,2863.6567,56.9419|4.9999,1,19|-117.5,2849.6491,124.9419|-117.5,2861.6489,100.942|-115.5,2863.645,70.5419|'
  2010. ..'5.7999,1,19|-115.5,2865.145,68.9419|1.5999,2,2|-115.5,2863.645,73.9419|-115.5,2875.645,53.9419|-115.5,2857.645,73.9419|-115.5,2869.6606,53.9419|Ship|cannon|0.1058,0.1647,0.2078|-114.6017,2853.6447,-4.1605|1,1,13|6|2|RocketScript|Server Launcher|GunSound|http://www.roblox.com/asset/?id=1369158|Explosion|rbxasset://sounds/collide.wav|0,-0.5,0,1,0,0,-0,-0,-1,0,1,0|-5,-1.5001,7.4998,0,1,-0.0001,0,0,1,1,-0.0001,-0.0001|-1.9999,-1.5001,1.4998,0,1,-0.0001,0,0,1,1,-0.0001,-0.0001|Plane|0.1|-115.6005,2854.6447,3.3404|0,90,0.0099|6,3,9|1,0.8156,0|30|25|0,-1.5,0,1,0,0,-0,-0,-1,0,1,0|-1.9993,-0.9991,-2.9987,0,1,0,-0.0002,-0.0001,1,1,-0.0001,0.'
  2011. ..'0001|3.4994,-1.4995,0.0001,0,1,0,-0.0002,-0.0001,1,1,-0.0001,0.0001|-112.6018,2851.6447,-2.6607|0,-180,180|3,3,4|0,0,2,1,0,0,0,1,0,0,0,1|0.0007,-2.4984,-1.5029,-0.0001,1,-0.0001,0,0,1,1,0,-0.0001|1.5,0,0,0,0,1,0,1,0,-1,-0,-0|-1.5001,0,5.9999,0,0,1,0,1,-0.0001,-1,0,0|-113.6,2850.6452,3.3403|0,-180,-180|5,1,8|0,0,-4,-1,-0,-0,0,1,0,-0,-0,-1|-1.0058,-2.0098,4.4792,-0.0001,-1,-0.0001,0.0001,-0.0001,1,-1,0,0.0001|0.0011,1.0004,-2.9989,1,0,-0.0001,-0.0001,0,-1,-0.0001,1,0|-2.5,0,0,-0,-0,-1,0,1,0,1,0,0|2.9999,1,-0.0001,0,0,-1,0,1,0,1,-0.0001,0|2.5,0,0,0,0,1,0,1,0,-1,-0,-0|-1.4983,0.9995,-0.0011,0,-0.0001,1,-0.0001,1,0,-1,-0.0001,0|-109.601'
  2012. ..'8,2851.6447,3.3393|3,3,16|7.4998,-0.5001,4.9998,0,1,-0.0001,-0.0001,0,1,1,-0.0001,0|-119.0999,2851.6452,3.3403|6,3,8|-112.6018,2851.6447,9.3392|1.4999,-0.5001,1.9999,0,1,0,-0.0001,-0.0001,1,1,-0.0001,0|0,0,-2,-1,-0,-0,0,1,0,-0,-0,-1|0.0058,-2.4949,-1.492,-0.0001,-1,-0.0001,0,-0.0001,1,-1,0,0|-1.5,0,-6,-0.0001,-0.0001,1,-0.0001,1,0,-1,-0.0001,-0.0001|-113.6018,2852.145,6.339|5,2,2|0,0,-1,-1,-0,-0,0,1,0,-0,-0,-1|0.4938,-2.0111,4.4774,-0.0001,-1,-0.0001,0.0001,-0.0001,1,-1,0,0.0001|2.9983,-0.4996,-2.9987,0,0,-1,0,1,0,0.9999,-0.0001,0|-1.5,-0.5,-2.9997,-0.0001,-0.0001,1,-0.0001,1,0,-1,-0.0001,-0.0001|0,1,0,-1,-0,-0,0,0,1,0,1,0|-0.0018,'
  2013. ..'-0.4996,-2.9987,-1,0,0,0,0,1,0,1,-0.0001|0,-1,0,1,0,0,-0,-0,-1,0,1,0|-2.9987,-1.4994,1.9989,0,1,0.0001,-0.0001,-0.0002,1,1,-0.0001,0|-113.6013,2852.1457,0.3415|2.9986,-0.5005,2.9987,-0.0001,-0.0001,-1,-0.0001,1,-0.0001,1,0,-0.0001|-1.4995,-0.5009,2.9977,0,-0.0001,1,-0.0001,1,0,-1,-0.0001,0|-126.0982,2851.645,5.3392|0,89.9899,90|3,4,8|0,0,4,1,0,0,0,1,0,0,0,1|-2.9983,0.0004,-1.9993,0,-0.0002,1,-1,-0.0001,0,0,-1,-0.0002|-105.6034,2851.6435,9.8405|0,-180,90|3,5,13|0,-2.5,0,1,0,0,-0,-0,-1,0,1,0|1.4984,0.001,-6.5013,0,-0.0001,-1,-1,0,-0.0001,0,1,-0.0001|-111.11,2851.6389,13.834|0.0099,90,90|3,5,6|0,0,3,1,0,0,0,1,0,0,0,1|-0.0052,-2.5067,-'
  2014. ..'3.9937,1,0,-0.0001,0,-0.0001,1,0,-1,-0.0001|-1.5081,0.0059,-7.9948,0,1,0,-1,0,0,0,-0.0001,1|-105.6025,2851.6435,-3.1568|0,0,-90|0,0,6.5,1,0,0,0,1,0,0,0,1|0.0001,0.001,6.4974,-1,0,-0.0001,0,1,-0.0001,0,-0.0001,-1|1.4993,0.0012,6.4961,-0.0001,0,-1,1,-0.0001,-0.0001,-0.0001,-1,-0.0001|0.0019,-4.002,2.9966,1,0,0,0,-1,-0.0001,0,0,-1|-108.6019,2854.645,3.3406|0,-90,-0.01|6,3,5|1.5012,-2.9987,6.5002,-0.0002,-0.0001,-1,-0.0001,-1,0,-1,0,0.0001|-1.5014,-2.9996,6.4973,0,-0.0001,1,-0.0001,-1,-0.0001,1,-0.0001,-0.0001|0.9998,-1.5002,-0.0012,-0.0001,-1,-0.0001,0,-0.0001,1,-1,0,0|0,0,2.5,1,0,0,0,1,0,0,0,1|0.0003,0.0003,4.4986,-1,0,-0.0001,0,1,0,'
  2015. ..'0,0,-1|-118.0794,2851.6516,9.3495|0,-2,0,1,0,0,-0,-0,-1,0,1,0|1.0207,-0.0062,-4.0092,0,1,0.0001,-1,0,0,0,-0.0002,1|-126.0978,2851.6457,1.3402|0,89.9899,-90|-2.9979,-0.0003,1.9997,-0.0001,0.0001,1,1,0,0,-0.0001,1,-0.0002|-118.0806,2851.6499,-2.6549|-4.4809,-1.0048,3.9952,-0.0001,0.9999,-0.0001,1,0,-0.0001,-0.0001,-0.0001,-1|-4.4797,0.4956,0.9962,-0.0001,1,-0.0001,1,0,-0.0001,-0.0001,-0.0001,-1|1.0191,-0.0048,3.9952,-0.0001,0.9999,-0.0001,1,0,-0.0001,-0.0001,-0.0001,-1|-111.0989,2851.6452,-7.159|0,90,-90|-1.4972,-0.0008,7.9982,-0.0001,1,-0.0001,1,0,-0.0001,-0.0001,-0.0001,-1|0.1568,0.498,0.2784|-113.1,2851.6452,3.3404|0,0,0|0,0,0,0.9'
  2016. ..'945,-0.0037,0.1044,0,0.9993,0.0348,-0.1046,-0.0348,0.9939|MaxSpeed|100|MaxForce|100000|TurnSpeed|2|0.4,0,0,0|0.2,0,0.0399,0|Slower|0.3,0,1,0|0,0.5019,0|<<|0.4,1,0.4|24|Faster|0.6999,0,0,0|>>|Speed|0.3,0,0,0|0.4,0,1,0|0.5,-0.5,-0.0001,0,0.9999,0,-0.0001,0,1,0.9999,0,-0.0001|launch|-121.0999,2853.2453,3.3403|-90,-180,0|2,2.4,0.2|4|0,0,-0.1001,-1,-0,-0,0,1,0,-0,-0,-1|-2,-1.5,0,0.9999,0,0,0,0,1,0,-1,-0|-114.6017,2853.6447,10.8391|-118.6012,2853.6457,118.8417|-119.6006,2854.6447,126.3403|-116.6013,2851.6457,120.3417|0.0006,-2.5002,-1.5029,-0.0001,1,-0.0001,0,0,1,1,0,-0.0001|-1.5,0,0,-0,-0,-1,0,1,0,1,0,0|-0.0047,-0.0068,3.9815,-0.0001,1,'
  2017. ..'0,1,0,-0.0001,-0.0001,0,-1|-1.5,-0.5,1.9998,-0.0001,1,0,-0.0001,-0.0001,1,1,0,0|-117.5999,2850.6452,126.3404|0.9959,-2.0055,4.4831,-0.0001,1,-0.0001,0,0,1,1,0,-0.0001|0.001,1.0004,-2.999,1,0,-0.0001,-0.0001,0,-1,-0.0001,1,0|0,-0.5001,-0.4999,-0.0001,0.9999,0,-0.0001,-0.0001,1,0.9999,0,0|-113.6012,2851.6457,126.3414|0,0,-8,-1,-0,-0,0,1,0,-0,-0,-1|-0.0044,-2.5138,1.4948,-0.0001,-1,-0.0001,0,-0.0001,0.9999,-1,0,0|7.4998,-0.5,4.9999,-0.0001,1,-0.0001,-0.0001,0,1,1,0,0|1.4999,0,5.9998,0,-0.0001,-1,0,1,0,1,0,0|0.0009,-1.4994,0.9993,-0.0001,-1,-0.0001,0,-0.0001,1,-1,0,0|-0.0023,-2.4921,6.5069,-0.0001,-1,0,-0.0001,0,0.9999,-1,0,-0.0001|2.4'
  2018. ..'999,0.4999,-3,0,0,-1,-0.0001,1,0,1,0,0|2.5004,0.4991,2.9977,0,0,-1,-0.0001,1,0,1,0,0|0,0,8,1,0,0,0,1,0,0,0,1|0.0005,-2.4999,1.4971,-0.0001,1,-0.0001,0,0,1,1,0,-0.0001|0.0035,-2.4942,6.4914,0,1,-0.0001,-0.0001,0,1,1,-0.0001,0|1.5,0,-5.9999,-0.0001,0,-1,0,1,0,0.9999,-0.0001,0|2.4988,-1.0005,-0.001,-0.0001,0,-1,-0.0001,1,0,0.9999,0,-0.0001|-7.4999,-0.5,5,-0.0001,0.9999,-0.0001,0,-0.0001,1,0.9999,0,-0.0001|-123.0997,2851.6452,126.3404|3,0,0,0,0,1,0,1,0,-1,-0,-0|-2.499,0.5004,-2.9991,-0.0001,-0.0001,1,-0.0001,1,0,-1,-0.0001,-0.0001|-2.4984,0.4995,2.9986,-0.0001,-0.0001,1,-0.0001,1,0,-1,-0.0001,-0.0001|-2.5,-1,-0.0001,0,-0.0001,1,-0.0001'
  2019. ..',1,0,-1,-0.0001,0|-0.0007,-1.4995,-3.4992,0,1,0.0001,-0.0001,-0.0002,1,1,-0.0001,0|-2.0003,0,-0.1,-1,0,-0.0001,-0.0001,-1,-0.0001,-0.0001,-0.0001,1|-0.0037,-2.0062,-1.0168,-0.0001,1,-0.0001,0,0,1,1,0,-0.0001|-3,0,0,-0,-0,-1,0,1,0,1,0,0|0.0002,-1.9998,3.9983,-0.0001,1,0,1,0,-0.0002,-0.0002,0,-1|0.0006,-1.9994,3.9983,0,-1,-0.0001,-1,-0.0001,0.0001,-0.0002,0,-1|-116.6012,2851.6457,132.3413|-117.6015,2852.145,129.339|-0.0017,-0.4996,-2.9987,-1,-0.0001,-0.0001,-0.0001,-0.0001,1,-0.0001,1,0|-2.9988,-1.4994,1.9993,0,1,0.0001,-0.0001,-0.0002,1,1,-0.0001,0|-117.6009,2852.1457,123.3415|0,0,1,1,0,0,0,1,0,0,0,1|-0.5045,-2.0066,4.482,-0.0001,1,'
  2020. ..'-0.0001,0,0,1,1,0,-0.0001|2.9988,-1.4996,1.9994,0,1,0.0001,-0.0001,-0.0002,1,1,-0.0001,0|-130.0982,2851.645,128.3393|-109.6093,2851.6477,132.8479|-115.0961,2851.6501,136.8549|0.0019,-2.487,-4.0073,1,0,-0.0001,0,-0.0001,1,0,-1,-0.0001|1.5051,-0.0046,-2.0137,0,1,0,-1,0,0,0,-0.0001,1|-109.6072,2851.6491,119.85|0.0015,0.0021,6.4979,-1,0,-0.0001,0,1,-0.0001,0,-0.0001,-1|-112.6018,2854.645,126.3405|-1.4958,-2.9948,6.4904,0,-0.0001,1,-0.0001,-1,-0.0001,1,-0.0001,-0.0001|1.497,-2.9927,6.5076,-0.0002,-0.0001,-1,-0.0001,-1,0,-1,0,0.0001|0.0003,0.0003,4.4988,-1,0,-0.0001,0,1,0,0,0,-1|-122.0829,2851.6499,132.3458|-4.4816,0.4951,-1.0069,0,0.999'
  2021. ..'9,0.0001,-1,0,0,0,-0.0002,0.9999|-4.4831,-1.0045,-4.0056,0,1,0.0001,-1,0,0,0,-0.0002,1|-1.4822,-0.0039,-0.0051,0,-0.0002,1,-1,-0.0001,0,0,-1,-0.0002|1.017,-0.0045,-4.0055,0,1,0.0001,-1,0,0,0,-0.0002,1|-130.0978,2851.6457,124.3403|-122.0828,2851.6413,120.3344|-115.0982,2851.6462,115.8417|0.0031,-2.4911,-4.0083,1,0,0,-0.0001,0,1,0,-1,0|-117.1,2851.6452,126.3404|-125.1,2853.2453,126.3403|-118.6011,2853.6457,133.8412|-2,-1.5,-1.5,0,1,-0.0001,0,0,1,1,-0.0001,-0.0001|-117.5,2862.6489,124.9419|-117.5,2861.6489,148.9418|-117.5,2850.6491,148.9418|-102.5,2856.145,59.9419|1,8,1|-117.5,2856.1489,148.9418|-102.5,2856.145,67.9419|-101,2852.6452,'
  2022. ..'59.9419|1,1,2|-105.5,2869.6606,71.4419|1,11,4|-105.5,2869.6606,68.9419|-105.5,2875.6567,63.9419|-105.5,2857.645,68.9419|-105.5,2857.645,73.9419|-105.5,2869.645,73.9419|-112.3001,2857.645,68.1419|-104.5,2856.1567,67.9419|-105.5,2857.645,71.4419|-103.5,2856.145,67.9419|0,90,90|6,1,1|-104,2859.6606,66.9419|1,1,4|-111.3001,2857.645,67.1419|-115.5,2869.645,73.9419|-108.9,2863.645,63.5419|8.1999,1,5.8|-104,2851.6452,63.9419|5,1,2|-105.5,2851.6452,63.9419|-104,2859.6606,60.9419|-105.5,2869.6606,58.9419|-105.5,2863.6567,63.9419|-104,2852.6608,66.9419|-111.3001,2851.6452,64.0419|9.1999,1,1|-105.5,2860.6606,63.9419|9,1,1|-115.5,2876.6606,63.'
  2023. ..'9419|-105.5,2862.1567,63.9419|1,9,2|-105.5,2869.6606,56.4419|-104,2860.645,63.9419|-115.5,2875.645,73.9419|-112.3001,2857.645,58.9419|-105.5,2869.645,53.9419|-103.5,2856.145,59.9419|-105.5,2857.645,56.4419|-105.5,2857.645,58.9419|-111.3001,2857.645,59.9419|-105.5,2857.645,53.9419|-104,2852.6452,60.9419|-104.5,2856.1567,59.9419|-93.5,2850.6491,124.9419|-93.5,2856.1489,117.9419|-93.5,2851.6491,118.9419|1,1,3|-93.5,2856.1489,100.942|-93.5,2856.1489,109.4419|1,10,16|-98.5,2856.145,67.4419|6,2,1|-98.5,2859.645,60.9419|-94,2851.6452,63.9419|7,1,8|-90.5,2856.145,67.9419|-94,2859.645,67.9419|1,1,6|-97.5,2856.145,59.9419|-89.5,2852.6452,66.'
  2024. ..'9419|-101,2856.145,67.9419|2,6,1|-99.5,2856.145,67.9419|-101,2859.645,59.9419|-98.5,2860.145,63.9419|5,2,1|-94,2852.6452,59.9419|-94,2856.145,67.9419|6,6,1|-94,2852.6452,67.9419|-88.5,2856.145,67.9419|-101,2860.645,63.9419|7,1,4|-101,2859.645,67.9419|-101,2856.145,59.9419|-89.5,2856.145,67.4419|-98.5,2859.645,66.9419|-99.5,2856.145,59.9419|-101,2851.6452,63.9419|-97.5,2856.145,67.9419|-101,2852.6452,67.9419|-98.5,2856.145,60.4419|-98.5,2852.6452,60.9419|-89.5,2859.645,66.9419|-98.5,2852.6452,66.9419|-98.5,2851.6452,63.9419|5,1,1|-90.5,2856.145,59.9419|-89.5,2851.6452,63.9419|-93.5,2856.145,18.4419|-89.5,2852.6452,60.9419|-89.5,2860'
  2025. ..'.145,63.9419|-88.5,2856.145,59.9419|-89.5,2859.645,60.9419|-94,2856.145,59.9419|-94,2860.645,63.9419|-89.5,2856.145,60.4419|-92.5,2860.6489,2.9419|-91.5,2861.6489,2.9419|-85.5,2856.1489,8.9419|1,8,11|-92.5,2856.1489,8.9419|1,1,8|-93.5,2856.145,26.9419|-92.5,2851.6491,2.9419|-91.5,2850.6491,8.9419|-79.5,2850.6491,8.9419|-91.5,2861.6489,8.9419|-92.5,2860.645,2.9419|-78.5,2851.6491,2.9419|1,1,29|-93.5,2860.645,8.9419|-91.5,2851.6491,2.9419|-93.5,2861.6489,2.9419|-93.5,2850.6452,2.9419|-93.5,2860.6489,-3.0581|-93.5,2851.6452,8.9419|-85.5,2851.6491,8.9419|1,1,11|-77.5,2850.6491,2.9419|-85.5,2851.6491,-3.0581|-91.5,2850.6491,-3.0581|-91.'
  2026. ..'5,2856.1489,8.9419|10,1,1|-93.5,2856.145,9.9419|-93.5,2851.6452,-3.0581|-93.5,2856.145,-12.5581|-85.5,2850.6491,2.9419|11,1,11|-85.5,2856.1489,-3.0581|-94,2859.645,59.9419|-92.5,2856.1489,-3.0581|-91.5,2856.1489,-3.0581|Airlock|0.0509,0.4117,0.6745|-92.5,2856.1489,2.9419|11,8,1|rbxassetid://11998777|backlight|0.2235,0.1176,0.498|9|frontlight|-91.5,2861.6489,-3.0581|-79.5,2850.6491,-3.0581|-79.5,2851.6491,2.9419|-93.5,2856.145,-21.0581|-93.5,2856.145,-4.0581|-85.5,2860.6489,8.9419|-89.5,2855.645,63.9419|5,7,1|-79.5,2860.6489,2.9419|-75,2849.6491,-11.4581|0,135,0|2,1,5|-76.5293,2856.1489,-13.3046|0,-45,0|1,8,5.4|-78.5,2856.1489,-11.0'
  2027. ..'581|-79.5,2856.1489,8.9419|-85.5,2860.6489,-3.0581|-77.5,2850.6491,-7.0581|1,1,9|-79.5,2861.6489,-3.0581|-85.5,2861.6489,2.9419|-76.6465,2860.6489,-13.1046|1,1,7|-78.5,2856.1489,-7.0581|1,8,7|-78.5,2856.1489,-3.0581|-76,2850.6491,-12.4581|2,1,7|-76.6465,2851.6491,-13.1046|-79.5,2856.1489,-3.0581|-91.5,2856.1489,130.9419|-93.5,2856.1489,131.9419|-93.5,2851.6491,130.9419|-85.5,2851.6491,130.9419|-91.5,2850.6491,130.9419|-85.5,2856.1489,130.9419|-91.5,2861.6489,130.9419|-93.5,2860.6489,130.9419|-92.5,2856.1489,130.9419|-85.5,2850.6491,124.9419|-92.5,2851.6491,124.9419|-85.5,2861.6489,124.9419|-92.5,2860.6489,124.9419|-91.5,2861.6489,1'
  2028. ..'24.9419|-91.5,2851.6491,124.9419|-93.5,2861.6489,124.9419|-93.5,2860.6489,118.9419|-91.5,2856.1489,118.9419|-85.5,2851.6491,118.9419|-92.5,2856.1489,118.9419|-91.5,2861.6489,118.9419|-85.5,2860.6489,118.9419|-85.5,2856.1489,118.9419|-91.5,2850.6491,118.9419|-82.5,2852.6452,67.9419|-76.5,2856.145,67.9419|-82.5,2859.645,67.9419|-93.5,2856.1489,148.9418|-76.5,2851.6452,67.9419|-82.5,2856.145,67.9419|11,6,1|-75.5,2856.145,68.2419|8,0.4,1|-92.5,2856.1489,124.9419|-75.5,2851.6452,73.4419|-76.5,2860.645,67.9419|-82.5,2860.645,63.9419|7,1,13|-82.5,2856.145,59.9419|-76.5,2856.145,59.9419|-76.5,2851.6452,59.9419|-82.5,2851.6452,63.9419|-75.5'
  2029. ..',2860.645,63.9419|7,1,1|-75.8,2856.145,67.9419|-82.5,2852.6452,59.9419|-74.5,2856.1411,49.6419|0,-90,-90|2,0.4,1|-76.5,2860.645,59.9419|-82.5,2859.645,59.9419|-76.5,2849.6491,2.9419|1,1,27|-77.5,2850.6491,12.4419|-93.5,2856.1489,140.4418|-75.5,2851.6452,54.4419|-73.5,2851.6452,50.9419|1,3,1|-73.5,2849.6452,63.9419|25,1,1|-75.5,2856.1411,59.6419|-74.5,2859.145,49.9419|1,4,1|-74.8,2856.1411,49.9419|-74.5,2853.1452,49.9419|-74.5,2850.6452,63.9419|27,1,1|-75.5,2860.645,54.4419|-74.8143,2849.6491,17.6348|0,45,0|-73.5,2860.645,50.9419|-78.5,2856.1489,16.9419|-72.5,2850.1452,51.9419|1,2,1|-76.8143,2860.6489,18.9277|-74.8143,2862.6489,17.6'
  2030. ..'348|-75.5,2856.145,54.4419|1,8,10|-76.1678,2861.6489,18.2812|2,1,6|-75.5,2851.6452,63.9419|-75.8,2856.1411,59.9419|-76.4607,2851.6491,19.2812|-78.5,2856.1489,8.9419|-70,2851.6647,20.9419|-78.5,2860.6489,2.9419|-69.5,2856.1489,20.9419|1,8,9|-70,2860.6645,20.9419|-77.5,2861.6489,2.9419|-76.5,2862.6489,2.9419|-78.5,2856.1489,12.9419|-74.5,2856.1645,20.9419|-75.8143,2850.6491,18.6348|-76.6021,2856.1489,19.1398|0,-135,0|-75,2862.6489,-11.4581|-79.5,2861.6489,8.9419|-76,2861.6489,-12.4581|-69.5,2856.1489,-15.0581|-75.5,2856.145,48.9419|-74.5,2856.1489,-15.0581|-64.8001,2856.1489,-15.0581|-85.5,2860.6489,130.9419|-75.5,2856.145,78.9419|-7'
  2031. ..'4.8,2856.1411,77.9419|-74.5,2853.1452,77.9419|-75.5,2860.645,73.4419|-75.5,2856.145,73.4419|-74.5,2861.645,63.9419|-72.5,2862.145,51.9419|-70,2856.145,48.9419|-70,2851.6452,48.9419|-60.5,2850.6491,-14.0581|-60.5,2851.6491,-15.0581|-60.5,2856.1489,-15.0581|1,8,8.1999|-60.5,2849.6491,-13.0581|-60.5,2860.6489,-15.0581|-79.5,2851.6491,124.9419|-79.5,2850.6491,118.9419|-77.5,2850.6491,115.4419|-79.5,2856.1489,118.9419|-78.5,2856.1489,110.9419|-76.5536,2851.6491,108.6026|-74.5,2859.145,77.9419|-74.5,2856.1411,78.2419|-73.5,2860.645,76.9419|-72.5,2850.1452,75.9419|-73.5,2851.6452,76.9419|-73.5,2862.645,63.9419|-70,2860.645,48.9419|-64.5,2'
  2032. ..'852.6647,23.4417|-64.5,2852.6452,30.4419|-64.5,2859.6645,23.4417|-64.5,2856.1645,21.9419|-64.5,2856.1489,30.4419|1,6,6|-64.7995,2856.1801,20.9419|0,-180,-90|-64.5,2856.1645,23.4417|1,6,2|-64,2856.1411,25.9419|8,1,2|-64.5,2856.1645,21.2416|-64.5,2856.145,26.9419|-64.5,2856.145,24.9419|-64.5,2851.6647,21.9417|-64.5,2860.6645,21.9417|-60.5,2849.6491,2.9419|31,1,31|-60.5,2861.6489,-14.0581|-60.5,2862.6489,-13.0581|-60.5,2849.3444,63.9419|5,0.4,5|-76.4787,2851.6491,141.249|-75.8324,2850.6491,140.6025|2,1,8|-76.4787,2860.6489,141.249|-78.5,2856.1489,138.9418|-77.5,2850.6491,134.9418|-78.5,2856.1489,130.9419|-78.5,2856.1489,134.9418|-79.5'
  2033. ..',2861.6489,130.9419|-79.5,2856.1489,130.9419|-79.5,2850.6491,130.9419|-79.5,2860.6489,124.9419|-76.5,2862.6489,124.9419|-78.5,2856.1489,118.9419|-76.5,2849.6491,124.9419|-77.5,2861.6489,124.9419|-78.5,2851.6491,124.9419|-78.5,2860.6489,124.9419|-77.5,2850.6491,124.9419|-79.5,2861.6489,118.9419|-74.9071,2849.6491,110.249|-76.9072,2860.6489,108.9561|-74.5002,2856.1645,106.942|-78.5,2856.1489,114.9419|-74.9071,2862.6489,110.2491|-75.9071,2850.6491,109.249|-69.5002,2856.1645,106.942|-70.0002,2851.6647,106.942|-76.2608,2861.6489,109.6026|-70.0002,2860.6645,106.942|-76.6708,2856.1489,108.7884|-64.5,2852.6452,85.9419|-64.5,2851.6491,79.94'
  2034. ..'19|-70,2856.145,78.9419|-70,2860.645,78.9419|-64.5,2860.645,79.9419|-64.8001,2856.145,78.9419|-70,2851.6452,78.9419|-64.5,2856.145,79.9419|-64.5,2856.145,79.2419|-64.5,2856.145,85.9419|-72.5,2862.145,75.9419|-60.5,2862.645,50.9419|-60.5,2849.6452,50.9419|-64.8001,2856.145,48.9419|-60.5,2850.6452,49.9419|-60.5,2860.645,48.9419|-60.5,2861.645,49.9419|-60.5,2851.6452,48.9419|-56.5,2851.6491,47.9419|-64.5,2852.6452,41.9419|-64.5,2859.645,41.9419|-56.5,2852.6452,41.9419|-56.5,2859.645,41.9419|-64.5,2856.1489,41.9419|1,6,11|-60.5,2848.6452,63.9419|25,1,25|-64.5,2856.145,35.9419|-64.5,2860.6489,47.9419|-64.5,2851.6491,47.9419|-64.5,2856.1'
  2035. ..'45,47.9419|-63.5,2859.6489,34.9419|-64.5,2856.145,48.6419|-63.5,2852.6491,34.9419|-60.5,2851.6491,20.9419|-60.5,2860.6489,41.9419|-60.5,2860.1489,34.9419|-57.5,2859.6489,34.9419|-64,2856.1411,34.9419|6,1,2|-60.5,2851.6491,23.4419|-60.5,2851.6491,34.9419|-60.5,2851.6452,41.9419|-64.5,2856.145,33.9419|-64.5,2859.645,30.4419|-56.5,2856.1489,41.9419|-60.5,2860.6489,23.4419|-60.5,2860.6489,30.4419|-60.5,2851.6491,25.9419|-56.5,2856.145,26.9419|-56.5,2856.145,33.9419|-57,2856.1411,34.9419|-57,2856.1411,25.9419|-60.5,2855.645,34.9419|-56.5,2852.6452,30.4419|-56.5,2859.645,30.4419|-60.5,2851.6491,30.4419|-57.5,2852.6491,34.9419|-56.5,2856.'
  2036. ..'1489,30.4419|-56.5,2856.145,35.9419|-60.5,2860.6489,25.9419|-56.5,2856.145,24.9419|-56.5,2856.1645,23.4417|-56.5,2859.6645,23.4417|-56.5,2852.6647,23.4417|-56.2,2856.1489,20.9419|-51.5,2856.1645,20.9417|-56.5,2856.1645,21.2417|-76.5637,2856.1489,141.1783|-56.5,2856.1645,21.9419|-56.5,2860.6645,21.9417|-56.5,2851.6647,21.9417|-51,2851.6647,20.9417|-60.5,2850.6491,19.9419|-60.5,2849.6491,18.9419|1,1,25|-60.5,2860.6489,20.9419|-60.5,2862.6489,18.9419|-60.5,2861.6489,19.9419|-46.1678,2849.6491,-11.7188|-45.1678,2850.6491,-12.7188|-44.5214,2851.6491,-13.3652|-74.8324,2849.6491,139.6025|-46.5,2856.1489,-15.0581|-60.5,2862.6489,2.9419|-51'
  2037. ..'.5,2856.1489,-15.0581|-56.2,2856.1489,-15.0581|-63.5,2859.645,101.9419|-74.8324,2862.6489,139.6025|-75.8324,2861.6489,140.6025|-64.5002,2851.6647,105.942|0,-180,0|-64.8001,2856.1489,106.9419|-64.5002,2856.1645,106.642|-64.5002,2860.6645,105.942|-64,2856.145,101.9419|-64.5,2856.1606,102.9419|-64.5001,2856.1606,104.4419|-64.5001,2856.1606,105.9419|-64.5001,2852.6608,104.4419|-64.5001,2859.6606,104.4419|-64.5,2856.1606,93.9419|-63.5,2852.6452,92.9419|-64.5,2852.6452,97.4419|-64.5,2856.1606,100.9419|-60.5,2851.6452,92.9419|-64,2856.145,92.9419|-63.5,2859.645,92.9419|-60.5,2851.6452,97.4419|-63.5,2852.6452,101.9419|-64.5,2859.6606,97.44'
  2038. ..'19|-60.5,2860.645,78.9419|-64.5,2856.145,97.4419|-60.5,2860.645,85.9419|-64.5,2856.1606,91.9419|-60.5,2861.645,77.9419|-60.5,2862.645,76.9419|-64.5,2859.645,85.9419|-60.5,2850.6452,77.9419|-60.5,2851.6452,85.9419|-56.5,2851.6491,79.9419|-60.5,2851.6452,78.9419|-60.5,2849.6452,76.9419|-56.5,2856.145,48.6419|-51,2856.145,48.9419|-56.2,2856.145,48.9419|-51,2851.6452,48.9419|-74.5,2856.1489,142.9418|-60.5,2863.645,63.9419|-56.5,2856.145,47.9419|-56.5,2860.6489,47.9419|-60.5,2855.645,92.9419|-44.4465,2851.6491,19.2812|-45.0929,2850.6491,18.6348|-51,2860.6645,20.9417|-46.0929,2849.6491,17.6348|-46.0929,2862.6489,17.6348|-46.5,2856.1645,2'
  2039. ..'0.9417|-44.5214,2860.6489,-13.3652|-41.5,2850.6491,8.9419|-42.5,2856.1489,-7.0581|-43.5,2861.6489,2.9419|-43.5,2850.6491,12.4419|-42.5,2856.1489,-3.0581|-42.5,2860.6489,2.9419|-44.5,2862.6489,2.9419|-42.5,2851.6491,2.9419|-45.1678,2861.6489,-12.7188|-43.5,2850.6491,2.9419|-43.5,2850.6491,-7.0581|-44.4365,2856.1489,-13.2945|-44.5,2849.6491,2.9419|-41.5,2861.6489,-3.0581|-42.5,2856.1489,-11.0581|-41.5,2851.6491,2.9419|-41.5,2850.6491,-3.0581|-46.1678,2862.6489,-11.7188|-41.5,2856.1489,-3.0581|-60,2854.1491,137.9419|2,2,1|-57.5,2859.645,101.9419|-60,2854.1491,138.9419|1,2,2|-60.5,2851.6491,142.9418|-60.5,2861.6489,141.9418|-60.5,2856.'
  2040. ..'1489,142.9418|-60.5,2860.6489,142.9418|-69.5,2856.1489,142.9419|-35.5,2850.6491,2.9419|-60.5,2850.6491,141.9418|-60.5,2849.6491,140.9418|-60.5,2862.6489,124.9419|-60.5,2849.6491,124.9419|-60.5,2850.6491,107.9419|-60.5,2849.6491,108.9419|-60.5,2860.6489,106.9419|-60.5,2862.6489,108.9419|-56.5002,2860.6645,105.942|-56.5002,2856.1645,104.4421|-56.2005,2856.1801,106.9419|-56.5002,2856.1645,106.6422|-60.5,2861.6489,107.9419|-51.5,2856.1489,106.9419|-51.0002,2860.6645,106.9418|-56.5002,2851.6647,105.942|-51.0002,2851.6647,106.9418|-56.5,2856.1606,105.9419|-56.5,2856.1606,104.4419|-56.5,2856.1606,102.9419|-56.5,2852.6608,104.4419|-60.5,28'
  2041. ..'51.6413,104.4419|-60.5,2860.1411,101.9419|-56.5,2859.6606,104.4419|-60.5,2860.6411,104.4419|-60.5,2860.1411,92.9419|-57,2856.145,92.9419|-56.5,2856.1606,100.9419|-56.5,2856.145,97.4419|-57.5,2852.6452,92.9419|-57,2856.145,101.9419|-56.5,2856.1606,93.9419|-57.5,2859.645,92.9419|-56.5,2856.1606,91.9419|-56.5,2852.6452,97.4419|-56.5,2860.6489,79.9419|-60.5,2860.645,97.4419|-57.5,2852.6452,101.9419|-60.5,2851.6452,101.9419|-45.5,2856.145,78.9419|-51,2860.645,78.9419|-56.5,2859.6606,97.4419|-56.5,2856.1489,79.9419|-51,2851.6452,78.9419|-56.5,2856.145,79.2419|-56.5,2856.145,85.9419|-47.5,2860.645,76.9419|-46.5,2853.1452,77.9419|-51,2856.'
  2042. ..'145,78.9419|-46.5,2859.145,77.9419|-46.5,2856.145,78.2419|-56.5,2859.645,85.9419|-56.2,2856.145,78.9419|-56.5,2852.6452,85.9419|-46.2,2856.145,77.9419|-45.2001,2856.145,67.9419|-48.5,2862.145,75.9419|-48.5,2850.1452,75.9419|-47.5,2862.645,63.9419|-45.5,2860.645,63.9419|-45.5,2851.6452,73.4419|-45.5,2860.645,73.4419|-45.5,2856.145,73.4419|-44.5,2860.645,67.9419|-45.5,2856.145,68.2419|-44.5,2851.6452,67.9419|-38.5,2852.6608,67.9419|-44.5,2856.1606,67.9419|-46.5,2861.645,63.9419|-47.5,2851.6452,76.9419|-28.5,2856.1489,2.9419|-64.8001,2856.1489,142.9419|-46.5,2850.6452,63.9419|-45.5,2851.6452,63.9419|-47.5,2849.6452,63.9419|-46.5,2859.'
  2043. ..'145,49.9419|-46.5,2853.1452,49.9419|-45.2,2856.145,59.9419|-51,2860.645,48.9419|-44.5,2860.645,59.9419|-45.5,2856.145,54.4419|10,8,1|-45.5,2851.6452,54.4419|-38.5,2856.145,59.9419|-44.5,2851.6452,59.9419|-46.5,2856.145,49.6419|-38.5,2852.6452,59.9419|-45.5,2860.645,54.4419|-48.5,2862.145,51.9419|-47.5,2860.645,50.9419|-38.5,2851.6452,63.9419|-46.2,2856.145,49.9419|-47.5,2851.6452,50.9419|-48.5,2850.1452,51.9419|-45.5,2856.145,59.6419|-45.5,2856.145,48.9419|-44.5,2856.145,59.9419|-38.5,2859.645,59.9419|-44.3293,2856.1489,19.0954|-44.7394,2861.6489,18.2812|-44.0929,2860.6489,18.9277|-42.5,2856.1489,16.9419|-27.5,2856.1489,18.4419|-41'
  2044. ..'.5,2856.1489,8.9419|-29.5,2861.6489,8.9419|-35.5,2851.6491,8.9419|-41.5,2861.6489,8.9419|-42.5,2856.1489,12.9419|-41.5,2860.6489,2.9419|-28.5,2851.6491,2.9419|-35.5,2856.1489,8.9419|-27.5,2856.1489,-4.0581|-27.5,2860.6489,-3.0581|-35.5,2851.6491,-3.0581|-27.5,2860.6489,8.9419|-35.5,2860.6489,-3.0581|-28.5,2856.1489,-3.0581|-29.5,2861.6489,2.9419|-29.5,2861.6489,-3.0581|-27.5,2856.1489,-12.5581|-28.5,2860.6489,2.9419|-29.5,2851.6491,2.9419|-60.5,2862.6489,140.9418|-42.5,2856.1489,8.9419|-28.5,2856.1489,8.9419|-27.5,2861.6489,2.9419|-27.5,2851.6491,-3.0581|-27.5,2856.1489,9.9419|-29.5,2856.1489,-3.0581|-29.5,2856.1489,8.9419|-35.5,28'
  2045. ..'61.6489,2.9419|-29.5,2850.6491,8.9419|-35.5,2856.1489,-3.0581|-35.5,2860.6489,8.9419|-29.5,2850.6491,-3.0581|-27.5,2850.6491,2.9419|-27.5,2856.1489,-21.0581|-27.5,2851.6491,8.9419|-60.5,2851.6491,106.9419|-60,2851.6491,138.4419|2,3,2|-46.1858,2849.6491,110.249|-44.5394,2851.6491,108.6026|-46.5002,2856.1645,106.9418|-45.1858,2850.6491,109.249|-56.2,2856.1489,142.9418|-38.5,2856.1606,67.9419|-38.5,2860.645,63.9419|-38.5,2859.6567,67.9419|-32.5,2856.145,59.9419|-27.5,2856.1489,26.9419|-3.5965,2853.6457,9.8452|-2.5971,2854.6447,2.3463|0,-90,0.0099|-5.5965,2851.6457,8.3452|0,0,180|-0.0058,-0.0083,3.9851,-0.0001,1,0,0.9999,0,-0.0001,-0.0'
  2046. ..'001,0,-1|-1.5001,-0.5,1.9999,0,0.9999,-0.0001,-0.0001,0,1,0.9999,-0.0001,0|-4.5975,2850.6452,2.3462|-0.9995,-1.999,4.4981,-0.0001,-1,-0.0001,0.0001,-0.0001,0.9999,-1,0,0.0001|3,1,0,0,0,-1,0,1,0,0.9999,0,0|0.0008,1.0004,-2.9993,0.9999,0,-0.0001,-0.0001,0,-1,-0.0001,0.9999,0|0.9947,-2.0071,4.4864,-0.0001,1,-0.0001,0,0,0.9999,0.9999,0,-0.0001|0.0014,0.9995,2.999,0.9999,-0.0001,0,0,-0.0001,-1,0,0.9999,-0.0001|0,-0.5,-0.5001,0,0.9999,0,0,0,1,0.9999,0,0|-1.499,1.0004,0.0008,-0.0001,-0.0001,0.9999,-0.0001,1,0,-1,-0.0001,-0.0001|-8.5964,2851.6457,2.3454|1.4999,-0.0001,-5.9999,-0.0001,0,-1,-0.0001,1,0,1,0,-0.0001|-7.5,-0.5,4.9999,0,0.9999,-'
  2047. ..'0.0001,-0.0001,0,1,0.9999,-0.0001,0|0.0009,-1.4994,0.9994,-0.0001,-1,-0.0001,0,-0.0001,1,-1,0,0|0.0031,-2.5035,1.4969,-0.0001,-1,-0.0001,0,-0.0001,1,-1,0,0|-0.0013,-2.4988,6.4968,0,1,-0.0001,-0.0001,0,0.9999,0.9999,-0.0001,0|1.4999,0,5.9998,-0.0001,-0.0001,-1,-0.0001,1,0,0.9999,-0.0001,0|0.9024,2851.6452,2.3462|0,0,-180|0.0003,-1.9998,3.9979,-0.0001,1,0,1,0,-0.0002,-0.0002,0,-1|-0.0049,-2.0079,-1.0136,-0.0001,1,-0.0001,0,0,1,1,0,-0.0001|-2.0001,0,-0.1,-1,-0.0001,-0.0001,0,-1,-0.0001,-0.0001,-0.0001,1|-0.0007,-1.4995,-3.4995,0,1,0.0001,-0.0001,-0.0002,1,1,-0.0001,0|-5.5965,2851.6457,-3.6544|-4.5961,2852.145,-0.6527|0.5001,-1.9998,4.'
  2048. ..'4965,-0.0001,-1,-0.0001,0.0001,-0.0001,0.9999,-1,0,0.0001|2.9985,-0.4996,-2.9991,0,0,-1,0,1,0,0.9999,-0.0001,0|-1.5005,-0.4992,-2.9982,-0.0001,0,0.9999,-0.0001,1,-0.0001,-1,-0.0001,-0.0001|-2.9992,-1.4994,1.9992,0,1,0.0001,-0.0001,-0.0002,1,1,-0.0001,0|-4.5964,2852.1457,5.3453|2.9989,-0.5005,2.9991,-0.0001,-0.0001,-1,-0.0001,1,-0.0001,1,0,-0.0001|-1.5,-0.5,2.9999,-0.0001,-0.0001,1,-0.0001,1,0,-1,-0.0001,-0.0001|-0.5057,-2.0081,4.4852,-0.0001,1,-0.0001,0,0,0.9999,0.9999,0,-0.0001|2.9989,-1.4996,1.9991,0,1,0.0001,-0.0001,-0.0002,1,1,-0.0001,0|7.9004,2851.645,0.3474|0,-90.0101,90|-2.9981,0.0005,-1.9992,0,-0.0002,1,-1,-0.0001,0,0,-1,-0'
  2049. ..'.0002|-12.5958,2851.6435,-4.1522|6.4982,-1.5008,-3.0006,1,-0.0001,-0.0002,0.0001,-0.0001,1,-0.0001,-1,-0.0001|1.4994,0.0019,-6.4977,0,-0.0001,-1,-1,0,-0.0001,0,0.9999,-0.0001|0.0013,-4.0061,2.9963,1,0,-0.0001,0,-1,0,-0.0001,-0.0001,-1|0.0009,0.0006,6.4945,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|-7.0993,2851.6428,-8.158|0.0099,-90,90|1.5029,0.0029,-2.0037,0,1,0,-1,0,0,0,-0.0001,1|-12.595,2851.6445,8.8422|-6.4962,-1.5011,-2.9989,1,-0.0001,-0.0001,0,0,1,-0.0001,-1,0|-9.5959,2854.645,2.3462|0,90,-0.01|0.0004,0.0003,4.4989,-1,0,-0.0001,0,1,0,0,0,-1|-0.0993,2851.6452,-3.6521|-1.4973,0.0008,0.0018,0,-0.0002,1,-1,-0.0001,0,0,-1,-0.0002|1.001'
  2050. ..'9,0.0001,-3.9983,0,0.9999,0.0001,-1,0,0,0,-0.0002,0.9999|7.9001,2851.6457,4.3463|0,-90.0101,-90|-0.1113,2851.6401,8.3538|-7.1009,2851.6464,12.8409|-0.0019,-2.4942,-3.9986,1,0,0,-0.0001,0,1,0,-1,0|-1.4956,-0.0008,7.9957,-0.0001,0.9999,-0.0001,1,0,-0.0001,-0.0001,-0.0001,-1|1.5043,-0.0008,1.9957,-0.0001,0.9999,-0.0001,1,0,-0.0001,-0.0001,-0.0001,-1|-5.0975,2851.6452,2.3462|2.9024,2853.2453,2.3462|-3.5965,2853.6457,-5.1545|-2,-1.5,-1.5,0,1,0,0,-0.0001,1,1,-0.0001,-0.0001|-5,-1.5,-7.4999,0,0.9999,0,0,-0.0001,1,0.9999,-0.0001,-0.0001|-31.5,2855.645,63.9419|-45,2850.6491,140.3419|-51.5,2856.1489,142.9418|-3.5,2856.1489,-21.0581|-46,2862.'
  2051. ..'6489,139.3419|-44.4708,2856.1489,141.1884|-46.5,2856.1489,142.9418|-46,2849.6491,139.3419|-44.3536,2851.6491,140.9883|-43.5,2850.6491,134.9418|-41.5,2850.6491,130.9419|-42.5,2856.1489,130.9419|-42.5,2856.1489,134.9418|-41.5,2856.1489,130.9419|-41.5,2856.1489,118.9419|-44.5,2862.6489,124.9419|-42.5,2860.6489,124.9419|-41.5,2860.6489,124.9419|-43.5,2861.6489,124.9419|-46.1858,2862.6489,110.249|-42.5,2856.1489,110.9419|-41.5,2850.6491,118.9419|-41.5,2861.6489,118.9419|-42.5,2856.1489,114.9419|-43.5,2850.6491,115.4419|-42.5,2856.1489,118.9419|-44.8323,2861.6489,109.6026|-44.3979,2856.1489,108.744|-44.1858,2860.6489,108.9561|-43.5,2850.'
  2052. ..'6491,124.9419|-44.5,2849.6491,124.9419|-41.5,2851.6491,124.9419|-42.5,2851.6491,124.9419|-27,2859.6567,67.9419|-32.5,2856.1606,67.9419|-30.5,2856.1606,67.9419|-31.5,2859.645,66.9419|-27,2856.1606,67.9419|-31.5,2856.145,67.4419|-31.5,2860.145,63.9419|-31.5,2852.6452,66.9419|-22.5,2851.6452,63.9419|-27,2860.645,63.9419|-27,2852.6608,67.9419|-23.5,2856.1606,67.9419|-22.5,2856.145,59.9419|8,1,1|-31.5,2851.6452,63.9419|-27,2856.1606,59.9419|-31.5,2856.145,60.4419|-30.5,2856.1606,59.9419|-31.5,2859.645,60.9419|-27,2852.6608,59.9419|-27,2851.6452,63.9419|-20,2852.6608,59.9419|-31.5,2852.6452,60.9419|-21.5,2856.1606,59.9419|-27,2859.6567,5'
  2053. ..'9.9419|-23.5,2856.1606,59.9419|-3.5,2850.6491,-21.0581|0,180,90|-3.5,2849.6491,2.9419|-3.5,2861.6489,-21.0581|-12.1,2863.645,64.3419|-15.5,2869.6606,68.9419|-15.5,2869.6606,71.4419|-9.7,2857.645,60.7419|-44.3536,2860.6489,140.9883|-42.5,2856.1489,138.9418|-45,2861.6489,140.3419|-35.5,2851.6491,130.9419|-35.5,2856.1489,130.9419|-35.5,2860.6489,130.9419|-41.5,2861.6489,130.9419|-29.5,2850.6491,118.9419|-35.5,2861.6489,124.9419|-29.5,2850.6491,130.9419|-35.5,2860.6489,118.9419|-29.5,2856.1489,118.9419|-28.5,2856.1489,118.9419|-27.5002,2851.6452,118.9419|-29.5,2861.6489,118.9419|-27.5002,2856.145,117.9419|-35.5,2851.6491,118.9419|-35.5'
  2054. ..',2856.1489,118.9419|-15.5,2869.6606,58.9419|-27.5002,2856.145,109.442|-27.5002,2850.6452,124.9419|-28.5,2851.6491,124.9419|-29.5,2851.6491,124.9419|-35.5,2850.6491,124.9419|-27.5002,2856.145,100.9419|-20,2851.6452,63.9419|-20,2859.6606,67.9419|-22.5,2860.645,63.9419|-18.5,2856.1606,67.9419|-20,2860.645,63.9419|-20,2852.6608,67.9419|-21.5,2856.1606,67.9419|-20,2856.1606,67.9419|-18.5,2856.1606,59.9419|-20,2856.1606,59.9419|-28.5,2856.1489,124.9419|-20,2859.6606,59.9419|-22.5,2856.145,67.9419|-3.5,2856.1489,26.9419|-3.5,2850.6491,26.9419|-3.5001,2861.6489,26.9419|-9.7,2851.6452,63.8419|-8.7,2857.645,59.7419|-17,2852.6608,60.9419|-17,'
  2055. ..'2852.6452,66.9419|-3.5001,2862.6489,2.9419|-16.5,2856.1606,59.9419|-17,2859.6606,66.9419|-5.5,2851.6452,53.9419|-15.5,2869.645,53.9419|-15.5,2851.6452,63.9419|-15.5,2857.645,73.9419|-15.5,2875.6606,63.9419|-15.5,2857.645,58.9419|-15.5,2857.645,53.9419|-15.5,2857.645,68.9419|-17.5,2856.145,59.9419|-17,2859.6606,60.9419|-17.5,2856.145,67.9419|-17,2851.6452,63.9419|-15.5,2863.6606,63.9419|-17,2860.645,63.9419|-16.5,2856.1606,67.9419|-15.5,2860.6606,63.9419|-15.5,2857.645,71.4419|-15.5,2862.1606,63.9419|-15.5,2869.6606,56.4419|-15.5,2857.645,56.4419|-5.0999,2863.6411,64.3417|-5.4999,2867.0395,59.5418|-89.9701,40.34,40.34|-5.0999,2851.6'
  2056. ..'452,64.3417|-5.4999,2855.0434,59.5418|-5.5,2863.645,57.3419|-5.5,2852.6452,58.9419|-27.5002,2856.145,131.9419|-29.5,2861.6489,130.9419|-27.5002,2860.6489,130.9419|-28.5,2856.1489,130.9419|-29.5,2856.1489,130.9419|-27.5002,2851.6452,130.9419|-27.5002,2860.645,118.9419|-28.5002,2860.645,124.9419|-29.5,2861.6489,124.9419|-27.5002,2861.6489,124.9419|-28.5,2860.6489,124.9419|19.9,2850.7468,2.9419|21.1,2850.7468,2.9419|20.5,2850.6491,2.9419|-5.5,2865.145,58.9419|-0.3,2851.6452,64.3419|-5,2851.6452,59.7419|-5.5,2851.6452,68.9419|19.9,2856.1489,-13.9581|-8.7,2857.645,68.9419|-9.7,2857.645,67.9419|20.5,2856.1489,-17.5581|21.1,2856.1489,-13.'
  2057. ..'9581|-1.3,2857.645,59.7419|20.5,2856.1489,-14.0581|20.5,2856.1489,-21.0581|-5.5,2850.6452,63.9419|-5.5,2875.645,53.9419|-5.5,2851.6452,73.9419|-5.5,2863.645,53.9419|-15.5,2869.645,73.9419|-5.5,2869.645,53.9419|-5.5,2857.645,53.9419|-4.5966,2853.6457,131.8444|-3.5967,2854.6447,124.346|-1.9996,-0.9991,-2.9988,0,1,0,-0.0002,-0.0001,1,1,-0.0001,0.0001|3.4992,-1.4995,0.0002,0,1,0,-0.0002,-0.0001,1,1,-0.0001,0.0001|-1.9991,-0.9999,2.9993,0,1,0,-0.0002,-0.0001,1,1,-0.0001,0.0001|-6.5963,2851.6457,130.3447|-1.5,-0.5,1.9999,0,1,0,-0.0001,-0.0001,1,1,-0.0001,0|0.0008,-2.4968,-1.5036,-0.0001,1,-0.0001,0,0,1,1,0,-0.0001|-1.5,0,5.9998,-0.0001,-'
  2058. ..'0.0001,1,-0.0001,1,0,-1,-0.0001,-0.0001|-5.5974,2850.6452,124.3458|2.9999,1,0,0,0,-1,0,1,-0.0001,0.9999,0,-0.0001|0,-0.5,-0.5001,0,0.9999,-0.0001,-0.0001,-0.0001,1,0.9999,0,-0.0001|0.001,1.0004,-2.9991,1,0,-0.0001,-0.0001,0,-1,-0.0001,1,0|-0.9995,-1.9995,4.4978,-0.0001,-1,-0.0001,0.0001,-0.0001,0.9999,-1,0,0.0001|0.9999,-2,4.4953,-0.0001,1,-0.0001,0,0,0.9999,0.9999,0,-0.0001|0.0015,0.9995,2.9991,1,-0.0001,0,0,0,-1,0,1,0|-1.4989,1.0004,0.0008,-0.0001,-0.0001,0.9999,-0.0001,1,0,-1,-0.0001,-0.0001|-9.5963,2851.6457,124.345|0.0007,-2.496,1.4963,-0.0001,1,-0.0001,0,0,1,1,0,-0.0001|-7.4996,-0.5,4.9997,0,1,-0.0001,-0.0001,0,1,1,-0.0001,0|'
  2059. ..'2.4999,0.5,-2.9998,-0.0001,0,-1,-0.0001,1,0,1,0,-0.0001|7.4999,-0.5,4.9999,0,1,-0.0001,-0.0001,0,1,1,-0.0001,0|0.0019,-2.4993,6.4979,-0.0001,-1,0,-0.0001,0,1,-1,0,-0.0001|2.5004,0.4991,2.9979,-0.0001,-0.0001,-1,-0.0001,1,-0.0001,1,0,-0.0001|1.5,0,5.9992,0,-0.0001,-1,-0.0001,1,-0.0001,1,0,0|-0.0975,2851.6452,124.346|-2.4988,0.5004,-2.999,-0.0001,0,1,-0.0001,1,-0.0001,-1,-0.0001,-0.0001|-6.5962,2851.6457,118.3458|1.5006,-0.5,1.9997,0,1,0,0,-0.0001,1,1,-0.0001,-0.0001|0.0007,0.0006,3.9966,0,-1,-0.0001,-1,-0.0001,0.0001,-0.0002,0,-1|-5.5958,2852.145,121.347|2.9982,-0.4996,-2.999,0,0,-1,-0.0001,1,0,1,0,0|0.5001,-2.0005,4.4958,-0.0001,-1'
  2060. ..',-0.0001,0.0001,-0.0001,1,-1,0,0.0001|-5.5962,2852.1457,127.345|6.9004,2851.645,122.3472|-2.9981,0.0005,-1.9993,0,-0.0002,1,-1,-0.0001,0,0,-1,-0.0002|-13.5955,2851.6435,117.8472|-8.0985,2851.6425,113.8415|1.5024,0.003,-2.0042,0,0.9999,0,-1,0,0,0,-0.0001,0.9999|-1.4975,0.003,-8.004,0,1,0,-1,0,0,0,-0.0001,1|-0.0015,-2.4972,-4.0059,1,0,-0.0001,0,-0.0001,1,0,-1,-0.0001|-13.5949,2851.6435,130.8431|0.0029,-3.998,2.9952,1,0,0,0,-1,-0.0001,0,0,-1|1.4987,0.0021,6.4979,-0.0001,0,-1,1,-0.0001,-0.0001,-0.0001,-1,-0.0001|0,-0.0006,6.496,-1,0,-0.0001,0,1,-0.0001,0,-0.0001,-1|-10.5954,2854.645,124.3458|0.9992,-1.4994,0.0008,-0.0001,-1,-0.0001,0,-'
  2061. ..'0.0001,1,-1,0,0|0.0003,0.0003,4.4987,-1,0,-0.0001,0,1,0,0,0,-1|-1.5015,-2.9997,6.4973,0,-0.0001,1,-0.0001,-1,-0.0001,1,-0.0001,-0.0001|1.5012,-3.0003,6.4989,-0.0002,-0.0001,-1,-0.0001,-1,0,-1,0,0.0001|-1.0995,2851.6452,118.347|1.0022,0.0001,-3.9991,0,1,0.0001,-1,0,0,0,-0.0002,1|6.9,2851.6457,126.346|-2.9977,-0.0002,1.9996,-0.0001,0.0001,1,1,0,0,-0.0001,1,-0.0002|-1.1024,2851.6452,130.3463|1.0046,-0.0003,4.0003,-0.0001,1,-0.0001,1,0,-0.0001,-0.0001,-0.0001,-1|-4.4942,0.5001,1.0012,-0.0001,1,-0.0001,1,0,-0.0001,-0.0001,-0.0001,-1|-1.494,0.0006,0.0008,-0.0001,0,1,1,0,0,-0.0001,1,-0.0001|-8.0999,2851.6462,134.8411|-6.0975,2851.6452,124'
  2062. ..'.3458|1.9025,2853.2453,124.346|-2.0001,-1.5,0,1,0,-0.0001,0,-0.0001,1,0,-1,-0.0001|-4.5964,2853.6457,116.8451|1.5,2863.645,64.3419|-5.5,2876.6606,63.9419|-27.5002,2856.145,140.4418|-1.3,2857.645,68.9419|-27.5002,2856.145,148.9418|19.9,2856.1489,19.8419|19.9,2861.5473,2.9419|21.1,2861.5473,2.9419|-0.3,2857.645,67.9419|20.5,2861.6489,2.9419|-5.5,2863.6606,70.9419|0.4|20.5,2856.1489,2.9419|-0.3,2857.645,60.7419|4.5,2857.645,53.9419|-5.5,2863.645,73.9419|4.5,2851.6452,63.9419|-5.5,2857.645,73.9419|-5.5,2869.6606,73.9419|-5.5,2875.645,73.9419|20.5,2856.1489,23.4419|20.5,2856.1489,26.9419|20.5,2856.1489,19.9419|21.1,2856.1489,19.8419|4.5'
  2063. ..',2869.645,53.9419|4.5,2857.645,63.9419|-3.5002,2856.145,100.9419|-3.5002,2850.6452,100.9419|4.5,2857.645,73.9419|4.5,2863.6606,63.9419|4.5,2869.6606,63.9419|4.5,2875.6606,63.9419|-3.5002,2849.6452,124.9419|-3.5002,2861.6489,100.9419|4.5,2869.645,73.9419|-3.5002,2850.6452,148.9418|-3.5002,2862.6489,124.9419|-3.5002,2856.145,148.9418|-3.5002,2861.6489,148.9418|20.4998,2856.145,104.442|19.8999,2856.145,108.0419|20.4998,2856.145,100.9419|20.4998,2856.145,107.942|20.4998,2850.6452,124.9419|19.8999,2850.7468,124.9419|21.0998,2856.145,108.0419|21.0999,2850.7468,124.9419|20.4998,2856.145,124.9419|19.8999,2861.5473,124.9419|20.4998,2861.648'
  2064. ..'9,124.9419|21.0999,2861.5473,124.9419|20.4998,2856.145,148.9419|21.0998,2856.145,141.8419|20.4998,2856.145,145.4418|20.4998,2856.145,141.9418|19.8999,2856.145,141.8419;0,98>29>93,98>30>116,99>29>93,99>30>106,104>29>102,104>30>133,105>29>102,105>30>119,108>29>106,108>30>169,109>29>106,109>30>116,112>29>110,112>30>158,113>29>110,113>30>133,114>29>110,114>30>119,115>29>110,115>30>116,118>29>116,118>30>189,123>29>121,123>30>189,124>29>121,124>30>143,125>29>121,125>30>116,128>29>126,128>30>158,129>29>126,129>30>119,130>29>126,130>30>116,131>29>126,131>30>110,132>29>126,132>30>102,135>29>133,135>30>119,136>29>133,136>30>116,139>29>137,13'
  2065. ..'9>30>119,142>29>140,142>30>116,145>29>143,145>30>140,146>29>143,146>30>116,149>29>147,149>30>140,150>29>147,150>30>116,151>29>147,151>30>169,154>29>152,154>30>140,155>29>152,155>30>147,156>29>152,156>30>116,157>29>152,157>30>102,160>29>158,160>30>119,163>29>161,163>30>119,166>29>164,166>30>110,167>29>164,167>30>133,168>29>164,168>30>119,171>29>169,171>30>116,185>29>172,185>30>110,188>29>186,188>30>119,206>29>204,206>30>274,207>29>204,207>30>272,208>29>204,208>30>195,211>29>209,211>30>272,212>29>209,212>30>244,213>29>209,213>30>277,216>29>214,216>30>252,217>29>214,217>30>292,218>29>214,218>30>238,219>29>214,219>30>259,220>29>214,220'
  2066. ..'>30>250,221>29>214,221>30>244,222>29>214,222>30>240,223>29>214,223>30>274,224>29>214,224>30>256,225>29>214,225>30>204,226>29>214,226>30>209,227>29>214,227>30>195,230>29>228,230>30>244,231>29>228,231>30>240,232>29>228,232>30>209,233>29>228,233>30>202,234>29>228,234>30>290,235>29>228,235>30>272,236>29>228,236>30>270,237>29>228,237>30>248,242>29>240,242>30>209,243>29>240,243>30>202,246>29>244,246>30>272,247>29>244,247>30>202,254>29>252,254>30>250,255>29>252,255>30>238,258>29>256,258>30>250,261>29>259,261>30>256,262>29>259,262>30>250,263>29>259,263>30>202,266>29>264,266>30>240,267>29>264,267>30>209,268>29>264,268>30>238,269>29>264,269>'
  2067. ..'30>228,276>29>274,276>30>256,297>29>292,297>30>238,946>29>944,946>30>1009,947>29>944,947>30>935,950>29>948,950>30>1003,951>29>948,951>30>965,952>29>948,952>30>979,953>29>948,953>30>1009,954>29>948,954>30>973,955>29>948,955>30>1016,956>29>948,956>30>957,959>29>957,959>30>944,960>29>957,960>30>935,961>29>957,961>30>1000,962>29>957,962>30>994,963>29>957,963>30>997,964>29>957,964>30>971,967>29>965,967>30>1007,968>29>965,968>30>1009,969>29>965,969>30>1029,970>29>965,970>30>942,975>29>973,975>30>1003,976>29>973,976>30>965,977>29>973,977>30>957,978>29>973,978>30>942,981>29>979,981>30>965,982>29>979,982>30>957,983>29>979,983>30>1009,984>29'
  2068. ..'>979,984>30>942,987>29>985,987>30>965,990>29>988,990>30>1000,991>29>988,991>30>957,992>29>988,992>30>994,993>29>988,993>30>997,996>29>994,996>30>971,999>29>997,999>30>1000,1002>29>1000,1002>30>942,1005>29>1003,1005>30>971,1006>29>1003,1006>30>965,1013>29>1011,1013>30>997,1014>29>1011,1014>30>957,1015>29>1011,1015>30>944,1036>29>1031,1036>30>971,1037>29>1031,1037>30>957,1238>29>1236,1238>30>1275,1239>29>1236,1239>30>1264,1240>29>1236,1240>30>1271,1243>29>1241,1243>30>1229,1244>29>1241,1244>30>1309,1245>29>1241,1245>30>1255,1248>29>1246,1248>30>1264,1249>29>1246,1249>30>1311,1250>29>1246,1250>30>1275,1251>29>1246,1251>30>1298,1252>29'
  2069. ..'>1246,1252>30>1304,1253>29>1246,1253>30>1271,1254>29>1246,1254>30>1255,1257>29>1255,1257>30>1309,1258>29>1255,1258>30>1229,1259>29>1255,1259>30>1275,1260>29>1255,1260>30>1327,1261>29>1255,1261>30>1280,1262>29>1255,1262>30>1271,1263>29>1255,1263>30>1267,1266>29>1264,1266>30>1275,1269>29>1267,1269>30>1327,1270>29>1267,1270>30>1298,1273>29>1271,1273>30>1264,1274>29>1271,1274>30>1298,1279>29>1277,1279>30>1264,1284>29>1282,1284>30>1267,1285>29>1282,1285>30>1255,1286>29>1282,1286>30>1280,1289>29>1287,1289>30>1309,1290>29>1287,1290>30>1255,1291>29>1287,1291>30>1280,1294>29>1292,1294>30>1255,1295>29>1292,1295>30>1236,1296>29>1292,1296>30>1'
  2070. ..'287,1297>29>1292,1297>30>1280,1300>29>1298,1300>30>1264,1303>29>1301,1303>30>1264,1306>29>1304,1306>30>1264,1307>29>1304,1307>30>1275,1308>29>1304,1308>30>1241,1326>29>1324,1326>30>1264;2;n;1|2:2|3:3|4:4|5:5|6:6|7:7|8:7|3:3|3:3;1|2:2|3:8|9:9|10:10|4:11|6:12|11:13|7:7|8:7|3:8|3:8;1|2:2|3:3|4:14|5:5|6:6|7:7|8:7|3:3|3:3;1|2:2|3:3|4:15|5:16|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:18|5:5|6:19|7:7|8:7|3:3|3:3;1|2:2|3:3|4:20|5:5|6:21|7:7|8:7|3:3|3:3;1|2:2|3:3|4:22|5:16|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:23|5:5|6:6|7:7|8:7|3:3|3:3;1|2:2|3:3|4:24|5:5|6:25|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:28|6:29|7:7|8:7|3:26|3:26;1|2:2|3:3|4:30|5:5|6:25|7:7|8:7|3:'
  2071. ..'3|3:3;1|2:2|3:3|4:31|5:5|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:32|5:5|6:19|7:7|8:7|3:3|3:3;1|2:2|3:3|4:33|5:5|6:6|7:7|8:7|3:3|3:3;1|2:2|3:3|4:34|5:5|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:35|5:5|6:19|7:7|8:7|3:3|3:3;1|2:2|3:3|4:36|5:5|6:25|7:7|8:7|3:3|3:3;1|2:2|3:8|9:9|10:10|4:37|6:12|11:13|7:7|8:7|3:8|3:8;1|2:2|3:3|4:38|5:5|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:39|5:5|6:19|7:7|8:7|3:3|3:3;1|2:2|3:3|4:40|5:5|6:19|7:7|8:7|3:3|3:3;1|2:2|3:3|4:41|5:5|6:6|7:7|8:7|3:3|3:3;1|2:2|3:3|4:42|5:5|6:6|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:43|6:29|7:7|8:7|3:26|3:26;1|2:2|3:3|4:44|5:5|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:45|5:16|6:17|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4'
  2072. ..':46|6:29|7:7|8:7|3:26|3:26;1|2:2|3:3|4:47|5:5|6:19|7:7|8:7|3:3|3:3;1|2:2|3:3|4:48|5:5|6:21|7:7|8:7|3:3|3:3;1|2:2|3:3|4:49|5:16|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:50|5:5|6:19|7:7|8:7|3:3|3:3;1|2:2|3:3|4:51|5:5|6:19|7:7|8:7|3:3|3:3;1|2:2|3:3|4:52|5:5|6:25|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:53|6:29|7:7|8:7|3:26|3:26;1|2:2|3:3|4:54|5:55|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:56|5:57|6:58|7:7|8:7|3:3|3:3;1|2:2|3:3|4:59|5:57|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:61|5:57|6:62|12:63|7:7|13:63|8:63|3:3|3:3;1|2:2|3:3|4:64|5:57|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:65|5:57|6:60|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:66|5:67|6:68|7:7|8:7|3:26|3:26;1|2:2|3:26|10:27|'
  2073. ..'4:69|5:67|6:68|7:7|8:7|3:26|3:26;1|2:2|3:3|4:70|5:57|6:71|7:7|8:7|3:3|3:3;1|2:2|3:3|4:72|5:57|6:71|7:7|8:7|3:3|3:3;1|2:2|3:3|4:73|5:57|6:71|7:7|8:7|3:3|3:3;1|2:2|3:3|4:74|5:57|6:60|7:7|8:7|3:3|3:3;2|1:75;n;1|1:76|2:2|3:77|10:2|4:78|5:79|6:80|11:13|7:7|8:7|3:77|3:77;1|1:81|2:2|3:82|4:83|5:84|6:85|7:7|8:7|3:82|3:82;n;3|14:86;4|15:87|16:88;p;1|1:89|3:90|4:91|5:79|6:92|7:7|8:7|3:90|3:90;n;5|17:93|18:94|19:95;6|20:96;p;1|1:97|2:2|3:77|10:2|4:91|5:79|6:80|11:13|7:7|8:7|3:77|3:77;1|1:98|2:2|3:82|4:99|5:100|6:85|7:7|8:7|3:82|3:82;n;3|14:86;4|15:101|16:88;p;7;8|1:102|21:103|22:104|23:2;p;1|2:2|3:3|4:105|5:67|6:71|7:7|8:7|3:3|3:3;1|2:2|3:26|'
  2074. ..'10:27|4:106|5:79|6:107|7:7|8:7|3:26|3:26;1|2:2|3:3|4:108|5:55|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:109|5:55|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:110|5:55|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:111|5:55|6:112|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:113|5:79|6:107|7:7|8:7|3:26|3:26;1|2:2|3:3|4:114|5:55|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:115|5:55|6:112|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:116|5:79|6:107|7:7|8:7|3:26|3:26;1|2:2|3:117|4:118|5:67|6:119|8:7|3:117|3:117;1|2:2|3:3|4:120|5:67|6:71|7:7|8:7|3:3|3:3;1|2:2|3:3|4:121|5:57|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:122|5:57|6:123|7:7|8:7|3:3|3:3;1|2:2|3:3|4:124|5:79|6:125|7:7|8:7|3:3|3:3;1|2:2|3:3|4:126|5:57|6:60'
  2075. ..'|7:7|8:7|3:3|3:3;1|2:2|3:3|4:127|5:57|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:128|5:67|6:129|7:7|8:7|3:3|3:3;1|2:2|3:3|4:130|5:57|6:60|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:131|5:79|6:68|7:7|8:7|3:26|3:26;1|2:2|3:3|4:132|5:67|6:71|7:7|8:7|3:3|3:3;1|2:2|3:3|4:133|5:57|6:134|7:7|13:63|8:63|3:3|3:3;1|2:2|3:3|4:135|5:55|6:112|7:7|8:7|3:3|3:3;1|2:2|3:3|4:136|5:55|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:137|5:57|6:138|7:7|24:63|8:63|3:3|3:3;1|2:2|3:117|4:139|5:67|6:140|8:7|3:117|3:117;1|2:2|3:3|4:141|5:67|6:71|7:7|8:7|3:3|3:3;1|2:2|3:3|4:142|5:67|6:71|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:143|5:79|6:68|7:7|8:7|3:26|3:26;1|2:2|3:26|10:27|4:144|5:79|6:68|7:7|'
  2076. ..'8:7|3:26|3:26;2|1:145;n;1|1:146|3:147|4:148|5:57|6:149|25:150|24:151|8:151|3:147|3:147;n;7|1:152;7|1:153;8|1:154|22:155|23:2;8|1:156|26:2|22:157|23:2;9|27:158|28:159;9|27:158|28:160;p;2|1:161;n;2;n;10|3:90|10:162|4:163|5:164|6:165|11:13|12:151|7:151|3:90|3:90;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:169|28:170;9|27:169|28:171;p;1|3:3|4:172|5:173|6:174|11:13|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:175|28:176;9|27:177|28:178;p;1|3:3|4:179|5:180|6:181|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:182|28:183;9|27:158|28:184;9|27:185|28:186;9'
  2077. ..'|27:187|28:188;p;1|3:3|4:189|5:173|6:190|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:169|28:191;p;1|3:3|4:192|5:180|6:193|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;p;1|3:3|4:194|5:173|6:174|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:169|28:195;9|27:196|28:197;9|27:177|28:198;p;1|3:3|4:199|5:173|6:200|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:201|28:202;9|27:185|28:203;9|27:187|28:204;9|27:205|28:206;9|27:207|28:208;p;1|3:3|4:209|5:180|6:200|7:151|13:151|24:151|8:7|3:3|3:'
  2078. ..'3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:185|28:210;9|27:187|28:211;p;10|3:3|4:212|5:213|6:214|12:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:215|28:216;p;10|3:3|4:217|5:218|6:219|11:13|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:220|28:221;p;10|3:3|4:222|5:223|6:224|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:225|28:226;9|27:220|28:227;p;10|3:3|4:228|5:229|6:219|11:13|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:230|28:231;9|27:220|28:232;9|27:220|28:233;p;10|3:3|4:234|5:235|6:236|12:151|7:151|3:3|3:3;n;11|3:'
  2079. ..'166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:169|28:237;9|27:169|28:238;9|27:169|28:239;9|27:240|28:241;p;10|3:3|4:242|5:213|6:214|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:243|28:244;p;10|3:3|4:245|5:246|6:214|12:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:215|28:247;p;10|3:3|4:248|5:246|6:214|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:243|28:249;9|27:243|28:250;9|27:243|28:251;p;10|3:3|4:252|5:253|6:224|11:13|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:220|28:254;p;p;12|1:1|3:255|4:256|5:57|6:85|7:151|25:150|3:255|3:'
  2080. ..'255;n;7;6|20:257|34:258;13|35:257|17:257;14;n;15|1:259|36:260;15|1:261|36:262;15|1:263|36:264;p;16;n;17|4:265|6:266|37:147|38:13|39:88;n;18|1:267|6:268|37:269|40:269|38:13|41:270|42:271|43:272;18|1:273|4:274|6:268|37:269|40:269|38:13|41:275|42:271|43:272;19|1:276|4:277|6:278|37:269|40:269|38:13|41:13|42:271|43:272;p;p;9|27:158|28:279;p;p;1|1:280|3:90|4:281|5:282|6:283|7:151|25:284|8:7|3:90|3:90;n;3;9|27:285|28:286;p;1|1:146|3:147|4:287|5:57|6:149|25:150|24:151|8:151|3:147|3:147;n;7|1:152;7|1:153;8|1:154|22:155|23:2;8|1:156|26:2|22:157|23:2;p;p;2|1:145;n;1|1:146|3:147|4:288|5:57|6:149|25:150|24:151|8:151|3:147|3:147;n;7|1:152;7|1:15'
  2081. ..'3;8|1:154|22:155|23:2;8|1:156|26:2|22:157|23:2;p;2|1:161;n;2;n;10|3:90|10:162|4:289|5:164|6:165|11:13|12:151|7:151|3:90|3:90;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;p;1|3:3|4:290|5:173|6:174|11:13|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:175|28:291;9|27:292|28:293;9|27:169|28:294;p;1|3:3|4:295|5:180|6:181|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:215|28:296;9|27:158|28:297;9|27:158|28:298;p;1|3:3|4:299|5:173|6:190|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:300|28:301;9|27:169|28:302;9|27:292|28:30'
  2082. ..'3;9|27:169|28:304;9|27:177|28:305;9|27:292|28:306;9|27:292|28:307;9|27:308|28:309;9|27:177|28:310;9|27:292|28:311;9|27:292|28:312;9|27:169|28:313;p;1|3:3|4:314|5:180|6:193|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:315|28:316;9|27:315|28:317;9|27:315|28:318;9|27:169|28:319;9|27:169|28:320;9|27:215|28:321;9|27:322|28:323;9|27:322|28:324;p;1|3:3|4:325|5:173|6:174|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;p;1|3:3|4:326|5:180|6:200|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:205|28:327;9|27:207|28:328;p;1|3:3|4:329|5'
  2083. ..':180|6:200|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:330|28:331;9|27:207|28:332;p;10|3:3|4:333|5:213|6:214|12:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;p;10|3:3|4:334|5:218|6:219|11:13|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;p;10|3:3|4:335|5:223|6:224|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:225|28:336;9|27:220|28:337;p;10|3:3|4:338|5:229|6:219|11:13|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:230|28:339;p;10|3:3|4:340|5:235|6:236|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|'
  2084. ..'33:82|3:166|3:166;9|27:169|28:341;9|27:169|28:342;9|27:240|28:343;p;10|3:3|4:344|5:213|6:214|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:243|28:345;9|27:243|28:346;9|27:215|28:347;9|27:243|28:348;p;10|3:3|4:349|5:246|6:214|12:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;p;10|3:3|4:350|5:246|6:214|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;p;10|3:3|4:351|5:253|6:224|11:13|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:225|28:352;p;p;12|1:1|3:255|4:353|5:57|6:85|7:151|25:150|3:255|3:255;n;7;6|20:257|34:258;13|35:257|17:257;14;n;15|1:259|'
  2085. ..'36:260;15|1:261|36:262;15|1:263|36:264;p;16;n;17|4:265|6:266|37:147|38:13|39:88;n;18|1:267|6:268|37:269|40:269|38:13|41:270|42:271|43:272;18|1:273|4:274|6:268|37:269|40:269|38:13|41:275|42:271|43:272;19|1:276|4:277|6:278|37:269|40:269|38:13|41:13|42:271|43:272;p;p;p;p;1|1:280|3:90|4:354|5:282|6:283|7:151|25:284|8:7|3:90|3:90;n;3;p;1|1:146|3:147|4:355|5:57|6:149|25:150|24:151|8:151|3:147|3:147;n;7|1:152;7|1:153;8|1:154|22:155|23:2;8|1:156|26:2|22:157|23:2;9|27:158|28:356;p;p;1|2:2|3:3|4:357|5:55|6:112|7:7|8:7|3:3|3:3;1|2:2|3:3|4:358|5:55|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:359|5:55|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:360|5:79|6:361|7:7|8:'
  2086. ..'7|3:3|3:3;1|2:2|3:26|10:27|4:362|5:79|6:107|7:7|8:7|3:26|3:26;1|2:2|3:3|4:363|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:364|5:57|6:365|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:366|5:67|6:367|7:7|8:7|3:26|3:26;1|2:2|3:3|4:368|5:57|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:369|5:57|6:71|7:7|8:7|3:3|3:3;1|2:2|3:3|4:370|5:57|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:371|5:57|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:372|5:57|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:373|5:57|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:374|5:57|6:361|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:375|5:67|6:367|7:7|8:7|3:26|3:26;1|2:2|3:3|4:376|5:377|6:378|7:7|8:7|3:3|3:3;1|2:2|3:3|4:379|5:57|6:380|7:7|8:7|3:3|3:3;1|2:2'
  2087. ..'|3:3|4:381|5:57|6:60|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:382|5:79|6:68|7:7|8:7|3:26|3:26;1|2:2|3:3|4:383|5:57|6:384|7:7|25:63|13:63|8:63|3:3|3:3;1|2:2|3:3|4:385|5:57|6:386|7:7|8:7|3:3|3:3;1|2:2|3:3|4:387|5:57|6:71|7:7|8:7|3:3|3:3;1|2:2|3:3|4:388|5:57|6:380|7:7|8:7|3:3|3:3;1|2:2|3:3|4:389|5:57|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:390|5:57|6:71|7:7|8:7|3:3|3:3;1|2:2|3:3|4:391|5:57|6:380|7:7|8:7|3:3|3:3;1|2:2|3:3|4:392|5:79|6:393|7:7|8:7|3:3|3:3;1|2:2|3:3|4:394|5:57|6:395|7:7|8:7|3:3|3:3;1|2:2|3:3|4:396|5:57|6:123|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:397|5:282|6:398|7:7|8:7|3:26|3:26;1|2:2|3:26|10:27|4:399|5:67|6:367|7:7|8:7|3:26|3:26;1|2:2|'
  2088. ..'3:3|4:400|5:57|6:386|7:7|8:7|3:3|3:3;1|2:2|3:3|4:401|5:67|6:71|7:7|8:7|3:3|3:3;1|2:2|3:3|4:402|5:57|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:403|5:57|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:404|5:377|6:378|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:405|5:67|6:367|7:7|8:7|3:26|3:26;1|2:2|3:3|4:406|5:57|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:407|5:57|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:408|5:57|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:409|5:57|6:380|7:7|8:7|3:3|3:3;1|2:2|3:3|4:410|5:57|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:411|5:16|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:412|5:5|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:413|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:415|5:5|6:25|7:7|8:7|3:3|3:3;1'
  2089. ..'|2:2|3:26|10:27|4:416|6:417|7:7|8:7|3:26|3:26;1|2:2|3:3|4:418|5:16|6:419|7:7|8:7|3:3|3:3;1|2:2|3:3|4:420|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:421|5:57|6:422|7:7|8:7|3:3|3:3;1|2:2|3:3|4:423|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:424|5:57|6:425|7:7|8:7|3:3|3:3;1|2:2|3:3|4:426|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:427|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:428|6:429|7:7|8:7|3:26|3:26;1|2:2|3:3|4:430|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:431|5:57|6:365|7:7|8:7|3:3|3:3;1|2:2|3:3|4:432|5:57|6:433|7:7|8:7|3:3|3:3;1|2:2|3:3|4:434|5:57|6:425|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:435|6:436|7:7|8:7|3:26|3:26;1|2:2|3:3|4:437|5:57|6:425'
  2090. ..'|7:7|8:7|3:3|3:3;1|2:2|3:3|4:438|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:439|5:57|6:440|7:7|8:7|3:3|3:3;1|2:2|3:3|4:441|5:57|6:365|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:442|6:429|7:7|8:7|3:26|3:26;1|2:2|3:3|4:443|5:16|6:419|7:7|8:7|3:3|3:3;1|2:2|3:3|4:444|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:445|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:446|5:57|6:440|7:7|8:7|3:3|3:3;1|2:2|3:3|4:447|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:448|5:57|6:365|7:7|8:7|3:3|3:3;1|2:2|3:3|4:449|5:16|6:419|7:7|8:7|3:3|3:3;1|2:2|3:3|4:450|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:451|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:452|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:453|'
  2091. ..'5:57|6:454|7:7|8:7|3:3|3:3;1|2:2|3:3|4:455|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:456|5:57|6:454|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:457|6:417|7:7|8:7|3:26|3:26;1|2:2|3:3|4:458|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:459|5:57|6:433|7:7|8:7|3:3|3:3;1|2:2|3:3|4:460|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:461|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:462|6:436|7:7|8:7|3:26|3:26;1|2:2|3:3|4:463|5:57|6:422|7:7|8:7|3:3|3:3;1|2:2|3:3|4:464|5:16|6:419|7:7|8:7|3:3|3:3;1|2:2|3:3|4:465|5:16|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:466|5:16|6:60|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:467|5:79|6:468|7:7|8:7|3:26|3:26;1|2:2|3:3|4:469|5:5|6:470|7:7|8:7|3:3|'
  2092. ..'3:3;1|2:2|3:3|4:471|5:5|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:472|5:16|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:473|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:474|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:475|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:476|5:16|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:477|5:67|6:478|7:7|8:7|3:3|3:3;1|2:2|3:3|4:479|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:480|5:16|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:481|5:16|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:482|5:16|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:483|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:484|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:485|5:79|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:487|5:67|6:486|7:7|8:7|3:3|3'
  2093. ..':3;1|2:2|3:3|4:488|5:79|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:489|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:490|5:16|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:492|5:5|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:493|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:494|6:417|7:7|8:7|3:26|3:26;1|2:2|3:3|4:495|6:496|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:497|5:79|6:468|7:7|8:7|3:26|3:26;1|2:2|3:3|4:498|5:57|6:425|7:7|8:7|3:3|3:3;1|2:2|3:3|4:499|5:5|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:500|5:16|6:491|7:7|8:7|3:3|3:3;1|1:501|2:2|3:502|4:503|5:79|6:504|3:502|3:502;n;7;8|21:27|22:505;20|1:506|3:507|44:508|45:13|46:2|3:507|3:507|45:13;20|1:509|3:507|16:151|44:508|45:13|46:2|3'
  2094. ..':507|3:507|45:13;p;1|2:2|3:3|4:510|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:511|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:512|5:16|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:513|5:5|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:514|5:5|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:515|5:79|6:486|7:7|8:7|3:3|3:3;1|1:501|2:2|3:502|4:516|5:57|6:517|3:502|3:502;n;7;8|21:27|22:505;20|1:506|3:507|44:508|45:13|46:2|3:507|3:507|45:13;20|1:509|3:507|16:151|44:508|45:13|46:2|3:507|3:507|45:13;p;1|2:2|3:3|4:518|5:16|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:519|5:520|6:521|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:522|5:523|6:524|7:7|8:7|3:26|3:26;1|2:2|3:3|4:525|5:5|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3'
  2095. ..'|4:526|5:16|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:527|5:79|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:528|5:67|6:529|7:7|8:7|3:3|3:3;1|2:2|3:3|4:530|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:531|6:496|7:7|8:7|3:3|3:3;1|2:2|3:3|4:532|5:520|6:533|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:534|5:67|6:535|7:7|8:7|3:26|3:26;1|2:2|3:3|4:536|5:5|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:537|5:520|6:538|7:7|8:7|3:3|3:3;1|2:2|3:3|4:539|5:520|6:533|7:7|8:7|3:3|3:3;1|2:2|3:3|4:540|5:16|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:541|5:16|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:542|5:5|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:543|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:544|5:79|6:486|7:7|8:7|3:3|3:3'
  2096. ..';1|2:2|3:3|4:545|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:546|5:79|6:468|7:7|8:7|3:26|3:26;1|2:2|3:3|4:547|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:548|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:549|5:5|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:550|6:496|7:7|8:7|3:3|3:3;1|2:2|3:3|4:551|5:16|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:552|6:496|7:7|8:7|3:3|3:3;1|2:2|3:3|4:553|5:16|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:554|5:16|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:555|5:16|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:556|5:16|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:557|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:558|5:16|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:559|5:79|6:486|7:7|8:7|3:3|3:3;'
  2097. ..'1|2:2|3:3|4:560|5:5|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:561|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:562|5:79|6:486|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:563|5:79|6:468|7:7|8:7|3:26|3:26;1|2:2|3:3|4:564|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:565|5:57|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:566|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:567|5:57|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:568|5:5|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:569|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:570|6:571|7:7|8:7|3:26|3:26;1|2:2|3:3|4:572|5:253|6:573|7:7|8:7|3:3|3:3;1|1:501|2:2|3:502|4:574|5:79|6:504|3:502|3:502;n;7;8|21:27|22:505;20|1:506|3:507|44:508|45:13|46:2|3:507|3:507|4'
  2098. ..'5:13;20|1:509|3:507|16:151|44:508|45:13|46:2|3:507|3:507|45:13;p;1|2:2|3:3|4:575|5:79|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:576|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:577|5:79|6:578|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:579|6:571|7:7|8:7|3:26|3:26;1|2:2|3:3|4:580|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:581|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:582|5:79|6:578|7:7|8:7|3:3|3:3;1|2:2|3:3|4:583|5:79|6:584|7:7|8:7|3:3|3:3;1|2:2|3:3|4:585|5:229|6:573|7:7|8:7|3:3|3:3;1|2:2|3:3|4:586|5:57|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:587|5:588|6:589|7:7|8:7|3:3|3:3;1|2:2|3:3|4:590|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:591|5:57|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3'
  2099. ..'|4:592|5:67|6:593|7:7|8:7|3:3|3:3;1|2:2|3:3|4:594|5:67|6:470|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:595|6:417|7:7|8:7|3:26|3:26;1|2:2|3:3|4:596|5:79|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:597|5:79|6:598|7:7|8:7|3:3|3:3;1|2:2|3:3|4:599|5:79|6:600|7:7|8:7|3:3|3:3;1|2:2|3:3|4:601|5:588|6:573|7:7|8:7|3:3|3:3;1|2:2|3:3|4:602|5:79|6:603|7:7|8:7|3:3|3:3;1|2:2|3:3|4:604|5:229|6:589|7:7|8:7|3:3|3:3;1|2:2|3:3|4:605|5:79|6:603|7:7|8:7|3:3|3:3;1|2:2|3:3|4:606|5:79|6:607|7:7|8:7|3:3|3:3;1|2:2|3:3|4:608|5:79|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:609|5:610|6:521|7:7|8:7|3:3|3:3;1|2:2|3:3|4:611|5:79|6:598|7:7|8:7|3:3|3:3;1|2:2|3:3|4:612|5:5|6:470|7:7|8:7|3:3|3'
  2100. ..':3;1|2:2|3:3|4:613|5:79|6:614|7:7|8:7|3:3|3:3;1|2:2|3:3|4:615|5:610|6:425|7:7|8:7|3:3|3:3;1|2:2|3:3|4:616|5:610|6:521|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:617|6:618|7:7|8:7|3:26|3:26;1|2:2|3:3|4:619|5:610|6:620|7:7|8:7|3:3|3:3;1|2:2|3:3|4:621|5:79|6:584|7:7|8:7|3:3|3:3;1|2:2|3:3|4:622|5:229|6:573|7:7|8:7|3:3|3:3;1|2:2|3:3|4:623|5:610|6:533|7:7|8:7|3:3|3:3;1|2:2|3:3|4:624|5:5|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:625|5:57|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:626|5:67|6:478|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:627|5:57|6:628|7:7|8:7|3:26|3:26;1|2:2|3:3|4:629|5:57|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:630|5:67|6:593|7:7|8:7|3:3|3:3;1|2:2|3:3|4:631|5:6'
  2101. ..'7|6:593|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:632|5:67|6:535|7:7|8:7|3:26|3:26;1|2:2|3:3|4:633|5:5|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:634|5:610|6:538|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:635|5:636|6:524|7:7|8:7|3:26|3:26;1|2:2|3:3|4:637|5:520|6:521|7:7|8:7|3:3|3:3;1|2:2|3:3|4:638|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:639|5:520|6:538|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:640|5:57|6:628|7:7|8:7|3:26|3:26;1|2:2|3:3|4:641|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:642|5:5|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:643|5:229|6:573|7:7|8:7|3:3|3:3;1|2:2|3:3|4:644|5:79|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:645|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:646|5:229|6:58'
  2102. ..'9|7:7|8:7|3:3|3:3;1|2:2|3:3|4:647|5:79|6:603|7:7|8:7|3:3|3:3;1|2:2|3:3|4:648|5:79|6:491|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:649|6:618|7:7|8:7|3:26|3:26;1|2:2|3:3|4:650|5:79|6:607|7:7|8:7|3:3|3:3;1|2:2|3:3|4:651|5:79|6:614|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:652|5:79|6:618|7:7|8:7|3:26|3:26;1|2:2|3:3|4:653|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:654|5:79|6:593|7:7|8:7|3:3|3:3;1|2:2|3:3|4:655|5:79|6:478|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:656|5:57|6:657|7:7|8:7|3:26|3:26;1|2:2|3:3|4:658|5:79|6:593|7:7|8:7|3:3|3:3;1|2:2|3:3|4:659|5:79|6:478|7:7|8:7|3:3|3:3;1|2:2|3:3|4:660|5:16|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:661|5:57|6:414|7:7|8:7|3:3|3:3;1|2'
  2103. ..':2|3:3|4:662|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:663|5:16|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:664|5:282|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:665|5:523|6:533|7:7|8:7|3:3|3:3;1|2:2|3:3|4:666|5:79|6:603|7:7|8:7|3:3|3:3;1|2:2|3:3|4:667|5:253|6:589|7:7|8:7|3:3|3:3;1|2:2|3:3|4:668|5:79|6:598|7:7|8:7|3:3|3:3;1|2:2|3:3|4:669|5:79|6:614|7:7|8:7|3:3|3:3;1|2:2|3:3|4:670|5:79|6:598|7:7|8:7|3:3|3:3;1|2:2|3:3|4:671|5:79|6:600|7:7|8:7|3:3|3:3;1|2:2|3:3|4:672|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:673|6:365|7:7|8:7|3:3|3:3;1|2:2|3:3|4:674|6:425|7:7|8:7|3:3|3:3;1|2:2|3:3|4:675|6:365|7:7|8:7|3:3|3:3;1|2:2|3:3|4:676|6:361|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:677|6'
  2104. ..':678|7:7|8:7|3:26|3:26;1|2:2|3:3|4:679|5:680|6:573|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:681|6:682|7:7|8:7|3:26|3:26;1|2:2|3:3|4:683|5:16|6:684|7:7|8:7|3:3|3:3;1|2:2|3:3|4:685|5:253|6:573|7:7|8:7|3:3|3:3;1|2:2|3:3|4:686|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:687|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:688|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:689|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:690|5:57|6:691|7:7|8:7|3:3|3:3;1|2:2|3:3|4:692|5:79|6:593|7:7|8:7|3:3|3:3;1|2:2|3:3|4:693|5:79|6:593|7:7|8:7|3:3|3:3;21|2:2|3:3|4:694|6:695|8:7|3:3|3:3;1|2:2|3:3|4:696|5:636|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:697|5:636|6:698|7:7|8:7|3:3|3:3;1|2:2|3:3|4:699|5:636|6:'
  2105. ..'470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:700|5:282|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:701|6:529|7:7|8:7|3:3|3:3;1|2:2|3:3|4:702|5:282|6:470|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:703|6:535|7:7|8:7|3:26|3:26;1|2:2|3:3|4:704|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:705|5:16|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:706|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:707|5:16|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:708|6:593|7:7|8:7|3:3|3:3;1|2:2|3:3|4:709|5:282|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:710|6:593|7:7|8:7|3:3|3:3;1|2:2|3:3|4:711|6:593|7:7|8:7|3:3|3:3;1|2:2|3:3|4:712|6:478|7:7|8:7|3:3|3:3;1|2:2|3:3|4:713|6:478|7:7|8:7|3:3|3:3;1|2:2|3:3|4:714|6:486|7:7|8:7|3:3|3:3;1|2'
  2106. ..':2|3:3|4:715|5:57|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:716|5:523|6:521|7:7|8:7|3:3|3:3;1|2:2|3:3|4:717|5:523|6:425|7:7|8:7|3:3|3:3;1|2:2|3:3|4:718|5:282|6:470|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:719|6:535|7:7|8:7|3:26|3:26;1|2:2|3:3|4:720|5:523|6:521|7:7|8:7|3:3|3:3;1|2:2|3:3|4:721|5:523|6:538|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:722|5:79|6:628|7:7|8:7|3:26|3:26;1|2:2|3:3|4:723|5:79|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:724|5:523|6:620|7:7|8:7|3:3|3:3;1|2:2|3:3|4:725|5:79|6:25|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:726|5:520|6:524|7:7|8:7|3:26|3:26;1|2:2|3:3|4:727|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:728|6:414|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:729|'
  2107. ..'5:79|6:618|7:7|8:7|3:26|3:26;1|2:2|3:3|4:730|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:731|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:732|5:229|6:573|7:7|8:7|3:3|3:3;1|2:2|3:3|4:733|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:734|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:735|5:253|6:573|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:736|5:79|6:571|7:7|8:7|3:26|3:26;1|2:2|3:3|4:737|5:79|6:614|7:7|8:7|3:3|3:3;1|2:2|3:3|4:738|6:600|7:7|8:7|3:3|3:3;1|2:2|3:3|4:739|6:600|7:7|8:7|3:3|3:3;1|2:2|3:3|4:740|5:229|6:573|7:7|8:7|3:3|3:3;1|2:2|3:3|4:741|6:607|7:7|8:7|3:3|3:3;1|2:2|3:3|4:742|6:584|7:7|8:7|3:3|3:3;1|2:2|3:3|4:743|6:607|7:7|8:7|3:3|3:3;1|2:2|3:3|4:744|6:584|7:7|8:7|3:3|3:'
  2108. ..'3;1|2:2|3:3|4:745|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:746|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:747|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:748|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:749|6:486|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:750|6:751|7:7|8:7|3:26|3:26;1|2:2|3:3|4:752|5:79|6:753|7:7|8:7|3:3|3:3;1|2:2|3:3|4:754|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:755|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:756|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:757|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:758|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:759|5:588|6:573|7:7|8:7|3:3|3:3;1|2:2|3:3|4:760|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:761|5:57|6:533|7:7|8:7|3:3|3:3;1|2:2|3:3|4:762|6:578|7:7|8:7|3:'
  2109. ..'3|3:3;1|2:2|3:3|4:763|6:433|7:7|8:7|3:3|3:3;1|2:2|3:3|4:764|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:765|5:16|6:766|7:7|8:7|3:3|3:3;1|2:2|3:3|4:767|6:440|7:7|8:7|3:3|3:3;1|2:2|3:3|4:768|6:454|7:7|8:7|3:3|3:3;1|2:2|3:3|4:769|6:578|7:7|8:7|3:3|3:3;1|2:2|3:3|4:770|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:771|6:425|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:772|6:751|7:7|8:7|3:26|3:26;1|2:2|3:3|4:773|6:440|7:7|8:7|3:3|3:3;1|2:2|3:3|4:774|6:422|7:7|8:7|3:3|3:3;1|2:2|3:3|4:775|6:454|7:7|8:7|3:3|3:3;1|2:2|3:3|4:776|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:777|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:778|5:16|6:766|7:7|8:7|3:3|3:3;1|2:2|3:3|4:779|5:16|6:684|7:'
  2110. ..'7|8:7|3:3|3:3;1|1:501|2:2|3:502|4:780|5:67|6:517|3:502|3:502;n;7;8|21:27|22:505;20|1:506|3:507|44:508|45:13|46:2|3:507|3:507|45:13;20|1:509|3:507|16:151|44:508|45:13|46:2|3:507|3:507|45:13;p;1|2:2|3:3|4:781|6:425|7:7|8:7|3:3|3:3;1|2:2|3:3|4:782|6:425|7:7|8:7|3:3|3:3;1|2:2|3:3|4:783|6:422|7:7|8:7|3:3|3:3;1|2:2|3:3|4:784|6:414|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:785|6:678|7:7|8:7|3:26|3:26;1|2:2|3:3|4:786|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:787|6:454|7:7|8:7|3:3|3:3;1|2:2|3:3|4:788|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:789|6:682|7:7|8:7|3:26|3:26;1|2:2|3:3|4:790|6:365|7:7|8:7|3:3|3:3;1|2:2|3:3|4:791|6:365|7:7|8:7|3:3|3:3;1|'
  2111. ..'2:2|3:3|4:792|5:680|6:573|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:793|5:57|6:628|7:7|8:7|3:26|3:26;1|2:2|3:3|4:794|5:588|6:573|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:795|5:610|6:524|7:7|8:7|3:26|3:26;1|2:2|3:3|4:796|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:797|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:798|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:799|5:57|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:800|5:57|6:593|7:7|8:7|3:3|3:3;1|2:2|3:3|4:801|5:57|6:802|7:7|8:7|3:3|3:3;1|2:2|3:3|4:803|5:57|6:533|7:7|8:7|3:3|3:3;1|2:2|3:3|4:804|5:57|6:802|7:7|8:7|3:3|3:3;1|2:2|3:3|4:805|5:57|6:593|7:7|8:7|3:3|3:3;1|2:2|3:3|4:806|5:610|6:620|7:7|8:7|3:3|3:3;1|2:2|3:3|4:807|5:610|6:698|7:7|8'
  2112. ..':7|3:3|3:3;1|2:2|3:3|4:808|5:610|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:809|5:636|6:620|7:7|8:7|3:3|3:3;1|2:2|3:3|4:810|5:5|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:811|5:57|6:691|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:812|5:57|6:628|7:7|8:7|3:26|3:26;1|2:2|3:3|4:813|5:229|6:573|7:7|8:7|3:3|3:3;1|2:2|3:3|4:814|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:815|5:636|6:620|7:7|8:7|3:3|3:3;1|2:2|3:3|4:816|5:636|6:698|7:7|8:7|3:3|3:3;1|2:2|3:3|4:817|5:818|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:819|5:229|6:573|7:7|8:7|3:3|3:3;1|2:2|3:3|4:820|5:253|6:573|7:7|8:7|3:3|3:3;1|2:2|3:3|4:821|5:818|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:822|5:16|6:766|7:7|8:7|3:3|3:3;1|2:2|3:3|4:82'
  2113. ..'3|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:824|5:79|6:429|7:7|8:7|3:26|3:26;1|2:2|3:3|4:825|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:826|6:365|7:7|8:7|3:3|3:3;1|2:2|3:3|4:827|6:365|7:7|8:7|3:3|3:3;1|2:2|3:3|4:828|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:829|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:830|6:425|7:7|8:7|3:3|3:3;1|2:2|3:3|4:831|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:832|6:454|7:7|8:7|3:3|3:3;1|2:2|3:3|4:833|5:16|6:766|7:7|8:7|3:3|3:3;1|2:2|3:3|4:834|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:835|6:422|7:7|8:7|3:3|3:3;1|2:2|3:3|4:836|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:837|5:79|6:378|7:7|8:7|3:3|3:3;1|2:2|3:3|4:838|6:584|7:7|8:7|3:3|3:3;1'
  2114. ..'|2:2|3:26|10:27|4:839|5:79|6:436|7:7|8:7|3:26|3:26;1|2:2|3:3|4:840|6:578|7:7|8:7|3:3|3:3;1|2:2|3:3|4:841|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:842|6:607|7:7|8:7|3:3|3:3;1|2:2|3:3|4:843|6:600|7:7|8:7|3:3|3:3;1|2:2|3:3|4:844|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:845|6:607|7:7|8:7|3:3|3:3;1|2:2|3:3|4:846|6:578|7:7|8:7|3:3|3:3;1|2:2|3:3|4:847|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:848|6:584|7:7|8:7|3:3|3:3;1|2:2|3:3|4:849|6:600|7:7|8:7|3:3|3:3;1|2:2|3:3|4:850|5:588|6:573|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:851|5:79|6:618|7:7|8:7|3:26|3:26;1|2:2|3:3|4:852|5:680|6:573|7:7|8:7|3:3|3:3;1|2:2|3:3|4:853|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:854|5:282|6:4'
  2115. ..'70|7:7|8:7|3:3|3:3;1|2:2|3:3|4:855|5:79|6:753|7:7|8:7|3:3|3:3;1|2:2|3:3|4:856|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:857|6:414|7:7|8:7|3:3|3:3;1|1:501|2:2|3:502|4:858|5:67|6:517|3:502|3:502;n;7;8|21:27|22:505;20|1:506|3:507|44:508|45:13|46:2|3:507|3:507|45:13;20|1:509|3:507|16:151|44:508|45:13|46:2|3:507|3:507|45:13;p;1|2:2|3:3|4:859|5:520|6:533|7:7|8:7|3:3|3:3;1|2:2|3:3|4:860|5:520|6:538|7:7|8:7|3:3|3:3;1|2:2|3:3|4:861|5:57|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:862|5:520|6:521|7:7|8:7|3:3|3:3;1|2:2|3:3|4:863|5:520|6:521|7:7|8:7|3:3|3:3;1|2:2|3:3|4:864|5:5|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:865|5:610|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:866'
  2116. ..'|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:867|5:67|6:535|7:7|8:7|3:26|3:26;1|2:2|3:3|4:868|5:67|6:593|7:7|8:7|3:3|3:3;1|2:2|3:3|4:869|5:67|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:870|5:5|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:871|5:67|6:478|7:7|8:7|3:3|3:3;1|2:2|3:3|4:872|5:67|6:593|7:7|8:7|3:3|3:3;1|2:2|3:3|4:873|5:67|6:478|7:7|8:7|3:3|3:3;1|2:2|3:3|4:874|5:610|6:698|7:7|8:7|3:3|3:3;1|2:2|3:3|4:875|5:67|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:876|5:67|6:529|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:877|5:636|6:524|7:7|8:7|3:26|3:26;1|2:2|3:3|4:878|5:67|6:593|7:7|8:7|3:3|3:3;1|2:2|3:3|4:879|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:880|5:5|6:470|7:7|8:7'
  2117. ..'|3:3|3:3;1|2:2|3:3|4:881|5:377|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:882|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:883|5:610|6:620|7:7|8:7|3:3|3:3;1|2:2|3:3|4:884|5:377|6:491|7:7|8:7|3:3|3:3;10|2:2|3:3|4:885|6:886|3:3|3:3;1|2:2|3:3|4:887|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:888|5:57|6:889|7:7|8:7|3:3|3:3;1|2:2|3:3|4:890|5:57|6:478|7:7|8:7|3:3|3:3;1|2:2|3:3|4:891|5:57|6:593|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:892|5:79|6:657|7:7|8:7|3:26|3:26;1|2:2|3:3|4:893|5:57|6:478|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:894|5:79|6:628|7:7|8:7|3:26|3:26;1|2:2|3:3|4:895|5:67|6:496|7:7|8:7|3:3|3:3;1|2:2|3:3|4:896|5:57|6:593|7:7|8:7|3:3|3:3;1|2:2|3:3|4:897|5:57|6:59'
  2118. ..'3|7:7|8:7|3:3|3:3;1|2:2|3:3|4:898|5:79|6:691|7:7|8:7|3:3|3:3;1|2:2|3:3|4:899|5:79|6:691|7:7|8:7|3:3|3:3;1|2:2|3:3|4:900|5:79|6:593|7:7|8:7|3:3|3:3;1|2:2|3:3|4:901|5:79|6:802|7:7|8:7|3:3|3:3;1|2:2|3:3|4:902|5:79|6:533|7:7|8:7|3:3|3:3;1|2:2|3:3|4:903|5:79|6:802|7:7|8:7|3:3|3:3;1|2:2|3:3|4:904|5:818|6:414|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:905|5:818|6:682|7:7|8:7|3:26|3:26;1|2:2|3:3|4:906|5:229|6:573|7:7|8:7|3:3|3:3;1|2:2|3:3|4:907|5:588|6:573|7:7|8:7|3:3|3:3;1|2:2|3:3|4:908|5:79|6:593|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:909|5:79|6:628|7:7|8:7|3:26|3:26;1|2:2|3:3|4:910|5:79|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:911|5:818|6:414|7:7|8:7|3:3|3'
  2119. ..':3;1|2:2|3:3|4:912|5:79|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:913|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:914|5:79|6:429|7:7|8:7|3:26|3:26;1|2:2|3:3|4:915|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:916|6:365|7:7|8:7|3:3|3:3;1|2:2|3:3|4:917|6:440|7:7|8:7|3:3|3:3;1|2:2|3:3|4:918|6:433|7:7|8:7|3:3|3:3;1|2:2|3:3|4:919|6:365|7:7|8:7|3:3|3:3;1|2:2|3:3|4:920|6:440|7:7|8:7|3:3|3:3;1|2:2|3:3|4:921|6:433|7:7|8:7|3:3|3:3;1|2:2|3:3|4:922|5:16|6:766|7:7|8:7|3:3|3:3;1|2:2|3:3|4:923|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:924|5:79|6:436|7:7|8:7|3:26|3:26;1|2:2|3:3|4:925|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:926|5:16|6:766|7:7|8:7|3:3|3:3;1|2:2|3:3'
  2120. ..'|4:927|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:928|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:929|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:930|6:425|7:7|8:7|3:3|3:3;1|2:2|3:3|4:931|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:932|6:422|7:7|8:7|3:3|3:3;1|2:2|3:3|4:933|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:934|6:454|7:7|8:7|3:3|3:3;1|2:2|3:3|4:935|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:936|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:937|5:79|6:378|7:7|8:7|3:3|3:3;1|2:2|3:3|4:938|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:939|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:940|5:253|6:573|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:941|5:79|6:571|7:7|8:7|3:26|3:26;1|2:2|3:3|4:942|5:79|6:598|7:7|8:'
  2121. ..'7|3:3|3:3;1|2:2|3:3|4:943|5:79|6:603|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:944|5:79|6:618|7:7|8:7|3:26|3:26;1|2:2|3:3|4:945|5:79|6:603|7:7|8:7|3:3|3:3;1|2:2|3:3|4:946|5:253|6:589|7:7|8:7|3:3|3:3;1|2:2|3:3|4:947|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:948|5:680|6:573|7:7|8:7|3:3|3:3;1|2:2|3:3|4:949|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:950|5:680|6:589|7:7|8:7|3:3|3:3;1|2:2|3:3|4:951|5:680|6:573|7:7|8:7|3:3|3:3;1|2:2|3:3|4:952|5:79|6:614|7:7|8:7|3:3|3:3;1|2:2|3:3|4:953|5:79|6:614|7:7|8:7|3:3|3:3;1|2:2|3:3|4:954|5:79|6:600|7:7|8:7|3:3|3:3;1|2:2|3:3|4:955|5:79|6:584|7:7|8:7|3:3|3:3;1|2:2|3:3|4:956|5:79|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:957|5:79|6:4'
  2122. ..'91|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:958|6:618|7:7|8:7|3:26|3:26;1|2:2|3:3|4:959|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:960|5:253|6:573|7:7|8:7|3:3|3:3;1|2:2|3:3|4:961|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:962|5:79|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:963|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:964|5:79|6:607|7:7|8:7|3:3|3:3;1|2:2|3:3|4:965|5:79|6:598|7:7|8:7|3:3|3:3;1|1:501|2:2|3:502|4:966|5:79|6:504|3:502|3:502;n;7;8|21:27|22:505;20|1:506|3:507|44:508|45:13|46:2|3:507|3:507|45:13;20|1:509|3:507|16:151|44:508|45:13|46:2|3:507|3:507|45:13;p;1|2:2|3:3|4:967|5:680|6:573|7:7|8:7|3:3|3:3;1|2:2|3:3|4:968|5:79|6:607|7:7|8:7|3:3|3:3;1|2:2|3'
  2123. ..':3|4:969|5:79|6:584|7:7|8:7|3:3|3:3;1|2:2|3:3|4:970|5:79|6:600|7:7|8:7|3:3|3:3;1|2:2|3:3|4:971|5:79|6:603|7:7|8:7|3:3|3:3;1|2:2|3:3|4:972|5:79|6:603|7:7|8:7|3:3|3:3;1|2:2|3:3|4:973|5:680|6:573|7:7|8:7|3:3|3:3;1|2:2|3:3|4:974|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:975|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:976|5:79|6:977|7:7|8:7|3:26|3:26;1|2:2|3:3|4:978|5:79|6:491|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:979|5:79|6:751|7:7|8:7|3:26|3:26;1|2:2|3:3|4:980|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:981|5:588|6:589|7:7|8:7|3:3|3:3;1|2:2|3:3|4:982|5:79|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:983|5:79|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:984|5:79|6:614|7:'
  2124. ..'7|8:7|3:3|3:3;1|2:2|3:3|4:985|5:79|6:598|7:7|8:7|3:3|3:3;1|2:2|3:3|4:986|5:79|6:578|7:7|8:7|3:3|3:3;1|2:2|3:3|4:987|5:680|6:589|7:7|8:7|3:3|3:3;1|2:2|3:3|4:988|5:79|6:598|7:7|8:7|3:3|3:3;1|2:2|3:3|4:989|5:79|6:614|7:7|8:7|3:3|3:3;1|2:2|3:3|4:990|5:588|6:573|7:7|8:7|3:3|3:3;1|2:2|3:3|4:991|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:992|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:993|5:79|6:486|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:994|5:523|6:524|7:7|8:7|3:26|3:26;1|2:2|3:3|4:995|5:520|6:620|7:7|8:7|3:3|3:3;1|2:2|3:3|4:996|5:520|6:425|7:7|8:7|3:3|3:3;1|2:2|3:3|4:997|5:5|6:470|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:998|5:67|6:417|7:7|8:7|3:26|3:26;1'
  2125. ..'|2:2|3:3|4:999|5:377|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1000|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1001|5:57|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1002|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1003|5:67|6:535|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1004|5:377|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1005|5:377|6:60|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1006|5:57|6:468|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1007|5:282|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1008|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1009|5:57|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1010|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1011|5:57|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1012|5:282|6:470|7:7|8:7|3:3|3:3;1|2:2'
  2126. ..'|3:3|4:1013|5:377|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1014|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1015|5:67|6:417|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1016|5:377|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1017|5:377|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1018|5:57|6:593|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1019|5:5|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1020|5:282|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1021|5:377|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1022|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1023|5:282|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1024|5:377|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1025|5:377|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1026|5:67|6:496|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1027|'
  2127. ..'5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1028|5:57|6:468|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1029|5:57|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1030|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1031|5:377|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1032|5:282|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1033|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1034|5:79|6:533|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1035|5:57|6:1036|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1037|5:636|6:521|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1038|5:636|6:533|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1039|5:282|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1040|5:636|6:538|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1041|5:680|6:573|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1042|5'
  2128. ..':79|6:751|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1043|5:79|6:578|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1044|5:79|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1045|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1046|5:282|6:25|7:7|8:7|3:3|3:3;2|1:145;n;1|1:146|3:147|4:1047|5:79|6:149|25:150|24:151|8:151|3:147|3:147;n;7|1:152;7|1:153;8|1:154|22:155|23:2;8|1:156|26:2|22:157|23:2;p;2|1:161;n;2;n;10|3:90|10:162|4:1048|5:1049|6:165|11:13|12:151|7:151|3:90|3:90;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;p;1|3:3|4:1050|5:1051|6:174|11:13|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:292|28:1052;9|27:169|28:1053;p;1|3:3|4:1054|5:1051|'
  2129. ..'6:181|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:182|28:1055;9|27:185|28:1056;9|27:158|28:1057;9|27:215|28:1058;9|27:158|28:1059;9|27:158|28:1060;9|27:187|28:1061;p;1|3:3|4:1062|5:1051|6:190|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:292|28:1063;9|27:169|28:1064;9|27:169|28:1065;9|27:300|28:1066;9|27:177|28:1067;9|27:292|28:1068;p;1|3:3|4:1069|5:1070|6:193|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:322|28:1071;9|27:215|28:1072;9|27:169|28:1073;9|27:169|28:1074;p;1|3:3|4:1075|5:1051|6:174|7:151|13:151|24:151|'
  2130. ..'8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;p;1|3:3|4:1076|5:1051|6:200|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:201|28:1077;9|27:185|28:1078;9|27:187|28:1079;9|27:207|28:1080;p;1|3:3|4:1081|5:1070|6:200|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:185|28:1082;9|27:187|28:1083;9|27:330|28:1084;9|27:207|28:1085;p;10|3:3|4:1086|5:1087|6:214|12:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:215|28:1088;p;10|3:3|4:1089|5:55|6:219|11:13|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:177|28:1090'
  2131. ..';9|27:220|28:1091;9|27:220|28:1092;9|27:230|28:1093;p;10|3:3|4:1094|5:1095|6:224|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:220|28:1096;p;10|3:3|4:1097|5:680|6:219|11:13|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:292|28:1098;p;10|3:3|4:1099|5:1100|6:236|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:240|28:1101;p;10|3:3|4:1102|5:1087|6:214|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:215|28:1103;9|27:243|28:1104;p;10|3:3|4:1105|5:1106|6:214|12:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;p;10|3:3|4:11'
  2132. ..'07|5:1106|6:214|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;p;10|3:3|4:1108|5:588|6:224|11:13|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:225|28:1109;9|27:220|28:1110;9|27:220|28:1111;p;p;12|1:1|3:255|4:1112|5:79|6:85|7:151|25:150|3:255|3:255;n;7;6|20:257|34:258;13|35:257|17:257;14;n;15|1:259|36:260;15|1:261|36:262;15|1:263|36:264;p;16;n;17|4:265|6:266|37:147|38:13|39:88;n;18|1:267|6:268|37:269|40:269|38:13|41:270|42:271|43:272;18|1:273|4:274|6:268|37:269|40:269|38:13|41:275|42:271|43:272;19|1:276|4:277|6:278|37:269|40:269|38:13|41:13|42:271|43:272;p;p;p;p;1|1:280|3:90|4:1113|5'
  2133. ..':5|6:283|7:151|25:284|8:7|3:90|3:90;n;3;p;1|1:146|3:147|4:1114|5:79|6:149|25:150|24:151|8:151|3:147|3:147;n;7|1:152;7|1:153;8|1:154|22:155|23:2;8|1:156|26:2|22:157|23:2;9|27:158|28:1115;9|27:158|28:1116;p;p;1|1:501|2:2|3:502|4:1117|5:57|6:517|3:502|3:502;n;7;8|21:27|22:505;20|1:506|3:507|44:508|45:13|46:2|3:507|3:507|45:13;20|1:509|3:507|16:151|44:508|45:13|46:2|3:507|3:507|45:13;p;1|2:2|3:3|4:1118|5:523|6:538|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1119|5:79|6:628|7:7|8:7|3:26|3:26;1|2:2|3:26|10:27|4:1120|5:57|6:107|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1121|5:523|6:521|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1122|5:520|6:524|7:7|8:7|3:26|3:26;1|2:'
  2134. ..'2|3:3|4:1123|5:282|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1124|5:523|6:521|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1125|5:523|6:533|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1126|6:529|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1127|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1128|5:282|6:470|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1129|6:535|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1130|5:377|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1131|5:377|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1132|6:593|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1133|6:478|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1134|5:377|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1135|6:593|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1136|5:636|6:521|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1137|5:282|6:470|7:7|8:7'
  2135. ..'|3:3|3:3;1|2:2|3:3|4:1138|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1139|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1140|6:535|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1141|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1142|5:282|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1143|5:636|6:620|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1144|5:610|6:524|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1145|5:636|6:425|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1146|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1147|6:593|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1148|5:377|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1149|6:478|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1150|5:79|6:425|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1151|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1152|'
  2136. ..'5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1153|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1154|5:79|6:678|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1155|5:16|6:419|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1156|5:79|6:433|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1157|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1158|5:79|6:584|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1159|5:79|6:422|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1160|5:79|6:425|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1161|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1162|5:16|6:1163|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1164|5:79|6:454|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1165|5:79|6:678|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1166|5:16|6:419|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1167|5:79'
  2137. ..'|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1168|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1169|5:79|6:425|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1170|5:79|6:422|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1171|5:79|6:365|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1172|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1173|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1174|5:79|6:425|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1175|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1176|5:1177|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1178|5:1177|6:112|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1179|5:1177|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1180|5:79|6:384|7:7|25:63|13:63|8:63|3:3|3:3;1|2:2|3:3|4:1181|5:79|6:60|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1182|6:36'
  2138. ..'7|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1183|5:79|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1184|5:523|6:533|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1185|5:282|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1186|5:523|6:538|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1187|5:57|6:486|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1188|5:57|6:468|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1189|5:57|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1190|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1191|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1192|5:818|6:496|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1193|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1194|5:57|6:486|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1195|5:377|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1196|5:282|6:470|7:7|8'
  2139. ..':7|3:3|3:3;1|2:2|3:3|4:1197|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1198|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1199|5:282|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1200|5:57|6:486|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1201|5:57|6:468|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1202|5:79|6:60|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1203|5:818|6:417|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1204|5:377|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1205|5:377|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1206|5:377|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1207|5:818|6:496|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1208|5:282|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1209|5:79|6:440|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1210|5:79|6:365|7:7|8:7|3'
  2140. ..':3|3:3;1|2:2|3:3|4:1211|5:79|6:584|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1212|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1213|5:79|6:440|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1214|5:79|6:365|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1215|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1216|5:79|6:682|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1217|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1218|5:79|6:682|7:7|8:7|3:26|3:26;1|1:501|2:2|3:502|4:1219|5:79|6:504|3:502|3:502;n;7;8|21:27|22:505;20|1:506|3:507|44:508|45:13|46:2|3:507|3:507|45:13;20|1:509|3:507|16:151|44:508|45:13|46:2|3:507|3:507|45:13;p;1|2:2|3:3|4:1220|5:79|6:365|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1221|5:16|6:1163|7:7|8:7|3:3'
  2141. ..'|3:3;1|2:2|3:26|10:27|4:1222|5:57|6:107|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1223|5:1177|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1224|5:1177|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1225|5:57|6:393|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1226|5:79|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1227|5:79|6:380|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1228|5:79|6:380|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1229|5:1177|6:112|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1230|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1231|5:79|6:380|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1232|6:71|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1233|5:79|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1234|5:79|6:71|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1235|5:79|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:123'
  2142. ..'6|5:79|6:71|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1237|5:79|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1238|5:79|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1239|5:79|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1240|5:16|6:378|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1241|5:79|6:380|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1242|5:16|6:378|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1243|5:79|6:386|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1244|5:79|6:71|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1245|5:79|6:386|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1246|5:79|6:361|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1247|5:79|6:395|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1248|6:367|7:7|8:7|3:26|3:26;1|2:2|3:26|10:27|4:1249|5:5|6:398|7:7|8:7|3:26|3:26;1|2:2|3:26|10:27|4:1250|6:367|7'
  2143. ..':7|8:7|3:26|3:26;1|2:2|3:26|10:27|4:1251|6:367|7:7|8:7|3:26|3:26;2|1:75;n;1|1:76|2:2|3:77|10:2|4:1252|5:57|6:80|11:13|7:7|8:7|3:77|3:77;1|1:81|2:2|3:82|4:1253|5:1254|6:85|7:7|8:7|3:82|3:82;n;3|14:86;4|15:87|16:88;p;1|1:89|3:90|4:1255|5:57|6:92|7:7|8:7|3:90|3:90;n;5|17:93|18:94|19:95;6|20:96;p;1|1:97|2:2|3:77|10:2|4:1255|5:57|6:80|11:13|7:7|8:7|3:77|3:77;1|1:98|2:2|3:82|4:1256|5:100|6:85|7:7|8:7|3:82|3:82;n;3|14:86;4|15:101|16:88;p;7;8|1:102|21:103|22:104|23:2;p;1|2:2|3:3|4:1257|5:79|6:138|7:7|24:63|8:63|3:3|3:3;1|2:2|3:117|4:1258|6:119|8:7|3:117|3:117;1|2:2|3:3|4:1259|5:282|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1260|5:79|6:414|7:7|8:7|3'
  2144. ..':3|3:3;1|2:2|3:3|4:1261|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1262|5:282|6:470|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1263|5:377|6:491|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1264|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1265|5:79|6:414|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1266|5:377|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1267|5:377|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1268|5:377|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1269|5:377|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1270|5:282|6:6|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1271|5:282|6:6|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1272|5:377|6:17|7:7|8:7|3:3|3:3;1|2:2|3:117|4:1273|6:140|8:7|3:117|3:117;1|2:2|3:3|4:1274|5:79|6:58|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1275|5:5'
  2145. ..'7|6:125|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1276|6:129|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1277|5:282|6:19|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1278|5:79|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1279|5:79|6:60|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1280|5:67|6:29|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1281|5:282|6:19|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1282|5:79|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1283|5:282|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1284|5:282|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1285|5:79|6:123|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1286|6:71|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1287|6:71|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1288|6:71|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1289|5:79|6:60|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4'
  2146. ..':1290|5:57|6:68|7:7|8:7|3:26|3:26;1|2:2|3:26|10:27|4:1291|5:57|6:68|7:7|8:7|3:26|3:26;2|1:145;n;1|1:146|3:147|4:1292|5:79|6:149|25:150|24:151|8:151|3:147|3:147;n;7|1:152;7|1:153;8|1:154|22:155|23:2;8|1:156|26:2|22:157|23:2;p;2|1:161;n;2;n;10|3:90|10:162|4:1293|5:1049|6:165|11:13|12:151|7:151|3:90|3:90;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:169|28:1294;9|27:169|28:1295;9|27:169|28:1296;p;1|3:3|4:1297|5:1051|6:174|11:13|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:169|28:1298;9|27:175|28:1299;9|27:177|28:1300;p;1|3:3|4:1301|5:1051|6:181|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6'
  2147. ..':167|31:13|32:168|33:82|3:166|3:166;9|27:185|28:1302;9|27:158|28:1303;9|27:158|28:1304;9|27:182|28:1305;9|27:215|28:1306;9|27:158|28:1307;9|27:187|28:1308;p;1|3:3|4:1309|5:1051|6:190|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:308|28:1310;9|27:169|28:1311;9|27:292|28:1312;9|27:169|28:1313;9|27:177|28:1314;9|27:292|28:1315;9|27:292|28:1316;p;1|3:3|4:1317|5:1051|6:193|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:315|28:1318;p;1|3:3|4:1319|5:1051|6:174|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:169|28:1320;9|27:29'
  2148. ..'2|28:1321;p;1|3:3|4:1322|5:1051|6:200|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:185|28:1323;9|27:201|28:1324;p;1|3:3|4:1325|5:1070|6:200|7:151|13:151|24:151|8:7|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;p;10|3:3|4:1326|5:1087|6:214|12:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:215|28:1327;p;10|3:3|4:1328|5:55|6:219|11:13|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;p;10|3:3|4:1329|5:1095|6:224|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:220|28:1330;9|27:220|28:1331;9|27:225|28:1332;p;10|3:3|4:1333|5:6'
  2149. ..'80|6:219|11:13|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:220|28:1334;9|27:220|28:1335;9|27:230|28:1336;p;10|3:3|4:1337|5:1100|6:236|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:169|28:1338;9|27:240|28:1339;9|27:169|28:1340;9|27:169|28:1341;p;10|3:3|4:1342|5:1087|6:214|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:243|28:1343;p;10|3:3|4:1344|5:1106|6:214|12:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:215|28:1345;p;10|3:3|4:1346|5:1106|6:214|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;9|27:243|28:1347'
  2150. ..';9|27:243|28:1348;9|27:215|28:1349;p;10|3:3|4:1350|5:588|6:224|11:13|12:151|7:151|3:3|3:3;n;11|3:166|6:167|31:13|32:168|33:82|3:166|3:166;p;p;12|1:1|3:255|4:1351|5:79|6:85|7:151|25:150|3:255|3:255;n;7;6|20:257|34:258;13|35:257|17:257;14;n;15|1:259|36:260;15|1:261|36:262;15|1:263|36:264;p;16;n;17|4:265|6:266|37:147|38:13|39:88;n;18|1:267|6:268|37:269|40:269|38:13|41:270|42:271|43:272;18|1:273|4:274|6:268|37:269|40:269|38:13|41:275|42:271|43:272;19|1:276|4:277|6:278|37:269|40:269|38:13|41:13|42:271|43:272;p;p;p;p;1|1:280|3:90|4:1352|5:5|6:283|7:151|25:284|8:7|3:90|3:90;n;3;9|27:285|28:1353;p;1|1:146|3:147|4:1354|5:79|6:149|25:150|24:'
  2151. ..'151|8:151|3:147|3:147;n;7|1:152;7|1:153;8|1:154|22:155|23:2;8|1:156|26:2|22:157|23:2;p;p;1|2:2|3:3|4:1355|5:79|6:62|12:63|7:7|13:63|8:63|3:3|3:3;1|2:2|3:3|4:1356|5:79|6:123|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1357|5:818|6:417|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1358|5:79|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1359|5:282|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1360|5:282|6:19|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1361|5:282|6:21|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1362|5:282|6:6|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1363|5:79|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1364|5:377|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1365|5:79|6:134|7:7|13:63|8:63|3:3|3:3;1|2:2|3:8|9:9|10:1366|4:1367|5:67|6:12|1'
  2152. ..'1:13|7:7|8:7|3:8|3:8;1|2:2|3:3|4:1368|5:79|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1369|5:79|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1370|6:71|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1371|5:79|6:71|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1372|5:57|6:68|7:7|8:7|3:26|3:26;1|2:2|3:26|10:27|4:1373|5:57|6:68|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1374|6:71|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1375|5:67|6:29|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1376|5:282|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1377|5:282|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1378|5:282|6:19|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1379|5:79|6:60|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1380|6:68|7:7|8:7|3:26|3:26;1|2:2|3:26|10:27|4:1381|5:57|6:107|'
  2153. ..'7:7|8:7|3:26|3:26;1|2:2|3:3|4:1382|5:218|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1383|5:79|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1384|5:79|6:71|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1385|6:68|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1386|5:79|6:71|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1387|5:218|6:112|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1388|5:218|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1389|5:79|6:60|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1390|5:218|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1391|5:218|6:112|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1392|5:57|6:107|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1393|5:218|6:17|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1394|5:818|6:29|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1395|5:282|6:19|7:'
  2154. ..'7|8:7|3:3|3:3;1|2:2|3:3|4:1396|5:282|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1397|5:282|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1398|5:377|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1399|5:282|6:6|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1400|5:282|6:19|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1401|5:282|6:6|7:7|8:7|3:3|3:3;1|2:2|3:8|9:9|10:10|4:1402|5:818|6:12|11:13|7:7|8:7|3:8|3:8;1|2:2|3:3|4:1403|5:282|6:21|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1404|5:377|6:17|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1405|5:282|6:6|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1406|5:282|6:25|7:7|8:7|3:3|3:3;1|2:2|3:3|4:1407|5:282|6:19|7:7|8:7|3:3|3:3;1|2:2|3:26|10:27|4:1408|5:818|6:29|7:7|8:7|3:26|3:26;1|2:2|3:3|4:1409|5:282|6:25|7:7'
  2155. ..'|8:7|3:3|3:3;1|2:2|3:3|4:1410|5:282|6:19|7:7|8:7|3:3|3:3;p;')
  2156. for _,Object in pairs(Objects) do
  2157. Object.Parent = script and script.Parent==workspace and script or workspace
  2158. end
  2159. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement