Advertisement
lafur

Untitled

May 21st, 2020
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 144.26 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 109391
  3. local genv={}
  4. local Scripts = {
  5. function() ball = script.Parent
  6. damage = 100
  7.  
  8. function onTouched(hit)
  9.  
  10.  
  11. local humanoid = hit.Parent:findFirstChild("Humanoid")
  12. if humanoid~=nil then
  13. tagHumanoid(humanoid)
  14. humanoid.Health = humanoid.Health - damage
  15. wait(0.01)
  16. untagHumanoid(humanoid)
  17. connection:disconnect()
  18. else
  19. damage = damage / 2
  20. if damage < 2 then
  21. connection:disconnect()
  22. ball.Parent = nil
  23. end
  24. end
  25.  
  26. if math.random(1,1) == 1 then
  27. explosion = Instance.new("Explosion")
  28. explosion.BlastRadius = 50
  29. explosion.BlastPressure = 999999999999999999 -- these are really wussy units
  30. explosion.Position = script.Parent.Position
  31. explosion.Parent = game.Workspace
  32. connection:disconnect()
  33. ball.Parent = nil
  34. cancollide = true
  35. end
  36.  
  37. end
  38.  
  39. function tagHumanoid(humanoid)
  40. -- todo: make tag expire
  41. local tag = ball:findFirstChild("creator")
  42. if tag ~= nil then
  43. local new_tag = tag:clone()
  44. new_tag.Parent = humanoid
  45. end
  46. end
  47.  
  48.  
  49. function untagHumanoid(humanoid)
  50. if humanoid ~= nil then
  51. local tag = humanoid:findFirstChild("creator")
  52. if tag ~= nil then
  53. tag.Parent = nil
  54. end
  55. end
  56. end
  57.  
  58. connection = ball.Touched:connect(onTouched)
  59.  
  60. r = game:service("RunService")
  61. t, s = r.Stepped:wait()
  62. d = t + 5.0 - s
  63. while t < d do
  64. t = r.Stepped:wait()
  65. end
  66.  
  67. ball.Parent = nil end;
  68. function() local switch = script.Parent
  69. local gunBarrelOne = script.Parent.Parent.GunBarrel.One
  70.  
  71. local debounce = false
  72. local gunOne = true
  73.  
  74. local cannonBall = Instance.new("Part")
  75. cannonBall.Size = Vector3.new(1,1,1)
  76. cannonBall.BrickColor = BrickColor.new(23) -- medium blue
  77. cannonBall.Shape = 0
  78. cannonBall.BottomSurface = 0
  79. cannonBall.TopSurface = 0
  80. cannonBall.Name = "Cannon Shot"
  81. cannonBall.Elasticity = .1
  82. cannonBall.Reflectance = 0
  83. cannonBall.Friction = 0
  84.  
  85. function fire(player)
  86.  
  87. local sound = script.Parent:findFirstChild("GunSound")
  88. if sound == nil then
  89. sound = Instance.new("Sound")
  90. sound.Name = "GunSound"
  91. sound.SoundId = "http://www.roblox.com/asset?id=2101148"
  92. sound.Volume = 1
  93. sound.Parent = script.Parent
  94. end
  95. sound:play()
  96.  
  97.  
  98.  
  99.  
  100. local missile = Instance.new("Part")
  101.  
  102.  
  103. local barrel
  104.  
  105. if gunOne == true then
  106. barrel = gunBarrelOne
  107. gunOne = true
  108.  
  109. end
  110.  
  111. local spawnPos = barrel.CFrame * Vector3.new(6, 0, 0)
  112.  
  113. local dx = math.random(50,50)
  114. local dy = math.random(0,0)
  115. local dz = math.random(0,0)
  116. local mag = math.random(750,750)
  117.  
  118. local v = barrel.CFrame:vectorToWorldSpace(Vector3.new(mag + dx,dy,dz))
  119.  
  120. local missile = cannonBall:clone()
  121.  
  122. missile.Position = spawnPos
  123. missile.Velocity = v
  124.  
  125.  
  126.  
  127. local new_script = script.Parent.CannonBall:clone()
  128. new_script.Disabled = false
  129. new_script.Parent = missile
  130.  
  131. local creator_tag = Instance.new("ObjectValue")
  132. creator_tag.Value = player
  133. creator_tag.Name = "creator"
  134. creator_tag.Parent = missile
  135.  
  136.  
  137.  
  138. missile.Parent = game.Workspace
  139.  
  140. end
  141.  
  142. function onClicked()
  143. if debounce == false then
  144. debounce = true
  145. switch.BrickColor = BrickColor.new(21)
  146. -- let slip the dogs of war
  147. fire(player)
  148. wait(.1)
  149.  
  150. wait(0.5)
  151. debounce = false
  152. switch.BrickColor = BrickColor.new(37)
  153. end
  154. end
  155.  
  156.  
  157. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  158.  
  159.  
  160. end;
  161. function() ball = script.Parent
  162. damage = 100
  163.  
  164. function onTouched(hit)
  165.  
  166.  
  167. local humanoid = hit.Parent:findFirstChild("Humanoid")
  168. if humanoid~=nil then
  169. tagHumanoid(humanoid)
  170. humanoid.Health = humanoid.Health - damage
  171. wait(0.01)
  172. untagHumanoid(humanoid)
  173. connection:disconnect()
  174. else
  175. damage = damage / 2
  176. if damage < 2 then
  177. connection:disconnect()
  178. ball.Parent = nil
  179. end
  180. end
  181.  
  182. if math.random(1,1) == 1 then
  183. explosion = Instance.new("Explosion")
  184. explosion.BlastRadius = 50
  185. explosion.BlastPressure = 999999999999999999 -- these are really wussy units
  186. explosion.Position = script.Parent.Position
  187. explosion.Parent = game.Workspace
  188. connection:disconnect()
  189. ball.Parent = nil
  190. cancollide = true
  191. end
  192.  
  193. end
  194.  
  195. function tagHumanoid(humanoid)
  196. -- todo: make tag expire
  197. local tag = ball:findFirstChild("creator")
  198. if tag ~= nil then
  199. local new_tag = tag:clone()
  200. new_tag.Parent = humanoid
  201. end
  202. end
  203.  
  204.  
  205. function untagHumanoid(humanoid)
  206. if humanoid ~= nil then
  207. local tag = humanoid:findFirstChild("creator")
  208. if tag ~= nil then
  209. tag.Parent = nil
  210. end
  211. end
  212. end
  213.  
  214. connection = ball.Touched:connect(onTouched)
  215.  
  216. r = game:service("RunService")
  217. t, s = r.Stepped:wait()
  218. d = t + 5.0 - s
  219. while t < d do
  220. t = r.Stepped:wait()
  221. end
  222.  
  223. ball.Parent = nil end;
  224. function() local switch = script.Parent
  225. local gunBarrelOne = script.Parent.Parent.GunBarrel.One
  226.  
  227. local debounce = false
  228. local gunOne = true
  229.  
  230. local cannonBall = Instance.new("Part")
  231. cannonBall.Size = Vector3.new(1,1,1)
  232. cannonBall.BrickColor = BrickColor.new(23) -- medium blue
  233. cannonBall.Shape = 0
  234. cannonBall.BottomSurface = 0
  235. cannonBall.TopSurface = 0
  236. cannonBall.Name = "Cannon Shot"
  237. cannonBall.Elasticity = .1
  238. cannonBall.Reflectance = 0
  239. cannonBall.Friction = 0
  240.  
  241. function fire(player)
  242.  
  243. local sound = script.Parent:findFirstChild("GunSound")
  244. if sound == nil then
  245. sound = Instance.new("Sound")
  246. sound.Name = "GunSound"
  247. sound.SoundId = "http://www.roblox.com/asset?id=2101148"
  248. sound.Volume = 1
  249. sound.Parent = script.Parent
  250. end
  251. sound:play()
  252.  
  253.  
  254.  
  255.  
  256. local missile = Instance.new("Part")
  257.  
  258.  
  259. local barrel
  260.  
  261. if gunOne == true then
  262. barrel = gunBarrelOne
  263. gunOne = true
  264.  
  265. end
  266.  
  267. local spawnPos = barrel.CFrame * Vector3.new(6, 0, 0)
  268.  
  269. local dx = math.random(50,50)
  270. local dy = math.random(0,0)
  271. local dz = math.random(0,0)
  272. local mag = math.random(750,750)
  273.  
  274. local v = barrel.CFrame:vectorToWorldSpace(Vector3.new(mag + dx,dy,dz))
  275.  
  276. local missile = cannonBall:clone()
  277.  
  278. missile.Position = spawnPos
  279. missile.Velocity = v
  280.  
  281.  
  282.  
  283. local new_script = script.Parent.CannonBall:clone()
  284. new_script.Disabled = false
  285. new_script.Parent = missile
  286.  
  287. local creator_tag = Instance.new("ObjectValue")
  288. creator_tag.Value = player
  289. creator_tag.Name = "creator"
  290. creator_tag.Parent = missile
  291.  
  292.  
  293.  
  294. missile.Parent = game.Workspace
  295.  
  296. end
  297.  
  298. function onClicked()
  299. if debounce == false then
  300. debounce = true
  301. switch.BrickColor = BrickColor.new(21)
  302. -- let slip the dogs of war
  303. fire(player)
  304. wait(.1)
  305.  
  306. wait(0.5)
  307. debounce = false
  308. switch.BrickColor = BrickColor.new(37)
  309. end
  310. end
  311.  
  312.  
  313. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  314.  
  315.  
  316. end;
  317. function() function onTouched(hit)
  318.  
  319.  
  320.  
  321. print("Door Hit")
  322.  
  323. script.Parent.Parent.Door.CanCollide = false
  324. script.Parent.Parent.Door.Transparency = 1
  325.  
  326.  
  327. wait(2)
  328.  
  329. script.Parent.Parent.Door.CanCollide = true
  330. script.Parent.Parent.Door.Transparency = 0
  331.  
  332.  
  333. end
  334.  
  335.  
  336.  
  337. script.Parent.Touched:connect(onTouched)
  338. end;
  339. function() function onTouched(hit)
  340.  
  341.  
  342.  
  343. print("Door Hit")
  344.  
  345. script.Parent.Parent.Door.CanCollide = false
  346. script.Parent.Parent.Door.Transparency = 1
  347.  
  348.  
  349. wait(2)
  350.  
  351. script.Parent.Parent.Door.CanCollide = true
  352. script.Parent.Parent.Door.Transparency = 0
  353.  
  354.  
  355. end
  356.  
  357.  
  358.  
  359. script.Parent.Touched:connect(onTouched)
  360. end;
  361. function() --[[
  362.  
  363. Mark901's AircraftSeat [Version 1.0]
  364.  
  365. ------------------------------------------------------------------------------------------
  366.  
  367. Version Log:
  368.  
  369. -V1.0
  370. First version launched! Comments would be greatly appreciated
  371.  
  372. -V1.1
  373. Fixed Camera
  374. When turned off, speed resets to 0
  375.  
  376. ------------------------------------------------------------------------------------------
  377.  
  378. Thank you for using Mark901's AircraftSeat! Below are instructions
  379. on how to use your seat and make any model fly! If you have any
  380. comments or need to report bugs, glitches, and any other problems,
  381. simply send a message to Mark901. Enjoy! :D
  382.  
  383. Instructions:
  384.  
  385. -- A: Pre-Existing Model --
  386. 1. Use a move tool [in-game or Roblox Studio] and place seat in
  387. desired position
  388. |Note: Make sure no one is using the seat, or else you will be unable
  389. to move it
  390. 2. Sit on the seat
  391. 3. Select the tool
  392. 4. Follow controls in GUI to pilot your vehicle
  393.  
  394. -- B: Building From Scratch --
  395. |Note: These are instructions on how to use this seat during online
  396. mode, at a building game for example
  397. 1. Make a large, flat brick first
  398. 2. Build your vehicle on top of the flat brick [This is to make sure that
  399. the vehicle is not stuck to the ground]
  400. 3. Follow instructions from section A
  401.  
  402. Have fun!
  403. -- Mark901 end;
  404. function() position = script.Parent.Position
  405. local frame = Instance.new("CFrameValue")
  406. frame.Name = "OriginCFrame"
  407. frame.Value = script.Parent.CFrame
  408. frame.Parent = script.Parent
  409.  
  410. local object = Instance.new("ObjectValue")
  411. object.Value = script.Parent
  412.  
  413. seat = script.Parent
  414. seat.Direction.cframe = seat.CFrame
  415.  
  416. function onSitUp(child, hopper, gui, plane)
  417. if child.Parent == nil then
  418. seat.Direction.maxTorque = Vector3.new(0,0,0)
  419. seat.Thrust.maxForce = Vector3.new(0,0,0)
  420. hopper.Parent = script
  421. hopper.Active = false
  422. gui.Parent = script
  423. script.Parent.Locked = false
  424. script.Parent.Parent = game.Workspace
  425. end
  426. end
  427.  
  428. function onChildAdded(part)
  429. if part.className == "Weld" then
  430. local torso = part.Part1
  431. if torso ~= nil then
  432.  
  433. local char = torso.Parent
  434. local player = game.Players:GetPlayerFromCharacter(char)
  435. if player ~= nil then
  436. local hopper = script["Aircraft"]
  437. hopper.Parent = player.Backpack
  438. local GUI = script["Controls"]
  439. GUI.Parent = player.PlayerGui
  440. part.AncestryChanged:connect(function(child) onSitUp(child, hopper, GUI, script.Parent) end)
  441. end
  442.  
  443. local parent = torso.Parent
  444. if parent ~= nil then
  445. script.Parent.Locked = true
  446. script.Parent.Parent = parent
  447. end
  448. end
  449. end
  450. end
  451.  
  452. seat.ChildAdded:connect(onChildAdded)
  453. -- Mark901 end;
  454. function() bin = script.Parent
  455. plane = nil
  456. hold = false
  457. local debounce = false
  458. local planedebounce = false
  459. local stuntdebounce = false
  460. local controlling = false
  461. local currentspeed = 0
  462. local turn = nil
  463. fly = false
  464.  
  465. function computeDirection(vec)
  466. local lenSquared = vec.magnitude * vec.magnitude
  467. local invSqrt = 1 / math.sqrt(lenSquared)
  468. return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
  469. end
  470.  
  471. function move(point, engine)
  472. local origincframe = engine:findFirstChild("Direction").cframe
  473. size = engine.Size
  474.  
  475. target = engine.Position+((point - engine.Position).unit*100)
  476. local dir = (target - engine.Position).unit
  477. local spawnPos = engine.Position
  478. left = engine.CFrame*CFrame.new(-size.x/2, 0, 0).p
  479. right = engine.CFrame*CFrame.new(size.x/2, 0, 0).p
  480. md = (target - engine.Position).magnitude
  481.  
  482. foebmd = engine.CFrame*CFrame.new(0, 0, -md).p
  483. toleft = (target -left).magnitude
  484. toright = (target -right).magnitude
  485. rot = ((foebmd - target).magnitude/10)
  486. local pos = spawnPos + (dir * 1)
  487. turn = math.rad((rot/10)*engine.TiltFactor.Value)
  488. if turn > math.rad(89) then
  489. turn = math.rad(89)
  490. end
  491. if toleft< toright and toleft >rot then
  492. engine:findFirstChild("Direction").cframe = CFrame.new(pos, pos + dir)*CFrame.fromEulerAnglesXYZ(0, 0, turn)
  493. elseif toleft > toright and toright >rot then
  494. engine:findFirstChild("Direction").cframe = CFrame.new(pos, pos + dir)*CFrame.fromEulerAnglesXYZ(0, 0, -turn)
  495. else
  496. engine:findFirstChild("Direction").cframe = CFrame.new(pos, pos + dir)
  497. end
  498. engine:findFirstChild("Direction").P = engine.TurnSpeed.Value
  499. end
  500.  
  501. function findPlane(player)
  502. local list = player.Character:GetChildren()
  503. for x = 1, #list do
  504. if (list[x].Name == "AircraftSeat") then
  505. return list[x]
  506. end
  507. end
  508. return nil
  509. end
  510.  
  511. function onButton1Down(mouse)
  512. local vehicle = findPlane(script.Parent.Parent.Parent)
  513. if vehicle ~= nil and debounce == false and planedebounce == false then
  514. if fly == false and taxi == false then return end
  515. debounce = true
  516.  
  517. controlling = true
  518.  
  519. while true do
  520. wait()
  521. local engine = vehicle
  522. local position = mouse.Hit
  523. local target = position.p
  524. move(target, engine)
  525. if planedebounce == true or
  526. controlling == false then break end
  527. end
  528. wait(0.1)
  529. debounce = false
  530. end
  531. end
  532.  
  533. function onButton1Up(mouse)
  534. controlling = false
  535. end
  536.  
  537. function onSelected(mouse)
  538. mouse.Icon = "http://www.roblox.com/asset/?id=7419350"
  539. game.Workspace.CurrentCamera.CameraSubject = bin.Parent.Parent.Character.Head
  540. game.Workspace.CurrentCamera.CameraType = "Track"
  541. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  542. mouse.Button1Up:connect(function() onButton1Up(mouse) end)
  543. mouse.KeyDown:connect(onKeyDown)
  544. mouse.KeyUp:connect(onKeyUp)
  545. mouse.Move:connect(function() Fly(mouse) end)
  546. mouse.Idle:connect(function() Fly(mouse) end)
  547. end
  548.  
  549. function onDeselected(mouse)
  550. game.Workspace.CurrentCamera.CameraSubject = bin.Parent.Parent.Character.Humanoid
  551. game.Workspace.CurrentCamera.CameraType = "Custom"
  552. end
  553.  
  554. function Fly(mouse)
  555. local vehicle = findPlane(script.Parent.Parent.Parent)
  556. if (vehicle==nil) then return end
  557. vehicle.Thrust.velocity = (vehicle.CFrame.lookVector * currentspeed) + Vector3.new(0,vehicle.LiftTrim.Value/100,0)
  558. end
  559.  
  560. function onKeyDown(key)
  561. if (key~=nil) then
  562. key = key:lower()
  563. local vehicle = findPlane(script.Parent.Parent.Parent)
  564. if (vehicle==nil) then return end
  565. if key == "y" then
  566. fly = true
  567. vehicle.Direction.cframe = vehicle.CFrame
  568. vehicle.Direction.maxTorque = Vector3.new(4e3,4e3,4e3)
  569. vehicle.Thrust.maxForce = Vector3.new(9e20,9e20,9e20)
  570. while fly == true do
  571. if currentspeed < vehicle.Speed.Value then
  572. currentspeed = currentspeed + 1
  573. elseif currentspeed > vehicle.Speed.Value then
  574. currentspeed = currentspeed - 1
  575. end
  576. if vehicle.Acceleration.Value > 1000 then vehicle.Acceleration.Value = 1000 end
  577. wait((1-(vehicle.Acceleration.Value/1000))+0.01)
  578. if fly == false then break end
  579. end
  580. end
  581. if key == "x" then
  582. fly = false
  583. currentspeed = 0
  584. vehicle.Direction.maxTorque = Vector3.new(0,0,0)
  585. vehicle.Thrust.maxForce = Vector3.new(0,0,0)
  586. end
  587. if key == "w" then
  588. if vehicle.Speed.Value < vehicle.MaxSpeed.Value then
  589. vehicle.Speed.Value = vehicle.Speed.Value + 10
  590. end
  591. end
  592. if key == "s" then
  593. if vehicle.Speed.Value > -10 then
  594. vehicle.Speed.Value = vehicle.Speed.Value - 10
  595. end
  596. end
  597. if (key=="'") and (bin.Locked.Value == false) then
  598. local repl = script:clone()
  599. repl.Parent = bin
  600. wait(1)
  601. script:remove()
  602. end
  603. if key == "l" and fly == true then
  604. vehicle.Direction.maxTorque = Vector3.new(4e3,0,4e3)
  605. local frame = vehicle:FindFirstChild("OriginCFrame")
  606. if frame ~= nil then
  607. vehicle.Direction.cframe = frame.Value
  608. end
  609. wait(2)
  610. vehicle.Direction.cframe = vehicle.CFrame
  611. vehicle.Direction.maxTorque = Vector3.new(4e3,4e3,4e3)
  612. end
  613. end
  614. end
  615.  
  616. function onKeyUp(key)
  617. if (key~=nil) then
  618. key = key:lower()
  619. local vehicle = findPlane(script.Parent.Parent.Parent)
  620. if (vehicle==nil) then return end
  621. end
  622. end
  623.  
  624. bin.Selected:connect(onSelected)
  625. bin.Deselected:connect(onDeselected)
  626. -- Mark901 end;
  627. function() function onTouched(hit)
  628.  
  629.  
  630.  
  631. print("Door Hit")
  632.  
  633. script.Parent.Parent.Door.CanCollide = false
  634. script.Parent.Parent.Door.Transparency = 1
  635.  
  636.  
  637. wait(2)
  638.  
  639. script.Parent.Parent.Door.CanCollide = true
  640. script.Parent.Parent.Door.Transparency = 0
  641.  
  642.  
  643. end
  644.  
  645.  
  646.  
  647. script.Parent.Touched:connect(onTouched)
  648. end;
  649. function() function onTouched(hit)
  650.  
  651.  
  652.  
  653. print("Door Hit")
  654.  
  655. script.Parent.Parent.Door.CanCollide = false
  656. script.Parent.Parent.Door.Transparency = 1
  657.  
  658.  
  659. wait(2)
  660.  
  661. script.Parent.Parent.Door.CanCollide = true
  662. script.Parent.Parent.Door.Transparency = 0
  663.  
  664.  
  665. end
  666.  
  667.  
  668.  
  669. script.Parent.Touched:connect(onTouched)
  670. end;
  671. function() local shut = true
  672.  
  673. function close()
  674. shut = true
  675. script.Parent.Lock1.Transparency = 0
  676. script.Parent.Lock1.CanCollide = true
  677. wait(.1)
  678. script.Parent.Monior.BrickColor = BrickColor.new(28)
  679. wait(.1)
  680. script.Parent.Lock2.Transparency = 1
  681. script.Parent.Lock2.CanCollide = false
  682. script.Parent.Monior.BrickColor = BrickColor.new(28)
  683. end
  684.  
  685. function open()
  686. shut = false
  687. script.Parent.Lock2.Transparency = 0
  688. script.Parent.Lock2.CanCollide = true
  689. wait(.1)
  690. script.Parent.Monior.BrickColor = BrickColor.new(21)
  691. wait(.1)
  692. script.Parent.Lock1.Transparency = 1
  693. script.Parent.Lock1.CanCollide = false
  694. script.Parent.Monior.BrickColor = BrickColor.new(21)
  695. end
  696.  
  697. function onClicked()
  698.  
  699. if shut == true then open() else close() end
  700.  
  701. end
  702.  
  703. script.Parent.Head1.ClickDetector.MouseClick:connect(onClicked)
  704. script.Parent.Head2.ClickDetector.MouseClick:connect(onClicked)
  705. script.Parent.Head3.ClickDetector.MouseClick:connect(onClicked)
  706. script.Parent.Head4.ClickDetector.MouseClick:connect(onClicked)
  707.  
  708.  
  709. close() end;
  710. function() ball = script.Parent
  711. damage = 100
  712.  
  713. function onTouched(hit)
  714.  
  715.  
  716. local humanoid = hit.Parent:findFirstChild("Humanoid")
  717. if humanoid~=nil then
  718. tagHumanoid(humanoid)
  719. humanoid.Health = humanoid.Health - damage
  720. wait(0.01)
  721. untagHumanoid(humanoid)
  722. connection:disconnect()
  723. else
  724. damage = damage / 2
  725. if damage < 2 then
  726. connection:disconnect()
  727. ball.Parent = nil
  728. end
  729. end
  730.  
  731. if math.random(1,1) == 1 then
  732. explosion = Instance.new("Explosion")
  733. explosion.BlastRadius = 50
  734. explosion.BlastPressure = 999999999999999999 -- these are really wussy units
  735. explosion.Position = script.Parent.Position
  736. explosion.Parent = game.Workspace
  737. connection:disconnect()
  738. ball.Parent = nil
  739. cancollide = true
  740. end
  741.  
  742. end
  743.  
  744. function tagHumanoid(humanoid)
  745. -- todo: make tag expire
  746. local tag = ball:findFirstChild("creator")
  747. if tag ~= nil then
  748. local new_tag = tag:clone()
  749. new_tag.Parent = humanoid
  750. end
  751. end
  752.  
  753.  
  754. function untagHumanoid(humanoid)
  755. if humanoid ~= nil then
  756. local tag = humanoid:findFirstChild("creator")
  757. if tag ~= nil then
  758. tag.Parent = nil
  759. end
  760. end
  761. end
  762.  
  763. connection = ball.Touched:connect(onTouched)
  764.  
  765. r = game:service("RunService")
  766. t, s = r.Stepped:wait()
  767. d = t + 5.0 - s
  768. while t < d do
  769. t = r.Stepped:wait()
  770. end
  771.  
  772. ball.Parent = nil end;
  773. function() local switch = script.Parent
  774. local gunBarrelOne = script.Parent.Parent.GunBarrel.One
  775.  
  776. local debounce = false
  777. local gunOne = true
  778.  
  779. local cannonBall = Instance.new("Part")
  780. cannonBall.Size = Vector3.new(1,1,1)
  781. cannonBall.BrickColor = BrickColor.new(23) -- medium blue
  782. cannonBall.Shape = 0
  783. cannonBall.BottomSurface = 0
  784. cannonBall.TopSurface = 0
  785. cannonBall.Name = "Cannon Shot"
  786. cannonBall.Elasticity = .1
  787. cannonBall.Reflectance = 0
  788. cannonBall.Friction = 0
  789.  
  790. function fire(player)
  791.  
  792. local sound = script.Parent:findFirstChild("GunSound")
  793. if sound == nil then
  794. sound = Instance.new("Sound")
  795. sound.Name = "GunSound"
  796. sound.SoundId = "http://www.roblox.com/asset?id=2101148"
  797. sound.Volume = 1
  798. sound.Parent = script.Parent
  799. end
  800. sound:play()
  801.  
  802.  
  803.  
  804.  
  805. local missile = Instance.new("Part")
  806.  
  807.  
  808. local barrel
  809.  
  810. if gunOne == true then
  811. barrel = gunBarrelOne
  812. gunOne = true
  813.  
  814. end
  815.  
  816. local spawnPos = barrel.CFrame * Vector3.new(6, 0, 0)
  817.  
  818. local dx = math.random(50,50)
  819. local dy = math.random(0,0)
  820. local dz = math.random(0,0)
  821. local mag = math.random(750,750)
  822.  
  823. local v = barrel.CFrame:vectorToWorldSpace(Vector3.new(mag + dx,dy,dz))
  824.  
  825. local missile = cannonBall:clone()
  826.  
  827. missile.Position = spawnPos
  828. missile.Velocity = v
  829.  
  830.  
  831.  
  832. local new_script = script.Parent.CannonBall:clone()
  833. new_script.Disabled = false
  834. new_script.Parent = missile
  835.  
  836. local creator_tag = Instance.new("ObjectValue")
  837. creator_tag.Value = player
  838. creator_tag.Name = "creator"
  839. creator_tag.Parent = missile
  840.  
  841.  
  842.  
  843. missile.Parent = game.Workspace
  844.  
  845. end
  846.  
  847. function onClicked()
  848. if debounce == false then
  849. debounce = true
  850. switch.BrickColor = BrickColor.new(21)
  851. -- let slip the dogs of war
  852. fire(player)
  853. wait(.1)
  854.  
  855. wait(0.5)
  856. debounce = false
  857. switch.BrickColor = BrickColor.new(37)
  858. end
  859. end
  860.  
  861.  
  862. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  863.  
  864.  
  865. end;
  866. function() ball = script.Parent
  867. damage = 100
  868.  
  869. function onTouched(hit)
  870.  
  871.  
  872. local humanoid = hit.Parent:findFirstChild("Humanoid")
  873. if humanoid~=nil then
  874. tagHumanoid(humanoid)
  875. humanoid.Health = humanoid.Health - damage
  876. wait(0.01)
  877. untagHumanoid(humanoid)
  878. connection:disconnect()
  879. else
  880. damage = damage / 2
  881. if damage < 2 then
  882. connection:disconnect()
  883. ball.Parent = nil
  884. end
  885. end
  886.  
  887. if math.random(1,1) == 1 then
  888. explosion = Instance.new("Explosion")
  889. explosion.BlastRadius = 50
  890. explosion.BlastPressure = 999999999999999999 -- these are really wussy units
  891. explosion.Position = script.Parent.Position
  892. explosion.Parent = game.Workspace
  893. connection:disconnect()
  894. ball.Parent = nil
  895. cancollide = true
  896. end
  897.  
  898. end
  899.  
  900. function tagHumanoid(humanoid)
  901. -- todo: make tag expire
  902. local tag = ball:findFirstChild("creator")
  903. if tag ~= nil then
  904. local new_tag = tag:clone()
  905. new_tag.Parent = humanoid
  906. end
  907. end
  908.  
  909.  
  910. function untagHumanoid(humanoid)
  911. if humanoid ~= nil then
  912. local tag = humanoid:findFirstChild("creator")
  913. if tag ~= nil then
  914. tag.Parent = nil
  915. end
  916. end
  917. end
  918.  
  919. connection = ball.Touched:connect(onTouched)
  920.  
  921. r = game:service("RunService")
  922. t, s = r.Stepped:wait()
  923. d = t + 5.0 - s
  924. while t < d do
  925. t = r.Stepped:wait()
  926. end
  927.  
  928. ball.Parent = nil end;
  929. function() local switch = script.Parent
  930. local gunBarrelOne = script.Parent.Parent.GunBarrel.One
  931.  
  932. local debounce = false
  933. local gunOne = true
  934.  
  935. local cannonBall = Instance.new("Part")
  936. cannonBall.Size = Vector3.new(1,1,1)
  937. cannonBall.BrickColor = BrickColor.new(23) -- medium blue
  938. cannonBall.Shape = 0
  939. cannonBall.BottomSurface = 0
  940. cannonBall.TopSurface = 0
  941. cannonBall.Name = "Cannon Shot"
  942. cannonBall.Elasticity = .1
  943. cannonBall.Reflectance = 0
  944. cannonBall.Friction = 0
  945.  
  946. function fire(player)
  947.  
  948. local sound = script.Parent:findFirstChild("GunSound")
  949. if sound == nil then
  950. sound = Instance.new("Sound")
  951. sound.Name = "GunSound"
  952. sound.SoundId = "http://www.roblox.com/asset?id=2101148"
  953. sound.Volume = 1
  954. sound.Parent = script.Parent
  955. end
  956. sound:play()
  957.  
  958.  
  959.  
  960.  
  961. local missile = Instance.new("Part")
  962.  
  963.  
  964. local barrel
  965.  
  966. if gunOne == true then
  967. barrel = gunBarrelOne
  968. gunOne = true
  969.  
  970. end
  971.  
  972. local spawnPos = barrel.CFrame * Vector3.new(6, 0, 0)
  973.  
  974. local dx = math.random(50,50)
  975. local dy = math.random(0,0)
  976. local dz = math.random(0,0)
  977. local mag = math.random(750,750)
  978.  
  979. local v = barrel.CFrame:vectorToWorldSpace(Vector3.new(mag + dx,dy,dz))
  980.  
  981. local missile = cannonBall:clone()
  982.  
  983. missile.Position = spawnPos
  984. missile.Velocity = v
  985.  
  986.  
  987.  
  988. local new_script = script.Parent.CannonBall:clone()
  989. new_script.Disabled = false
  990. new_script.Parent = missile
  991.  
  992. local creator_tag = Instance.new("ObjectValue")
  993. creator_tag.Value = player
  994. creator_tag.Name = "creator"
  995. creator_tag.Parent = missile
  996.  
  997.  
  998.  
  999. missile.Parent = game.Workspace
  1000.  
  1001. end
  1002.  
  1003. function onClicked()
  1004. if debounce == false then
  1005. debounce = true
  1006. switch.BrickColor = BrickColor.new(21)
  1007. -- let slip the dogs of war
  1008. fire(player)
  1009. wait(.1)
  1010.  
  1011. wait(0.5)
  1012. debounce = false
  1013. switch.BrickColor = BrickColor.new(37)
  1014. end
  1015. end
  1016.  
  1017.  
  1018. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  1019.  
  1020.  
  1021. end;
  1022. function() ball = script.Parent
  1023. damage = 100
  1024.  
  1025. function onTouched(hit)
  1026.  
  1027.  
  1028. local humanoid = hit.Parent:findFirstChild("Humanoid")
  1029. if humanoid~=nil then
  1030. tagHumanoid(humanoid)
  1031. humanoid.Health = humanoid.Health - damage
  1032. wait(0.01)
  1033. untagHumanoid(humanoid)
  1034. connection:disconnect()
  1035. else
  1036. damage = damage / 2
  1037. if damage < 2 then
  1038. connection:disconnect()
  1039. ball.Parent = nil
  1040. end
  1041. end
  1042.  
  1043. if math.random(1,1) == 1 then
  1044. explosion = Instance.new("Explosion")
  1045. explosion.BlastRadius = 50
  1046. explosion.BlastPressure = 999999999999999999 -- these are really wussy units
  1047. explosion.Position = script.Parent.Position
  1048. explosion.Parent = game.Workspace
  1049. connection:disconnect()
  1050. ball.Parent = nil
  1051. cancollide = true
  1052. end
  1053.  
  1054. end
  1055.  
  1056. function tagHumanoid(humanoid)
  1057. -- todo: make tag expire
  1058. local tag = ball:findFirstChild("creator")
  1059. if tag ~= nil then
  1060. local new_tag = tag:clone()
  1061. new_tag.Parent = humanoid
  1062. end
  1063. end
  1064.  
  1065.  
  1066. function untagHumanoid(humanoid)
  1067. if humanoid ~= nil then
  1068. local tag = humanoid:findFirstChild("creator")
  1069. if tag ~= nil then
  1070. tag.Parent = nil
  1071. end
  1072. end
  1073. end
  1074.  
  1075. connection = ball.Touched:connect(onTouched)
  1076.  
  1077. r = game:service("RunService")
  1078. t, s = r.Stepped:wait()
  1079. d = t + 5.0 - s
  1080. while t < d do
  1081. t = r.Stepped:wait()
  1082. end
  1083.  
  1084. ball.Parent = nil end;
  1085. function() local switch = script.Parent
  1086. local gunBarrelOne = script.Parent.Parent.GunBarrel.One
  1087.  
  1088. local debounce = false
  1089. local gunOne = true
  1090.  
  1091. local cannonBall = Instance.new("Part")
  1092. cannonBall.Size = Vector3.new(1,1,1)
  1093. cannonBall.BrickColor = BrickColor.new(23) -- medium blue
  1094. cannonBall.Shape = 0
  1095. cannonBall.BottomSurface = 0
  1096. cannonBall.TopSurface = 0
  1097. cannonBall.Name = "Cannon Shot"
  1098. cannonBall.Elasticity = .1
  1099. cannonBall.Reflectance = 0
  1100. cannonBall.Friction = 0
  1101.  
  1102. function fire(player)
  1103.  
  1104. local sound = script.Parent:findFirstChild("GunSound")
  1105. if sound == nil then
  1106. sound = Instance.new("Sound")
  1107. sound.Name = "GunSound"
  1108. sound.SoundId = "http://www.roblox.com/asset?id=2101148"
  1109. sound.Volume = 1
  1110. sound.Parent = script.Parent
  1111. end
  1112. sound:play()
  1113.  
  1114.  
  1115.  
  1116.  
  1117. local missile = Instance.new("Part")
  1118.  
  1119.  
  1120. local barrel
  1121.  
  1122. if gunOne == true then
  1123. barrel = gunBarrelOne
  1124. gunOne = true
  1125.  
  1126. end
  1127.  
  1128. local spawnPos = barrel.CFrame * Vector3.new(6, 0, 0)
  1129.  
  1130. local dx = math.random(50,50)
  1131. local dy = math.random(0,0)
  1132. local dz = math.random(0,0)
  1133. local mag = math.random(750,750)
  1134.  
  1135. local v = barrel.CFrame:vectorToWorldSpace(Vector3.new(mag + dx,dy,dz))
  1136.  
  1137. local missile = cannonBall:clone()
  1138.  
  1139. missile.Position = spawnPos
  1140. missile.Velocity = v
  1141.  
  1142.  
  1143.  
  1144. local new_script = script.Parent.CannonBall:clone()
  1145. new_script.Disabled = false
  1146. new_script.Parent = missile
  1147.  
  1148. local creator_tag = Instance.new("ObjectValue")
  1149. creator_tag.Value = player
  1150. creator_tag.Name = "creator"
  1151. creator_tag.Parent = missile
  1152.  
  1153.  
  1154.  
  1155. missile.Parent = game.Workspace
  1156.  
  1157. end
  1158.  
  1159. function onClicked()
  1160. if debounce == false then
  1161. debounce = true
  1162. switch.BrickColor = BrickColor.new(21)
  1163. -- let slip the dogs of war
  1164. fire(player)
  1165. wait(.1)
  1166.  
  1167. wait(0.5)
  1168. debounce = false
  1169. switch.BrickColor = BrickColor.new(37)
  1170. end
  1171. end
  1172.  
  1173.  
  1174. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  1175.  
  1176.  
  1177. end;
  1178. function() ball = script.Parent
  1179. damage = 100
  1180.  
  1181. function onTouched(hit)
  1182.  
  1183.  
  1184. local humanoid = hit.Parent:findFirstChild("Humanoid")
  1185. if humanoid~=nil then
  1186. tagHumanoid(humanoid)
  1187. humanoid.Health = humanoid.Health - damage
  1188. wait(0.01)
  1189. untagHumanoid(humanoid)
  1190. connection:disconnect()
  1191. else
  1192. damage = damage / 2
  1193. if damage < 2 then
  1194. connection:disconnect()
  1195. ball.Parent = nil
  1196. end
  1197. end
  1198.  
  1199. if math.random(1,1) == 1 then
  1200. explosion = Instance.new("Explosion")
  1201. explosion.BlastRadius = 50
  1202. explosion.BlastPressure = 999999999999999999 -- these are really wussy units
  1203. explosion.Position = script.Parent.Position
  1204. explosion.Parent = game.Workspace
  1205. connection:disconnect()
  1206. ball.Parent = nil
  1207. cancollide = true
  1208. end
  1209.  
  1210. end
  1211.  
  1212. function tagHumanoid(humanoid)
  1213. -- todo: make tag expire
  1214. local tag = ball:findFirstChild("creator")
  1215. if tag ~= nil then
  1216. local new_tag = tag:clone()
  1217. new_tag.Parent = humanoid
  1218. end
  1219. end
  1220.  
  1221.  
  1222. function untagHumanoid(humanoid)
  1223. if humanoid ~= nil then
  1224. local tag = humanoid:findFirstChild("creator")
  1225. if tag ~= nil then
  1226. tag.Parent = nil
  1227. end
  1228. end
  1229. end
  1230.  
  1231. connection = ball.Touched:connect(onTouched)
  1232.  
  1233. r = game:service("RunService")
  1234. t, s = r.Stepped:wait()
  1235. d = t + 5.0 - s
  1236. while t < d do
  1237. t = r.Stepped:wait()
  1238. end
  1239.  
  1240. ball.Parent = nil end;
  1241. function() local switch = script.Parent
  1242. local gunBarrelOne = script.Parent.Parent.GunBarrel.One
  1243.  
  1244. local debounce = false
  1245. local gunOne = true
  1246.  
  1247. local cannonBall = Instance.new("Part")
  1248. cannonBall.Size = Vector3.new(1,1,1)
  1249. cannonBall.BrickColor = BrickColor.new(23) -- medium blue
  1250. cannonBall.Shape = 0
  1251. cannonBall.BottomSurface = 0
  1252. cannonBall.TopSurface = 0
  1253. cannonBall.Name = "Cannon Shot"
  1254. cannonBall.Elasticity = .1
  1255. cannonBall.Reflectance = 0
  1256. cannonBall.Friction = 0
  1257.  
  1258. function fire(player)
  1259.  
  1260. local sound = script.Parent:findFirstChild("GunSound")
  1261. if sound == nil then
  1262. sound = Instance.new("Sound")
  1263. sound.Name = "GunSound"
  1264. sound.SoundId = "http://www.roblox.com/asset?id=2101148"
  1265. sound.Volume = 1
  1266. sound.Parent = script.Parent
  1267. end
  1268. sound:play()
  1269.  
  1270.  
  1271.  
  1272.  
  1273. local missile = Instance.new("Part")
  1274.  
  1275.  
  1276. local barrel
  1277.  
  1278. if gunOne == true then
  1279. barrel = gunBarrelOne
  1280. gunOne = true
  1281.  
  1282. end
  1283.  
  1284. local spawnPos = barrel.CFrame * Vector3.new(6, 0, 0)
  1285.  
  1286. local dx = math.random(50,50)
  1287. local dy = math.random(0,0)
  1288. local dz = math.random(0,0)
  1289. local mag = math.random(750,750)
  1290.  
  1291. local v = barrel.CFrame:vectorToWorldSpace(Vector3.new(mag + dx,dy,dz))
  1292.  
  1293. local missile = cannonBall:clone()
  1294.  
  1295. missile.Position = spawnPos
  1296. missile.Velocity = v
  1297.  
  1298.  
  1299.  
  1300. local new_script = script.Parent.CannonBall:clone()
  1301. new_script.Disabled = false
  1302. new_script.Parent = missile
  1303.  
  1304. local creator_tag = Instance.new("ObjectValue")
  1305. creator_tag.Value = player
  1306. creator_tag.Name = "creator"
  1307. creator_tag.Parent = missile
  1308.  
  1309.  
  1310.  
  1311. missile.Parent = game.Workspace
  1312.  
  1313. end
  1314.  
  1315. function onClicked()
  1316. if debounce == false then
  1317. debounce = true
  1318. switch.BrickColor = BrickColor.new(21)
  1319. -- let slip the dogs of war
  1320. fire(player)
  1321. wait(.1)
  1322.  
  1323. wait(0.5)
  1324. debounce = false
  1325. switch.BrickColor = BrickColor.new(37)
  1326. end
  1327. end
  1328.  
  1329.  
  1330. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  1331.  
  1332.  
  1333. end;
  1334. function() model = script.Parent.Parent.Parent
  1335. backup = model:clone()
  1336. local debounce = false
  1337.  
  1338. function onTouch(part)
  1339. if (part.Name == "Safe") and (debounce == false) and (script.Parent.Count.Value == 0) then
  1340. debounce = true
  1341. wait(2)
  1342. model = backup:clone()
  1343. model.Parent = game.Workspace
  1344. model:makeJoints()
  1345. script.Parent.Count.Value = 1
  1346. debounce = false
  1347. end
  1348. end
  1349. script.Parent.Touched:connect(onTouch)
  1350. -- Made by AUDI80. Please do not publish in in the 3rd person. Thanks end;
  1351. function() position = script.Parent.Engine.Position
  1352. local frame = Instance.new("CFrameValue")
  1353. frame.Name = "OriginCFrame"
  1354. frame.Value = script.Parent.Engine.CFrame
  1355. frame.Parent = script.Parent
  1356.  
  1357. local object = Instance.new("ObjectValue")
  1358. object.Value = script.Parent.Parent.Parent
  1359.  
  1360. seat = script.Parent.Seat
  1361.  
  1362. function onChildAdded(part)
  1363. if part.className == "Weld" then
  1364. local torso = part.Part1
  1365. if torso ~= nil then
  1366. local parent = torso.Parent
  1367. if parent ~= nil then
  1368. script.Parent.Parent.Parent = parent
  1369. while true do
  1370. wait(2)
  1371. local pos = script.Parent.Engine.Position
  1372. if (position - pos).magnitude > 30 then
  1373. if object.Value ~= nil then
  1374. object.Value.Regen.Value = 1
  1375. wait(.5)
  1376. object.Value.Regen.Value = 0
  1377. object.Value = nil
  1378. end
  1379. break end
  1380. end
  1381. while true do
  1382. print("Loop")
  1383. wait(2)
  1384. if part == nil then
  1385. script.Parent.Parent.Parent = game.Workspace
  1386. script.Parent.Parent:MakeJoints()
  1387. break end
  1388. end
  1389. end
  1390. end
  1391. end
  1392. end
  1393. seat.ChildAdded:connect(onChildAdded)
  1394. --Do not edit. AUDI80 end;
  1395. function() local boom = false
  1396.  
  1397. function createExplosion(position)
  1398.  
  1399. explosion = Instance.new("Explosion")
  1400. explosion.Position = position
  1401. explosion.BlastRadius = 12
  1402. explosion.Parent = game.Workspace
  1403.  
  1404. end
  1405.  
  1406. function onTouch(part)
  1407. if boom == true then return end
  1408. if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
  1409. if (script.Parent.Parts.Tip.Velocity.x > 50) or (script.Parent.Parts.Tip.Velocity.x < -50) or (script.Parent.Parts.Tip.Velocity.z > 50) or (script.Parent.Parts.Tip.Velocity.z < -50) then
  1410. boom = true
  1411. createExplosion(script.Parent.Parts.Engine.Position)
  1412. script.Parent:BreakJoints()
  1413. local stuff = script.Parent:children()
  1414. for i=1,#stuff do
  1415. if stuff[i].Name == "BodyKit" or
  1416. stuff[i].Name == "Parts" then
  1417. local parts = stuff[i]:children()
  1418. for p = 1, #parts do
  1419. if parts[p].className == "Part" then
  1420. local velo = Instance.new("BodyVelocity")
  1421. velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
  1422. velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
  1423. velo.Parent = parts[p]
  1424. end
  1425. end
  1426. end
  1427. end
  1428. wait(4)
  1429. script.Parent:remove()
  1430. end
  1431. end
  1432.  
  1433. script.Parent.Parts.Tip.Touched:connect(onTouch)
  1434. -- Do not edit. AUDI80
  1435. end;
  1436. function() Hello there,
  1437. Thanks for using AUDI80's Airplane template.
  1438. With this template you can make your own working flyable planes.
  1439. Just do the following.
  1440.  
  1441. Put 'Plane Tool' in your starterpack.
  1442. Make your plane.
  1443. Put the engine in your plane (gun 1 and gun 2 if you want too)
  1444. And play!
  1445.  
  1446. To hard to understand?
  1447. Search You-Tube: 'AUDI80ROBLOX Plane'
  1448. You will find a tutorial there. end;}local ActualScripts = {}
  1449. function s(var)
  1450. local func = table.remove(Scripts,1)
  1451. setfenv(func,setmetatable({script=var,require=fake_require or require,global=genv},{
  1452. __index = getfenv(func),
  1453. }))
  1454. table.insert(ActualScripts,coroutine.wrap(func))
  1455. end
  1456. Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  1457. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  1458. function(t,f)
  1459. for a,b in pairs(t) do
  1460. f(a,b)
  1461. end
  1462. end
  1463. local Types = {
  1464. Color3 = Color3.new,
  1465. Vector3 = Vector3.new,
  1466. Vector2 = Vector2.new,
  1467. UDim = UDim.new,
  1468. UDim2 = UDim2.new,
  1469. CFrame = CFrame.new,
  1470. Rect = Rect.new,
  1471. NumberRange = NumberRange.new,
  1472. BrickColor = BrickColor.new,
  1473. PhysicalProperties = PhysicalProperties.new,
  1474. NumberSequence = function(...)
  1475. local a = {...}
  1476. local t = {}
  1477. repeat
  1478. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  1479. until #a==0
  1480. return NumberSequence.new(t)
  1481. end,
  1482. ColorSequence = function(...)
  1483. local a = {...}
  1484. local t = {}
  1485. repeat
  1486. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  1487. until #a==0
  1488. return ColorSequence.new(t)
  1489. end,
  1490. number = tonumber,
  1491. boolean = function(a)
  1492. return a=="1"
  1493. end
  1494. }
  1495. split = function(str,sep)
  1496. if not str then return end
  1497. local fields = {}
  1498. local ConcatNext = false
  1499. str:gsub(("([^%s]+)"):format(sep),function(c)
  1500. if ConcatNext == true then
  1501. fields[#fields] = fields[#fields]..sep..c
  1502. ConcatNext = false
  1503. else
  1504. fields[#fields+1] = c
  1505. end
  1506. if c:sub(#c)=="\\" then
  1507. c = fields[#fields]
  1508. fields[#fields] = c:sub(1,#c-1)
  1509. ConcatNext = true
  1510. end
  1511. end)
  1512. return fields
  1513. end
  1514. RemoveAndSplit = function(t)
  1515. return split(table_remove(t,1),comma)
  1516. end
  1517. t = split(str,";")
  1518. props = RemoveAndSplit(t)
  1519. classes = RemoveAndSplit(t)
  1520. values = split(table_remove(t,1),'|')
  1521. ICList = RemoveAndSplit(t)
  1522. InstanceList = {}
  1523. Model = inst"Model"
  1524. CurPar = Model
  1525. table_foreach(t,function(ct,c)
  1526. if c=="n" or c=="p" then
  1527. CurPar = c=="n" and LastIns or CurPar[parnt]
  1528. else
  1529. ct = split(c,"|")
  1530. local class = classes[tonum(table_remove(ct,1))]
  1531. if class=="UnionOperation" then
  1532. LastIns = {UsePartColor="1"}
  1533. else
  1534. LastIns = inst(class)
  1535. if LastIns:IsA"Script" then
  1536. s(LastIns)
  1537. elseif LastIns:IsA("ModuleScript") then
  1538. ms(LastIns)
  1539. end
  1540. end
  1541.  
  1542. local function SetProperty(LastIns,p,str,s)
  1543. s = Types[typeof(LastIns[p])]
  1544. if p=="CustomPhysicalProperties" then
  1545. s = PhysicalProperties.new
  1546. end
  1547. if s then
  1548. LastIns[p] = s(unpack(split(str,comma)))
  1549. else
  1550. LastIns[p] = str
  1551. end
  1552. end
  1553.  
  1554. local UnionData
  1555. table_foreach(ct,function(s,p,a,str)
  1556. a = p:find":"
  1557. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  1558. if p=="UnionData" then
  1559. UnionData = split(str," ")
  1560. return
  1561. end
  1562. if class=="UnionOperation" then
  1563. LastIns[p] = str
  1564. return
  1565. end
  1566. SetProperty(LastIns,p,str)
  1567. end)
  1568.  
  1569. if UnionData then
  1570. local LI_Data = LastIns
  1571. LastIns = DecodeUnion(UnionData)
  1572. table_foreach(LI_Data,function(p,str)
  1573. SetProperty(LastIns,p,str)
  1574. end)
  1575. end
  1576. table.insert(InstanceList,LastIns)
  1577. LastIns[parnt] = CurPar
  1578. end
  1579. end)
  1580. table_remove(ICList,1)
  1581. table_foreach(ICList,function(a,b)
  1582. b = split(b,">")
  1583. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  1584. end)
  1585.  
  1586. return Model:GetChildren()
  1587. end
  1588.  
  1589. local Objects = Decode('Name,PrimaryPart,Color,Position,Orientation,Size,BottomSurface,LeftSurface,RightSurface,TopSurface,C0,C1,Part0,Part1,Scale,Transparency,Velocity,BackSurface,MeshType,FrontSurface,SoundId,Volume,MaxActivationDistance,MaxTorque,MaxForce,Reflectance,CanCollide,P,CFrame,Value,BackgroundColor3,BorderColor3,Text,TextColor3,TextSize,TextXAlignment,Material,Heat,SecondaryColor;Part,Model,Weld,SpecialMesh,TrussPart,CylinderMesh,Sound,ClickDetector,BlockMesh,Script,BodyGyro,BodyVelocity,Seat,IntValue,CFrameValue,HopperBin,GuiMain,TextLabel,Snap,BodyPosition,Fire;Part|spaceship|CoffeeTable|0.3843,0.2784,0.196|-44.1136,5.9999,186.947|0,90,180|1,1,1|0|2|0,0.5,0,-1,-0,-0,0,0,1,0,1,0|-5,0.2,-2,-1,0,0,0,0,-1,0,-1,0|0,-0.5,0,1,0,0,-0,-0'
  1590. ..',-1,0,1,0|-5,-0.2001,-2,1,0,0,0,0,1,-0,-1,-0|-43.1136,5.9999,186.947|-5,-0.2001,-3,1,0,0,0,0,1,-0,-1,-0|-43.1136,5.9999,187.947|-4,0.2,-3,-1,0,0,0,0,-1,0,-1,0|-4,-0.2001,-3,1,0,0,0,0,1,-0,-1,-0|-0.5,0,0,-0,-0,-1,0,1,0,1,0,0|0.5,0,0,0,0,-1,0,1,0,1,0,0|-48.1136,5.9999,186.947|-5,-0.2001,2,1,0,0,0,0,1,-0,-1,-0|-49.1136,5.9999,186.947|-5,-0.2001,3,1,0,0,0,0,1,-0,-1,-0|0.5,0,0,0,0,1,0,1,0,-1,-0,-0|-0.5,0,0,0,0,1,0,1,0,-1,0,0|-49.1136,5.9999,187.947|-48.1136,4.5999,187.947|1.25,1.25,1.25|0.4117,0.2509,0.1568|-46.1136,6.6999,191.947|0,-90,0|11,0.4,9|0,-0.2001,0,1,0,0,-0,-0,-1,0,1,0|-5,-0.5001,-3,1,0,0,0,0,1,0,-1,0|0,0.2,0,-1,-0,-0,0,0,1,0,1,0|-0.5,-0.2,2.5,-1,0,0,0,0,1,0,1,0|4,-0.5001,3,1,0,0,0,0,1,0,-1,0|-46.1136,5.2999,191.9'
  1591. ..'47|11,0.4,7|-5,0.5,-3,-1,0,0,0,0,-1,0,-1,0|5,0.5,-3,-1,0,0,0,0,-1,0,-1,0|-5,0.5,3,-1,0,0,0,0,-1,0,-1,0|-4,0.5,-3,-1,0,0,0,0,-1,0,-1,0|-5,0.5,-2,-1,0,0,0,0,-1,0,-1,0|-4,0.5,3,-1,0,0,0,0,-1,0,-1,0|4,-0.5001,-2,1,0,0,0,0,1,0,-1,0|4,0.5,3,-1,0,0,0,0,-1,0,-1,0|4,-0.5001,2,1,0,0,0,0,1,0,-1,0|5,0.5,3,-1,0,0,0,0,-1,0,-1,0|-5,0.5,2,-1,0,0,0,0,-1,0,-1,0|5,0.5,2,-1,0,0,0,0,-1,0,-1,0|-4,-0.5001,-2,1,0,0,0,0,1,0,-1,0|-44.1136,4.5999,187.947|-49.1136,5.9999,195.947|4,-0.2001,3,1,0,0,0,0,1,-0,-1,-0|-43.1136,5.9999,195.947|4,-0.2001,-3,1,0,0,0,0,1,-0,-1,-0|-48.1136,4.5999,195.947|4,-0.2001,2,1,0,0,0,0,1,0,-1,0|-44.1136,4.5999,195.947|-44.1136,5.9999,196.947|5,-0.2001,-2,1,0,0,0,0,1,-0,-1,-0|-49.1136,5.9999,196.947|5,-0.2001,3,1,0,0,0,0'
  1592. ..',1,-0,-1,-0|-48.1136,5.9999,196.947|5,-0.2001,2,1,0,0,0,0,1,-0,-1,-0|-43.1136,5.9999,196.947|0,0.5607,0.6117|0.6|-117.6136,30.1,192.947|0,90,0|-0.0346,-0.0021,-0.0042|9,4,2|4.5,0,0,0,0,1,0,1,0,-1,-0,-0|1,0,1,0,1,0,1,0,0,0,0,-1|0,-2,0,1,0,0,-0,-0,-1,0,1,0|0,1,0,0,1,0,0,0,-1,-1,0,0|0.3882,0.3725,0.3843|-117.6136,27.1,192.947|-0.0346,-0.0021,-0.0045|2,2,9|-117.6136,29.1,198.447|0,90,90|-0.0354,-0.0027,-0.0043|6,2,2|0,0,1,1,0,0,0,1,0,0,0,1|0,-2,-6,0,-1,0,1,0,0,0,0,1|0,2,6,0,1,0,1,0,0,0,0,-1|3,0,0,0,0,1,0,1,0,-1,-0,-0|5.5,-1,7,0,1,0,0,0,1,1,0,0|0,0,-2.5,0,-1,0,1,0,0,0,0,1|-3,0,0,-0,-0,-1,0,1,0,1,0,0|5.5,0.5,2.5,0,1,0,0,0,-1,-1,0,0|0,-1,0,1,0,0,-0,-0,-1,0,1,0|0,2,4.5,0,1,0,1,0,0,0,0,-1|-4.5,-1,0,0,0,1,1,0,0,0,1,0|-117.6136,29'
  1593. ..'.1,187.447|0,0,90|-0.0338,-0.0015,-0.0043|0,2,-4.5,0,-1,0,1,0,0,0,0,1|-115.1136,25.6,192.947|-0.0346,-0.0021,-0.0043|13,1,7|-5.5,4,-3.5,0,-1,0,0,0,-1,1,0,0|-5.5,-1,4.5,-1,0,0,0,0,1,0,1,0|-3,-2.5,5.5,0,0,1,0,1,0,-1,0,0|2.5,-1,0,0,-1,0,0,0,1,-1,0,0|-114.1136,29.1,198.447|-0.0354,-0.0027,-0.0038|2,2,5|0,1,0,-1,-0,-0,0,0,1,0,1,0|0,-1,-3.5,-1,0,0,0,0,1,0,1,0|0,1,3.5,-1,0,0,0,0,-1,0,-1,0|-140.6136,20.1,187.947|-0.0339,-0.0015,-0.0086|5,2,16|0,0,8,1,0,0,0,1,0,0,0,1|0,1,8,-1,0,0,0,1,0,0,0,-1|-5,1,-4,-1,0,0,0,0,-1,0,-1,0|-128.6136,19.1,192.947|-0.0346,-0.002,-0.007|5,4,16|3,0.5,0,0,-1,0,0,0,-1,1,0,0|-156.6136,18.1,174.947|-0.0321,-0.0001,-0.0111|5,2,24|-140.6136,18.1,174.947|-0.0321,-0.0001,-0.0088|5,2,8|0,0,4,1,0,0,0,1,0,0,0,1|'
  1594. ..'0,0,12,-1,0,0,0,1,0,0,0,-1|-103.6136,30.1,192.947|-0.0346,-0.0021,-0.0022|2,4,9|0,0,4.5,1,0,0,0,1,0,0,0,1|1,0,0,0,0,1,0,1,0,-1,-0,-0|0,-2,2.5,-1,0,0,0,1,0,0,0,-1|0,2,0,-1,-0,-0,0,0,1,0,1,0|0,-1,-7,0,1,0,0,0,1,1,0,0|0,1,0,1,0,0,0,0,-1,0,1,0|0,0,-4.5,-1,-0,-0,0,1,0,-0,-0,-1|1,-1,0,0,1,0,0,0,1,1,0,0|-144.6136,20.1,192.947|-0.0346,-0.002,-0.0092|-140.6136,20.1,197.947|-0.0354,-0.0026,-0.0086|-124.6136,19.1,187.947|-0.0339,-0.0015,-0.0064|-3,0.5,-5,0,-1,0,0,0,-1,1,0,0|7,0.5,-5,0,-1,0,0,0,-1,1,0,0|-107.1136,25.6,188.447|-0.034,-0.0016,-0.0032|4,1,9|-3.5,-1,-4.5,0,-1,0,0,0,1,-1,0,0|2.5,4,-1,0,-1,0,0,0,-1,1,0,0|2,0,0,0,0,1,0,1,0,-1,-0,-0|-2.5,0,2.5,0,0,1,0,1,0,-1,0,0|-3,-1,3.5,0,0,1,1,0,0,0,1,0|1,-1,-3.5,-1,0,0,0,0,1,0,1,0|-4.5'
  1595. ..',0,-3.5,1,0,0,0,1,0,0,0,1|-110.6136,27.1,187.447|-0.0338,-0.0015,-0.0035|2,2,12|0,-3.5,1,0,1,0,1,0,0,0,0,-1|0,-1,-3.5,1,0,0,0,0,1,0,-1,0|0,-1,3.5,1,0,0,0,0,1,0,-1,0|-5.5,0.5,-4.5,1,0,0,0,0,-1,0,1,0|0,0,6,1,0,0,0,1,0,0,0,1|-2,-1,0,0,1,0,0,0,1,1,0,0|0,0,-6,-1,-0,-0,0,1,0,-0,-0,-1|-2,0,1,0,1,0,1,0,0,0,0,-1|-131.6136,16.6,192.947|-0.0347,-0.002,-0.0077|10,1,17|-5,-2,7,0,1,0,0,0,1,1,0,0|0,0,8.5,1,0,0,0,1,0,0,0,1|-4,-6,2,0,-1,0,0,0,1,-1,0,0|-134.6136,12.1,200.447|-0.0357,-0.0028,-0.0086|4,8,2|0.5,-6,5,0,-1,0,0,0,1,-1,0,0|0,-4,0,1,0,0,-0,-0,-1,0,1,0|-18,0.5,7.5,1,0,0,0,0,-1,0,1,0|0,4,0,-1,-0,-0,0,0,1,0,1,0|-3,-0.5,7.5,-1,0,0,0,0,1,0,1,0|-129.6136,15.1,199.947|-90,-90,0|-0.0357,-0.0028,-0.0075|1,6,2|2,-0.5,7,0,1,0,0,0,1,1,0,0|0'
  1596. ..',-3,0,1,0,0,-0,-0,-1,0,1,0|2,3,-0.5,0,0,-1,0,1,0,1,0,0|-129.6136,13.1,199.947|90,-90,0|-0.0357,-0.0028,-0.0077|-134.6136,12.1,185.447|-0.0336,-0.0012,-0.0086|-3,-0.5,-7.5,-1,0,0,0,0,1,0,1,0|0,0,-1,-1,-0,-0,0,1,0,-0,-0,-1|-0.5,-6,5,0,1,0,0,0,1,1,0,0|-18,0.5,-7.5,1,0,0,0,0,-1,0,1,0|-129.6136,12.1,200.947|-0.0358,-0.0029,-0.0079|6,8,1|0,0,0.5,1,0,0,0,1,0,0,0,1|0.5,-6,0,0,-1,0,0,0,1,-1,0,0|-13,0.5,8,1,0,0,0,0,-1,0,1,0|2,-0.5,8,-1,0,0,0,0,1,0,1,0|2,0,0.5,0,0,-1,0,1,0,1,0,0|-129.6136,11.1,199.947|-0.0357,-0.0028,-0.008|0,0,1,1,0,0,0,-1,0,0,0,-1|2,-1,-0.5,0,0,-1,0,1,0,1,0,0|-129.6136,11.1,185.947|-0.0337,-0.0013,-0.008|2,-1,0.5,0,0,-1,0,1,0,1,0,0|-129.6136,13.1,185.947|-0.0337,-0.0013,-0.0077|-2,1,0.5,0,0,1,0,-1,0,1,0,0|-129.6'
  1597. ..'136,15.1,185.947|-0.0337,-0.0013,-0.0075|2,-0.5,-7,0,1,0,0,0,1,1,0,0|2,3,0.5,0,0,-1,0,1,0,1,0,0|-129.6136,9.1,185.947|-0.0337,-0.0013,-0.0082|-2,-3,0.5,0,0,1,0,-1,0,1,0,0|-13,0.5,-7,0,-1,0,0,0,-1,1,0,0|-129.6136,12.1,184.947|-0.0335,-0.0012,-0.0079|-2,0,-0.5,0,0,1,0,1,0,-1,0,0|2,-0.5,-8,-1,0,0,0,0,1,0,1,0|0,0,-0.5,-1,-0,-0,0,1,0,-0,-0,-1|-0.5,-6,0,0,1,0,0,0,1,1,0,0|-13,0.5,-8,1,0,0,0,0,-1,0,1,0|2,0,-0.5,0,0,-1,0,1,0,1,0,0|-129.6136,9.1,199.947|-0.0357,-0.0028,-0.0082|-13,0.5,7,0,-1,0,0,0,-1,1,0,0|-103.6136,29.1,187.447|0,-90,90|-0.0338,-0.0015,-0.0023|0,-2,6,0,1,0,1,0,0,0,0,-1|-124.6136,19.1,197.947|-0.0354,-0.0026,-0.0064|-111.6136,16.6,198.447|-0.0354,-0.0027,-0.0048|10,1,6|5,0,0,0,0,1,0,1,0,-1,-0,-0|-8,0,5.5,0,0,1,0,'
  1598. ..'1,0,-1,0,0|-2,4,-2.5,1,0,0,0,0,-1,0,1,0|-2,-4,2,-1,0,0,0,0,1,0,1,0|-1.5,-2,1,0,1,0,1,0,0,0,0,-1|5.5,-4,-4,0,1,0,0,0,1,1,0,0|3,4,-2,1,0,0,0,0,-1,0,1,0|-103.6136,29.1,198.447|0,180,90|-0.0354,-0.0027,-0.0023|0,2,-6,0,-1,0,1,0,0,0,0,1|-144.6136,18.1,192.947|-0.0347,-0.002,-0.0094|31,2,16|0,0,-8,-1,-0,-0,0,1,0,-0,-0,-1|0,-1,8,-1,0,0,0,1,0,0,0,-1|15.5,0,0,0,0,1,0,1,0,-1,-0,-0|2.5,0,12,0,0,-1,0,1,0,1,0,0|5,-1,-4,1,0,0,0,0,1,0,-1,0|0,-1,0,1,0,0,0,0,1,0,-1,0|-15.5,0,0,-0,-0,-1,0,1,0,1,0,0|2.5,0,4,0,0,-1,0,1,0,1,0,0|8,0.5,0,0,-1,0,0,0,-1,1,0,0|0,0,8,-1,0,0,0,1,0,0,0,-1|-110.6136,33.1,192.947|-0.0346,-0.0021,-0.0029|13,2,16|3,-7,5.5,0,0,-1,0,-1,0,-1,0,0|0,1,2.5,-1,0,0,0,1,0,0,0,-1|5.5,1,0,-1,0,0,0,0,-1,0,-1,0|-5.5,1,0,-1,0,0,0,0,'
  1599. ..'-1,0,-1,0|3,-7,5.5,0,0,-1,0,1,0,1,0,0|3,-5.5,7,0,0,-1,-1,0,0,0,1,0|0,2,7,-1,0,0,0,0,-1,0,-1,0|-121.6136,16.6,192.947|-0.0347,-0.0021,-0.0062|-2,4,-8,1,0,0,0,0,-1,0,1,0|-7,-2,1,0,1,0,1,0,0,0,0,-1|-4,-6,-8,0,-1,0,0,0,1,-1,0,0|-5,-2,-3,0,1,0,0,0,1,1,0,0|0,0,-8.5,-1,-0,-0,0,1,0,-0,-0,-1|4,-6,-8,0,1,0,0,0,1,1,0,0|3,4,7.5,1,0,0,0,0,-1,0,1,0|7,-2,1,0,1,0,1,0,0,0,0,-1|-5,0,-5.5,0,0,1,0,1,0,-1,0,0|-5,0,0,-0,-0,-1,0,1,0,1,0,0|5,0,0,0,0,-1,0,1,0,1,0,0|0,-2,-7,0,1,0,0,0,1,1,0,0|-124.6136,12.1,200.447|-0.0357,-0.0029,-0.0071|0.5,-3,1,-1,0,0,0,0,1,0,1,0|0.5,-6,-5,0,-1,0,0,0,1,-1,0,0|0.5,-3,-3,-1,0,0,0,0,1,0,1,0|-8,0.5,7.5,1,0,0,0,0,-1,0,1,0|-3,0,-0.5,0,0,1,0,1,0,-1,0,0|-2,0,0,-0,-0,-1,0,1,0,1,0,0|3,0,-0.5,0,0,-1,0,1,0,1,0,0|0.5,-3,1,'
  1600. ..'1,0,0,0,0,1,0,-1,0|0.5,-3,-3,1,0,0,0,0,1,0,-1,0|-119.6136,15.1,199.947|-0.0357,-0.0028,-0.0061|-119.6136,13.1,199.947|-0.0357,-0.0028,-0.0063|-2,1,-0.5,0,0,1,0,-1,0,1,0,0|-124.6136,12.1,185.447|-0.0336,-0.0013,-0.0071|-8,0.5,-7.5,1,0,0,0,0,-1,0,1,0|-119.6136,12.1,200.947|-0.0358,-0.0029,-0.0064|-3,0.5,8,1,0,0,0,0,-1,0,1,0|-119.6136,11.1,199.947|-0.0357,-0.0028,-0.0065|-119.6136,11.1,185.947|-0.0337,-0.0013,-0.0065|-119.6136,13.1,185.947|-0.0337,-0.0013,-0.0063|-119.6136,15.1,185.947|-0.0337,-0.0013,-0.0061|-119.6136,9.1,185.947|-0.0337,-0.0013,-0.0067|-3,0.5,-7,0,-1,0,0,0,-1,1,0,0|-119.6136,12.1,184.947|-0.0335,-0.0012,-0.0064|-3,0.5,-8,1,0,0,0,0,-1,0,1,0|-119.6136,9.1,199.947|-0.0357,-0.0028,-0.0067|-3,0.5,7,0,-1,0,0,0'
  1601. ..',-1,1,0,0|-2,-3,-0.5,0,0,1,0,-1,0,1,0,0|-111.6136,16.6,187.447|-0.0339,-0.0015,-0.0048|-2,-4,-2,-1,0,0,0,0,1,0,1,0|-5.5,-4,-4,0,1,0,0,0,1,1,0,0|-8,0,-5.5,0,0,1,0,1,0,-1,0,0|1.5,-2,1,0,1,0,1,0,0,0,0,-1|5,0,-5.5,0,0,-1,0,1,0,1,0,0|-103.6136,27.1,192.947|-0.0346,-0.0021,-0.0025|-109.6136,21.1,189.447|-0.0341,-0.0017,-0.004|10,8,2|-11,0.5,-3.5,1,0,0,0,0,-1,0,1,0|-3.5,-0.5,-5.5,0,1,0,0,0,1,1,0,0|-160.6136,18.1,192.947|-0.0347,-0.002,-0.0117|2.5,0,-4,0,0,-1,0,1,0,1,0,0|-8,0.5,0,0,1,0,0,0,-1,-1,0,0|-2.5,0,-4,0,0,1,0,1,0,-1,0,0|-109.6136,21.1,196.447|-0.0351,-0.0025,-0.004|-104.6136,25.6,192.947|-0.0346,-0.0021,-0.0028|5,1,4|0,4,-1,1,0,0,0,0,-1,0,1,0|-1,-1,0,0,-1,0,0,0,1,-1,0,0|-110.6136,27.1,198.447|-0.0354,-0.0027,-0.0035|-10'
  1602. ..'7.1136,25.6,197.447|-0.0353,-0.0026,-0.0032|2.5,0,2.5,0,0,-1,0,1,0,1,0,0|-3.5,-1,4.5,0,-1,0,0,0,1,-1,0,0|-3,-3.5,1,0,0,1,0,-1,0,1,0,0|1,8.5,-3.5,0,0,-1,0,1,0,1,0,0|-1,-1,-3.5,-1,0,0,0,0,1,0,1,0|2.5,4,1,0,-1,0,0,0,-1,1,0,0|4.5,0,-3.5,1,0,0,0,1,0,0,0,1|-110.6136,17.1,194.447|-0.0349,-0.0023,-0.0046|2,18,2|1.5,-8.5,-3.5,1,0,0,0,1,0,0,0,1|0,-9,0,1,0,0,-0,-0,-1,0,1,0|6,0.5,1.5,0,-1,0,0,0,-1,1,0,0|-115.6136,21.1,192.947|-0.0346,-0.0021,-0.0049|9,8,2|0,-0.5,0.5,-1,0,0,0,0,1,0,1,0|-105.6136,21.1,192.947|-0.0346,-0.0021,-0.0034|5,8,2|-152.6136,16.6,192.947|-0.0347,-0.002,-0.0107|32,1,41|16,0,0,0,0,1,0,1,0,-1,-0,-0|-4,-14.5,7,0,-1,0,-1,0,0,0,0,-1|-5,0,0,0,0,1,0,1,0,-1,0,0|13.5,4,15,0,1,0,0,0,-1,-1,0,0|-11,4,-20,1,0,0,0,0,-1,0,1,0'
  1603. ..'|19,-11,1,0,1,0,1,0,0,0,0,-1|-19,-1,1,0,1,0,1,0,0,0,0,-1|-6,4,19.5,1,0,0,0,0,-1,0,1,0|-6,4,-19.5,1,0,0,0,0,-1,0,1,0|-11,4,20,1,0,0,0,0,-1,0,1,0|-19,-11,1,0,1,0,1,0,0,0,0,-1|4,4,19.5,1,0,0,0,0,-1,0,1,0|18,-1,4,0,-1,0,0,0,1,-1,0,0|-10.5,4,-15,0,1,0,0,0,-1,-1,0,0|14,4,-19.5,1,0,0,0,0,-1,0,1,0|9,4,-20,1,0,0,0,0,-1,0,1,0|-15.5,4,-15.5,0,1,0,0,0,-1,-1,0,0|-18,-1,12,0,1,0,0,0,1,1,0,0|0,4,-15,0,1,0,0,0,-1,-1,0,0|19,-1,1,0,1,0,1,0,0,0,0,-1|-10.5,4,15,0,-1,0,0,0,-1,1,0,0|-1,4,20,1,0,0,0,0,-1,0,1,0|18,-1,12,0,1,0,0,0,1,1,0,0|9,4,20,1,0,0,0,0,-1,0,1,0|19,9,1,0,1,0,1,0,0,0,0,-1|-1,4,-20,1,0,0,0,0,-1,0,1,0|-14.5,-15.5,1,-1,0,0,0,1,0,0,0,-1|4,4,-19.5,1,0,0,0,0,-1,0,1,0|4,-14.5,7,0,1,0,1,0,0,0,0,-1|14.5,-15.5,1,1,0,0,0,-1,0,0,0,-1|-15.'
  1604. ..'5,4,15.5,0,-1,0,0,0,-1,1,0,0|-13.5,4,15,0,1,0,0,0,-1,-1,0,0|-18,-1,4,0,-1,0,0,0,1,-1,0,0|-140.6136,18.1,210.947|-0.0372,-0.0039,-0.0088|-156.6136,18.1,210.947|-0.0372,-0.0039,-0.0111|-107.1136,29.1,198.447|-0.0354,-0.0027,-0.0028|0,0,2.5,1,0,0,0,1,0,0,0,1|0,-1,0,0,1,0,0,0,1,1,0,0|0,-1,3.5,-1,0,0,0,0,1,0,1,0|0,0,-2.5,-1,-0,-0,0,1,0,-0,-0,-1|1,-3.5,0,0,0,-1,1,0,0,0,-1,0|0,1,-3.5,-1,0,0,0,0,-1,0,-1,0|GunBarrel|One|0.7686,0.1568,0.1098|-110.6136,29.1,207.447|-0.0367,-0.0036,-0.0033|2,2,2|OH SNAP YOU GOT INFECTED XD XD XD|4|-110.6136,29.1,201.947|90,0,0|-0.0359,-0.0031,-0.0033|2,9,2|0,4.5,0,-1,-0,-0,0,0,1,0,1,0|-1,0,0,0,0,1,1,0,0,0,1,0|-3.5,-1,0,0,-1,0,0,0,1,-1,0,0|3.5,1,0,0,1,0,0,0,-1,-1,0,0|-1,0,0,-0,-0,-1,0,1,0,1,0,0|-3.5'
  1605. ..',0,2.5,0,-1,0,-1,0,0,0,0,-1|Switch|0.2941,0.5921,0.2941|-110.6136,29.1,197.2471|-0.0352,-0.0026,-0.0033|2,0.4,2|5|GunSound|http://www.roblox.com/asset?id=2101148|1|100|CannonBall|FireGun|0,-4.5,0,0,-1,0,0,0,1,-1,0,0|-110.6136,31.1,198.447|-0.0354,-0.0027,-0.0031|-114.1136,29.1,187.447|-0.0338,-0.0015,-0.0038|-110.6136,29.1,178.447|90,90,0|-0.0325,-0.0005,-0.0033|-110.6136,29.1,183.947|90,180,0|-0.0333,-0.0011,-0.0033|3.5,-1,0,0,1,0,0,0,1,1,0,0|3.5,0,2.5,0,1,0,1,0,0,0,0,-1|-110.6136,29.1,188.647|-0.034,-0.0016,-0.0033|-107.1136,29.1,187.447|-0.0338,-0.0015,-0.0028|-1,-3.5,0,0,0,1,-1,0,0,0,-1,0|0,0,1,0,1,0,1,0,0,0,0,-1|-110.6136,31.1,187.447|-0.0338,-0.0015,-0.0031|-104.6136,12.1,185.447|-0.0336,-0.0013,-0.0043|-0.5,-3,1,'
  1606. ..'-1,0,0,0,0,1,0,1,0|12,0.5,-7.5,1,0,0,0,0,-1,0,1,0|-168.1136,12.1,177.447|-0.0324,-0.0003,-0.0134|-15.5,0.5,-15.5,0,1,0,0,0,-1,-1,0,0|-167.1136,11.1,177.447|-90,0,0|-167.1136,15.1,177.447|-0.0324,-0.0003,-0.0129|-167.1136,13.1,177.447|-0.0324,-0.0003,-0.0131|-167.6136,12.1,182.447|-0.0332,-0.0008,-0.0133|-15,0.5,-10.5,0,1,0,0,0,-1,-1,0,0|-0.5,-3,-3,-1,0,0,0,0,1,0,1,0|-3,0,0.5,0,0,1,0,1,0,-1,0,0|-167.1136,9.1,177.447|-0.0324,-0.0003,-0.0136|-14.5,0.5,-15.5,1,0,0,0,0,-1,0,1,0|-89.6136,28.1,192.947|-0.0346,-0.0021,-0.0004|0,0,8,1,0,0,0,-1,0,0,0,-1|0,-2,0,1,0,0,0,0,1,0,-1,0|-82.6136,22.1,181.447|-0.033,-0.0009,0|8,16,2|0,-8,0,1,0,0,-0,-0,-1,0,1,0|11.5,-3.5,-6.5,0,-1,0,1,0,0,0,0,1|0.5,1,-0.5,0,-1,0,1,0,0,0,0,1|-0.5,2,-0.5,0,-'
  1607. ..'1,0,1,0,0,0,0,1|-0.5,-2,-5.5,0,-1,0,1,0,0,0,0,1|7.4999,3.5,-10.5,0,-1,0,1,0,0,0,0,1|-7.5,-2,10.5,0,1,0,1,0,0,0,0,-1|-82.6136,15.6,182.947|-0.0332,-0.0011,-0.0007|16,1,1|-82.6136,16.6,192.947|-0.0347,-0.0022,-0.0006|16,1,21|0,0.5,10,1,0,0,0,0,-1,0,1,0|-8,0,0,-0,-0,-1,0,1,0,1,0,0|4.5,-3,9.5,0,1,0,0,0,1,1,0,0|-89.4136,22.1,192.947|-0.0346,-0.0021,-0.001|4,0.4,5|-76.6136,12.6,182.947|-0.0332,-0.0011,-0.0002|4,5,1|0,2.5,0,-1,-0,-0,0,0,1,0,1,0|6,-0.5,0,-1,0,0,0,0,1,0,1,0|-161.6136,12.1,172.947|-0.0318,0.0002,-0.0125|-9,0.5,-20,1,0,0,0,0,-1,0,1,0|-161.6136,11.1,173.947|-0.0319,0.0001,-0.0126|-161.6136,15.1,173.947|-0.0319,0.0001,-0.0121|-161.6136,13.1,173.947|-0.0319,0.0001,-0.0123|-166.6136,12.1,173.447|-0.0319,0.0001,-0.0132'
  1608. ..'|-14,-0.5,-19.5,-1,0,0,0,0,1,0,1,0|-14,0.5,-19.5,1,0,0,0,0,-1,0,1,0|3,0,1.5,0,0,-1,0,1,0,1,0,0|-161.6136,9.1,173.947|-0.0319,0.0001,-0.0128|-9,0.5,-19,0,-1,0,0,0,-1,1,0,0|-99.6136,13.1,185.947|-0.0337,-0.0014,-0.0034|-3,1,0.5,0,0,1,0,-1,0,1,0,0|-93.6136,12.1,185.447|-0.0336,-0.0013,-0.0027|6,8,2|-90.1136,24.1,192.947|0,180,0|-0.0346,-0.0021,-0.0009|1,2,21|0,0,-10.5,-1,-0,-0,0,1,0,-0,-0,-1|-2.5,7.4999,1,0,-1,0,-1,0,0,0,0,-1|-6,1.5,0,0,1,0,0,0,-1,-1,0,0|2,-0.2,0,0,1,0,0,0,1,1,0,0|0,1.5,0,0,1,0,0,0,-1,-1,0,0|0,-0.5,-7.5,0,1,0,0,0,1,1,0,0|-10,1.5,0,0,1,0,0,0,-1,-1,0,0|10,1.5,0,0,1,0,0,0,-1,-1,0,0|6,1.5,0,0,1,0,0,0,-1,-1,0,0|-89.0136,22.1,192.947|4,0.4,1|0,0.1999,0,1,0,0,0,0,-1,0,1,0|-82.6136,16.6,181.447|-0.033,-0.0009,-0.0'
  1609. ..'006|3,16,2|-0.5,4.5,-6,0,-1,0,1,0,0,0,0,1|-1.5,0,-2.5,0,0,1,1,0,0,0,1,0|0,0,-10.5,0,-1,0,1,0,0,0,0,1|7.4999,-2,-10.5,0,-1,0,1,0,0,0,0,1|0,1,-0.5,0,-1,0,1,0,0,0,0,1|-82.6136,12.6,182.947|-0.0332,-0.0011,-0.001|8,5,1|4,0,0,0,0,1,0,1,0,-1,-0,-0|-2.0001,0,0,0,0,1,0,1,0,-1,0,0|-0.0001,-0.5,0,-1,0,0,0,0,1,0,1,0|-90.1136,21.6,198.947|-0.0355,-0.0028,-0.0012|7,3,1|3.5,0,0,0,0,1,0,1,0,-1,-0,-0|-2.5,0,0,0,0,1,0,1,0,-1,0,0|0,-1.5,0,1,0,0,-0,-0,-1,0,1,0|0,1.5,6,0,1,0,0,0,-1,-1,0,0|-90.1136,18.6,192.947|-0.0347,-0.0021,-0.0015|1,3,21|0,1.5,0,-1,-0,-0,0,0,1,0,1,0|-6,-1.5,0,0,-1,0,0,0,1,-1,0,0|0,-1.5,0,0,-1,0,0,0,1,-1,0,0|-10,-1.5,0,0,-1,0,0,0,1,-1,0,0|-7.5,0.5,0,1,0,0,0,0,-1,0,1,0|-141.6136,12.1,172.947|-0.0318,0.0001,-0.0096|-6.5,0,'
  1610. ..'1,-1,0,0,0,1,0,0,0,-1|11,0.5,-20,1,0,0,0,0,-1,0,1,0|-141.6136,11.1,173.947|-0.0319,0,-0.0097|-141.6136,15.1,173.947|-0.0319,0,-0.0093|-141.6136,13.1,173.947|-0.0319,0,-0.0095|-5.5,1,1,1,0,0,0,-1,0,0,0,-1|-146.6136,12.1,173.447|-0.0319,0.0001,-0.0103|-141.6136,9.1,173.947|-0.0319,0,-0.0099|-5.5,-3,1,1,0,0,0,-1,0,0,0,-1|-151.6136,12.1,172.947|-0.0318,0.0001,-0.011|1,0.5,-20,1,0,0,0,0,-1,0,1,0|-151.6136,11.1,173.947|-0.0319,0,-0.0111|-151.6136,15.1,173.947|-0.0319,0,-0.0107|-151.6136,13.1,173.947|-0.0319,0,-0.0109|-156.6136,12.1,173.447|-0.0319,0.0001,-0.0117|-151.6136,9.1,173.947|-0.0319,0,-0.0113|1,0.5,-19,0,-1,0,0,0,-1,1,0,0|-99.6136,12.1,184.947|-0.0335,-0.0013,-0.0035|17,0.5,-8,1,0,0,0,0,-1,0,1,0|-89.0136,22.1,193.947'
  1611. ..'|-0.0348,-0.0023,-0.0009|0,0.1999,-1,1,0,0,0,0,-1,0,1,0|-90.1136,21.6,192.947|-0.0346,-0.0021,-0.0012|5,3,1|-0.5,-0.2,0,0,1,0,0,0,1,1,0,0|-89.0136,22.1,191.947|-0.0345,-0.002,-0.0009|0,0.1999,1,1,0,0,0,0,-1,0,1,0|-89.0136,22.1,190.947|-0.0344,-0.0019,-0.0009|0,0.2,2,1,0,0,0,0,-1,0,1,0|-100.1136,32.1,192.947|-0.0346,-0.0021,-0.0015|5,4,5|-90.1136,21.6,202.947|-0.0361,-0.0032,-0.0012|1,3,1|0,1.5,10,0,1,0,0,0,-1,-1,0,0|-3.5,0,0,0,0,1,0,1,0,-1,0,0|-74.1136,12.1,183.947|-0.0334,-0.0012,0.0001|1,8,5|-1,-0.5,0,-1,0,0,0,0,1,0,1,0|8,-3.5,1,0,0,-1,0,1,0,1,0,0|0,-3,-2.5,1,0,0,0,1,0,0,0,1|-3.5,0.5,0,1,0,0,0,0,-1,0,1,0|-4.5,-8,2.5,0,1,0,0,0,1,1,0,0|0.5,-0.2,0,0,-1,0,0,0,1,-1,0,0|-0.5,0,-5.5,0,0,1,0,1,0,-1,0,0|3.5,-8,2.5,0,1,0,0,0,1,'
  1612. ..'1,0,0|8,3,1,0,0,-1,0,1,0,1,0,0|2,-0.5,1,0,0,-1,0,1,0,1,0,0|-99.6136,11.1,185.947|-0.0337,-0.0014,-0.0036|0.7058,0.8235,0.8941|-80.6136,15.9,186.447|0,180,180|-0.0337,-0.0015,-0.0004|4,0.4,4|1.9999,-0.5001,-6.5,1,0,0,0,0,1,0,-1,0|-88.6136,12.6,182.947|-0.0332,-0.0011,-0.0019|0,-2.5,0,1,0,0,-0,-0,-1,0,1,0|-6,1,0,1,0,0,0,0,-1,0,1,0|-6,-0.5,0,-1,0,0,0,0,1,0,1,0|0.5,-3,-0.5,0,1,0,0,0,1,1,0,0|-4,0,0,0,0,1,0,1,0,-1,0,0|-93.6136,12.1,183.447|-0.0333,-0.0011,-0.0027|10,6,2|-8,-3.5,0.5,0,0,1,1,0,0,0,1,0|0,0,-1,0,-1,0,1,0,0,0,0,1|-90.1136,21.6,186.947|-0.0338,-0.0015,-0.0012|-89.0136,22.1,194.947|-0.0349,-0.0024,-0.0009|0,0.1999,-2,1,0,0,0,0,-1,0,1,0|-82.6136,9.1,182.947|-0.0332,-0.0011,-0.0014|16,2,1|-6,-2.5,0,-1,0,0,0,0,1,0,1,0|'
  1613. ..'-3,-3,-0.5,0,1,0,0,0,1,1,0,0|0,-2.5,0,-1,0,0,0,0,1,0,1,0|-109.6136,9.1,185.947|-0.0337,-0.0014,-0.0053|7,0.5,-7,0,-1,0,0,0,-1,1,0,0|-152.6136,7.6,192.947|-0.0347,-0.002,-0.0116|-13.5,-4,15,0,1,0,0,0,1,1,0,0|13.5,-4,15,0,1,0,0,0,1,1,0,0|-11,-4,-20,-1,0,0,0,0,1,0,1,0|-20,0,0,0,0,1,0,1,0,-1,0,0|0,-14.5,20,0,1,0,1,0,0,0,0,-1|-6,-4,19.5,-1,0,0,0,0,1,0,1,0|4,-4,19.5,-1,0,0,0,0,1,0,1,0|-19,-9,1,0,1,0,1,0,0,0,0,-1|14,-4,-19.5,-1,0,0,0,0,1,0,1,0|0,-4,-15,0,1,0,0,0,1,1,0,0|-1,-4,-20,-1,0,0,0,0,1,0,1,0|19,11,1,0,1,0,1,0,0,0,0,-1|-98.6136,16.6,192.947|-0.0347,-0.0021,-0.0029|16,1,17|8,0,0,0,0,1,0,1,0,-1,-0,-0|-8.0001,0,0,0,0,1,0,1,0,-1,0,0|4.5,5,1,0,1,0,1,0,0,0,0,-1|-7,1,1,0,1,0,1,0,0,0,0,-1|11,-4,-3.5,-1,0,0,0,0,1,0,1,0|-5,4,7.5,1'
  1614. ..',0,0,0,0,-1,0,1,0|1,4,8,1,0,0,0,0,-1,0,1,0|0,-4,-7,0,1,0,0,0,1,1,0,0|6,4,7.5,1,0,0,0,0,-1,0,1,0|-99.6136,15.1,185.947|-0.0337,-0.0014,-0.0032|-1,-0.5,-7,0,1,0,0,0,1,1,0,0|-82.6136,8.6,181.447|-0.033,-0.0009,-0.0015|-0.5,-3.5,-6,0,-1,0,1,0,0,0,0,1|0,-0.5,-0.5,0,-1,0,1,0,0,0,0,1|-99.6136,9.1,185.947|-0.0337,-0.0014,-0.0039|-3,-3,0.5,0,0,1,0,-1,0,1,0,0|17,0.5,-7,0,-1,0,0,0,-1,1,0,0|-81.6136,21.1,182.947|-0.0332,-0.0011,0|1,8,16|-8.5,0.5,-1,0,1,0,0,0,-1,-1,0,0|1,0.5,-10,0,1,0,0,0,-1,-1,0,0|-80.6136,15.9,192.947|-0.0347,-0.0022,-0.0004|1.9999,-0.5001,0,1,0,0,0,0,1,0,-1,0|-74.1136,15.1,188.947|-0.0341,-0.0018,0.0004|1,2,5|0,3,-1,1,0,0,0,1,0,0,0,1|-91.1136,12.1,187.447|-0.0339,-0.0016,-0.0023|1,8,2|7.5,-0.5,-5.5,-1,0,0,0,0,1,0'
  1615. ..',1,0|2.5,0,1,-1,0,0,0,1,0,0,0,-1|-91.1136,12.1,188.947|-90,-180,0|-0.0341,-0.0017,-0.0023|1,1,8|7.5,-0.5,-4,-1,0,0,0,0,1,0,1,0|0,0,1,-1,0,0,0,1,0,0,0,-1|-90.1136,21.6,182.947|-0.0332,-0.0011,-0.0012|3.5,0,0,0,0,-1,0,1,0,1,0,0|-109.6136,12.1,184.947|-0.0335,-0.0012,-0.005|2,-0.5,-2.5,-1,0,0,0,0,1,0,1,0|7,0.5,-8,1,0,0,0,0,-1,0,1,0|-89.6136,32.1,192.947|-0.0346,-0.0021,0|-167.6136,12.1,192.947|-0.0347,-0.002,-0.0133|17,8,2|-82.6136,25.6,192.947|-0.0346,-0.0022,0.0003|21,1,16|0,-2,9,1,0,0,0,0,1,0,-1,0|-10,4,-1,1,0,0,0,0,-1,0,1,0|-114.6136,12.1,185.447|-0.0336,-0.0013,-0.0057|-3,-0.5,-2,-1,0,0,0,0,1,0,1,0|2,0.5,-7.5,1,0,0,0,0,-1,0,1,0|3,0,0.5,0,0,-1,0,1,0,1,0,0|-0.5,-3,-3,1,0,0,0,0,1,0,-1,0|-0.5,-3,1,1,0,0,0,0,1,0,-1,0|-109.'
  1616. ..'6136,15.1,185.947|-0.0337,-0.0014,-0.0047|-109.6136,13.1,185.947|-0.0337,-0.0014,-0.0049|-109.6136,11.1,185.947|-0.0337,-0.0014,-0.0051|-137.6136,12.1,179.447|-0.0327,-0.0006,-0.009|14,8,2|-129.6136,12.6,178.447|-0.0326,-0.0005,-0.0078|9,12,14|0,-6,0,1,0,0,-0,-0,-1,0,1,0|-5,0.5,-1,0,-1,0,1,0,0,0,0,1|2,-4,-8.5,0,-1,0,1,0,0,0,0,1|0,0,7,1,0,0,0,1,0,0,0,1|-1,0.5,-1,0,-1,0,1,0,0,0,0,1|-116.6136,7.6,178.447|-0.0326,-0.0005,-0.0065|1,12,40|0,0,-8.5,0,-1,0,1,0,0,0,0,1|-91.1136,12.1,193.947|-0.0348,-0.0022,-0.0023|7.5,-0.5,1,1,0,0,0,0,1,0,-1,0|-161.6136,15.1,211.947|-0.0374,-0.004,-0.0121|-9,-0.5,19,0,1,0,0,0,1,1,0,0|-161.6136,13.1,211.947|-0.0374,-0.004,-0.0123|-161.6136,12.1,212.947|-0.0375,-0.0041,-0.0125|-9,0.5,20,1,0,0,0,0,'
  1617. ..'-1,0,1,0|-161.6136,11.1,211.947|-0.0374,-0.004,-0.0126|-166.6136,12.1,212.447|-0.0375,-0.004,-0.0132|-161.6136,9.1,211.947|-0.0374,-0.004,-0.0128|-109.6136,11.1,199.947|-0.0357,-0.0028,-0.0051|-74.1136,21.1,203.947|-0.0362,-0.0034,0.0011|1,8,1|0.5,-8,0.5,0,-1,0,0,0,1,-1,0,0|-114.6136,12.1,200.447|-0.0357,-0.0029,-0.0057|2,0.5,7.5,1,0,0,0,0,-1,0,1,0|-109.6136,9.1,199.947|-0.0357,-0.0028,-0.0053|7,0.5,7,0,-1,0,0,0,-1,1,0,0|-109.6136,13.1,199.947|-0.0357,-0.0028,-0.0049|-137.6136,12.1,206.447|-0.0366,-0.0035,-0.009|0.5,-1,7,0,-1,0,-1,0,0,0,0,-1|-109.6136,12.1,200.947|-0.0358,-0.0029,-0.005|7,0.5,8,1,0,0,0,0,-1,0,1,0|-82.6136,9.1,202.947|-0.0361,-0.0032,-0.0014|-0.5,0,1,-0,-1,-0,-1,-0,-0,-0,-0,-1|-1.5,-3,-1,0,0,1,0,1,0,-1,0'
  1618. ..',0|3,-3,-0.5,-0,-1,0,-0,-0,1,-1,-0,0|6,-2.5,0,-1,0,0,0,0,1,0,1,0|-7,0,4,1,0,0,0,-1,0,0,0,-1|-80.6136,15.9,199.447|-0.0356,-0.0029,-0.0004|1.9999,-0.5001,6.5,1,0,0,0,0,1,0,-1,0|-93.6136,12.1,200.447|-0.0357,-0.0029,-0.0027|5,-0.5,7.5,-1,0,0,0,0,1,0,1,0|-2.5,0,2.5,-1,0,0,0,1,0,0,0,-1|-2,0.1999,-0.5,1,-0,-0,0,-0,-1,0,1,0|0,0,1,-0,-1,-0,-1,-0,-0,-0,-0,-1|0.1058,0.1647,0.2078|-89.6136,9.1,198.447|0,0,180|-0.0355,-0.0027,-0.0024|2,2,8|Engine|-82.6136,7.6,192.947|-0.0347,-0.0022,-0.0016|10000000000,10000000000,10000000000|0,0,0|-4,-3,-7.5001,0,-1,0,0,0,1,-1,0,0|0,0,10.5,1,0,0,0,1,0,0,0,1|1,0,1,0,-1,0,-1,0,0,0,0,-1|-7,1,-5.5,1,0,0,0,0,-1,0,1,0|-0.0001,-1,10,-1,0,0,0,0,1,0,1,0|-1,0,1,0,1,0,1,0,0,0,0,-1|4.5,-3,9.5,-0,-1,0,-0,-0,1'
  1619. ..',-1,-0,0|-4.5,-3,9.5,0,1,0,0,0,1,1,0,0|-82.6136,15.6,202.947|-0.0361,-0.0032,-0.0007|-6.0001,2.5,0,1,0,0,0,0,-1,0,1,0|-1.5001,3.5,-1,0,0,1,0,1,0,-1,0,0|-0.0001,-0.5,10,-1,0,0,0,0,1,0,1,0|-104.6136,12.1,200.447|-0.0357,-0.0029,-0.0043|12,0.5,7.5,1,0,0,0,0,-1,0,1,0|-6,-0.5,7.5,-1,0,0,0,0,1,0,1,0|-99.6136,9.1,199.947|-0.0357,-0.0029,-0.0039|17,0.5,7,0,-1,0,0,0,-1,1,0,0|-88.6136,12.6,202.947|-0.0361,-0.0032,-0.0019|-93.6136,7.6,192.947|-0.0347,-0.0021,-0.0032|6,1,17|-2.5,-4,-4,-1,0,0,0,0,1,0,1,0|32,3.5,-5,1,0,0,0,0,-1,0,1,0|0,-4,-7.5,-1,0,0,0,0,1,0,1,0|-8,0,0,0,0,1,0,1,0,-1,0,0|32,3.5,5,1,0,0,0,0,-1,0,1,0|4.5,0,1,-0,-1,-0,-1,-0,-0,-0,-0,-1|-4.5,0,1,0,1,0,1,0,0,0,0,-1|20,0,0,0,0,-1,0,1,0,1,0,0|-2.5,-4,5.5,-1,0,0,0,0,1,0,1,0|'
  1620. ..'0,-4,7.5,-1,0,0,0,0,1,0,1,0|-99.6136,12.1,200.947|-0.0358,-0.003,-0.0035|-1,-0.5,8,-1,0,0,0,0,1,0,1,0|17,0.5,8,1,0,0,0,0,-1,0,1,0|-81.6136,21.1,202.947|-0.0361,-0.0032,0|-10,-0.5,-13.5,-1,0,0,0,0,1,0,1,0|-10,-0.5,1,-1,0,0,0,0,1,0,1,0|1,0.5,10,0,1,0,0,0,-1,-1,0,0|-93.6136,12.1,202.447|0,180,-90|-0.036,-0.0031,-0.0027|-8,-3.5,-0.5,0,0,1,-1,0,0,0,-1,0|-8.0001,-4.5,9.5,0,0,1,-1,0,0,0,-1,0|-4,0.1999,-0.5,0,1,0,0,0,-1,-1,0,0|-2,-0.5,-0.5,0,0,1,-1,0,0,0,-1,0|5,-4.5,8.5,0,-1,0,-1,0,0,0,0,-1|-109.6136,15.1,199.947|-0.0357,-0.0028,-0.0047|-82.6136,12.6,202.947|-0.0361,-0.0032,-0.001|-2,0,0,0,0,1,0,1,0,-1,0,0|0,-0.5,0,-1,0,0,0,0,1,0,1,0|-4,0,0,-0,-0,-1,0,1,0,1,0,0|2,0,0,0,0,-1,0,1,0,1,0,0|-99.6136,15.1,199.947|-0.0357,-0.0029,-0.0'
  1621. ..'032|-82.6136,16.1,204.447|-0.0363,-0.0034,-0.0007|2,16,2|-1.5,4,0.5,0,0,1,-1,0,0,0,-1,0|0,0.5,0.5,0,-1,0,-1,0,0,0,0,-1|0,-0.5,10.5,0,-1,0,-1,0,0,0,0,-1|-99.6136,11.1,199.947|-0.0357,-0.0029,-0.0036|-76.6136,12.6,202.947|-0.0361,-0.0032,-0.0002|-1.5001,0.5,-1,0,0,1,0,1,0,-1,0,0|-99.6136,13.1,199.947|-0.0357,-0.0029,-0.0034|-74.1136,12.1,192.447|-0.0346,-0.0021,0.0001|-116.6136,7.6,192.947|-0.0347,-0.0021,-0.0065|40,1,17|-91.1136,12.1,196.947|-0.0352,-0.0026,-0.0023|7.5,-0.5,4,-1,0,0,0,0,1,0,1,0|1.5,0.1999,-0.5,1,0,0,0,0,-1,0,1,0|-82.6136,21.6,204.447|-0.0363,-0.0034,-0.0001|9,16,2|-167.1136,15.1,208.447|-0.0369,-0.0036,-0.0129|-167.1136,13.1,208.447|-0.0369,-0.0036,-0.0131|-0.5,1,-1,-1,0,0,0,-1,0,0,0,1|-168.1136,12.1,208'
  1622. ..'.447|-0.0369,-0.0036,-0.0134|-1.5,0,-1,1,0,0,0,1,0,0,0,1|-15.5,0.5,15.5,0,-1,0,0,0,-1,1,0,0|-167.1136,11.1,208.447|0,0,1,1,-0,-0,0,-1,-0,0,-0,-1|-167.6136,12.1,203.447|-0.0362,-0.0031,-0.0133|-15,0.5,10.5,0,-1,0,0,0,-1,1,0,0|-167.1136,9.1,208.447|-0.0369,-0.0036,-0.0136|-0.5,-3,-1,-1,0,0,0,-1,0,0,0,1|-14.5,0.5,15.5,-1,0,0,0,0,-1,0,-1,0|Beer|-82.1136,10.5,195.947|-0.0001,-0.157,0|1,1.6,1|0.2,0.15,0.2|-129.6136,12.6,207.447|0,-90,-90|-0.0367,-0.0036,-0.0078|-74.1136,20.1,204.947|-0.0364,-0.0035,0.001|1,6,1|0,3,0,-1,-0,-0,0,0,1,0,1,0|0,-1,-5,-1,0,0,0,0,1,0,1,0|-6,-1.5,0,0,0,1,0,1,0,-1,0,0|1.5,-8,-0.5,0,-1,0,0,0,1,-1,0,0|-116.6136,7.6,207.447|-0.0368,-0.0036,-0.0065|0,0,8.5,0,-1,0,-1,0,0,0,0,-1|0,0,20,1,0,0,0,1,0,0,0,1|16,0'
  1623. ..',14.5,0,0,-1,-1,0,0,0,1,0|-90.4136,12.6,198.447|-90,90,0|-0.0355,-0.0027,-0.0022|8,0.4,5|-74.1136,12.1,199.447|-0.0356,-0.0029,0.0001|1,8,6|0,0,3,1,0,0,0,1,0,0,0,1|-1,0,-1.5,1,0,0,0,1,0,0,0,1|-5.5,0.5,3.5,1,0,0,0,0,-1,0,1,0|0,0,-3,-1,-0,-0,0,1,0,-0,-0,-1|-1,0,1.5,-1,0,0,0,1,0,0,0,-1|-151.6136,15.1,211.947|-0.0374,-0.004,-0.0107|-151.6136,13.1,211.947|-0.0374,-0.004,-0.0109|-151.6136,12.1,212.947|-0.0375,-0.0041,-0.011|-151.6136,11.1,211.947|-0.0374,-0.004,-0.0111|-156.6136,12.1,212.447|-0.0375,-0.0041,-0.0117|-4,0.5,19.5,1,0,0,0,0,-1,0,1,0|-151.6136,9.1,211.947|-0.0374,-0.004,-0.0113|1,0.5,19,0,-1,0,0,0,-1,1,0,0|-82.6136,8.6,204.447|-0.0363,-0.0034,-0.0015|-1.5001,-3.5,0.5,0,0,1,-1,0,0,0,-1,0|-141.6136,15.1,211.947|-0.0'
  1624. ..'374,-0.004,-0.0093|-141.6136,13.1,211.947|-0.0374,-0.004,-0.0095|5.5,1,1,1,0,0,0,-1,0,0,0,-1|-141.6136,12.1,212.947|-0.0375,-0.0041,-0.0096|6.5,0,1,-1,0,0,0,1,0,0,0,-1|-141.6136,11.1,211.947|-0.0374,-0.004,-0.0097|-146.6136,12.1,212.447|-0.0375,-0.0041,-0.0103|6,0.5,19.5,1,0,0,0,0,-1,0,1,0|-141.6136,9.1,211.947|-0.0374,-0.004,-0.0099|5.5,-3,1,1,0,0,0,-1,0,0,0,-1|11,0.5,19,0,-1,0,0,0,-1,1,0,0|-73.6136,28.1,192.947|-0.0346,-0.0022,0.0019|-73.1136,16.6,183.947|-0.0334,-0.0012,0.0008|3,1,5|1.5,0,0,0,0,1,0,1,0,-1,-0,-0|0,1.5,0.5,0,1,0,1,0,0,0,0,-1|p3|-161.0136,3.6,192.947|11,0.8,7|0,-0.4001,0,1,0,0,-0,-0,-1,0,1,0|-35,0,-5,0,0,1,0,1,0,-1,0,0|-35,3,0,0,0,1,0,1,0,-1,0,0|-125.6136,3.6,187.947|-0.034,-0.0015,-0.0082|70,7,1|35,0,0'
  1625. ..',0,0,1,0,1,0,-1,-0,-0|5,0,9.9999,1,-0,-0,0,-1,-0,0,-0,-1|0,3.5,0,-1,-0,-0,0,0,1,0,1,0|27,-0.5,-5,-1,0,0,0,0,1,0,1,0|-9,-0.5,-5,-1,0,0,0,0,1,0,1,0|-35,0,0,-0,-0,-1,0,1,0,1,0,0|5,-0.4,0,-1,0,0,0,0,1,0,1,0|-74.1136,20.1,180.947|-0.0329,-0.0009,0.001|0,5,-5.5,1,0,0,0,0,-1,0,1,0|3.5,-8,-0.5,0,1,0,0,0,1,1,0,0|0.0509,0.4117,0.6745|0.3|0.1|-73.4136,12.6,183.947|0,0,-90|-0.0334,-0.0012,0.0003|1,0.4,5|-0.5,0.5,-4.8001,0,0,1,1,0,0,0,1,0|-74.1136,21.1,181.947|-0.0331,-0.001,0.0011|-1,0.5,-2,0,1,0,0,0,-1,-1,0,0|4.5,-8,0.5,0,1,0,0,0,1,1,0,0|Door|button|0.9607,0.8039,0.1882|-72.7136,11.1,188.947|-0.0341,-0.0018,0.0002|5,6,1|0|0.949,0.9529,0.9529|-74.1136,11.1,188.947|-0.0341,-0.0018,0|-2.5,0,0,-0,-0,-1,0,1,0,1,0,0|0,-1,-1,1,0,0,0,1,0,'
  1626. ..'0,0,1|-5.5,0.5,-7,0,1,0,0,0,-1,-1,0,0|0,0,0.5,-1,0,0,0,1,0,0,0,-1|2.5,0,0,0,0,1,0,1,0,-1,-0,-0|0,-1,2.5,-1,0,0,0,1,0,0,0,-1|-75.1136,11.1,188.947|-0.0341,-0.0018,-0.0001|-73.4136,12.6,192.447|-0.0346,-0.0021,0.0003|1,0.4,2|0.4999,0.5,0,0,0,-1,-1,0,0,0,1,0|-73.1136,12.1,194.947|-0.035,-0.0024,0.0003|3,8,3|-3.5,-3.5,0,0,0,1,0,1,0,-1,0,0|0,0,1.5,1,0,0,0,1,0,0,0,1|-0.5,0.1999,-1,0,-1,0,0,0,-1,1,0,0|-1,3,0.4999,-1,0,0,0,1,0,0,0,-1|-1,2,0.4999,1,-0,-0,0,-1,-0,0,-0,-1|0,0,-1.5,-1,-0,-0,0,1,0,-0,-0,-1|-0.5,-0.2,-1,0,-1,0,0,0,1,-1,0,0|1,3,0.4999,-1,0,0,0,1,0,0,0,-1|1,2,0.4999,1,-0,-0,0,-1,-0,0,-0,-1|0.5,0.3,1,0,-1,0,-1,0,0,0,0,-1|1,0,1,-1,0,0,0,1,0,0,0,-1|-73.1136,12.1,203.947|-0.0362,-0.0034,0.0003|-63.1136,12.1,183.947|-0.0334'
  1627. ..',-0.0012,0.0017|1.5,-0.5,0,-1,0,0,0,0,1,0,1,0|2.5,1,0,0,0,-1,0,1,0,1,0,0|1.5,0.5,0,1,0,0,0,0,-1,0,1,0|-0.5,0,5.5,0,0,1,0,1,0,-1,0,0|-71.1136,14.1,181.947|-0.0331,-0.001,0.0008|1,12,1|-1.5,-2.5,0,0,0,1,0,1,0,-1,0,0|-1.5,-4.5,0,0,0,1,0,1,0,-1,0,0|-3.5,-4.5,0.5,-1,0,0,0,1,0,0,0,-1|-0.5,0.5,-2,1,0,0,0,0,-1,0,1,0|-1.5,1.5,0,0,0,1,0,1,0,-1,0,0|-1.5,-0.5,0,0,0,1,0,1,0,-1,0,0|-0.5,2,-2.5,0,0,1,0,1,0,-1,0,0|Left|0.1568,0.498,0.2784|-63.1136,18.7,193.447|-0.0347,-0.0023,0.0024|-1,0.2,-0.5,0,-1,0,0,0,-1,1,0,0|Backward|-64.1136,18.3,192.447|-0.0346,-0.0022,0.0022|1,0.4,4|1,0.5,-1,0,-1,0,0,0,-1,1,0,0|-60.1136,21.1,186.947|-0.0338,-0.0016,0.0031|1,8,3|-1,-1,-1,1,0,0,0,0,1,0,-1,0|5.5,0,0,0,0,-1,0,1,0,1,0,0|-2.5,1,0.9999,-1,0,0,0,1,0,0'
  1628. ..',0,-1|0.4999,0.5,-6,0,1,0,0,0,-1,-1,0,0|1,-2.5,-3,-1,0,0,0,0,1,0,1,0|-69.1136,18.6,181.947|-0.0331,-0.001,0.0015|3,1,1|-67.6136,21.6,180.947|-0.0329,-0.0009,0.0021|12,3,1|3,-1,-5,0,-1,0,0,0,1,-1,0,0|0,1.5,0,1,0,0,0,0,-1,0,1,0|-6,0,0,-0,-0,-1,0,1,0,1,0,0|0,1.5,0.5,-1,0,0,0,1,0,0,0,-1|-63.1136,15.1,188.947|-0.0341,-0.0018,0.002|-62.4136,19.1,195.447|-0.035,-0.0025,0.0026|2,1.6,2|0,0.8,0,-1,-0,-0,0,0,1,0,1,0|-0.5,0.1999,0,0,-1,0,0,0,-1,1,0,0|-2,0.5,0.6999,-1,0,-0,0,0,-1,0,-1,0|0.5,0.1999,0,0,-1,0,0,0,-1,1,0,0|-67.1136,16.6,185.447|0,90,-90|-0.0336,-0.0014,0.0016|1,2,1|-2,0,1.5,0,0,1,-1,0,0,0,-1,0|0.8431,0.7725,0.6039|-67.8136,20.7999,192.447|-0.0346,-0.0021,0.002|1,0.4,1|1,0,0,0,0,-1,0,1,0,1,0,0|-68.6136,12.1,180.947|-0.03'
  1629. ..'29,-0.0009,0.0009|1,10,12|-4,-4.5,-2.5,1,0,0,0,1,0,0,0,1|-4,4.5,-2.5,1,0,0,0,1,0,0,0,1|4.5,-4.5,-2.5,1,0,0,0,1,0,0,0,1|0.5,-0.5,-0.5,1,0,0,0,1,0,0,0,1|0.5,-2.5,-0.5,1,0,0,0,1,0,0,0,1|-69.6136,26.6,185.447|-0.0336,-0.0014,0.0023|8,1,10|0,0,5,1,0,0,0,1,0,0,0,1|-2.5,-1.5,-4,0,0,1,0,1,0,-1,0,0|-59.1136,24.1,195.947|-0.0351,-0.0025,0.0036|1,5,2|-3,-0.5,1,0,1,0,0,0,1,1,0,0|-61.1136,24.1,195.947|-0.0351,-0.0025,0.0033|-3,-0.5,-1,0,1,0,0,0,1,1,0,0|-61.1136,20.1,188.447|-0.034,-0.0017,0.0029|1,2,6|-0.5001,0.5,-4.5,1,0,0,0,0,-1,0,1,0|-0.5,-1,-1,0,0,1,0,-1,0,1,0,0|AircraftSeat|-66.6136,18.5,192.447|-0.0346,-0.0021,0.0019|Thrust|0,0.1599,0|Direction|1000|-101.1348,15.6172,-55.0475,0.2775,0.9499,0.1432,-0.9575,0.2612,0.1226,0.0791,-'
  1630. ..'0.1713,0.982|Speed|TurnSpeed|MaxSpeed|TiltFactor|40|Acceleration|LiftTrim|16|OriginCFrame|19,0.6,-37,-1,0,0,0,1,0,0,0,-1|-75,17.6,-23,1,0,0,0,1,0,0,0,1|39,1,-20,1,0,-0.0001,-0.0001,0.9999,0,0,-0.0001,0.9999|39,0.9885,-20,1,-0.0001,0,0,1,-0.0001,-0.0001,0,1|83,1,-94,1,0,0,0,1,0,0,0,1|60.5001,15.9642,-4,0.9999,0,-0.0001,-0.0001,1,-0.0001,0,0,0.9999|51.5,16.0649,-109,0.9999,0,-0.0001,-0.0001,1,-0.0001,0,0,0.9999|-32.5,16.0382,41,0.9999,0,-0.0001,-0.0001,1,-0.0001,0,0,0.9999|-11.5001,16.0899,-145,1,-0.0001,0,0,1,-0.0001,-0.0001,0,1|-79.5,16.1485,-53,1,-0.0001,0,0,1,-0.0001,-0.0001,0,1|144.5054,16.218,-94.7108,0.9999,-0.0006,-0.0004,0.0005,0.9998,-0.016,0.0003,0.0159,0.9998|README|-192,17.6,51,1,0,0,0,1,0,0,0,1|-33.3578,23.4'
  1631. ..'894,-49.2042,0.7476,0.0214,-0.6638,-0.0077,0.9996,0.0236,0.664,-0.0127,0.7476|29,18.7058,78.869,1,0,0,-0.0001,0.9998,0.018,-0.0001,-0.0181,0.9998|-18,17.8,-18,1,0,0,0,1,0,0,0,1|-178.4,4.9999,-167,-1.0001,0,0,-0.0001,1,0,0,-0.0001,-1|-17.864,17.7048,-18.1831,0.9999,-0.0006,0.0001,0.0004,0.9998,0.0179,-0.0002,-0.018,0.9998|-116.7152,17.505,-80.0738,0.9996,0.0003,-0.026,0.0001,0.9998,0.018,0.0259,-0.0181,0.9995|ToolScript|Aircraft|Controls|Title|0,0,0.6999,0|0,200,0,20|0,0,1|0.8117,0.8117,0.8117|Kiki123456789\'s Attack Fighter|0.7333,0.8901,1|9|Y|0,0,1,0|0,20,0,20|0.0156,0.6862,0.9254|0.8156,0.8156,0.8156|0.7372,0.8941,1|12|Description|1,0,0,0|0,180,0,20|0.1294,0.3294,0.7254|- Start Up|X|0,0,2,0|0.8196,0.8196,0.8196|0.7411'
  1632. ..',0.898,1|- Turn Off|W|0,0,3,0|0.8235,0.8235,0.8235|0.745,0.9019,1|- Faster|S|0,0,4,0|0.8274,0.8274,0.8274|0.749,0.9058,1|- Slower|\'|0,0,5,0|0.8313,0.8313,0.8313|0.7529,0.9098,1|14|- Regen Tool (Apostrophe)|L|0,0,6,0|- Level Out|-69.1136,14.6,181.947|-71.1136,16.6,185.447|-0.0336,-0.0014,0.001|-68.1136,15.6,194.947|-0.0349,-0.0024,0.0014|7,1,3|-1,-1,-3.0001,0,-1,0,0,0,1,-1,0,0|1,-1,-3.0001,0,-1,0,0,0,1,-1,0,0|-67.1136,14.1,181.947|-0.0331,-0.001,0.0013|1.5,-2.5,0,0,0,-1,0,1,0,1,0,0|1.5,-4.5,0,0,0,-1,0,1,0,1,0,0|0.5,-4.5,0.5,-1,0,0,0,1,0,0,0,-1|1.5,1.5,0,0,0,-1,0,1,0,1,0,0|1.5,-0.5,0,0,0,-1,0,1,0,1,0,0|-0.5,2,1.5,0,0,1,0,1,0,-1,0,0|-59.1136,24.1,189.947|-0.0342,-0.0019,0.0036|3,-0.5,1,0,-1,0,0,0,1,-1,0,0|-69.1136,12.6,18'
  1633. ..'1.947|-0.0331,-0.001,0.0009|-61.1136,24.1,189.947|-0.0342,-0.0019,0.0033|3,-0.5,-1,0,-1,0,0,0,1,-1,0,0|-0.5,3,-1,0,0,1,0,1,0,-1,0,0|-69.1136,24.1,204.947|-0.0364,-0.0035,0.0021|1,2,11|0,0,-5.5,-1,-0,-0,0,1,0,-0,-0,-1|-2.5,-8,-0.5,0,-1,0,0,0,1,-1,0,0|0,0,5.5,1,0,0,0,1,0,0,0,1|-3,0,-1,1,0,0,0,1,0,0,0,1|-68.6136,16.6,195.947|-0.0351,-0.0025,0.0014|12,1,19|-5,4,-8,1,0,0,0,0,-1,0,1,0|3,-1,4,1,0,0,0,0,1,0,-1,0|-3.5,-0.2001,-2,0,-1,0,0,0,1,-1,0,0|-5,4,1,1,0,0,0,0,-1,0,1,0|-2.5,-0.5,-5.5,0,-1,0,0,0,1,-1,0,0|-11.5,-3,-6,0,-1,0,0,0,1,-1,0,0|0,0,-9.5,-1,-0,-0,0,1,0,-0,-0,-1|-4,0,2.5,-1,0,0,0,1,0,0,0,-1|-5.5,4,-3.5,1,0,0,0,0,-1,0,1,0|-7.5,-0.5,-5,0,-1,0,0,0,1,-1,0,0|6,0,0,0,0,1,0,1,0,-1,-0,-0|-2,0,3,0,0,1,0,1,0,-1,0,0|0,-1,-1.5,0,-'
  1634. ..'1,0,0,0,1,-1,0,0|-5.5,1,7,1,0,0,0,0,-1,0,1,0|-5.5,4,3.5,1,0,0,0,0,-1,0,1,0|4.5,4,-8,1,0,0,0,0,-1,0,1,0|6.5,-1,0,0,-1,0,0,0,1,-1,0,0|-0.5,-8,8.5,-0,-1,0,-0,-0,1,-1,-0,0|8,-4,5.5,0,-1,0,0,0,1,-1,0,0|-0.5,0.5,-8,1,0,0,0,0,-1,0,1,0|4.5,4,1,1,0,0,0,0,-1,0,1,0|5.5,4,-3.5,1,0,0,0,0,-1,0,1,0|5.5,4,3.5,1,0,0,0,0,-1,0,1,0|7,-4,13,0,-1,0,0,0,1,-1,0,0|0,-1,-2.5,0,1,0,0,0,1,1,0,0|-0.5,0.5,1,1,0,0,0,0,-1,0,1,0|4.5,0,2.5,-1,0,0,0,1,0,0,0,-1|0,-0.2001,-2.9,-1,0,0,0,0,1,0,1,0|5.5,1,7,1,0,0,0,0,-1,0,1,0|15,0,5.5,0,0,-1,0,1,0,1,0,0|9,-3,5.5,0,-1,0,0,0,1,-1,0,0|-64.6136,7.6,183.947|-0.0334,-0.0012,0.001|4,1,5|-60.6136,16.6,192.947|-0.0347,-0.0022,0.0025|4,1,13|-1.5,4.5,3,-1,0,0,0,1,0,0,0,-1|-0.5001,4.5,3,1,0,0,0,-1,0,0,0,-1|-62.6136,24.1,1'
  1635. ..'83.947|-0.0333,-0.0012,0.0031|7,2,2|3,3,-1.5,1,0,0,0,1,0,0,0,1|0.5,3,0,1,0,0,0,0,-1,0,1,0|-70.6136,7.6,183.947|-0.0334,-0.0012,0.0002|8,1,5|-3.5,-6,2,-1,0,0,0,0,1,0,1,0|-0.5,-4.5,-2,0,0,1,0,1,0,-1,0,0|8,0,-9,0,0,-1,0,1,0,1,0,0|-1,-8,2.5,0,1,0,0,0,1,1,0,0|Stop|-63.6136,18.3,188.447|-0.034,-0.0017,0.0023|0,0.5,-0.0001,0,-1,0,0,0,-1,1,0,0|-59.1136,20.1,188.447|-0.034,-0.0017,0.0031|-67.6136,18.6,180.947|-0.0329,-0.0009,0.0018|19.9999,0.5,-1.5,-1,0,0,0,-1,0,0,0,1|0,5,1,0,-1,0,0,0,-1,1,0,0|1.5,0,-0.5,1,0,0,0,1,0,0,0,1|-60.1136,21.1,192.947|-0.0346,-0.0022,0.0031|11,8,1|0.4999,0.5,0,0,1,0,0,0,-1,-1,0,0|-63.6136,17.6,188.447|-0.034,-0.0017,0.0022|2,1,2|Up|0.898,0.8941,0.8745|-63.4136,19.6,195.447|-0.035,-0.0025,0.0025|-69.1136'
  1636. ..',10.6,181.947|-0.0331,-0.001,0.0007|-0.5,-3.5,0,0,0,1,0,1,0,-1,0,0|-0.5,-1.5,-0.5,0,0,1,0,1,0,-1,0,0|-1.5,0,0,-0,-0,-1,0,1,0,1,0,0|0.5,-3.5,0,0,0,-1,0,1,0,1,0,0|-69.1136,16.6,181.947|-0.5,4.5,-0.5,0,0,1,0,1,0,-1,0,0|-64.6136,16.6,183.947|-0.0334,-0.0012,0.002|-67.8136,19.2999,192.447|-0.0346,-0.0021,0.0018|0,0.7999,1,0,-1,0,-1,0,0,0,0,-1|-66.6136,17.3,192.447|Right|-63.1136,18.7,191.447|-0.0344,-0.002,0.0024|1,0.2,-0.5,0,-1,0,0,0,-1,1,0,0|-67.1136,17.9,192.447|2,0.8,1|0,0.1999,-0.5001,-1,0,0,0,0,-1,0,-1,0|0,0.4,0,-1,-0,-0,0,0,1,0,1,0|0,-0.2,0.5,-1,0,0,0,0,1,0,1,0|Foward|-62.1136,19.1001,192.447|-0.0346,-0.0022,0.0026|-68.1136,25.6,192.947|-0.0346,-0.0022,0.0024|25,1,13|12,1,1,1,0,0,0,0,-1,0,1,0|0,0,-6.5,-1,-0,-0,0,1,0,-'
  1637. ..'0,-0,-1|-4,-8,11.5,0,-1,0,0,0,1,-1,0,0|0,-2,-5.5,1,0,0,0,0,1,0,-1,0|-9,1,-5.5,1,0,0,0,0,-1,0,1,0|1.5,-0.5,7.5,0,1,0,0,0,1,1,0,0|0,0,6.5,1,0,0,0,1,0,0,0,1|0,0,-1.5,1,0,0,0,1,0,0,0,1|-11,4,6,1,0,0,0,0,-1,0,1,0|9,1,-5.5,1,0,0,0,0,-1,0,1,0|11,4,6,1,0,0,0,0,-1,0,1,0|-10,4,13.5,1,0,0,0,0,-1,0,1,0|-60.1136,25.6,192.947|-0.0346,-0.0022,0.0036|13,1,3|-69.6136,26.6,200.447|-0.0357,-0.003,0.0023|-7.5,0.5,-1.5,0,-1,0,0,0,-1,1,0,0|0,0,-5,-1,-0,-0,0,1,0,-0,-0,-1|2.5,-1.5,-4,0,0,-1,0,1,0,1,0,0|-62.6136,20.1,184.447|-0.0334,-0.0013,0.0026|6,6,2|2,0.5,0.5,0,1,0,0,0,-1,-1,0,0|-2,0.5,-8.5,0,1,0,0,0,-1,-1,0,0|14.9999,-3,-1.5,0,-1,0,1,0,0,0,0,1|-69.1136,24.1,180.947|12,-0.5,-1,-1,0,0,0,0,1,0,1,0|3,0,-1,1,0,0,0,1,0,0,0,1|-1.5,1.5,0,0,1,0,0,0'
  1638. ..',-1,-1,0,0|0,3,5,1,0,0,0,0,-1,0,1,0|-62.1136,18.7,192.447|0,0.2,0.5,1,0,0,0,0,-1,0,1,0|0,0.2,0,0,-1,0,0,0,-1,1,0,0|-69.1136,8.6,181.947|-0.0331,-0.001,0.0005|-0.5,-5.5,0,0,0,1,0,1,0,-1,0,0|1.5,0.5,-2,1,0,0,0,0,-1,0,1,0|-0.5,-3.5,-0.5,0,0,1,0,1,0,-1,0,0|0.5,-5.5,0,0,0,-1,0,1,0,1,0,0|-63.8136,12.6,183.947|2.5,1.5,0.2999,0,0,-1,-1,0,0,0,1,0|-0.5,0.5,4.7999,0,0,1,1,0,0,0,1,0|-0.5001,0.5,0,0,0,1,1,0,0,0,1,0|-62.6136,18.3,192.447|4,0.4,2|-63.1136,17.6,193.447|-0.0347,-0.0023,0.0023|6,1,3|-1,-0.2001,-0.5,-1,0,0,0,0,1,0,1,0|-2.5,0.5,0.5,0,1,0,0,0,-1,-1,0,0|-62.6136,24.1,201.947|-0.0359,-0.0032,0.0031|-68.1136,1.6,205.947|-0.0366,-0.0036,-0.0001|5,1,1|-68.6136,7.6,195.947|-0.0351,-0.0025,0.0004|9,-1,-3.5,0,-1,0,0,0,1,-1,0,0|0,0,'
  1639. ..'9.5,1,0,0,0,1,0,0,0,1|-3.5,3,-0.5,1,0,0,0,1,0,0,0,1|0,-1,-3.5,0,-1,0,0,0,1,-1,0,0|-5,-4,1,-1,0,0,0,0,1,0,1,0|-5.5,-4,3.5,-1,0,0,0,0,1,0,1,0|-2,-1,-3.5,0,-1,0,0,0,1,-1,0,0|-5,-4,-8,-1,0,0,0,0,1,0,1,0|-7,-3,-5.5,0,-1,0,0,0,1,-1,0,0|7,-1,-3.5,0,-1,0,0,0,1,-1,0,0|-7,-3,-4.5,0,-1,0,0,0,1,-1,0,0|3,-2,-4.5,0,1,0,0,0,1,1,0,0|-9,-1,-2.5001,0,1,0,0,0,1,1,0,0|-0.5,3,-2.5001,0,0,1,0,1,0,-1,0,0|4.5,-4,-8,-1,0,0,0,0,1,0,1,0|1,-8.0001,8.5,-0,-1,0,-0,-0,1,-1,-0,0|-5.5,-4,-3.5,-1,0,0,0,0,1,0,1,0|0,-1,-2.5001,0,1,0,0,0,1,1,0,0|5.5,-4,3.5,-1,0,0,0,0,1,0,1,0|-0.5,-3.5,1,-1,0,0,0,0,1,0,1,0|2,0,2.5,-1,0,0,0,1,0,0,0,-1|2,-1,-2.5001,0,1,0,0,0,1,1,0,0|-7,-3,4.1,0,-1,0,0,0,1,-1,0,0|8,0,3,0,0,-1,0,1,0,1,0,0|-0.5,-3.5,-8,-1,0,0,0,0,1,0,1,0|-65.113'
  1640. ..'6,9.1,202.947|-0.0361,-0.0033,0.0011|-62.1136,7.6,188.947|-0.0341,-0.0018,0.0014|0.5,-2,-1,0,0,-1,1,0,0,0,-1,0|-64.1136,5.1,192.947|-0.0347,-0.0022,0.0008|25,4,3|0.5,-0.5,9,0,1,0,0,0,1,1,0,0|-12,-5,4.4999,-1,0,0,0,0,1,0,1,0|0,1.5,15.5,1,0,0,0,-1,0,0,0,-1|-59.1136,4.6,188.947|-0.0341,-0.0018,0.0015|0.5,1,2,0,0,-1,1,0,0,0,-1,0|-65.1136,9.1,193.947|-0.0348,-0.0023,0.0011|-60.1136,6.6,191.947|-0.0345,-0.0021,0.0016|1,5,5|-68.1136,15.6,203.947|-0.0362,-0.0034,0.0014|0,3.5,0,1,0,0,0,0,-1,0,1,0|-1,3.5,0,0,0,1,0,1,0,-1,0,0|-1,-1,-3.0001,-0,-1,0,-0,-0,1,-1,-0,0|-3.5,0,0,-0,-0,-1,0,1,0,1,0,0|1.5,3.5,0,0,0,-1,0,1,0,1,0,0|-61.1136,6.6,188.947|0.5,-1,0,0,0,-1,1,0,0,0,-1,0|-60.1136,6.6,185.947|-0.0337,-0.0015,0.0016|-1,2,-2.5,0,1,0,-'
  1641. ..'1,0,0,0,0,1|2,-1,-2.5,0,1,0,-1,0,0,0,0,1|-7,0.5,13,-1,0,0,0,0,-1,0,-1,0|1,0,-2.5,0,1,0,-1,0,0,0,0,1|-68.1136,5.6,205.947|-0.0366,-0.0036,0.0003|-71.1136,4.6,205.947|-0.0366,-0.0036,-0.0002|1,7,1|-2.5,1,0,0,0,1,0,1,0,-1,0,0|-2.5,-1,0,0,0,1,0,1,0,-1,0,0|-2.5,3,0,0,0,1,0,1,0,-1,0,0|-71.1136,14.1,195.947|0,-90,180|-0.0351,-0.0025,0.0008|-60.1136,5.6,188.947|0.5,0,1,0,0,-1,1,0,0,0,-1,0|-0.5,0,1,0,0,1,-1,0,0,0,-1,0|-125.6136,0.6,192.947|-0.0347,-0.0021,-0.0085|70,1,9|-80.6136,3.6,192.947|-0.0347,-0.0022,-0.0017|11,7,20|0,-3.5,0,1,0,0,-0,-0,-1,0,1,0|-12.0001,-0.5,-3,0,-1,0,0,0,1,-1,0,0|0,0,10,1,0,0,0,1,0,0,0,1|35,0,-5,0,0,-1,0,-1,0,-1,0,0|35,3,0,0,0,-1,0,-1,0,-1,0,0|2,-0.5,0,0,-1,0,0,0,1,-1,0,0|-63.1136,12.1,192.447|-0.0346,-0'
  1642. ..'.0022,0.0017|0.5,0.2,0,0,-1,0,0,0,-1,1,0,0|0,-3,2.5,-1,0,0,0,1,0,0,0,-1|-71.1136,9.1,193.947|-0.0348,-0.0023,0.0002|-65.1136,4.6,205.947|-0.0366,-0.0036,0.0006|2.5,-1,0,0,0,-1,0,1,0,1,0,0|12.5,0.5,-1,0,0,-1,0,-1,0,-1,0,0|2.5,3,0,0,0,-1,0,1,0,1,0,0|-65.1136,14.1,202.947|-0.0361,-0.0033,0.0016|2.9999,-0.5,-1,0,1,0,0,0,1,1,0,0|-1.0001,2,-1,0,0,1,0,-1,0,1,0,0|-71.1136,14.1,193.947|-0.0348,-0.0023,0.0008|-63.1136,12.1,199.447|-0.0356,-0.0029,0.0017|-63.6136,12.1,194.947|-0.035,-0.0024,0.0016|2,8,3|3.5,-3.5,0,0,0,-1,0,1,0,1,0,0|1,2,0.5,1,0,0,0,-1,0,0,0,-1|1,3,0.5,-1,0,0,0,1,0,0,0,-1|3.5,0.5,0,0,0,-1,0,1,0,1,0,0|-0.5,0,-3,1,0,0,0,1,0,0,0,1|-0.5,0,1,-1,0,0,0,1,0,0,0,-1|0.5,0.2,1,0,-1,0,-1,0,0,0,0,-1|-1,3,0.5,-1,0,0,0,1,0,0,0,-1'
  1643. ..'|-68.1136,3.6,205.947|-0.0366,-0.0036,0.0001|-71.1136,14.1,202.947|-0.0361,-0.0033,0.0008|1.4999,2,-1,0,0,-1,0,-1,0,-1,0,0|-63.8136,12.6,192.447|Down|-63.4136,18.6,195.447|-0.035,-0.0025,0.0024|-59.1136,20.1,197.447|-0.0353,-0.0027,0.0031|0.5,-1,1,0,0,-1,0,-1,0,-1,0,0|1.5,0.5,4.5,-1,0,0,0,0,-1,0,-1,0|-60.1136,21.1,198.947|-0.0355,-0.0029,0.0031|-1,-2.5,-3,-1,0,0,0,0,1,0,1,0|-1.0001,-1,-1,1,-0,0,0,-0,1,0,-1,0|3,-3,1,-1,0,0,0,1,0,0,0,-1|-5.5,0,0,0,0,1,0,1,0,-1,0,0|0.5,0.5,6,0,1,0,0,0,-1,-1,0,0|-61.1136,20.1,197.447|-0.0353,-0.0027,0.0029|Seat|-68.6136,17.3,198.847|-0.0355,-0.0028,0.0015|-68.6136,19.2999,197.647|-0.0353,-0.0027,0.0017|0.5,0,-0.0001,0,0,-1,0,1,0,1,0,0|-68.6136,20.7999,197.647|-0.0353,-0.0027,0.0018|-68.6136'
  1644. ..',17.9,198.347|-0.0354,-0.0028,0.0015|0,-0.2,-0.5,1,0,0,0,0,1,0,-1,0|0,0.1999,-0.5,-1,0,0,0,0,-1,0,-1,0|-68.6136,18.5,198.847|-0.0355,-0.0028,0.0016|-0.8,0.1999,0,0,1,0,0,0,-1,-1,0,0|-71.1136,9.1,195.947|-0.0351,-0.0025,0.0002|-71.1136,14.1,204.947|-0.0364,-0.0035,0.0008|-3,-0.5,1,0,-1,0,0,0,1,-1,0,0|1.5,2,1,0,0,-1,0,-1,0,-1,0,0|-125.6136,3.6,197.947|-0.0354,-0.0026,-0.0082|27,-0.5,5,-1,0,0,0,0,1,0,1,0|-9,-0.5,5,-1,0,0,0,0,1,0,1,0|-65.6136,19.6,202.447|-0.036,-0.0032,0.0021|-64.1136,11.1,188.947|1.5,-0.3,-1,0,-1,0,1,0,0,0,0,1|0,0,-0.5,1,0,0,0,1,0,0,0,1|-63.1136,11.1,188.947|-0.0341,-0.0018,0.0016|-0.0001,-1,0,0,1,0,0,0,1,1,0,0|-62.1136,11.1,188.947|-0.0341,-0.0018,0.0017|0.5,-2,-4.5,0,0,-1,1,0,0,0,-1,0|-0.5,-2,-4.5,-0,0,'
  1645. ..'1,-1,0,0,-0,-1,0|Big Door|LampScript|Monior|-73.4136,12.6,199.447|-0.0356,-0.0029,0.0003|3,0.4,4|Lock2|-68.1136,11.6,194.947|-0.035,-0.0024,0.0009|7,7,1|1.4999,-0.5,0,0,0,-1,0,1,0,1,0,0|Lock1|-68.1136,11.6,203.947|-0.0362,-0.0034,0.0009|Head4|-72.1136,11.6,196.647|-0.0352,-0.0026,0.0004|60|Head3|-72.1136,11.6,202.2471|-0.036,-0.0032,0.0004|0.9999,-0.5,-1.5,0,1,0,-1,0,0,0,0,1|Head2|-72.1136,11.6,193.2471|-0.0347,-0.0022,0.0004|Head1|-72.1136,11.6,205.647|-0.0365,-0.0035,0.0004|0.9999,-0.5,1.5,0,1,0,1,0,0,0,0,-1|-65.1136,9.1,195.947|-0.0351,-0.0025,0.0011|-71.1136,9.1,202.947|-0.0361,-0.0033,0.0002|1.4999,-3,-1,0,0,-1,0,1,0,1,0,0|-62.6136,20.1,201.447|-0.0359,-0.0031,0.0026|0.5,-1,0,-1,0,0,0,0,1,0,1,0|0,-17.5,-0.5,1,0,0,0'
  1646. ..',0,1,0,-1,0|-2.5,-1,-1.5001,1,0,0,0,1,0,0,0,1|-65.6136,18.1,199.947|-0.0357,-0.0029,0.002|2,2,3|0.6274,0.3725,0.2078|512|-65.6136,19.3,199.947|-0.0357,-0.0029,0.0021|3,0.4,2|-69.6136,19.3,202.447|-0.036,-0.0032,0.0015|6,0.4,2|0,1,-1.0001,0,1,0,0,0,-1,-1,0,0|-63.6136,12.1,203.947|-0.0362,-0.0034,0.0016|-0.5,0,3,-1,0,0,0,1,0,0,0,-1|-68.6136,18.1,202.447|-0.036,-0.0032,0.0016|0,-0.5,-3,-1,0,0,0,0,1,0,1,0|-71.1136,9.1,204.947|-0.0364,-0.0035,0.0002|1.4999,-3,1,0,0,-1,0,1,0,1,0,0|-67.6136,21.6,204.947|0,-1,1.5,0,-1,0,0,0,1,-1,0,0|-3,-1,-5,0,-1,0,0,0,1,-1,0,0|-67.6136,18.6,204.947|-0.0364,-0.0035,0.0018|0,-1.5,0,-1,0,0,0,0,1,0,1,0|0,-1.5,0.4999,-1,0,0,0,1,0,0,0,-1|-65.1136,14.1,195.947|-0.0351,-0.0025,0.0016|3,-0.5,1,0,1,0,0,'
  1647. ..'0,1,1,0,0|-1,2,1,0,0,1,0,-1,0,1,0,0|-65.1136,14.1,193.947|-0.0348,-0.0023,0.0016|-65.1136,9.1,204.947|-0.0364,-0.0035,0.0011|-65.1136,14.1,204.947|-0.0364,-0.0035,0.0016|2.9999,-0.5,1,0,1,0,0,0,1,1,0,0|-1.0001,2,1,0,0,1,0,-1,0,1,0,0|-47.6136,15.1,183.947|-0.0334,-0.0013,0.0043|30,2,3|-47.6136,9.1,178.947|-0.0327,-0.0008,0.0036|30,3,10|-14,0.5,0.5,0,-1,0,0,0,-1,1,0,0|-47.6136,9.1,181.447|-0.033,-0.001,0.0036|30,2,10|-47.6136,16.6,184.447|-0.0334,-0.0013,0.0044|30,1,4|-15,0,0,-0,-0,-1,0,1,0,1,0,0|0.5,1,8.5,0,0,-1,0,1,0,1,0,0|0,0,-2,-1,-0,-0,0,1,0,-0,-0,-1|2,0,6.5,-1,0,0,0,1,0,0,0,-1|0,-1,-0.5,-1,0,0,0,0,1,0,1,0|12.9999,0,-6.5,1,0,0,0,1,0,0,0,1|0,-3,14.9999,0,1,0,0,0,1,1,0,0|15,0,0,0,0,1,0,1,0,-1,-0,-0|1.9999,0,0.5,0,0,-1,'
  1648. ..'0,1,0,1,0,0|-47.6136,15.6,181.447|-0.033,-0.001,0.0043|1.9999,-1,-2.5,0,0,-1,1,0,0,0,-1,0|0,0,5,1,0,0,0,-1,0,0,0,-1|-0.0001,-0.5,1.5,-1,0,0,0,1,0,0,0,-1|-39.6136,2.1,201.447|-0.0359,-0.0032,0.004|4,16,2|0,-8.0001,-1.5,-1,0,0,0,0,1,0,1,0|8.5,-0.5,-7.5,-1,0,0,0,0,1,0,1,0|-47.6136,15.6,204.447|-0.0363,-0.0035,0.0043|0,-0.5,1.5,-1,0,0,0,1,0,0,0,-1|-47.6136,9.1,204.447|-0.0363,-0.0035,0.0036|0,0,1.5,1,0,0,0,-1,0,0,0,-1|0,-1.5,0,1,0,0,0,0,1,0,-1,0|-39.6136,2.1,184.447|-0.0335,-0.0014,0.004|-8.5,-0.5,-7.5,-1,0,0,0,0,1,0,1,0|-47.6136,15.1,201.947|-0.036,-0.0032,0.0043|-47.6136,16.6,201.447|-0.0359,-0.0031,0.0044|0.4999,1,-8.5,0,0,-1,0,1,0,1,0,0|-0.0001,-1,-0.5,1,0,0,0,0,1,0,-1,0|0,0,2,1,0,0,0,1,0,0,0,1|13,0,6.5,-1,0,0,0,1,0,0,0'
  1649. ..',-1|-45.6136,16.6,192.947|-0.0347,-0.0022,0.0047|26,1,13|-2,0,2,-1,0,0,0,1,0,0,0,-1|13,0,0,0,0,1,0,1,0,-1,-0,-0|1.9999,0,0,0,0,-1,0,1,0,1,0,0|-13,0,0,-0,-0,-1,0,1,0,1,0,0|0.5,1,0,0,0,-1,0,1,0,1,0,0|-44.1136,19.6,201.447|-0.0359,-0.0032,0.0052|4,35,5|-47.6136,9.1,206.947|-0.0367,-0.0037,0.0036|-47.1136,3.6,192.947|-0.0347,-0.0022,0.0031|31,1,31|0,0,-15.5,-1,-0,-0,0,1,0,-0,-0,-1|8.5,-8,0,-1,0,0,0,0,1,0,1,0|0,-1.5,14.5,-1,0,0,0,0,1,0,1,0|-1,13,2.5,1,0,0,0,-1,0,0,0,-1|0.5,-14,5,0,-1,0,-1,0,0,0,0,-1|-8.5,-8,0,-1,0,0,0,0,1,0,1,0|-44.1136,19.6,184.447|-0.0334,-0.0013,0.0052|15,5.5,0,0,-1,0,0,0,-1,1,0,0|0,-17.5,0,1,0,0,-0,-0,-1,0,1,0|0,-0.5,0.9999,1,0,0,0,-1,0,0,0,-1|-32.1136,9.1,206.947|-0.0367,-0.0038,0.0059|1,3,10|14,0.5,-15'
  1650. ..',0,1,0,0,0,-1,-1,0,0|-32.1136,15.6,181.447|-0.033,-0.0011,0.0065|1,2,3|0,0,10.5,1,0,0,0,-1,0,0,0,-1|-32.6136,9.1,192.947|-0.0347,-0.0023,0.0058|1,-3.5,1,0,0,-1,1,0,0,0,-1,0|1,-3.5,-1,0,0,-1,1,0,0,0,-1,0|-1,-3.5,-1,0,0,1,-1,0,0,0,-1,0|0,1.5,0,0,-1,0,0,0,-1,1,0,0|-1,-3.5,1,0,0,1,-1,0,0,0,-1,0|-32.1136,15.6,192.947|-0.0347,-0.0023,0.0065|-32.1136,15.6,204.447|-0.0363,-0.0035,0.0065|0,0,-10.5,-1,0,0,0,-1,0,0,0,1|-32.6136,12.6,192.947|-0.0347,-0.0023,0.0062|2,3,13|5.5,-3.5,-1,0,1,0,-1,0,0,0,0,1|-5.5,-3.5,-1,0,1,0,-1,0,0,0,0,1|0.5,-1.5,0,-1,0,0,0,0,1,0,1,0|-23.6136,10.1,187.447|-0.0339,-0.0017,0.0072|-29.1136,10.1,187.447|-0.0339,-0.0017,0.0064|-2,-8,1.5,0,0,1,0,1,0,-1,0,0|0,0,-1,1,0,0,0,1,0,0,0,1|0,-4.5,0,1,0,0,-0,-0,-1,0,1,'
  1651. ..'0|0,-0.2001,0,0,-1,0,0,0,1,-1,0,0|-33.8136,10.1,187.447|-0.0339,-0.0017,0.0057|-32.1136,9.1,183.447|-0.0333,-0.0013,0.0059|1,10,6|1,-3,-1,0,0,-1,1,0,0,0,-1,0|-0.5,-3.5,6.5,-1,0,0,0,1,0,0,0,-1|0,5,0,-1,-0,-0,0,0,1,0,1,0|0,-2,1.5,-1,0,0,0,1,0,0,0,-1|1,-3,1,0,0,-1,1,0,0,0,-1,0|-6.5,3.5,-0.5,0,0,1,0,1,0,-1,0,0|2.5,-2.5,1,0,0,-1,0,1,0,1,0,0|-1,-8,5.5,-1,0,0,0,0,1,0,1,0|0,-5,0,1,0,0,-0,-0,-1,0,1,0|-9.5,0.5,-15,0,-1,0,0,0,-1,1,0,0|0,-1.5,9.5,-1,0,0,0,0,1,0,1,0|-32.1136,9.1,202.447|-0.036,-0.0033,0.0059|-1,-3,-1,0,0,1,-1,0,0,0,-1,0|-0.5,-3.5,-6.5,1,0,0,0,1,0,0,0,1|0,-2,1.5,1,0,0,0,-1,0,0,0,-1|0,-1.5,-9.5,-1,0,0,0,0,1,0,1,0|-1,-3,1,0,0,1,-1,0,0,0,-1,0|2.5,-2.5,-1,0,0,-1,0,1,0,1,0,0|6.5,3.5,-0.5,0,0,-1,0,1,0,1,0,0|9.5,0.5,-15,0,-'
  1652. ..'1,0,0,0,-1,1,0,0|1,-8,5.5,-1,0,0,0,0,1,0,1,0|-29.1136,11.6,184.447|-0.0334,-0.0014,0.0065|5,11,2|-0.5,-4,8.5,0,0,1,0,1,0,-1,0,0|0,-5.5,0,1,0,0,-0,-0,-1,0,1,0|0,-5.5,2.5,0,-1,0,-1,0,0,0,0,-1|-32.1136,9.1,178.947|-0.0327,-0.0008,0.0059|-14,0.5,-15,0,-1,0,0,0,-1,1,0,0|-23.6136,8.1,198.447|-0.0355,-0.0029,0.007|0,4.4999,0,0,-1,0,0,0,-1,1,0,0|-29.1136,8.1,198.447|-0.0355,-0.0029,0.0062|2,-8,3.5,0,0,-1,0,1,0,1,0,0|5.5,1.5,-3.5,-1,0,0,0,0,-1,0,-1,0|-33.8136,8.1,198.447|-0.0355,-0.0029,0.0055|-1,0,0,0,0,1,0,1,0,-1,0,0|0,-4.5001,0,0,-1,0,0,0,1,-1,0,0|-32.6136,5.6,192.947|-0.0347,-0.0023,0.0054|13,3,2|-23.6136,10.1,198.447|-0.0355,-0.0029,0.0072|-29.1136,10.1,198.447|-0.0355,-0.0029,0.0064|2,-8,1.5,0,0,-1,0,1,0,1,0,0|-33.8136,10.'
  1653. ..'1,198.447|-0.0355,-0.0029,0.0057|-23.6136,8.1,187.447|-0.0339,-0.0017,0.007|-29.1136,8.1,187.447|-0.0339,-0.0017,0.0062|-2,-8,3.5,0,0,1,0,1,0,-1,0,0|-5.5,1.5,-3.5,-1,0,0,0,0,-1,0,-1,0|-33.8136,8.1,187.447|-0.0339,-0.0017,0.0055|-29.1136,11.6,201.447|-0.0359,-0.0032,0.0065|0,-5.5,0,1,0,0,0,0,1,0,-1,0|-0.5,-4,-8.5,0,0,1,0,1,0,-1,0,0|0,5.5,0,-1,-0,-0,0,0,1,0,1,0|0,15,2.5,0,1,0,1,0,0,0,0,-1|-21.1136,11.6,201.447|-0.0359,-0.0032,0.0077|4,11,11|-23.6136,3.6,201.447|4,16,5|0,-2.5,5.5,-1,0,0,0,1,0,0,0,-1|-21.1136,11.6,184.447|-0.0334,-0.0014,0.0077|-2.5,0,0,0,0,1,0,-1,0,1,0,0|0,2.4999,2.5,-1,0,0,0,1,0,0,0,-1|-23.6136,3.6,184.447|-0.0335,-0.0014,0.0065|Parts|-45.6136,17.7,192.947|13,1.2,26|-1.5,3,-48|Count|-43.6136,7.0999,192.44'
  1654. ..'7|Gun2|-31.1136,17.7,198.947|1,1.2,3|6|6,0,-13,1,0,0,0,1,0,-0,-0,1|Gun1|-31.1136,17.7,186.947|-6,0,-13,1,0,0,0,1,0,-0,-0,1|-103,10.8,-727,-1,0,-0,-0,1,-0,-0,0,-1|-102.9924,10.7712,-726.6936,-1,0.0004,0,0.0004,0.9999,-0.0007,-0.0001,-0.0007,-1|819.9973,10.8972,-814.9733,-1,0.0004,0,0.0004,0.9999,0,-0.0001,0,-1|222.9997,10.8018,-157.9743,-1,0,-0.0001,0,1,0,0,0,-1|-45.0007,11.6175,-151.9751,-1,0,-0.0001,0,1,0.0001,0,0.0001,-1|40,1,74,-1,0,-0,-0,1,-0,-0,0,-1|241,1,-38,1,0,0,0,1,0,0,0,1|71,0.9897,-24.0001,1,-0.0001,0,0,1,-0.0001,-0.0001,0,1|PlaneCheck|Stunt|README FIRST|-162.1136,3.6,192.947|7,1,7|0,0,0.6|7|25|0.9725,0.9725,0.9725;0,3>2>21,5>13>4,5>14>25,6>13>4,6>14>21,8>13>7,8>14>21,10>13>9,10>14>25,11>13>9,11>14>21,12>13>9'
  1655. ..',12>14>7,14>13>13,14>14>21,16>13>15,16>14>21,17>13>15,17>14>18,22>13>21,22>14>58,23>13>21,23>14>1612,24>13>21,24>14>18,26>13>25,26>14>58,27>13>25,27>14>7,28>13>25,28>14>53,29>13>25,29>14>43,30>13>25,30>14>51,31>13>25,31>14>41,32>13>25,32>14>39,33>13>25,33>14>18,34>13>25,34>14>19,35>13>25,35>14>15,36>13>25,36>14>56,37>13>25,37>14>13,38>13>25,38>14>49,42>13>41,42>14>21,44>13>43,44>14>58,45>13>43,45>14>21,48>13>46,48>14>25,52>13>51,52>14>21,54>13>53,54>14>41,55>13>53,55>14>21,57>13>56,57>14>21,61>13>60,61>14>73,62>13>60,62>14>63,66>13>64,66>14>362,67>13>64,67>14>285,68>13>64,68>14>203,69>13>64,69>14>82,70>13>64,70>14>77,71>13>64,71>14>63,72>13>64,72>14>60,75>13>73,75>14>388,76>13>73,76>14>63,78>13>77,78>14>281,79>13>77,79>'
  1656. ..'14>285,80>13>77,80>14>73,81>13>77,81>14>63,83>13>82,83>14>362,84>13>82,84>14>285,87>13>85,87>14>109,88>13>85,88>14>195,91>13>89,91>14>128,96>13>94,96>14>92,98>13>97,98>14>191,99>13>97,99>14>539,100>13>97,100>14>203,101>13>97,101>14>271,102>13>97,102>14>178,105>13>103,105>14>89,108>13>106,108>14>182,111>13>109,111>14>212,112>13>109,112>14>128,114>13>113,114>14>271,115>13>113,115>14>273,116>13>113,116>14>282,117>13>113,117>14>178,118>13>113,118>14>120,119>13>113,119>14>77,121>13>120,121>14>371,122>13>120,122>14>384,123>13>120,123>14>363,124>13>120,124>14>77,125>13>120,125>14>73,126>13>120,126>14>178,129>13>128,129>14>182,130>13>128,130>14>833,132>13>131,132>14>833,133>13>131,133>14>803,134>13>131,134>14>128,137>13>135,137'
  1657. ..'>14>128,138>13>135,138>14>131,142>13>141,142>14>128,143>13>141,143>14>660,144>13>141,144>14>803,146>13>145,146>14>833,147>13>145,147>14>803,148>13>145,148>14>128,149>13>145,149>14>131,152>13>150,152>14>139,153>13>150,153>14>131,156>13>154,156>14>158,157>13>154,157>14>141,160>13>158,160>14>239,163>13>161,163>14>128,164>13>161,164>14>141,167>13>165,167>14>239,168>13>165,168>14>803,170>13>169,170>14>239,171>13>169,171>14>128,172>13>169,172>14>660,173>13>169,173>14>803,174>13>169,174>14>141,177>13>175,177>14>803,180>13>178,180>14>388,181>13>178,181>14>271,185>13>184,185>14>594,186>13>184,186>14>704,187>13>184,187>14>281,188>13>184,188>14>781,189>13>184,189>14>297,190>13>184,190>14>692,193>13>191,193>14>362,194>13>191,194>14'
  1658. ..'>285,196>13>195,196>14>89,197>13>195,197>14>336,198>13>195,198>14>106,199>13>195,199>14>103,200>13>195,200>14>94,201>13>195,201>14>300,202>13>195,202>14>276,204>13>203,204>14>191,205>13>203,205>14>539,206>13>203,206>14>362,207>13>203,207>14>388,208>13>203,208>14>73,209>13>203,209>14>178,210>13>203,210>14>60,213>13>212,213>14>241,214>13>212,214>14>233,215>13>212,215>14>833,216>13>212,216>14>182,217>13>212,217>14>660,218>13>212,218>14>239,219>13>212,219>14>251,220>13>212,220>14>184,221>13>212,221>14>128,222>13>212,222>14>89,224>13>223,224>14>243,225>13>223,225>14>212,226>13>223,226>14>833,227>13>223,227>14>233,228>13>223,228>14>803,229>13>223,229>14>241,230>13>223,230>14>145,231>13>223,231>14>139,232>13>223,232>14>175,237'
  1659. ..'>13>235,237>14>692,238>13>235,238>14>243,240>13>239,240>14>803,242>13>241,242>14>803,247>13>245,247>14>249,248>13>245,248>14>239,253>13>251,253>14>239,256>13>254,256>14>803,258>13>257,258>14>212,259>13>257,259>14>803,260>13>257,260>14>239,263>13>261,263>14>803,264>13>261,264>14>692,266>13>265,266>14>273,267>13>265,267>14>297,268>13>265,268>14>594,269>13>265,269>14>651,270>13>265,270>14>212,272>13>271,272>14>191,274>13>273,274>14>594,275>13>273,275>14>77,278>13>276,278>14>336,279>13>276,279>14>300,280>13>276,280>14>92,283>13>282,283>14>299,284>13>282,284>14>271,287>13>286,287>14>282,288>13>286,288>14>271,289>13>286,289>14>191,290>13>286,290>14>294,291>13>286,291>14>285,292>13>286,292>14>281,293>13>286,293>14>77,295>13>29'
  1660. ..'4,295>14>77,296>13>294,296>14>803,298>13>297,298>14>77,301>13>300,301>14>833,302>13>300,302>14>128,303>13>300,303>14>659,304>13>300,304>14>879,305>13>300,305>14>497,306>13>300,306>14>850,307>13>300,307>14>503,308>13>300,308>14>885,309>13>300,309>14>489,310>13>300,310>14>874,311>13>300,311>14>522,312>13>300,312>14>336,313>13>300,313>14>822,314>13>300,314>14>685,315>13>300,315>14>678,316>13>300,316>14>816,317>13>300,317>14>333,318>13>300,318>14>638,319>13>300,319>14>515,320>13>300,320>14>402,321>13>300,321>14>508,322>13>300,322>14>94,323>13>300,323>14>430,324>13>300,324>14>435,325>13>300,325>14>854,326>13>300,326>14>811,327>13>300,327>14>859,328>13>300,328>14>660,329>13>300,329>14>398,330>13>300,330>14>393,331>13>300,331>'
  1661. ..'14>702,332>13>300,332>14>92,335>13>333,335>14>336,339>13>338,339>14>191,340>13>338,340>14>362,341>13>338,341>14>348,342>13>338,342>14>285,350>13>348,350>14>345,351>13>348,351>14>362,352>13>348,352>14>285,353>13>348,353>14>82,361>13>354,361>14>348,364>13>363,364>14>388,365>13>363,365>14>73,373>13>371,373>14>388,374>13>371,374>14>363,375>13>371,375>14>368,383>13>376,383>14>371,385>13>384,385>14>388,386>13>384,386>14>371,387>13>384,387>14>178,390>13>389,390>14>556,391>13>389,391>14>803,394>13>393,394>14>581,397>13>395,397>14>400,403>13>402,403>14>581,404>13>402,404>14>398,405>13>402,405>14>395,406>13>402,406>14>393,409>13>407,409>14>581,412>13>410,412>14>895,413>13>410,413>14>636,416>13>414,416>14>1144,417>13>414,417>14>91'
  1662. ..'2,418>13>414,418>14>907,419>13>414,419>14>1164,420>13>414,420>14>483,421>13>414,421>14>459,424>13>423,424>14>422,425>13>423,425>14>566,428>13>427,428>14>422,431>13>430,431>14>522,432>13>430,432>14>581,439>13>437,439>14>522,440>13>437,440>14>433,442>13>441,442>14>300,443>13>441,443>14>581,444>13>441,444>14>433,445>13>441,445>14>435,446>13>441,446>14>430,447>13>441,447>14>400,448>13>441,448>14>407,449>13>441,449>14>393,452>13>450,452>14>522,453>13>450,453>14>581,456>13>454,456>14>458,457>13>454,457>14>556,460>13>459,460>14>808,461>13>459,461>14>570,462>13>459,462>14>426,463>13>459,463>14>533,464>13>459,464>14>639,465>13>459,465>14>630,466>13>459,466>14>542,467>13>459,467>14>480,469>13>468,469>14>426,472>13>470,472>14>979,'
  1663. ..'473>13>470,473>14>897,474>13>470,474>14>423,475>13>470,475>14>483,476>13>470,476>14>422,478>13>477,478>14>427,479>13>477,479>14>422,481>13>480,481>14>533,482>13>480,482>14>483,484>13>483,484>14>570,485>13>483,485>14>533,486>13>483,486>14>630,487>13>483,487>14>423,490>13>489,490>14>659,491>13>489,491>14>581,492>13>489,492>14>503,495>13>493,495>14>500,496>13>493,496>14>503,499>13>497,499>14>503,502>13>500,502>14>659,506>13>504,506>14>659,509>13>508,509>14>581,510>13>508,510>14>522,511>13>508,511>14>503,514>13>512,514>14>522,517>13>515,517>14>522,520>13>518,520>14>512,521>13>518,521>14>503,525>13>523,525>14>581,526>13>523,526>14>503,528>13>527,528>14>458,529>13>527,529>14>803,530>13>527,530>14>389,532>13>531,532>14>426,534'
  1664. ..'>13>533,534>14>426,536>13>535,536>14>426,538>13>537,538>14>426,541>13>539,541>14>636,543>13>542,543>14>483,544>13>542,544>14>480,546>13>545,546>14>897,547>13>545,547>14>422,548>13>545,548>14>621,549>13>545,549>14>1108,550>13>545,550>14>470,551>13>545,551>14>910,552>13>545,552>14>979,553>13>545,553>14>607,554>13>545,554>14>573,555>13>545,555>14>427,560>13>558,560>14>423,562>13>561,562>14>573,563>13>561,563>14>422,564>13>561,564>14>566,565>13>561,565>14>477,568>13>566,568>14>422,569>13>566,569>14>458,572>13>571,572>14>426,574>13>573,574>14>427,575>13>573,575>14>566,576>13>573,576>14>477,579>13>577,579>14>389,580>13>577,580>14>803,582>13>581,582>14>702,583>13>581,583>14>659,584>13>581,584>14>879,585>13>581,585>14>803,586>1'
  1665. ..'3>581,586>14>665,587>13>581,587>14>503,588>13>581,588>14>522,589>13>581,589>14>686,590>13>581,590>14>685,591>13>581,591>14>638,592>13>581,592>14>854,593>13>581,593>14>504,595>13>594,595>14>423,596>13>594,596>14>566,597>13>594,597>14>788,598>13>594,598>14>281,599>13>594,599>14>458,600>13>594,600>14>527,601>13>594,601>14>299,602>13>594,602>14>389,605>13>603,605>14>594,606>13>603,606>14>389,609>13>607,609>14>979,610>13>607,610>14>573,613>13>611,613>14>458,614>13>611,614>14>803,616>13>615,616>14>897,617>13>615,617>14>423,620>13>618,620>14>423,622>13>621,622>14>802,624>13>623,624>14>594,625>13>623,625>14>458,628>13>626,628>14>594,629>13>626,629>14>623,631>13>630,631>14>570,633>13>632,633>14>389,634>13>632,634>14>265,635>13>6'
  1666. ..'32,635>14>803,640>13>639,640>14>895,641>13>639,641>14>615,643>13>642,643>14>265,644>13>642,644>14>632,645>13>642,645>14>803,646>13>642,646>14>651,647>13>642,647>14>257,648>13>642,648>14>254,649>13>642,649>14>249,650>13>642,650>14>656,655>13>653,655>14>389,658>13>656,658>14>653,662>13>660,662>14>239,663>13>660,663>14>128,664>13>660,664>14>659,667>13>665,667>14>803,670>13>668,670>14>594,674>13>672,674>14>300,675>13>672,675>14>685,679>13>678,679>14>685,680>13>678,680>14>581,683>13>681,683>14>685,684>13>681,684>14>676,691>13>690,691>14>808,693>13>692,693>14>688,694>13>692,694>14>241,695>13>692,695>14>803,698>13>696,698>14>803,701>13>699,701>14>688,703>13>702,703>14>833,705>13>704,705>14>803,706>13>704,706>14>692,708>13>707,'
  1667. ..'708>14>797,709>13>707,709>14>870,710>13>707,710>14>938,711>13>707,711>14>784,712>13>707,712>14>774,713>13>707,713>14>754,714>13>707,714>14>728,715>13>707,715>14>727,718>13>716,718>14>423,720>13>719,720>14>594,721>13>719,721>14>799,722>13>719,722>14>804,723>13>719,723>14>843,724>13>719,724>14>774,725>13>719,725>14>767,726>13>719,726>14>751,731>13>728,731>14>924,732>13>728,732>14>870,733>13>728,733>14>727,734>13>728,734>14>573,735>13>728,735>14>607,736>13>728,736>14>774,737>13>728,737>14>566,739>13>738,739>14>797,740>13>738,740>14>938,741>13>738,741>14>423,743>13>742,743>14>788,744>13>742,744>14>803,745>13>742,745>14>767,746>13>742,746>14>795,747>13>742,747>14>699,748>13>742,748>14>594,749>13>742,749>14>704,750>13>742,750'
  1668. ..'>14>696,753>13>751,753>14>803,755>13>754,755>14>738,757>13>756,757>14>804,758>13>756,758>14>1322,759>13>756,759>14>719,760>13>756,760>14>728,761>13>756,761>14>902,762>13>756,762>14>774,763>13>756,763>14>566,764>13>756,764>14>803,765>13>756,765>14>623,766>13>756,766>14>458,768>13>767,768>14>594,769>13>767,769>14>803,771>13>770,771>14>1144,772>13>770,772>14>639,773>13>770,773>14>423,776>13>774,776>14>738,777>13>774,777>14>423,778>13>774,778>14>843,779>13>774,779>14>754,780>13>774,780>14>594,783>13>781,783>14>692,785>13>784,785>14>797,786>13>784,786>14>738,787>13>784,787>14>754,792>13>790,792>14>938,793>13>790,793>14>738,794>13>790,794>14>423,798>13>797,798>14>938,801>13>799,801>14>795,805>13>804,805>14>594,806>13>804,806>'
  1669. ..'14>843,807>13>804,807>14>668,815>13>813,815>14>685,817>13>816,817>14>685,818>13>816,818>14>581,821>13>819,821>14>813,823>13>822,823>14>819,824>13>822,824>14>811,825>13>822,825>14>816,826>13>822,826>14>581,829>13>827,829>14>685,830>13>827,830>14>581,836>13>835,836>14>1068,837>13>835,837>14>1385,838>13>835,838>14>808,841>13>839,841>14>803,842>13>839,842>14>581,845>13>844,845>14>938,846>13>844,846>14>1187,847>13>844,847>14>928,848>13>844,848>14>1340,857>13>855,857>14>859,858>13>855,858>14>852,860>13>859,860>14>854,861>13>859,861>14>850,862>13>859,862>14>686,863>13>859,863>14>678,864>13>859,864>14>676,865>13>859,865>14>581,868>13>866,868>14>885,869>13>866,869>14>581,872>13>870,872>14>938,878>13>876,878>14>702,880>13>879,880'
  1670. ..'>14>702,883>13>881,883>14>885,884>13>881,884>14>876,886>13>885,886>14>879,887>13>885,887>14>874,888>13>885,888>14>854,889>13>885,889>14>852,890>13>885,890>14>581,893>13>891,893>14>702,894>13>891,894>14>581,898>13>897,898>14>1048,900>13>899,900>14>1322,901>13>899,901>14>1251,903>13>902,903>14>1252,904>13>902,904>14>581,905>13>902,905>14>803,906>13>902,906>14>899,908>13>907,908>14>979,909>13>907,909>14>470,911>13>910,911>14>979,913>13>912,913>14>897,914>13>912,914>14>470,919>13>918,919>14>802,920>13>918,920>14>1187,921>13>918,921>14>621,922>13>918,922>14>924,923>13>918,923>14>545,927>13>926,927>14>802,929>13>928,929>14>1050,930>13>928,930>14>1347,931>13>928,931>14>1316,932>13>928,932>14>1273,933>13>928,933>14>1354,934>13>'
  1671. ..'928,934>14>1262,935>13>928,935>14>1246,936>13>928,936>14>926,937>13>928,937>14>802,940>13>939,940>14>1133,941>13>939,941>14>1331,942>13>939,942>14>969,943>13>939,943>14>1101,944>13>939,944>14>979,946>13>945,946>14>1131,947>13>945,947>14>964,948>13>945,948>14>1118,949>13>945,949>14>1108,950>13>945,950>14>1063,951>13>945,951>14>1047,952>13>945,952>14>979,954>13>953,954>14>1181,956>13>955,956>14>1182,958>13>957,958>14>1116,959>13>957,959>14>1155,960>13>957,960>14>1122,961>13>957,961>14>1160,962>13>957,962>14>1102,963>13>957,963>14>1060,966>13>965,966>14>1105,967>13>965,967>14>1118,968>13>965,968>14>907,971>13>970,971>14>1290,972>13>970,972>14>1182,973>13>970,973>14>1126,976>13>974,976>14>1133,978>13>977,978>14>1134,980>13>'
  1672. ..'979,980>14>1133,981>13>979,981>14>1101,982>13>979,982>14>897,983>13>979,983>14>1063,984>13>979,984>14>1047,987>13>985,987>14>895,990>13>988,990>14>1155,993>13>991,993>14>1155,996>13>994,996>14>1102,997>13>994,997>14>957,1051>13>1050,1051>14>1273,1052>13>1050,1052>14>1246,1054>13>1053,1054>14>1131,1055>13>1053,1055>14>964,1056>13>1053,1056>14>1118,1057>13>1053,1057>14>1063,1058>13>1053,1058>14>1047,1059>13>1053,1059>14>979,1062>13>1060,1062>14>1155,1066>13>1064,1066>14>1155,1067>13>1064,1067>14>957,1069>13>1068,1069>14>808,1070>13>1068,1070>14>1185,1072>13>1071,1072>14>1375,1073>13>1071,1073>14>1370,1074>13>1071,1074>14>1136,1075>13>1071,1075>14>1276,1076>13>1071,1076>14>1182,1077>13>1071,1077>14>1160,1078>13>1071,1078>1'
  1673. ..'4>1133,1079>13>1071,1079>14>1275,1080>13>1071,1080>14>1125,1081>13>1071,1081>14>1102,1082>13>1071,1082>14>974,1083>13>1071,1083>14>969,1084>13>1071,1084>14>1258,1085>13>1071,1085>14>938,1086>13>1071,1086>14>1380,1087>13>1071,1087>14>790,1088>13>1071,1088>14>690,1089>13>1071,1089>14>1228,1090>13>1071,1090>14>928,1091>13>1071,1091>14>844,1092>13>1071,1092>14>802,1093>13>1071,1093>14>770,1094>13>1071,1094>14>1048,1095>13>1071,1095>14>1050,1096>13>1071,1096>14>897,1097>13>1071,1097>14>1306,1098>13>1071,1098>14>621,1099>13>1071,1099>14>1441,1100>13>1071,1100>14>835,1103>13>1102,1103>14>1116,1104>13>1102,1104>14>1303,1106>13>1105,1106>14>957,1107>13>1105,1107>14>1160,1109>13>1108,1109>14>1101,1110>13>1108,1110>14>1053,1111>13'
  1674. ..'>1108,1111>14>979,1112>13>1108,1112>14>728,1113>13>1108,1113>14>607,1115>13>1114,1115>14>1125,1119>13>1118,1119>14>1419,1120>13>1118,1120>14>979,1121>13>1118,1121>14>964,1123>13>1122,1123>14>1155,1124>13>1122,1124>14>1102,1128>13>1127,1128>14>1053,1129>13>1127,1129>14>979,1130>13>1127,1130>14>945,1132>13>1131,1132>14>979,1135>13>1134,1135>14>998,1138>13>1137,1138>14>1181,1141>13>1139,1141>14>1136,1142>13>1139,1142>14>998,1145>13>1144,1145>14>1068,1146>13>1144,1146>14>808,1147>13>1144,1147>14>895,1148>13>1144,1148>14>1105,1149>13>1144,1149>14>985,1150>13>1144,1150>14>1155,1151>13>1144,1151>14>912,1152>13>1144,1152>14>1185,1153>13>1144,1153>14>690,1154>13>1144,1154>14>615,1158>13>1156,1158>14>1144,1159>13>1156,1159>14>895'
  1675. ..',1161>13>1160,1161>14>1133,1162>13>1160,1162>14>1102,1163>13>1160,1163>14>1419,1165>13>1164,1165>14>1144,1166>13>1164,1166>14>1105,1167>13>1164,1167>14>965,1168>13>1164,1168>14>907,1170>13>1169,1170>14>1181,1171>13>1169,1171>14>1143,1173>13>1172,1173>14>1053,1174>13>1172,1174>14>1108,1175>13>1172,1175>14>979,1176>13>1172,1176>14>945,1178>13>1177,1178>14>1327,1179>13>1177,1179>14>979,1180>13>1177,1180>14>939,1183>13>1182,1183>14>1181,1184>13>1182,1184>14>1102,1188>13>1187,1188>14>1398,1189>13>1187,1189>14>1264,1190>13>1187,1190>14>1361,1191>13>1187,1191>14>1276,1192>13>1187,1192>14>1258,1193>13>1187,1193>14>1224,1194>13>1187,1194>14>1375,1195>13>1187,1195>14>1331,1196>13>1187,1196>14>1213,1197>13>1187,1197>14>1327,1198>1'
  1676. ..'3>1187,1198>14>1101,1199>13>1187,1199>14>1217,1200>13>1187,1200>14>1382,1201>13>1187,1201>14>1242,1202>13>1187,1202>14>938,1203>13>1187,1203>14>870,1204>13>1187,1204>14>1275,1205>13>1187,1205>14>1316,1206>13>1187,1206>14>802,1207>13>1187,1207>14>1342,1208>13>1187,1208>14>1108,1209>13>1187,1209>14>1262,1210>13>1187,1210>14>916,1211>13>1187,1211>14>728,1212>13>1187,1212>14>1345,1216>13>1215,1216>14>1226,1219>13>1217,1219>14>1101,1220>13>1217,1220>14>979,1221>13>1217,1221>14>1453,1223>13>1222,1223>14>1226,1229>13>1228,1229>14>1345,1230>13>1228,1230>14>1375,1231>13>1228,1231>14>1286,1232>13>1228,1232>14>938,1234>13>1233,1234>14>1226,1237>13>1235,1237>14>1222,1238>13>1235,1238>14>1215,1239>13>1235,1239>14>1453,1240>13>1235,1'
  1677. ..'240>14>1233,1243>13>1242,1243>14>1285,1244>13>1242,1244>14>1241,1245>13>1242,1245>14>1186,1249>13>1248,1249>14>1226,1250>13>1248,1250>14>1235,1254>13>1252,1254>14>1187,1255>13>1252,1255>14>1322,1256>13>1252,1256>14>1251,1257>13>1252,1257>14>728,1259>13>1258,1259>14>1331,1260>13>1258,1260>14>1289,1261>13>1258,1261>14>969,1265>13>1264,1265>14>1285,1266>13>1264,1266>14>1241,1267>13>1264,1267>14>1217,1268>13>1264,1268>14>1186,1271>13>1269,1271>14>1228,1272>13>1269,1272>14>1375,1277>13>1276,1277>14>1050,1278>13>1276,1278>14>1395,1279>13>1276,1279>14>1361,1280>13>1276,1280>14>1342,1281>13>1276,1281>14>1275,1282>13>1276,1282>14>1258,1283>13>1276,1283>14>1289,1284>13>1276,1284>14>1224,1288>13>1286,1288>14>938,1293>13>1291,1293>'
  1678. ..'14>1295,1294>13>1291,1294>14>1102,1296>13>1295,1296>14>1155,1297>13>1295,1297>14>991,1298>13>1295,1298>14>988,1299>13>1295,1299>14>1303,1300>13>1295,1300>14>1185,1301>13>1295,1301>14>1122,1302>13>1295,1302>14>1102,1308>13>1307,1308>14>1309,1312>13>1310,1312>14>1314,1313>13>1310,1313>14>1306,1315>13>1314,1315>14>1307,1320>13>1318,1320>14>1228,1321>13>1318,1321>14>938,1323>13>1322,1323>14>581,1324>13>1322,1324>14>803,1329>13>1327,1329>14>1289,1330>13>1327,1330>14>1331,1332>13>1331,1332>14>969,1335>13>1333,1335>14>1331,1336>13>1333,1336>14>1226,1337>13>1333,1337>14>1235,1343>13>1342,1343>14>1050,1344>13>1342,1344>14>928,1346>13>1345,1346>14>938,1353>13>1350,1353>14>938,1360>13>1357,1360>14>938,1365>13>1363,1365>14>938,1367'
  1679. ..'>13>1366,1367>14>1185,1368>13>1366,1368>14>1449,1369>13>1366,1369>14>1295,1372>13>1371,1372>14>1370,1374>13>1373,1374>14>1380,1376>13>1375,1376>14>1398,1377>13>1375,1377>14>1345,1378>13>1375,1378>14>1275,1379>13>1375,1379>14>1213,1381>13>1380,1381>14>1325,1384>13>1382,1384>14>938,1386>13>1385,1386>14>1068,1387>13>1385,1387>14>1185,1389>13>1388,1389>14>1385,1390>13>1388,1390>14>835,1393>13>1391,1393>14>1050,1394>13>1391,1394>14>1276,1397>13>1395,1397>14>1050,1402>13>1400,1402>14>1228,1403>13>1400,1403>14>1375,1408>13>1406,1408>14>1453,1409>13>1406,1409>14>1410,1413>13>1412,1413>14>1476,1414>13>1412,1414>14>1445,1415>13>1412,1415>14>1404,1416>13>1412,1416>14>1102,1417>13>1412,1417>14>1160,1418>13>1412,1418>14>1133,1421>13'
  1680. ..'>1419,1421>14>1133,1422>13>1419,1422>14>1410,1423>13>1419,1423>14>1404,1426>13>1424,1426>14>1595,1427>13>1424,1427>14>1453,1430>13>1428,1430>14>1439,1433>13>1431,1433>14>1428,1434>13>1431,1434>14>1451,1437>13>1435,1437>14>1603,1438>13>1435,1438>14>1453,1442>13>1441,1442>14>1476,1443>13>1441,1443>14>1439,1444>13>1441,1444>14>1102,1446>13>1445,1446>14>1441,1447>13>1445,1447>14>1102,1448>13>1445,1448>14>1476,1454>13>1453,1454>14>1603,1455>13>1453,1455>14>1549,1456>13>1453,1456>14>1226,1457>13>1453,1457>14>1451,1458>13>1453,1458>14>1595,1461>13>1459,1461>14>1524,1462>13>1459,1462>14>1160,1465>13>1463,1465>14>1453,1468>13>1466,1468>14>1476,1470>13>1469,1470>14>1555,1471>13>1469,1471>14>1536,1472>13>1469,1472>14>1573,1473>13>'
  1681. ..'1469,1473>14>1549,1474>13>1469,1474>14>1489,1475>13>1469,1475>14>1480,1479>13>1477,1479>14>1476,1481>13>1480,1481>14>1555,1482>13>1480,1482>14>1489,1483>13>1480,1483>14>1476,1491>13>1489,1491>14>1599,1492>13>1489,1492>14>1486,1493>13>1489,1493>14>1573,1494>13>1489,1494>14>1495,1503>13>1502,1503>14>1573,1504>13>1502,1504>14>1480,1505>13>1502,1505>14>1466,1506>13>1502,1506>14>1489,1507>13>1502,1507>14>1549,1508>13>1502,1508>14>1524,1509>13>1502,1509>14>1603,1510>13>1502,1510>14>1527,1511>13>1502,1511>14>1453,1512>13>1502,1512>14>1476,1514>13>1513,1514>14>1536,1515>13>1513,1515>14>1480,1516>13>1513,1516>14>1477,1517>13>1513,1517>14>1476,1518>13>1513,1518>14>1555,1519>13>1513,1519>14>1587,1520>13>1513,1520>14>1549,1521>13>1'
  1682. ..'513,1521>14>1463,1522>13>1513,1522>14>1453,1523>13>1513,1523>14>1595,1525>13>1524,1525>14>1476,1526>13>1524,1526>14>1603,1529>13>1527,1529>14>1453,1535>13>1532,1535>14>1536,1538>13>1536,1538>14>1593,1539>13>1536,1539>14>1549,1547>13>1540,1547>14>1560,1548>13>1540,1548>14>1536,1557>13>1555,1557>14>1593,1558>13>1555,1558>14>1552,1559>13>1555,1559>14>1536,1567>13>1560,1567>14>1555,1575>13>1573,1575>14>1599,1576>13>1573,1576>14>1570,1577>13>1573,1577>14>1579,1578>13>1573,1578>14>1549,1586>13>1579,1586>14>1495,1588>13>1587,1588>14>1593,1589>13>1587,1589>14>1476,1590>13>1587,1590>14>1595,1591>13>1587,1591>14>1449,1597>13>1595,1597>14>1593,1601>13>1599,1601>14>1524,1602>13>1599,1602>14>1603,1605>2>1607,1606>2>1607,1614>13>1613'
  1683. ..',1614>14>1607,1616>13>1615,1616>14>1607;2|1:2;n;2;n;2|1:3;n;1|3:4|4:5|5:6|6:7|7:8|8:9|9:9|10:8|3:4|3:4;n;3|11:10|12:11;3|11:12|12:13;p;1|3:4|4:14|5:6|6:7|7:8|8:9|9:9|10:8|3:4|3:4;n;3|11:12|12:15;p;1|3:4|4:16|5:6|6:7|7:8|8:9|9:9|10:8|3:4|3:4;n;3|11:10|12:17;3|11:12|12:18;3|11:19|12:20;p;1|3:4|4:21|5:6|6:7|7:8|8:9|9:9|10:8|3:4|3:4;n;3|11:12|12:22;p;1|3:4|4:23|5:6|6:7|7:8|8:9|9:9|10:8|3:4|3:4;n;3|11:12|12:24;3|11:25|12:26;p;1|3:4|4:27|5:6|6:7|7:8|8:9|9:9|10:8|3:4|3:4;1|3:4|4:28|5:6|6:7|7:9|8:9|9:9|10:8|3:4|3:4;n;4|15:29;p;1|3:30|4:31|5:32|6:33|7:9|10:9|3:30|3:30;n;3|11:34|12:35;3|11:36|12:37;3|11:34|12:38;p;1|3:30|4:39|5:32|6:40|10:9|3:30|3:30;n;3|11:36|12:41;3|11:36|12:42;3|11:36|12:43;3|11:36|12:44;3|11:36|12:45;3|11:36|'
  1684. ..'12:46;3|11:34|12:47;3|11:36|12:48;3|11:34|12:49;3|11:36|12:50;3|11:36|12:51;3|11:36|12:52;3|11:34|12:53;p;1|3:4|4:54|5:6|6:7|7:9|8:9|9:9|10:8|3:4|3:4;n;4|15:29;p;1|3:4|4:55|5:6|6:7|7:8|8:9|9:9|10:8|3:4|3:4;n;3|11:12|12:56;p;1|3:4|4:57|5:6|6:7|7:8|8:9|9:9|10:8|3:4|3:4;n;3|11:25|12:26;3|11:12|12:58;p;1|3:4|4:59|5:6|6:7|7:9|8:9|9:9|10:8|3:4|3:4;n;4|15:29;3|11:12|12:60;p;1|3:4|4:61|5:6|6:7|7:9|8:9|9:9|10:8|3:4|3:4;n;4|15:29;p;1|3:4|4:62|5:6|6:7|7:8|8:9|9:9|10:8|3:4|3:4;n;3|11:12|12:63;p;1|3:4|4:64|5:6|6:7|7:8|8:9|9:9|10:8|3:4|3:4;n;3|11:19|12:20;3|11:12|12:65;p;1|3:4|4:66|5:6|6:7|7:8|8:9|9:9|10:8|3:4|3:4;n;3|11:12|12:67;p;1|3:4|4:68|5:6|6:7|7:8|8:9|9:9|10:8|3:4|3:4;p;2;n;1|3:69|16:70|4:71|5:72|17:73|6:74|7:9|9:9|10:9|3:69|3'
  1685. ..':69;n;3|11:75|12:76;3|11:77|12:78;p;1|3:79|4:80|17:81|6:82|7:9|10:9|3:79|3:79;1|3:79|4:83|5:84|17:85|6:86|18:9|7:9|9:9|10:8|3:79|3:79;n;4|19:9;3|11:87|12:88;3|11:87|12:89;3|11:90|12:91;3|11:87|12:92;3|11:93|12:94;3|11:95|12:96;3|11:95|12:97;p;1|3:79|4:98|5:99|17:100|6:86|18:9|7:9|9:9|10:8|3:79|3:79;n;4|19:9;3|11:95|12:88;3|11:87|12:101;p;1|3:79|4:102|5:32|17:103|6:104|7:9|20:9|10:9|3:79|3:79;n;3|11:12|12:105;3|11:10|12:106;3|11:10|12:107;3|11:10|12:108;p;1|3:69|16:70|4:109|5:72|17:110|6:111|7:9|9:9|10:9|3:69|3:69;n;3|11:112|12:113;3|11:95|12:114;p;1|4:115|5:72|17:116|6:117|18:9|7:9|10:8;n;4|19:9;3|11:118|12:119;3|11:95|12:120;p;1|4:121|5:32|17:122|6:123|18:9|7:9|10:8;n;4|19:9;3|11:77|12:124;p;1|4:125|5:72|17:126|6:127|1'
  1686. ..'8:9|7:9|9:9|10:8;n;4|19:9;p;1|4:128|5:32|17:129|6:130|18:9|7:9|9:9|10:8;n;4|19:9;3|11:131|12:132;p;1|3:79|4:133|17:134|6:135|7:9|9:9|10:9|3:79|3:79;n;3|11:136|12:76;3|11:137|12:138;3|11:139|12:140;3|11:77|12:141;3|11:142|12:143;p;1|4:144|5:72|17:145|6:117|18:9|7:9|10:8;n;4|19:9;3|11:118|12:119;p;1|4:146|5:72|17:147|6:117|18:9|7:9|10:8;n;4|19:9;3|11:118|12:119;p;1|4:148|5:32|17:149|6:123|18:9|7:9|10:8;n;4|19:9;3|11:77|12:150;3|11:77|12:151;p;1|3:79|4:152|5:32|17:153|6:154|7:9|9:9|10:9|3:79|3:79;n;3|11:10|12:155;3|11:12|12:156;3|11:157|12:158;3|11:10|12:159;3|11:10|12:160;3|11:136|12:161;p;1|3:79|4:162|5:32|17:163|6:164|7:9|10:9|3:79|3:79;n;3|11:112|12:165;3|11:112|12:166;3|11:112|12:167;3|11:95|12:168;3|11:169|12:170;3|1'
  1687. ..'1:171|12:172;p;2;n;1|3:79|4:173|17:174|6:175|7:8|8:9|9:9|10:8|3:79|3:79;n;3|11:10|12:176;3|11:177|12:178;p;1|3:79|4:179|17:180|6:181|7:9|10:9|3:79|3:79;n;3|11:87|12:182;3|11:183|12:184;3|11:185|12:186;p;1|4:187|5:188|17:189|6:190|18:9|7:9|10:8;n;4|19:9;3|11:87|12:191;3|11:192|12:193;p;1|4:194|5:195|17:196|6:190|18:9|7:9|10:8;n;4|19:9;p;1|3:79|4:197|17:198|6:181|7:9|10:9|3:79|3:79;n;3|11:185|12:199;3|11:200|12:201;3|11:183|12:202;p;1|3:69|16:70|4:203|17:204|6:205|7:9|8:9|9:9|10:9|3:69|3:69;n;3|11:206|12:207;3|11:183|12:208;3|11:185|12:209;3|11:93|12:210;p;1|4:211|5:188|17:212|6:190|18:9|7:9|10:8;n;4|19:9;3|11:87|12:213;3|11:192|12:214;p;1|4:215|5:188|17:216|6:190|18:9|7:9|10:8;n;4|19:9;3|11:87|12:213;3|11:192|12:217;p;1|'
  1688. ..'4:218|5:195|17:219|6:190|18:9|7:9|10:8;n;4|19:9;3|11:192|12:220;p;1|4:221|5:188|17:222|6:190|18:9|7:9|10:8;n;4|19:9;3|11:87|12:223;3|11:192|12:224;p;1|4:225|5:195|17:226|6:190|18:9|7:9|10:8;n;4|19:9;3|11:192|12:227;3|11:87|12:228;p;1|3:69|16:70|4:229|17:230|6:205|7:9|8:9|9:9|10:9|3:69|3:69;n;3|11:90|12:231;3|11:185|12:232;3|11:233|12:234;3|11:183|12:235;3|11:93|12:236;p;1|4:237|5:195|17:238|6:190|18:9|7:9|10:8;n;4|19:9;3|11:87|12:239;p;p;1|3:79|4:240|5:241|17:242|6:86|18:9|7:9|9:9|10:8|3:79|3:79;n;4|19:9;3|11:87|12:243;3|11:95|12:101;p;1|4:244|5:32|17:245|6:123|18:9|7:9|10:8;n;4|19:9;p;1|3:79|4:246|17:247|6:248|7:8|8:9|9:9|10:8|3:79|3:79;n;3|11:249|12:250;3|11:12|12:251;3|11:10|12:252;3|11:12|12:253;3|11:10|12:254;3|11:'
  1689. ..'12|12:255;p;1|3:79|4:256|5:257|17:258|6:86|18:9|7:9|9:9|10:8|3:79|3:79;n;4|19:9;3|11:95|12:243;3|11:95|12:259;p;1|3:79|4:260|5:32|17:261|6:262|7:9|10:9|3:79|3:79;n;3|11:263|12:264;3|11:265|12:266;3|11:112|12:267;3|11:112|12:268;3|11:269|12:270;3|11:95|12:271;3|11:118|12:272;p;1|3:79|4:273|5:32|17:274|6:275|7:9|20:9|10:9|3:79|3:79;n;3|11:95|12:276;3|11:263|12:277;3|11:95|12:278;3|11:95|12:279;3|11:95|12:280;3|11:95|12:281;3|11:95|12:282;p;2;n;1|3:79|4:283|17:284|6:175|7:8|8:9|9:9|10:8|3:79|3:79;n;3|11:12|12:285;3|11:12|12:286;3|11:177|12:287;3|11:10|12:288;3|11:289|12:290;3|11:12|12:291;3|11:12|12:292;3|11:249|12:293;3|11:294|12:295;3|11:10|12:296;p;1|3:79|4:297|17:298|6:181|7:9|10:9|3:79|3:79;n;3|11:157|12:299;3|11:185|'
  1690. ..'12:186;3|11:87|12:300;3|11:157|12:301;3|11:183|12:302;3|11:157|12:303;3|11:304|12:305;3|11:304|12:306;3|11:304|12:307;p;1|4:308|5:188|17:309|6:190|18:9|7:9|10:8;n;4|19:9;p;1|4:310|5:195|17:311|6:190|18:9|7:9|10:8;n;4|19:9;3|11:192|12:312;3|11:87|12:213;p;1|3:79|4:313|17:314|6:181|7:9|10:9|3:79|3:79;n;3|11:183|12:315;p;1|3:69|16:70|4:316|17:317|6:205|7:9|8:9|9:9|10:9|3:69|3:69;n;3|11:183|12:318;p;1|4:319|5:188|17:320|6:190|18:9|7:9|10:8;n;4|19:9;p;1|4:321|5:188|17:322|6:190|18:9|7:9|10:8;n;4|19:9;3|11:87|12:213;3|11:192|12:217;p;1|4:323|5:195|17:324|6:190|18:9|7:9|10:8;n;4|19:9;p;1|4:325|5:188|17:326|6:190|18:9|7:9|10:8;n;4|19:9;3|11:192|12:224;p;1|4:327|5:195|17:328|6:190|18:9|7:9|10:8;n;4|19:9;3|11:87|12:329;p;1|3:69|1'
  1691. ..'6:70|4:330|17:331|6:205|7:9|8:9|9:9|10:9|3:69|3:69;n;3|11:185|12:232;3|11:183|12:332;3|11:93|12:236;p;1|4:333|5:195|17:334|6:190|18:9|7:9|10:8;n;4|19:9;3|11:87|12:335;3|11:192|12:336;p;p;1|3:79|4:337|17:338|6:248|7:8|8:9|9:9|10:8|3:79|3:79;n;3|11:10|12:339;3|11:10|12:340;3|11:249|12:341;3|11:12|12:342;3|11:294|12:343;p;1|3:79|4:344|17:345|6:82|7:9|10:9|3:79|3:79;n;3|11:136|12:172;p;1|3:79|4:346|17:347|6:348|7:9|10:9|3:79|3:79;n;3|11:183|12:349;3|11:185|12:350;p;1|4:351|5:72|17:352|6:262|18:9|7:9|9:9|10:8;n;4|19:9;3|11:269|12:353;3|11:95|12:354;3|11:265|12:355;p;1|3:79|4:356|17:357|6:348|7:9|10:9|3:79|3:79;1|3:79|4:358|5:32|17:359|6:360|7:9|10:9|3:79|3:79;n;3|11:12|12:361;3|11:10|12:362;p;1|3:79|4:363|5:32|17:364|6:164|7'
  1692. ..':9|10:9|3:79|3:79;1|3:79|4:365|5:32|17:366|6:154|7:9|8:9|10:9|3:79|3:79;n;3|11:304|12:367;3|11:10|12:368;3|11:10|12:369;3|11:304|12:370;3|11:10|12:371;3|11:12|12:372;3|11:136|12:373;p;5|3:79|4:374|5:32|17:375|6:376|3:79|3:79;n;3|11:87|12:377;3|11:378|12:379;p;1|3:79|4:380|5:32|17:381|6:382|7:9|10:9|3:79|3:79;n;3|11:185|12:383;p;1|3:79|4:384|5:32|17:385|6:386|7:9|10:9|3:79|3:79;1|3:79|4:387|17:388|6:389|7:8|8:9|9:9|10:8|3:79|3:79;n;3|11:390|12:391;3|11:390|12:392;3|11:12|12:393;3|11:12|12:394;3|11:12|12:395;3|11:12|12:396;3|11:12|12:397;3|11:12|12:398;3|11:12|12:399;3|11:12|12:400;3|11:12|12:401;3|11:10|12:402;3|11:12|12:403;3|11:12|12:404;3|11:12|12:405;3|11:12|12:406;3|11:10|12:407;3|11:12|12:408;3|11:12|12:409;3|11:12'
  1693. ..'|12:410;3|11:12|12:411;3|11:10|12:412;3|11:12|12:413;3|11:12|12:414;3|11:12|12:415;3|11:12|12:416;3|11:12|12:417;3|11:390|12:418;3|11:12|12:419;3|11:12|12:420;3|11:12|12:421;3|11:10|12:422;p;1|4:423|5:32|17:424|6:130|18:9|7:9|9:9|10:8;n;4|19:9;3|11:131|12:132;p;1|4:425|5:72|17:426|6:127|18:9|7:9|9:9|10:8;n;4|19:9;p;1|3:69|16:70|4:427|5:72|17:428|6:111|7:9|9:9|10:9|3:69|3:69;n;3|11:429|12:430;3|11:112|12:431;3|11:432|12:433;3|11:95|12:434;p;2;n;2|1:435;n;1|1:436|3:437|4:438|5:195|17:439|6:440|7:8|8:9|10:8|3:437|3:437;n;3|1:441;4|19:442;p;p;1|3:79|4:443|5:444|17:445|6:446|18:9|7:9|20:9|8:9|9:9|10:9|3:79|3:79;n;6;3|11:447|12:448;3|11:200|12:449;3|11:87|12:450;3|11:451|12:452;p;1|1:453|3:454|4:455|5:241|17:456|6:457|18:9|7:'
  1694. ..'458|20:458|8:458|9:458|10:8|3:454|3:454;n;7|1:459|21:460|22:461;8|23:462;3|1:441;9;10|1:463;10|1:464;3|11:34|12:465;p;p;1|3:69|16:70|4:466|5:72|17:467|6:164|7:9|9:9|10:9|3:69|3:69;1|3:69|16:70|4:468|5:72|17:469|6:111|7:9|9:9|10:9|3:69|3:69;n;3|11:112|12:113;3|11:432|12:430;p;2;n;2|1:435;n;1|1:436|3:437|4:470|5:471|17:472|6:440|7:8|8:9|10:8|3:437|3:437;n;3|1:441;4|19:442;p;p;1|3:79|4:473|5:474|17:475|6:446|18:9|7:9|20:9|8:9|9:9|10:9|3:79|3:79;n;6;3|11:200|12:476;3|11:137|12:477;3|11:447|12:448;p;1|1:453|3:454|4:478|5:84|17:479|6:457|18:9|7:458|20:458|8:458|9:458|10:8|3:454|3:454;n;7|1:459|21:460|22:461;8|23:462;3|1:441;9;10|1:463;10|1:464;3|11:34|12:465;p;p;1|3:69|16:70|4:480|5:72|17:481|6:111|7:9|9:9|10:9|3:69|3:69;n;3|'
  1695. ..'11:112|12:431;3|11:432|12:482;3|11:429|12:483;p;1|3:69|16:70|4:484|5:72|17:485|6:164|7:9|9:9|10:9|3:69|3:69;1|3:79|4:486|17:487|6:181|7:9|10:9|3:79|3:79;n;3|11:157|12:488;3|11:183|12:489;p;2;n;1|3:69|16:70|4:490|5:72|17:491|6:205|7:9|8:9|9:9|10:9|3:69|3:69;n;3|11:183|12:492;p;1|4:493|5:494|17:491|6:190|18:9|7:9|10:8;n;4|19:9;3|11:87|12:213;p;1|4:495|5:494|17:496|6:190|18:9|7:9|10:8;n;4|19:9;p;1|4:497|5:444|17:498|6:190|18:9|7:9|10:8;n;4|19:9;p;1|3:79|4:499|5:72|17:500|6:181|7:9|10:9|3:79|3:79;n;3|11:183|12:501;3|11:157|12:502;3|11:157|12:488;3|11:157|12:503;p;1|4:504|5:444|17:505|6:190|18:9|7:9|10:8;n;4|19:9;3|11:87|12:506;p;p;1|4:507|5:6|17:508|6:123|18:9|7:9|10:8;n;4|19:9;3|11:118|12:509;3|11:77|12:510;p;1|3:79|4:511|'
  1696. ..'5:99|17:512|6:513|7:9|10:8|3:79|3:79;n;4|19:9;3|11:514|12:515;3|11:514|12:516;3|11:514|12:517;3|11:514|12:518;3|11:87|12:519;3|11:87|12:520;p;1|3:79|4:521|17:522|6:523|7:8|20:9|8:9|9:9|10:9|3:79|3:79;1|3:79|4:524|17:525|6:526|18:9|7:8|20:9|8:9|10:8|3:79|3:79;n;3|11:12|12:527;3|11:528|12:529;p;1|4:530|5:257|17:531|6:532|7:9|10:8;1|3:79|4:533|17:534|6:535|7:9|9:9|10:9|3:79|3:79;n;3|11:536|12:537;p;2;n;1|3:69|16:70|4:538|17:539|6:205|7:9|8:9|9:9|10:9|3:69|3:69;n;3|11:90|12:231;3|11:183|12:540;p;1|4:541|5:188|17:542|6:190|18:9|7:9|10:8;n;4|19:9;p;1|4:543|5:188|17:544|6:190|18:9|7:9|10:8;n;4|19:9;p;1|4:545|5:195|17:546|6:190|18:9|7:9|10:8;n;4|19:9;3|11:192|12:220;3|11:87|12:213;p;1|3:79|4:547|17:548|6:181|7:9|10:9|3:79|3:79;'
  1697. ..'n;3|11:185|12:549;3|11:183|12:550;3|11:157|12:488;3|11:157|12:502;3|11:157|12:503;3|11:87|12:306;3|11:87|12:307;3|11:87|12:551;p;1|4:552|5:195|17:553|6:190|18:9|7:9|10:8;n;4|19:9;3|11:192|12:227;3|11:87|12:554;p;p;1|4:555|5:195|17:556|6:190|18:9|7:9|10:8;n;4|19:9;3|11:192|12:557;3|11:87|12:213;p;1|3:79|4:558|17:559|6:560|7:9|20:9|10:9|3:79|3:79;1|3:79|4:561|5:562|17:563|6:564|18:9|7:8|20:9|10:9|3:79|3:79;n;3|11:565|12:566;3|11:95|12:567;3|11:19|12:568;3|11:95|12:569;3|11:112|12:570;3|11:95|12:571;3|11:95|12:572;3|11:95|12:573;p;1|3:454|4:574|5:257|17:563|6:575|7:9|10:8|3:454|3:454;n;3|11:34|12:576;p;1|4:577|5:99|17:578|6:579|7:9|10:8;n;4|19:9;3|11:514|12:580;3|11:514|12:581;3|11:87|12:582;3|11:87|12:583;3|11:87|12:584;p'
  1698. ..';1|3:69|16:70|4:585|17:586|6:587|7:9|8:9|9:9|10:9|3:69|3:69;n;3|11:588|12:589;3|11:536|12:590;p;1|3:69|16:70|4:591|5:72|17:592|6:593|7:9|8:9|9:9|10:9|3:69|3:69;n;3|11:594|12:595;3|11:596|12:597;p;1|3:79|4:598|17:599|6:600|7:9|20:9|10:8|3:79|3:79;n;3|11:601|12:602;3|11:601|12:603;3|11:601|12:604;3|11:596|12:605;p;2;n;1|3:69|16:70|4:606|17:607|6:205|7:9|8:9|9:9|10:9|3:69|3:69;n;3|11:90|12:608;3|11:183|12:609;3|11:93|12:236;p;1|4:610|5:188|17:611|6:190|18:9|7:9|10:8;n;4|19:9;3|11:87|12:213;3|11:192|12:217;p;1|4:612|5:188|17:613|6:190|18:9|7:9|10:8;n;4|19:9;3|11:192|12:224;p;1|4:614|5:195|17:615|6:190|18:9|7:9|10:8;n;4|19:9;3|11:192|12:616;p;1|3:79|4:617|17:618|6:181|7:9|10:9|3:79|3:79;1|4:619|5:195|17:620|6:190|18:9|7:9|10'
  1699. ..':8;n;4|19:9;3|11:192|12:621;p;p;2;n;1|3:69|16:70|4:622|17:623|6:205|7:9|8:9|9:9|10:9|3:69|3:69;n;3|11:183|12:624;3|11:93|12:236;3|11:90|12:231;p;1|4:625|5:188|17:626|6:190|18:9|7:9|10:8;n;4|19:9;3|11:192|12:217;p;1|4:627|5:188|17:628|6:190|18:9|7:9|10:8;n;4|19:9;3|11:192|12:224;p;1|4:629|5:195|17:630|6:190|18:9|7:9|10:8;n;4|19:9;3|11:87|12:213;3|11:192|12:220;p;1|3:79|4:631|17:632|6:181|7:9|10:9|3:79|3:79;1|4:633|5:195|17:634|6:190|18:9|7:9|10:8;n;4|19:9;3|11:87|12:635;3|11:192|12:227;p;p;1|3:69|16:70|4:636|17:637|6:205|7:9|8:9|9:9|10:9|3:69|3:69;n;3|11:90|12:303;3|11:183|12:638;3|11:93|12:236;p;1|3:454|4:639|5:257|17:640|6:575|7:9|10:8|3:454|3:454;n;3|11:34|12:641;p;1|3:79|4:642|5:72|17:643|6:644|7:9|10:9|3:79|3:79;n;3'
  1700. ..'|11:206|12:645;p;1|3:454|4:646|5:257|17:647|6:575|7:9|10:8|3:454|3:454;n;3|11:34|12:648;p;1|3:454|4:649|5:257|17:650|6:575|7:9|10:8|3:454|3:454;n;3|11:34|12:651;p;1|4:652|5:32|17:653|6:654|10:8;n;9;3|11:432|12:272;p;1|3:79|4:655|5:72|17:656|6:657|7:9|10:9|3:79|3:79;n;3|11:596|12:658;3|11:25|12:659;p;1|3:79|4:660|17:661|6:662|18:9|7:9|20:9|10:9|3:79|3:79;n;3|11:185|12:663;3|11:19|12:664;3|11:429|12:665;3|11:183|12:666;3|11:19|12:667;3|11:25|12:668;3|11:432|12:669;3|11:19|12:670;3|11:19|12:671;3|11:19|12:672;p;1|4:673|5:188|17:674|6:190|18:9|7:9|10:8;n;4|19:9;p;1|3:675|4:676|5:677|17:678|6:679|7:9|10:8|3:675|3:675;n;6;3|11:34|12:680;p;1|3:79|4:681|17:682|6:535|7:9|8:9|10:9|3:79|3:79;n;3|11:683|12:684;3|11:536|12:685;3|11:'
  1701. ..'304|12:686;3|11:157|12:687;p;1|4:688|5:99|17:689|6:690|18:9|7:8|10:8;n;4|19:9;3|11:192|12:691;3|11:87|12:692;p;1|3:69|16:70|4:693|5:72|17:694|6:593|7:9|9:9|10:9|3:69|3:69;1|3:454|4:695|5:257|17:696|6:575|7:9|10:8|3:454|3:454;n;3|11:34|12:697;p;1|3:79|4:698|17:699|6:700|7:9|20:9|8:9|9:9|10:8|3:79|3:79;n;3|11:112|12:701;3|11:528|12:702;3|11:112|12:703;p;1|4:704|5:195|17:705|6:190|18:9|7:9|10:8;n;4|19:9;3|11:192|12:227;3|11:87|12:706;p;1|3:79|4:707|17:708|6:389|7:8|8:9|9:9|10:8|3:79|3:79;n;3|11:10|12:709;3|11:10|12:710;3|11:10|12:711;3|11:390|12:712;3|11:390|12:713;3|11:10|12:714;3|11:10|12:715;3|11:10|12:716;3|11:10|12:717;3|11:10|12:718;3|11:10|12:719;3|11:10|12:720;p;1|3:79|4:721|17:722|6:723|7:8|8:9|9:9|10:8|3:79|3:79;'
  1702. ..'n;3|11:724|12:725;3|11:289|12:726;3|11:12|12:727;3|11:10|12:728;3|11:12|12:729;3|11:12|12:730;3|11:10|12:731;3|11:12|12:732;p;1|4:733|5:188|17:734|6:190|18:9|7:9|10:8;n;4|19:9;3|11:87|12:735;3|11:192|12:224;p;1|4:736|5:99|17:737|6:579|18:9|7:9|10:8;n;4|19:9;3|11:514|12:738;3|11:87|12:739;p;1|4:740|5:195|17:741|6:190|18:9|7:9|10:8;n;4|19:9;3|11:192|12:742;3|11:87|12:743;p;1|3:79|4:744|5:72|17:745|6:746|7:9|10:9|3:79|3:79;n;3|11:183|12:747;3|11:183|12:748;p;1|3:675|4:749|5:677|17:750|6:532|7:9|10:8|3:675|3:675;n;6;3|11:34|12:751;p;1|3:79|4:752|17:753|6:754|18:9|7:9|20:9|10:9|3:79|3:79;n;3|11:429|12:755;p;1|3:79|4:756|17:757|6:758|18:9|7:9|20:9|10:9|3:79|3:79;n;3|11:185|12:759;3|11:200|12:760;p;1|4:761|5:762|17:763|6:764|1'
  1703. ..'8:9|7:9|10:8;n;4|19:9;3|11:131|12:765;3|11:12|12:766;p;1|3:79|4:767|5:72|17:768|6:657|7:9|10:9|3:79|3:79;n;3|11:19|12:769;p;1|3:69|16:70|4:770|17:771|6:205|7:9|8:9|9:9|10:9|3:69|3:69;n;3|11:90|12:231;3|11:185|12:772;3|11:183|12:773;p;1|4:774|5:32|17:775|6:123|18:9|7:9|10:8;n;4|19:9;p;1|3:79|4:776|5:32|17:777|6:778|7:9|10:9|3:79|3:79;1|3:79|4:779|5:72|17:780|6:781|7:8|10:8|3:79|3:79;n;3|11:10|12:782;3|11:12|12:783;p;1|3:79|4:784|17:785|6:181|7:9|10:9|3:79|3:79;n;3|11:185|12:786;3|11:157|12:503;3|11:183|12:787;3|11:157|12:502;3|11:304|12:788;3|11:304|12:789;3|11:304|12:790;3|11:157|12:488;p;1|4:791|5:188|17:792|6:190|18:9|7:9|10:8;n;4|19:9;p;1|4:793|5:195|17:794|6:190|18:9|7:9|10:8;n;4|19:9;3|11:192|12:220;p;1|4:795|5:188'
  1704. ..'|17:796|6:190|18:9|7:9|10:8;n;4|19:9;3|11:87|12:213;p;1|3:79|4:797|5:32|17:798|6:799|7:9|10:9|3:79|3:79;1|4:800|5:241|17:801|6:802|18:9|7:9|10:8;n;4|19:9;3|11:803|12:804;3|11:803|12:805;3|11:806|12:807;p;1|4:808|5:241|17:809|6:810|18:9|7:9|10:8;n;4|19:9;3|11:803|12:811;p;1|4:812|5:494|17:813|6:764|18:9|7:9|10:8;n;4|19:9;3|11:131|12:814;p;2;n;1|4:815|5:188|17:816|6:190|18:9|7:9|10:8;n;4|19:9;3|11:87|12:817;3|11:192|12:193;p;1|4:818|5:195|17:819|6:190|18:9|7:9|10:8;n;4|19:9;p;1|3:69|16:70|4:820|17:821|6:205|7:9|8:9|9:9|10:9|3:69|3:69;n;3|11:93|12:210;3|11:183|12:822;p;1|4:823|5:188|17:824|6:190|18:9|7:9|10:8;n;4|19:9;3|11:192|12:214;3|11:87|12:213;p;1|3:79|4:825|17:826|6:181|7:9|10:9|3:79|3:79;1|4:827|5:195|17:828|6:190|1'
  1705. ..'8:9|7:9|10:8;n;4|19:9;p;p;1|4:829|5:188|17:830|6:190|18:9|7:9|10:8;n;4|19:9;p;1|3:79|4:831|5:72|17:832|6:833|7:9|10:9|3:79|3:79;n;3|11:233|12:834;p;1|3:79|4:835|17:836|6:181|7:9|10:9|3:79|3:79;n;3|11:157|12:299;3|11:304|12:305;3|11:183|12:837;p;1|4:838|5:195|17:839|6:190|18:9|7:9|10:8;n;4|19:9;3|11:87|12:840;p;1|4:841|5:195|17:842|6:190|18:9|7:9|10:8;n;4|19:9;3|11:87|12:213;p;1|3:79|4:843|5:32|17:844|6:799|7:9|10:9|3:79|3:79;n;3|11:200|12:845;p;1|3:69|16:70|4:846|17:847|6:205|7:9|8:9|9:9|10:9|3:69|3:69;n;3|11:183|12:848;3|11:93|12:210;p;1|3:79|4:849|17:850|6:700|18:9|7:9|8:9|9:9|10:8|3:79|3:79;n;3|11:112|12:701;3|11:206|12:851;3|11:724|12:852;3|11:112|12:703;3|11:528|12:853;3|11:112|12:854;3|11:95|12:527;3|11:233|12:855'
  1706. ..';p;1|3:675|4:856|5:677|17:857|6:679|7:9|10:8|3:675|3:675;n;6;3|11:34|12:858;p;1|3:79|4:859|17:860|6:560|18:9|7:9|10:9|3:79|3:79;n;3|11:185|12:861;3|11:93|12:306;3|11:200|12:862;3|11:90|12:863;3|11:87|12:864;3|11:93|12:305;3|11:93|12:307;p;1|3:865|4:866|5:867|17:868|6:869|18:9|7:8|10:9|3:865|3:865;1|1:870|4:871|17:872|6:526|18:9|7:8|20:9|8:9|9:9|10:8;n;11|24:873;12|17:874|25:873;3|11:10|12:875;3|11:876|12:877;3|11:10|12:878;3|11:10|12:879;3|11:565|12:880;3|11:528|12:881;3|11:528|12:882;p;1|3:79|4:883|17:884|6:523|18:9|7:8|8:9|9:9|10:9|3:79|3:79;n;3|11:12|12:885;3|11:724|12:886;3|11:10|12:887;p;1|3:79|4:888|17:889|6:181|7:9|10:9|3:79|3:79;n;3|11:157|12:301;3|11:183|12:890;3|11:157|12:303;3|11:157|12:299;3|11:304|12:306;3|'
  1707. ..'11:185|12:891;3|11:304|12:305;3|11:304|12:307;p;1|4:892|5:195|17:893|6:190|18:9|7:9|10:8;n;4|19:9;3|11:87|12:894;p;1|3:79|4:895|17:896|6:535|7:9|8:9|10:9|3:79|3:79;n;3|11:536|12:685;p;1|4:897|17:898|6:899|7:8|9:9|10:8;n;3|11:10|12:900;3|11:12|12:901;3|11:10|12:902;3|11:90|12:903;3|11:12|12:904;3|11:177|12:905;3|11:289|12:906;3|11:93|12:907;3|11:10|12:908;3|11:10|12:909;p;1|3:69|16:70|4:910|17:911|6:205|7:9|8:9|9:9|10:9|3:69|3:69;n;3|11:185|12:912;3|11:183|12:913;p;1|3:79|4:914|5:72|17:915|6:746|7:9|10:9|3:79|3:79;n;3|11:185|12:916;3|11:185|12:917;3|11:183|12:918;p;1|4:919|5:920|17:921|6:690|18:9|7:8|10:8;n;4|19:9;3|11:192|12:922;3|11:192|12:923;3|11:192|12:924;3|11:192|12:925;3|11:87|12:926;p;1|4:927|5:188|17:928|6:190|'
  1708. ..'18:9|7:9|10:8;n;4|19:9;3|11:192|12:193;p;1|3:69|16:70|4:929|17:930|6:587|7:9|8:9|9:9|10:9|3:69|3:69;n;3|11:588|12:931;3|11:536|12:932;3|11:933|12:934;p;1|4:935|5:188|17:936|6:190|18:9|7:9|10:8;n;4|19:9;p;1|4:937|5:920|17:938|6:939|7:9|10:8;n;4|19:9;3|11:514|12:940;3|11:87|12:941;3|11:87|12:942;p;1|4:943|5:188|17:944|6:190|18:9|7:9|10:8;n;4|19:9;p;1|3:79|4:945|17:946|6:535|7:9|9:9|10:9|3:79|3:79;n;3|11:157|12:947;p;1|4:948|5:195|17:949|6:190|18:9|7:9|10:8;n;4|19:9;3|11:87|12:213;p;1|3:79|4:950|17:951|6:758|18:9|7:9|20:9|10:9|3:79|3:79;1|4:952|17:953|6:954|7:8|8:9|9:9|10:9;1|3:79|4:955|17:956|6:662|18:9|7:9|20:9|10:9|3:79|3:79;n;3|11:185|12:957;3|11:25|12:958;3|11:432|12:932;p;1|3:79|4:959|5:920|17:960|6:961|7:9|10:8|3:79'
  1709. ..'|3:79;n;4|19:9;p;2;n;1|4:962|5:762|17:963|6:190|18:9|7:9|10:8;n;4|19:9;p;1|4:964|5:474|17:965|6:190|18:9|7:9|10:8;n;4|19:9;3|11:192|12:966;p;1|3:69|16:70|4:967|5:32|17:968|6:205|7:9|8:9|9:9|10:9|3:69|3:69;n;3|11:90|12:969;3|11:183|12:970;p;1|4:971|5:762|17:968|6:190|18:9|7:9|10:8;n;4|19:9;3|11:87|12:972;p;1|3:79|4:973|5:32|17:974|6:181|7:9|10:9|3:79|3:79;n;3|11:157|12:299;3|11:157|12:301;3|11:157|12:303;3|11:183|12:975;p;1|4:976|5:474|17:977|6:190|18:9|7:9|10:8;n;4|19:9;3|11:192|12:978;3|11:87|12:979;p;p;1|1:980|3:30|4:981|5:32|17:982|6:983|7:9|10:8|3:30|3:30;n;4|15:984|19:458;p;1|4:985|5:986|17:987|6:802|18:9|7:9|10:8;n;4|19:9;p;1|3:79|4:988|5:72|17:989|6:990|7:9|10:9|3:79|3:79;n;3|11:991|12:992;3|11:206|12:993;3|11:23'
  1710. ..'3|12:994;p;1|4:995|5:986|17:996|6:810|18:9|7:9|10:8;n;4|19:9;3|11:803|12:997;3|11:998|12:999;p;1|3:865|4:1000|5:1001|17:1002|6:1003|7:8|10:9|3:865|3:865;1|3:79|4:1004|17:1005|6:1006|18:9|7:9|20:9|10:9|3:79|3:79;n;3|11:1007|12:1008;3|11:183|12:1009;3|11:1010|12:1011;3|11:25|12:668;p;2;n;1|4:1012|5:188|17:1013|6:190|18:9|7:9|10:8;n;4|19:9;p;1|4:1014|5:195|17:1015|6:190|18:9|7:9|10:8;n;4|19:9;p;1|3:69|16:70|4:1016|17:1017|6:205|7:9|8:9|9:9|10:9|3:69|3:69;1|4:1018|5:188|17:1019|6:190|18:9|7:9|10:8;n;4|19:9;3|11:192|12:214;3|11:87|12:213;p;1|3:79|4:1020|17:1021|6:181|7:9|10:9|3:79|3:79;n;3|11:157|12:303;3|11:157|12:301;3|11:304|12:307;3|11:304|12:305;3|11:304|12:306;3|11:183|12:1022;p;1|4:1023|5:195|17:1024|6:190|18:9|7:9|10'
  1711. ..':8;n;4|19:9;3|11:192|12:336;3|11:87|12:1025;p;p;1|4:1026|5:920|17:1027|6:579|18:9|7:9|10:8;n;4|19:9;3|11:514|12:1028;p;2;n;1|4:1029|5:188|17:1030|6:190|18:9|7:9|10:8;n;4|19:9;p;1|4:1031|5:195|17:1032|6:190|18:9|7:9|10:8;n;4|19:9;3|11:192|12:1033;p;1|3:69|16:70|4:1034|17:1035|6:205|7:9|8:9|9:9|10:9|3:69|3:69;n;3|11:90|12:1036;p;1|4:1037|5:188|17:1038|6:190|18:9|7:9|10:8;n;4|19:9;3|11:192|12:214;3|11:87|12:213;p;1|3:79|4:1039|17:1040|6:181|7:9|10:9|3:79|3:79;n;3|11:157|12:303;3|11:157|12:301;3|11:304|12:305;3|11:304|12:306;3|11:183|12:1041;p;1|4:1042|5:195|17:1043|6:190|18:9|7:9|10:8;n;4|19:9;3|11:192|12:1044;3|11:87|12:1045;p;p;1|4:1046|5:32|17:1047|6:123|18:9|7:9|10:8;n;4|19:9;p;1|3:79|4:1048|17:1049|6:1050|18:9|7:8|20:'
  1712. ..'9|10:8|3:79|3:79;n;3|11:1051|12:1052;p;1|1:1053|4:1054|5:1001|17:777|6:1055|7:9|8:9|10:9;n;3|11:1056|12:1057;3|11:1056|12:1058;p;1|4:1059|17:1060|6:1061|7:8|8:9|9:9|10:9;n;3|11:1062|12:1063;3|11:1064|12:1065;3|11:1064|12:1066;3|11:1067|12:1068;p;1|3:79|4:1069|5:72|17:1070|6:990|7:9|10:9|3:79|3:79;n;3|11:192|12:1071;3|11:233|12:1072;p;1|3:1073|26:1074|16:1075|4:1076|5:1077|17:1078|6:1079|18:9|7:9|20:9|8:9|9:9|10:8|3:1073|3:1073;n;3|11:432|12:1080;p;1|3:79|4:1081|5:72|17:1082|6:833|7:9|10:9|3:79|3:79;n;3|11:183|12:1083;3|11:233|12:1084;p;2|1:1085;n;1|1:1086|3:1087|16:461|4:1088|5:72|17:1089|6:1090|27:1091|18:9|7:9|20:9|8:9|9:9|10:9|3:1087|3:1087;n;10;p;1|1:1085|3:1092|4:1093|5:72|17:1094|6:1090|7:9|8:9|9:9|10:9|3:1092|3:1'
  1713. ..'092;n;3|11:1095|12:1096;3|11:192|12:1097;3|11:991|12:430;3|11:233|12:1098;3|11:1099|12:1100;p;1|1:1086|3:1087|16:461|4:1101|5:72|17:1102|6:1090|27:1091|18:9|7:9|20:9|8:9|9:9|10:9|3:1087|3:1087;n;10;p;p;1|3:1073|26:1074|16:1075|4:1103|5:1077|17:1104|6:1105|18:9|7:9|20:9|8:9|9:9|10:8|3:1073|3:1073;n;3|11:34|12:1106;p;1|3:79|4:1107|17:1108|6:1109|7:8|10:9|3:79|3:79;n;3|11:1051|12:1110;3|11:1111|12:1112;3|11:1051|12:1113;3|11:1051|12:1114;3|11:1115|12:1116;3|11:1051|12:1117;3|11:1051|12:1118;3|11:1115|12:1119;3|11:1115|12:1120;p;1|3:79|4:1121|17:1122|6:1109|7:9|10:9|3:79|3:79;1|3:79|4:1123|17:1124|6:662|18:9|7:9|20:9|10:9|3:79|3:79;n;3|11:185|12:1125;3|11:429|12:1126;3|11:429|12:665;3|11:183|12:1127;3|11:432|12:1128;p;1|3:7'
  1714. ..'9|4:1129|17:1130|6:1131|7:9|20:9|10:8|3:79|3:79;n;3|11:25|12:1132;3|11:25|12:1133;3|11:233|12:1134;3|11:803|12:1135;3|11:25|12:1136;3|11:25|12:1137;3|11:233|12:1138;p;1|1:1139|3:1140|4:1141|5:867|17:1142|6:1105|7:8|10:9|3:1140|3:1140;n;3|11:36|12:1143;p;1|1:1144|3:1140|4:1145|5:867|17:1146|6:1147|7:8|10:9|3:1140|3:1140;n;3|11:36|12:1148;p;1|3:79|4:1149|5:72|17:1150|6:1151|7:9|20:9|10:9|3:79|3:79;n;3|11:19|12:1152;3|11:185|12:537;3|11:19|12:1153;3|11:1115|12:1154;3|11:183|12:1155;3|11:19|12:1156;p;1|3:79|4:1157|17:1158|6:1159|7:8|20:9|8:9|9:9|10:8|3:79|3:79;1|3:69|16:70|4:1160|17:1161|6:1162|7:9|8:9|10:9|3:69|3:69;n;3|11:601|12:1163;3|11:596|12:1164;3|11:1165|12:1166;p;1|3:79|4:1167|17:1168|6:754|18:9|7:9|20:9|10:9|3:79|'
  1715. ..'3:79;1|4:1169|5:1001|17:1170|6:1171|7:8|20:9|10:8;n;3|11:1172|12:1173;3|11:200|12:1174;3|11:1172|12:1175;p;1|4:1176|5:1177|17:1178|6:1179|27:1091|18:9|7:9|10:8;n;4|19:9;3|11:206|12:1180;p;1|3:1181|4:1182|5:1077|17:1183|6:1184|7:8|10:8|3:1181|3:1181;n;3|11:25|12:1185;p;1|3:79|4:1186|5:72|17:1187|6:1188|7:8|10:9|3:79|3:79;n;3|11:19|12:1189;3|11:19|12:1190;3|11:19|12:1191;3|11:19|12:1192;3|11:19|12:1193;p;1|3:79|4:1194|17:1195|6:1196|18:9|7:9|20:9|8:9|9:9|10:9|3:79|3:79;n;6;3|11:1197|12:1198;p;1|4:1199|5:494|17:1200|6:1201|18:9|7:9|10:8;n;4|19:9;3|11:87|12:1202;p;1|4:1203|5:494|17:1204|6:1201|18:9|7:9|10:8;n;4|19:9;3|11:87|12:1205;p;1|4:1206|5:444|17:1207|6:1208|18:9|7:9|10:8;n;4|19:9;3|11:1007|12:1209;3|11:95|12:1210;p;13'
  1716. ..'|1:1211|3:1181|4:1212|5:32|17:1213|6:457|7:9|10:9|3:1181|3:1181;n;12|1:1214|17:1215|25:874;11|1:1216|24:874|28:1217|29:1218;14|1:1219|30:462;14|1:1220|30:1217;14|1:1221|30:462;14|1:1222|30:1223;14|1:1224|30:1217;14|1:1225|30:1226;15|1:1227|30:1228;15|1:1227|30:1229;15|1:1227|30:1228;15|1:1227|30:1229;15|1:1227|30:1230;15|1:1227|30:1231;15|1:1227|30:1232;15|1:1227|30:1233;15|1:1227|30:1234;15|1:1227|30:1235;15|1:1227|30:1236;15|1:1227|30:1237;15|1:1227|30:1238;10|1:1239;15|1:1227|30:1240;15|1:1227|30:1241;15|1:1227|30:1242;15|1:1227|30:1243;15|1:1227|30:1243;15|1:1227|30:1244;15|1:1227|30:1244;15|1:1227|30:1245;15|1:1227|30:1246;10|1:1247;n;16|1:1248;n;10|1:1248;p;17|1:1249;n;18|1:1250|4:1251|6:1252|31:1253|32:1254|33:12'
  1717. ..'55|34:1256|35:1257;n;18|1:1258|4:1259|6:1260|31:1261|32:1262|33:1258|34:1263|35:1264;n;18|1:1265|4:1266|6:1267|31:1268|32:1262|33:1269|34:1263|35:1257|36:8;p;18|1:1270|4:1271|6:1260|31:1261|32:1272|33:1270|34:1273|35:1264;n;18|1:1265|4:1266|6:1267|31:1253|32:1272|33:1274|34:1273|35:1257|36:8;p;18|1:1275|4:1276|6:1260|31:1261|32:1277|33:1275|34:1278|35:1264;n;18|1:1265|4:1266|6:1267|31:1253|32:1277|33:1279|34:1278|35:1257|36:8;p;18|1:1280|4:1281|6:1260|31:1261|32:1282|33:1280|34:1283|35:1264;n;18|1:1265|4:1266|6:1267|31:1253|32:1282|33:1284|34:1283|35:1257|36:8;p;18|1:1285|4:1286|6:1260|31:1261|32:1287|33:1285|34:1288|35:1289;n;18|1:1265|4:1266|6:1267|31:1253|32:1287|33:1290|34:1288|35:1257|36:8;p;18|1:1291|4:1292|6:1260'
  1718. ..'|31:1261|32:1287|33:1291|34:1288|35:1264;n;18|1:1265|4:1266|6:1267|31:1253|32:1287|33:1293|34:1288|35:1257|36:8;p;p;p;p;p;1|3:79|4:1294|17:1082|6:1159|7:8|20:9|8:9|9:9|10:8|3:79|3:79;1|4:1295|5:241|17:1296|6:1179|27:1091|18:9|7:9|10:8;n;4|19:9;p;1|3:79|4:1297|17:1298|6:1299|7:8|8:9|9:9|10:9|3:79|3:79;n;3|11:12|12:1300;3|11:12|12:1301;p;1|3:79|4:1302|17:1303|6:1131|7:9|20:9|10:8|3:79|3:79;n;3|11:19|12:1304;3|11:19|12:1305;3|11:233|12:1306;3|11:19|12:1307;3|11:19|12:1308;3|11:233|12:1309;p;1|4:1310|5:762|17:1311|6:1201|18:9|7:9|10:8;n;4|19:9;3|11:87|12:1312;p;1|3:79|4:1313|17:1314|6:1159|7:8|20:9|8:9|9:9|10:8|3:79|3:79;1|4:1315|5:762|17:1316|6:1201|18:9|7:9|10:8;n;4|19:9;3|11:87|12:1317;3|11:683|12:1318;p;1|3:79|4:1319|5:'
  1719. ..'72|17:1320|6:1321|18:9|7:8|10:9|3:79|3:79;n;3|11:1322|12:1323;3|11:1324|12:1325;p;1|3:79|4:1326|17:1327|6:1328|7:8|20:9|10:8|3:79|3:79;n;3|11:12|12:1329;3|11:10|12:1330;3|11:10|12:1331;3|11:12|12:1332;3|11:10|12:1333;3|11:10|12:1334;3|11:1335|12:1336;3|11:12|12:1337;3|11:10|12:1338;3|11:1339|12:1340;3|11:1335|12:1341;3|11:12|12:1342;3|11:12|12:1343;3|11:12|12:1344;3|11:10|12:1345;3|11:1165|12:1346;3|11:10|12:1347;3|11:12|12:1348;3|11:12|12:1349;3|11:12|12:1350;3|11:12|12:1351;3|11:10|12:1352;3|11:1335|12:1353;3|11:12|12:1354;3|11:1335|12:1355;3|11:10|12:1356;3|11:12|12:1357;3|11:1339|12:1358;3|11:10|12:1359;p;1|3:79|4:1360|17:1361|6:1362|18:9|7:8|20:9|8:9|10:8|3:79|3:79;1|3:79|4:1363|17:1364|6:1365|18:9|7:8|20:9|8:9|10:'
  1720. ..'8|3:79|3:79;n;3|11:10|12:1366;3|11:10|12:1367;p;1|3:79|4:1368|5:72|17:1369|6:1370|7:8|10:9|3:79|3:79;n;3|11:87|12:1371;3|11:95|12:1372;p;1|3:79|4:1373|17:1374|6:1375|18:9|7:8|20:9|8:9|9:9|10:8|3:79|3:79;n;3|11:588|12:931;3|11:10|12:1376;3|11:432|12:1377;3|11:933|12:1378;3|11:933|12:1379;p;1|1:1380|3:437|4:1381|5:867|17:1382|6:457|7:8|10:9|3:437|3:437;n;3|11:36|12:1383;p;1|4:1384|5:444|17:1385|6:1208|18:9|7:9|10:8;n;4|19:9;p;1|3:79|4:1386|17:1387|6:1162|7:9|10:8|3:79|3:79;n;3|11:596|12:1388;3|11:596|12:1389;3|11:206|12:1390;p;1|3:69|16:70|4:1391|5:72|17:1392|6:1393|7:9|8:9|9:9|10:9|3:69|3:69;n;3|11:185|12:932;3|11:183|12:1394;p;1|4:1395|5:72|17:1396|6:1397|7:9|10:8;1|1:1398|3:1399|4:1400|5:1077|17:1401|6:1105|7:8|10:9|3:'
  1721. ..'1399|3:1399;1|3:79|4:1402|17:1403|6:1159|7:8|20:9|8:9|9:9|10:8|3:79|3:79;n;3|11:1051|12:1404;3|11:233|12:1405;3|11:1406|12:1407;p;1|3:79|4:1408|17:1303|6:1159|7:8|20:9|8:9|9:9|10:8|3:79|3:79;n;3|11:233|12:1409;p;1|3:79|4:1410|17:1411|6:1362|18:9|7:8|20:9|9:9|10:8|3:79|3:79;1|3:1181|4:1412|5:257|17:1413|6:457|7:8|9:9|10:9|3:1181|3:1181;n;3|11:36|12:1414;p;1|3:865|4:1415|5:72|17:1413|6:457|7:9|10:8|3:865|3:865;1|1:1416|3:1140|4:1417|5:867|17:1418|6:1105|7:8|10:9|3:1140|3:1140;n;3|11:36|12:1419;p;13|3:79|4:1420|5:32|17:1413|6:1421|7:9|10:9|3:79|3:79;n;6;3|11:1056|12:1422;3|11:1423|12:1424;p;1|1:1425|3:1140|4:1426|5:867|17:1427|6:1147|7:8|10:9|3:1140|3:1140;1|3:79|4:1428|5:72|17:1429|6:1430|7:8|10:8|3:79|3:79;n;3|11:12|12:1'
  1722. ..'431;3|11:1432|12:1433;3|11:10|12:1434;3|11:12|12:1435;3|11:10|12:1436;3|11:1437|12:1438;3|11:12|12:1439;3|11:12|12:1440;3|11:12|12:1441;3|11:12|12:1442;p;1|3:79|4:1443|5:72|17:1444|6:1445|7:8|20:9|10:8|3:79|3:79;1|3:79|4:1446|17:1447|6:1196|18:9|7:9|20:9|8:9|9:9|10:9|3:79|3:79;n;6;3|11:12|12:1448;3|11:1449|12:1450;p;1|3:79|4:1451|5:72|17:1452|6:1453|7:9|10:9|3:79|3:79;n;3|11:192|12:1454;3|11:192|12:1455;3|11:192|12:1456;p;1|3:79|4:1457|5:72|17:1161|6:1321|18:9|7:8|10:9|3:79|3:79;n;3|11:112|12:1458;3|11:1324|12:1459;3|11:95|12:1460;3|11:95|12:1461;p;1|4:1462|5:72|17:1427|6:575|7:9|10:8;n;3|11:34|12:1463;3|11:36|12:1464;p;1|3:79|4:1465|17:1466|6:1159|7:9|20:9|8:9|9:9|10:8|3:79|3:79;n;3|11:1051|12:1467;3|11:12|12:1468;3|11'
  1723. ..':233|12:1469;3|11:1406|12:1470;p;1|3:1073|26:1074|16:1075|4:1471|5:1077|17:1124|6:1079|18:9|7:8|20:9|8:9|10:9|3:1073|3:1073;n;3|11:429|12:1472;3|11:432|12:1473;3|11:36|12:1474;p;1|4:1475|5:72|17:1429|6:1476|7:9|10:8;1|4:1477|5:72|17:1478|6:1479|7:9|10:8;n;3|11:10|12:1480;3|11:12|12:1481;p;1|3:79|4:1482|5:72|17:1483|6:1370|7:9|10:9|3:79|3:79;1|3:79|4:1484|17:1485|6:1486|7:8|20:9|8:9|10:8|3:79|3:79;1|3:79|4:1487|17:1488|6:1328|7:8|20:9|8:9|10:8|3:79|3:79;n;3|11:10|12:1489;3|11:1490|12:1491;3|11:10|12:1492;3|11:10|12:1493;3|11:10|12:1494;3|11:10|12:1495;3|11:10|12:1496;3|11:10|12:1497;3|11:10|12:1498;3|11:10|12:1499;3|11:1335|12:1336;3|11:12|12:1500;3|11:10|12:1501;3|11:1490|12:1502;3|11:10|12:1503;3|11:1165|12:1504;3|11:1'
  1724. ..'0|12:1505;3|11:10|12:1506;3|11:10|12:1507;3|11:10|12:1508;3|11:1335|12:1509;3|11:10|12:1510;3|11:10|12:1511;3|11:1165|12:1512;3|11:10|12:1513;p;1|4:1514|5:72|17:1515|6:1179|18:9|7:9|10:8;n;4|19:9;p;1|3:79|4:1516|17:1517|6:1079|18:9|7:8|20:9|10:8|3:79|3:79;n;3|11:429|12:1518;p;1|4:1519|5:6|17:1520|6:1521|7:9|10:8;n;4|19:9;3|11:77|12:1522;3|11:77|12:1523;3|11:1111|12:1524;p;1|3:79|4:1525|17:1526|6:1079|18:9|7:8|20:9|10:8|3:79|3:79;n;3|11:429|12:1527;p;1|4:1528|5:72|17:1529|6:1179|18:9|7:9|10:8;n;4|19:9;p;1|4:1530|5:471|17:1531|6:1532|18:9|7:8|10:8;n;4|19:9;p;1|3:79|4:1533|17:1534|6:1299|7:8|8:9|9:9|10:9|3:79|3:79;n;3|11:12|12:1535;3|11:594|12:1536;3|11:12|12:1537;3|11:1538|12:1539;p;1|3:79|4:1540|17:1517|6:1079|18:9|7:8|2'
  1725. ..'0:9|10:8|3:79|3:79;n;3|11:429|12:1541;p;1|4:1542|5:471|17:1543|6:1532|18:9|7:8|10:8;n;4|19:9;3|11:19|12:1544;3|11:19|12:1545;3|11:429|12:1546;3|11:19|12:1547;p;1|3:79|4:1548|17:1549|6:1486|7:8|20:9|8:9|10:8|3:79|3:79;1|3:79|4:1550|5:32|17:1551|6:1552|7:8|20:9|8:9|10:8|3:79|3:79;n;3|11:233|12:1553;3|11:233|12:1554;3|11:233|12:1555;p;1|4:1556|5:1557|17:1558|6:1179|18:9|7:9|10:8;n;4|19:9;p;1|3:79|4:1559|17:1526|6:1079|18:9|7:8|20:9|10:8|3:79|3:79;n;3|11:429|12:1560;3|11:432|12:1561;p;1|3:79|4:1562|17:1563|6:1564|7:8|8:9|9:9|10:8|3:79|3:79;1|4:1565|5:1557|17:1566|6:1567|7:9|10:8;n;4|19:9;3|11:1568|12:1569;3|11:1570|12:1571;3|11:1570|12:1572;3|11:1568|12:1573;p;1|3:79|4:1574|17:1575|6:758|18:9|7:9|20:9|10:9|3:79|3:79;n;3|11:'
  1726. ..'200|12:1553;3|11:19|12:1576;3|11:200|12:1577;p;1|4:1578|5:32|17:1579|6:1179|18:9|7:9|10:8;n;4|19:9;p;1|3:79|4:1580|17:1581|6:1552|7:8|20:9|8:9|10:8|3:79|3:79;n;3|11:19|12:1126;3|11:19|12:1582;3|11:233|12:1583;3|11:19|12:1584;p;1|4:1585|5:6|17:1586|6:1179|18:9|7:9|10:8;n;4|19:9;3|11:95|12:1587;3|11:206|12:1588;p;1|4:1589|5:1557|17:1590|6:1179|18:9|7:9|10:8;n;4|19:9;p;1|3:79|4:1591|17:1592|6:1006|18:9|7:9|20:9|10:9|3:79|3:79;1|3:79|4:1593|17:1594|6:1595|7:9|10:9|3:79|3:79;n;3|11:451|12:1596;3|11:451|12:1597;3|11:451|12:1598;3|11:451|12:1599;3|11:1111|12:1600;3|11:1115|12:1601;3|11:1115|12:1602;3|11:451|12:1603;p;1|3:79|4:1604|17:1605|6:1486|7:8|20:9|8:9|10:8|3:79|3:79;1|4:1606|5:1557|17:1607|6:1179|18:9|7:9|10:8;n;4|19:9;'
  1727. ..'3|11:206|12:1608;p;1|3:1073|26:1074|16:1075|4:1609|5:1077|17:1575|6:1105|18:9|7:8|20:9|8:9|9:9|10:9|3:1073|3:1073;1|1:1610|3:1399|4:1611|5:1077|17:1612|6:1105|7:8|10:9|3:1399|3:1399;1|4:1613|5:474|17:1614|6:1208|18:9|7:9|10:8;n;4|19:9;3|11:95|12:1615;3|11:1007|12:1616;p;1|3:79|4:1617|5:72|17:1618|6:1151|7:9|20:9|10:9|3:79|3:79;n;3|11:185|12:685;3|11:25|12:1156;3|11:25|12:1619;3|11:25|12:1620;3|11:1115|12:1621;3|11:25|12:1622;3|11:183|12:1623;p;1|4:1624|5:474|17:1625|6:1208|18:9|7:9|10:8;n;4|19:9;p;2|1:1626;n;1|3:865|4:1627|17:1628|6:457|7:9|10:8|3:865|3:865;1|3:1181|4:1629|5:84|17:1630|6:457|7:8|9:9|10:8|3:1181|3:1181;n;3|11:137|12:1631;p;1|3:1181|4:1632|5:986|17:1633|6:1184|7:8|10:8|3:1181|3:1181;13|3:79|4:1634|5:562|1'
  1728. ..'7:1635|6:1421|7:9|10:9|3:79|3:79;n;6;3|11:1423|12:1636;3|11:1056|12:1637;p;1|3:1181|4:1638|17:1639|6:457|27:1091|20:9|10:8|3:1181|3:1181;n;3|11:200|12:1640;p;p;1|4:1641|5:32|17:1642|6:1179|18:9|7:9|10:8;n;4|19:9;p;1|4:1643|5:1557|17:1644|6:1179|18:9|7:9|10:8;n;4|19:9;3|11:95|12:1645;3|11:206|12:1646;p;1|4:1647|17:1648|6:1061|7:8|8:9|9:9|10:9;n;3|11:1064|12:1649;3|11:1064|12:1650;p;1|4:1651|5:72|17:1652|6:1397|7:9|10:8;2|1:1085;n;1|1:1086|3:1087|16:461|4:1653|5:72|17:1526|6:1090|27:1091|18:9|7:9|20:9|8:9|9:9|10:9|3:1087|3:1087;n;10;3|11:1095|12:1654;3|11:206|12:1655;p;1|1:1085|3:1092|4:1656|5:72|17:1657|6:1090|7:9|8:9|9:9|10:9|3:1092|3:1092;n;3|11:991|12:1658;p;1|1:1086|3:1087|16:461|4:1659|5:72|17:1660|6:1090|27:1091|18'
  1729. ..':9|7:9|20:9|8:9|9:9|10:9|3:1087|3:1087;n;10;3|11:233|12:1098;3|11:1095|12:1661;3|11:1099|12:1662;p;p;2|1:1663;n;10|1:1664;1|1:1665|3:1140|4:1666|5:1077|17:1667|6:1668|18:9|7:9|20:9|8:9|9:9|10:8|3:1140|3:1140;n;6;p;1|1:1669|3:1092|16:461|4:1670|17:1671|6:1672|27:1091|7:9|8:9|9:9|10:9|3:1092|3:1092;n;3|11:1064|12:590;3|11:1538|12:1673;p;1|1:1674|3:1092|4:1675|17:1676|6:1672|7:9|8:9|9:9|10:9|3:1092|3:1092;n;3|11:1538|12:1673;p;1|1:1677|3:1073|4:1678|5:1177|17:1679|6:1184|7:9|8:9|10:9|3:1073|3:1073;n;8|23:1680;6;p;1|1:1681|3:1073|4:1682|5:1177|17:1683|6:1184|7:9|8:9|10:8|3:1073|3:1073;n;8|23:1680;6;3|11:34|12:1684;p;1|1:1685|3:1073|4:1686|5:1177|17:1687|6:1184|7:9|8:9|10:8|3:1073|3:1073;n;8|23:1680;6;p;1|1:1688|3:1073|4:168'
  1730. ..'9|5:1177|17:1690|6:1184|7:9|8:9|10:9|3:1073|3:1073;n;8|23:1680;6;3|11:36|12:1691;p;p;1|4:1692|5:72|17:1693|6:1179|18:9|7:9|10:8;n;4|19:9;p;1|4:1694|5:32|17:1695|6:1179|18:9|7:8|10:8;n;4|19:9;3|11:206|12:1696;p;1|3:79|4:1697|5:72|17:1698|6:1453|7:8|10:9|3:79|3:79;n;3|11:991|12:1699;3|11:87|12:1700;3|11:87|12:1701;p;1|4:1702|5:562|17:1703|6:1704|7:9|10:8;1|3:1705|37:1706|4:1707|5:32|17:1708|6:1709|7:9|10:8|3:1705|3:1705;n;3|11:34|12:78;p;1|3:1705|37:1706|4:1710|5:562|17:1711|6:1712|7:9|10:8|3:1705|3:1705;n;3|11:34|12:1713;p;1|3:79|4:1714|17:1715|6:1595|7:9|10:9|3:79|3:79;n;3|11:451|12:1598;3|11:451|12:1599;3|11:1115|12:1716;3|11:451|12:1603;p;1|4:1717|5:72|17:1718|6:869|7:9|10:8;n;3|11:112|12:1719;p;1|4:1720|5:32|17:1721|'
  1731. ..'6:1179|18:9|7:9|10:8;n;4|19:9;3|11:206|12:1722;p;1|3:69|16:70|4:1723|17:1320|6:1162|7:9|8:9|10:9|3:69|3:69;n;3|11:601|12:1724;3|11:601|12:1725;p;1|3:79|4:1726|17:1727|6:1162|7:8|8:9|10:8|3:79|3:79;n;3|11:601|12:1728;3|11:1165|12:1729;p;1|4:1730|5:6|17:1731|6:1179|18:9|7:9|10:8;n;4|19:9;3|11:95|12:1732;3|11:206|12:1733;p;1|4:1734|5:6|17:1735|6:1179|18:9|7:9|10:8;n;4|19:9;3|11:95|12:1587;p;1|4:1736|5:72|17:1737|6:1179|18:9|7:9|10:8;n;4|19:9;p;1|4:1738|5:6|17:1739|6:1179|18:9|7:9|10:8;n;4|19:9;3|11:95|12:1740;3|11:206|12:1741;p;1|16:70|4:1742|5:677|17:1743|6:1744|18:9|7:9|10:8;n;4|19:9;p;1|16:70|4:1745|5:474|17:1746|6:1747|18:9|7:8|10:8;n;4|19:9;3|11:1197|12:1748;3|11:596|12:268;p;1|16:70|4:1749|5:762|17:1750|6:1751|18:9|7'
  1732. ..':9|10:8;n;4|19:9;p;1|4:1752|5:562|17:1753|6:1754|7:8|8:9|9:9|10:8;n;3|11:1755|12:1756;3|11:1757|12:1758;3|11:12|12:1759;3|11:1757|12:1760;3|11:10|12:1761;3|11:1762|12:1763;p;1|16:70|4:1764|5:474|17:1765|6:1744|7:8|10:8;n;4|19:9;3|11:1762|12:1766;3|11:1111|12:1767;3|11:95|12:1768;p;1|4:1769|5:1001|17:1770|6:1771|18:9|7:9|10:8;n;4|19:9;3|11:514|12:1772;3|11:87|12:1773;p;1|16:70|4:1774|5:444|17:1775|6:1744|7:8|10:8;n;4|19:9;3|11:95|12:1776;p;1|16:70|4:1777|5:494|17:1778|6:1751|18:9|7:9|10:8;n;4|19:9;3|11:1197|12:1779;3|11:95|12:1780;p;1|4:1781|5:1001|17:1782|6:1771|18:9|7:9|10:8;n;4|19:9;3|11:514|12:1772;3|11:87|12:1783;p;1|16:70|4:1784|5:867|17:1785|6:1744|18:9|7:9|10:8;n;4|19:9;p;1|4:1786|5:562|17:1787|6:1754|7:8|8:9|9:9'
  1733. ..'|10:8;n;3|11:1755|12:1788;3|11:12|12:1789;3|11:1790|12:1791;p;1|16:70|4:1792|5:562|17:1793|6:1794|18:9|7:8|20:9|8:9|9:9|10:8;n;3|11:1432|12:1795;3|11:1796|12:1797;3|11:1798|12:1799;p;1|4:1800|5:471|17:1801|6:1802|7:9|10:8;n;4|19:9;p;1|16:70|4:1803|5:444|17:1804|6:1747|18:9|7:8|10:8;n;4|19:9;p;1|3:79|4:1805|5:32|17:1806|6:1807|18:9|7:8|10:8|3:79|3:79;n;3|11:1808|12:1809;3|11:10|12:1810;3|11:10|12:1811;3|11:10|12:1812;3|11:1808|12:1813;p;1|4:1814|5:471|17:1815|6:1802|7:9|10:8;n;4|19:9;3|11:429|12:1816;3|11:1817|12:1818;p;1|4:1819|5:444|17:1820|6:1821|18:9|7:8|10:8;n;4|19:9;3|11:1197|12:1822;p;1|4:1823|5:474|17:1824|6:1825|18:9|7:8|10:8;n;4|19:9;3|11:95|12:1826;p;1|16:70|4:1827|5:562|17:1828|6:135|18:9|7:9|20:9|10:9;n;3|11'
  1734. ..':142|12:1829;3|11:142|12:1830;3|11:136|12:1831;3|11:77|12:1832;3|11:136|12:1833;3|11:139|12:1728;p;1|4:1834|5:562|17:1835|6:600|18:9|7:8|20:9|10:8;1|4:1836|5:444|17:1837|6:1825|18:9|7:8|10:8;n;4|19:9;3|11:95|12:1838;p;1|16:70|4:1839|5:562|17:1840|6:1841|18:9|7:9|20:9|10:9;n;3|11:596|12:1842;3|11:596|12:1843;3|11:601|12:1844;p;2;n;2|1:435;n;1|1:436|3:437|4:1845|5:444|17:1846|6:440|7:8|8:9|10:8|3:437|3:437;n;3|1:441;4|19:442;p;p;1|3:79|4:1847|5:471|17:1848|6:446|18:9|7:9|20:9|8:9|9:9|10:9|3:79|3:79;n;6;3|11:137|12:1849;3|11:447|12:448;3|11:87|12:1850;3|11:1851|12:1852;p;1|1:453|3:454|4:1853|5:99|17:1854|6:457|18:9|7:458|20:458|8:458|9:458|10:8|3:454|3:454;n;7|1:459|21:460|22:461;8|23:462;3|1:441;9;10|1:463;10|1:464;p;p;1|'
  1735. ..'4:1855|5:562|17:1856|6:1857|18:9|7:9|10:9;n;3|11:1010|12:1858;3|11:1010|12:1859;3|11:1860|12:1861;3|11:1010|12:1862;3|11:1010|12:1863;3|11:19|12:1864;3|11:19|12:1865;3|11:1007|12:1780;3|11:1866|12:1867;3|11:1860|12:1868;p;1|4:1869|5:562|17:1870|6:1857|7:9|20:9|10:9;n;3|11:1007|12:1871;3|11:1007|12:1872;3|11:1860|12:1873;3|11:1860|12:1874;3|11:1007|12:1875;3|11:19|12:1876;3|11:1007|12:1877;3|11:1010|12:1780;3|11:1866|12:1878;3|11:19|12:1879;p;1|3:69|4:1880|5:562|17:1881|6:1882|7:9|8:9|9:9|10:9|3:69|3:69;n;3|11:1099|12:1883;3|11:1884|12:1885;p;1|4:1886|5:474|17:1887|6:1821|18:9|7:8|10:8;n;4|19:9;3|11:1197|12:1888;p;2;n;2|1:435;n;1|1:436|3:437|4:1889|5:444|17:1890|6:440|7:8|8:9|10:8|3:437|3:437;n;3|1:441;4|19:442;3|11:451|'
  1736. ..'12:1891;p;p;1|3:79|4:1892|5:471|17:1893|6:446|18:9|7:9|20:9|8:9|9:9|10:9|3:79|3:79;n;6;3|11:451|12:1894;3|11:87|12:1895;p;1|1:453|3:454|4:1896|5:99|17:1897|6:457|18:9|7:458|20:458|8:458|9:458|10:8|3:454|3:454;n;7|1:459|21:460|22:461;8|23:462;3|1:441;9;10|1:463;10|1:464;19|11:137|12:1898;3|11:34|12:1899;p;p;1|4:1900|5:32|17:1901|6:1902|7:9|8:9|9:9|10:9;2;n;2|1:435;n;1|1:436|3:437|4:1903|5:444|17:1904|6:440|7:8|8:9|10:8|3:437|3:437;n;3|1:441;4|19:442;p;p;1|3:79|4:1905|5:471|17:1906|6:446|18:9|7:9|20:9|8:9|9:9|10:9|3:79|3:79;n;6;3|11:451|12:1907;3|11:447|12:448;3|11:87|12:1850;p;1|1:453|3:454|4:1908|5:99|17:1909|6:457|18:9|7:458|20:458|8:458|9:458|10:8|3:454|3:454;n;7|1:459|21:460|22:461;8|23:462;3|1:441;9;10|1:463;10|1:46'
  1737. ..'4;3|11:34|12:1899;p;p;2;n;2|1:435;n;1|1:436|3:437|4:1910|5:444|17:1911|6:440|7:8|8:9|10:8|3:437|3:437;n;3|1:441;4|19:442;p;p;1|3:79|4:1912|5:471|17:1913|6:446|18:9|7:9|20:9|8:9|9:9|10:9|3:79|3:79;n;6;3|11:137|12:1914;3|11:447|12:448;3|11:1851|12:1852;3|11:87|12:1915;p;1|1:453|3:454|4:1916|5:99|17:1917|6:457|18:9|7:458|20:458|8:458|9:458|10:8|3:454|3:454;n;7|1:459|21:460|22:461;8|23:462;3|1:441;9;10|1:463;10|1:464;19|11:137|12:1898;p;p;1|3:69|4:1918|5:562|17:1919|6:1882|7:9|8:9|9:9|10:9|3:69|3:69;n;3|11:1095|12:1920;3|11:1099|12:1921;3|11:1884|12:1885;3|11:1922|12:1923;p;2;n;1|4:1924|5:471|17:1925|6:1926|18:9|7:8|10:8;n;4|19:9;p;1|4:1927|5:188|17:1919|6:1928|7:9|10:8;n;4|19:9;3|11:429|12:1929;p;p;2;n;1|4:1930|5:471|17:19'
  1738. ..'31|6:1926|18:9|7:8|10:8;n;4|19:9;3|11:1884|12:1932;3|11:1324|12:1933;p;1|4:1934|5:188|17:1935|6:1928|7:9|10:8;n;4|19:9;p;p;2|1:870;n;2|1:1936;n;1|1:870|3:1073|4:1937|5:32|6:1938|7:8|20:9|3:1073|3:1073;n;20|4:1939|25:874;11|24:874;10;14|1:1940;p;13|3:437|4:1941|5:32|6:457|10:9|3:437|3:437;1|1:1942|3:1073|4:1943|5:32|6:1944|20:1945|8:9|10:8|3:1073|3:1073;n;3|11:1111|12:1946;p;1|1:1947|3:1073|4:1948|5:32|6:1944|20:1945|9:9|10:8|3:1073|3:1073;n;3|11:1111|12:1949;p;10;15|1:1227|30:1950;15|1:1227|30:1950;15|1:1227|30:1951;15|1:1227|30:1952;15|1:1227|30:1953;15|1:1227|30:1954;15|1:1227|30:1955;15|1:1227|30:1956;15|1:1227|30:1957;p;10;14|1:1958;14|1:1959;10|1:1960;p;p;p;1|3:69|4:1961|5:195|6:1962|7:9|10:9|3:69|3:69;n;4;21|3:196'
  1739. ..'3|6:1964|38:1965|39:1966|3:1963|3:1963;p;p;')
  1740. for _,Object in pairs(Objects) do
  1741. Object.Parent = script and script.Parent==workspace and script or workspace
  1742. end
  1743. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement