Advertisement
lafur

Untitled

May 19th, 2020
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 79.48 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 66057
  3. local genv={}
  4. local Scripts = {
  5. function() -- HoverSeat script by TankLeadfoot
  6.  
  7. local SavedYPosition = script.Parent.Position.Y
  8. local Speed = 0
  9.  
  10. while (script.Parent:findFirstChild("CanFly") == nil) do wait(0.1) end
  11. while (script.Parent:findFirstChild("VMode") == nil) do wait(0.1) end
  12.  
  13. script.Parent.CanFly.Value = "No"
  14. script.Parent.VMode.Value = "Hover"
  15.  
  16. if (script.Parent:findFirstChild("BodyPosition") == nil) then
  17. p = Instance.new("BodyPosition")
  18. p.Name = "BodyPosition"
  19. p.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  20. p.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z)
  21. p.Parent = script.Parent
  22. end
  23. if (script.Parent:findFirstChild("BodyGyro") == nil) then
  24. g = Instance.new("BodyGyro")
  25. g.Name = "BodyGyro"
  26. g.maxTorque = Vector3.new(math.huge,math.huge,math.huge)
  27. g.cframe = script.Parent.CFrame
  28. g.Parent = script.Parent
  29. end
  30.  
  31. while true do
  32. if (script.Parent:findFirstChild("CanFly") ~= nil) then
  33. if (script.Parent.CanFly.Value == "Yes") and (script.Parent.VMode.Value == "Warp") then
  34. script.Parent.BodyPosition.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z) + (script.Parent.CFrame.lookVector).unit * script.Parent.MaxSpeed
  35. Speed = script.Parent.MaxSpeed * 4
  36. elseif (script.Parent.CanFly.Value == "Yes") then
  37. if (script.Parent.Throttle ~= 0) then
  38. if (script.Parent.Throttle > 0) then
  39. if (Speed < script.Parent.MaxSpeed) then
  40. Speed = Speed + 1
  41. end
  42. elseif (script.Parent.Throttle < 0) then
  43. if (-Speed < script.Parent.MaxSpeed) then
  44. Speed = Speed - 1
  45. end
  46. end
  47. script.Parent.BodyPosition.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z) + (script.Parent.CFrame.lookVector).unit * Speed/4
  48. elseif (script.Parent.Throttle == 0) then
  49. if (Speed ~= 0) then
  50. if (Speed > 0) then
  51. Speed = Speed - 1
  52. elseif (Speed < 0) then
  53. Speed = Speed + 1
  54. end
  55. script.Parent.BodyPosition.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z) + (script.Parent.CFrame.lookVector).unit * Speed/4
  56. elseif (Speed == 0) then
  57. script.Parent.BodyPosition.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z)
  58. end
  59. end
  60.  
  61. if (script.Parent.Steer > 0) then
  62. script.Parent.BodyGyro.cframe = script.Parent.BodyGyro.cframe * CFrame.fromEulerAnglesXYZ(0, -script.Parent.TurnSpeed/8, 0)
  63. elseif (script.Parent.Steer < 0) then
  64. script.Parent.BodyGyro.cframe = script.Parent.BodyGyro.cframe * CFrame.fromEulerAnglesXYZ(0, script.Parent.TurnSpeed/8, 0)
  65. elseif (script.Parent.Steer == 0) then
  66. script.Parent.BodyGyro.cframe = script.Parent.BodyGyro.cframe
  67. end
  68.  
  69. if (script.Parent:findFirstChild("VMode") ~= nil) then
  70. if (script.Parent.VMode.Value == "Up") then
  71. SavedYPosition = SavedYPosition + 1
  72. elseif (script.Parent.VMode.Value == "Down") then
  73. SavedYPosition = SavedYPosition - 1
  74. end
  75. end
  76. elseif (script.Parent.CanFly.Value == "No") then
  77. if (Speed ~= 0) then
  78. Speed = 0
  79. script.Parent.BodyPosition.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z)
  80. end
  81. end
  82. end
  83. wait(0.1)
  84. end
  85. end;
  86. function() -- HoverSeatGUI script by TankLeadfoot
  87.  
  88. local Lock = nil
  89.  
  90. while (script.Parent:findFirstChild("CanFly") == nil) do wait(0.1) end
  91. while (script.Parent:findFirstChild("VMode") == nil) do wait(0.1) end
  92.  
  93. script.Parent.CanFly.Value = "No"
  94. script.Parent.VMode.Value = "Hover"
  95.  
  96. function SelectedButton(hit)
  97. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.UpButton.BackgroundColor3 = Color3.new(0.5,0.5,0.5)
  98. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.DownButton.BackgroundColor3 = Color3.new(0.5,0.5,0.5)
  99. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.WarpButton.BackgroundColor3 = Color3.new(0.5,0.5,0.5)
  100. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.HoverButton.BackgroundColor3 = Color3.new(0.5,0.5,0.5)
  101. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.AllStopButton.BackgroundColor3 = Color3.new(0.5,0.5,0.5)
  102.  
  103. if (script.Parent.VMode.Value == "Up") then
  104. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.UpButton.BackgroundColor3 = Color3.new(1,1,0.8)
  105. elseif (script.Parent.VMode.Value == "Down") then
  106. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.DownButton.BackgroundColor3 = Color3.new(1,1,0.8)
  107. elseif (script.Parent.VMode.Value == "Warp") then
  108. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.WarpButton.BackgroundColor3 = Color3.new(1,1,0.8)
  109. elseif (script.Parent.VMode.Value == "Hover") then
  110. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.HoverButton.BackgroundColor3 = Color3.new(1,1,0.8)
  111. elseif (script.Parent.VMode.Value == "AllStop") then
  112. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.AllStopButton.BackgroundColor3 = Color3.new(1,1,0.8)
  113. end
  114. end
  115.  
  116. function Pilot(hit)
  117. if (Lock == nil) then
  118. Lock = true
  119.  
  120. if (hit == nil) then Lock = nil; return end
  121. if (hit.Parent:findFirstChild("Humanoid") == nil) then Lock = nil; return end
  122. if (game.Players:findFirstChild(hit.Parent.Name) == nil) then Lock = nil; return end
  123. wait(2)
  124. if (script.Parent:findFirstChild("CanFly") ~= nil) then
  125. script.Parent.CanFly.Value = "Yes"
  126. end
  127. if (script.Parent:findFirstChild("VMode") ~= nil) then
  128. script.Parent.VMode.Value = "Hover"
  129. end
  130.  
  131. if (game.Players:findFirstChild(hit.Parent.Name).PlayerGui:findFirstChild("HoverSeat") == nil) then
  132. script.HoverSeat:Clone().Parent = game.Players:findFirstChild(hit.Parent.Name).PlayerGui
  133. SelectedButton(hit)
  134. end
  135.  
  136. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.UpButton.MouseButton1Click:connect(function()
  137. if (script.Parent:findFirstChild("VMode") ~= nil) and (script.Parent:findFirstChild("CanFly") ~= nil) then
  138. if (script.Parent.CanFly.Value == "Yes") then
  139. script.Parent.VMode.Value = "Up"
  140. SelectedButton(hit)
  141. end
  142. end
  143. end)
  144. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.DownButton.MouseButton1Click:connect(function()
  145. if (script.Parent:findFirstChild("VMode") ~= nil) and (script.Parent:findFirstChild("CanFly") ~= nil) then
  146. if (script.Parent.CanFly.Value == "Yes") then
  147. script.Parent.VMode.Value = "Down"
  148. SelectedButton(hit)
  149. end
  150. end
  151. end)
  152. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.WarpButton.MouseButton1Click:connect(function()
  153. if (script.Parent:findFirstChild("VMode") ~= nil) and (script.Parent:findFirstChild("CanFly") ~= nil) then
  154. if (script.Parent.CanFly.Value == "Yes") then
  155. script.Parent.VMode.Value = "Warp"
  156. SelectedButton(hit)
  157. end
  158. end
  159. end)
  160. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.HoverButton.MouseButton1Click:connect(function()
  161. if (script.Parent:findFirstChild("VMode") ~= nil) and (script.Parent:findFirstChild("CanFly") ~= nil) then
  162. script.Parent.VMode.Value = "Hover"
  163. script.Parent.CanFly.Value = "Yes"
  164. SelectedButton(hit)
  165. end
  166. end)
  167. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.AllStopButton.MouseButton1Click:connect(function()
  168. if (script.Parent:findFirstChild("VMode") ~= nil) and (script.Parent:findFirstChild("CanFly") ~= nil) then
  169. script.Parent.VMode.Value = "AllStop"
  170. script.Parent.CanFly.Value = "No"
  171. SelectedButton(hit)
  172. end
  173. end)
  174.  
  175. while (hit.Parent.Humanoid.Health > 0) and (hit.Parent.Humanoid.Sit == true) do wait(0.1) end
  176. if (game.Players:findFirstChild(hit.Parent.Name).PlayerGui:findFirstChild("HoverSeat") ~= nil) then
  177. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat:Remove()
  178. end
  179.  
  180. if (script.Parent:findFirstChild("CanFly") ~= nil) then
  181. script.Parent.CanFly.Value = "No"
  182. end
  183. Lock = nil
  184. end
  185. end
  186.  
  187. script.Parent.Touched:connect(Pilot)
  188. end;
  189. function() function onClicked()
  190. script.Parent.Parent.Door.Transparency= 1
  191. script.Parent.Parent.Door.CanCollide= false
  192. end
  193. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  194. end;
  195. function() function onClicked()
  196. script.Parent.Parent.Door.Transparency= 0
  197. script.Parent.Parent.Door.CanCollide= true
  198. end
  199. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  200. end;
  201. function() function onClicked()
  202. script.Parent.Parent.Door.Transparency= 0
  203. script.Parent.Parent.Door.CanCollide= true
  204. end
  205. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  206. end;
  207. function() function onClicked()
  208. script.Parent.Parent.Door.Transparency= 1
  209. script.Parent.Parent.Door.CanCollide= false
  210. end
  211. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  212. end;
  213. function() ------------------------------------
  214. modelname="Tele2"
  215. ------------------------------------
  216.  
  217. function onTouched(part)
  218. if part.Parent ~= nil then
  219. local h = part.Parent:findFirstChild("Humanoid")
  220. if h~=nil then
  221. local teleportfrom=script.Parent.Enabled.Value
  222. if teleportfrom~=0 then
  223. if h==humanoid then
  224. return
  225. end
  226. local teleportto=script.Parent.Parent:findFirstChild(modelname)
  227. if teleportto~=nil then
  228. local torso = h.Parent.Torso
  229. local location = {teleportto.Position}
  230. local i = 1
  231.  
  232. local x = location[i].x
  233. local y = location[i].y
  234. local z = location[i].z
  235.  
  236. x = x + math.random(-1, 1)
  237. z = z + math.random(-1, 1)
  238. y = y + math.random(2, 3)
  239.  
  240. local cf = torso.CFrame
  241. local lx = 0
  242. local ly = y
  243. local lz = 0
  244.  
  245. script.Parent.Enabled.Value=0
  246. teleportto.Enabled.Value=0
  247. torso.CFrame = CFrame.new(Vector3.new(x,y,z), Vector3.new(lx,ly,lz))
  248. wait(3)
  249. script.Parent.Enabled.Value=1
  250. teleportto.Enabled.Value=1
  251. else
  252. print("Could not find teleporter!")
  253. end
  254. end
  255. end
  256. end
  257. end
  258.  
  259. script.Parent.Touched:connect(onTouched) end;}local ActualScripts = {}
  260. function s(var)
  261. local func = table.remove(Scripts,1)
  262. setfenv(func,setmetatable({script=var,require=fake_require or require,global=genv},{
  263. __index = getfenv(func),
  264. }))
  265. table.insert(ActualScripts,coroutine.wrap(func))
  266. end
  267. Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  268. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  269. function(t,f)
  270. for a,b in pairs(t) do
  271. f(a,b)
  272. end
  273. end
  274. local Types = {
  275. Color3 = Color3.new,
  276. Vector3 = Vector3.new,
  277. Vector2 = Vector2.new,
  278. UDim = UDim.new,
  279. UDim2 = UDim2.new,
  280. CFrame = CFrame.new,
  281. Rect = Rect.new,
  282. NumberRange = NumberRange.new,
  283. BrickColor = BrickColor.new,
  284. PhysicalProperties = PhysicalProperties.new,
  285. NumberSequence = function(...)
  286. local a = {...}
  287. local t = {}
  288. repeat
  289. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  290. until #a==0
  291. return NumberSequence.new(t)
  292. end,
  293. ColorSequence = function(...)
  294. local a = {...}
  295. local t = {}
  296. repeat
  297. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  298. until #a==0
  299. return ColorSequence.new(t)
  300. end,
  301. number = tonumber,
  302. boolean = function(a)
  303. return a=="1"
  304. end
  305. }
  306. split = function(str,sep)
  307. if not str then return end
  308. local fields = {}
  309. local ConcatNext = false
  310. str:gsub(("([^%s]+)"):format(sep),function(c)
  311. if ConcatNext == true then
  312. fields[#fields] = fields[#fields]..sep..c
  313. ConcatNext = false
  314. else
  315. fields[#fields+1] = c
  316. end
  317. if c:sub(#c)=="\\" then
  318. c = fields[#fields]
  319. fields[#fields] = c:sub(1,#c-1)
  320. ConcatNext = true
  321. end
  322. end)
  323. return fields
  324. end
  325. RemoveAndSplit = function(t)
  326. return split(table_remove(t,1),comma)
  327. end
  328. t = split(str,";")
  329. props = RemoveAndSplit(t)
  330. classes = RemoveAndSplit(t)
  331. values = split(table_remove(t,1),'|')
  332. ICList = RemoveAndSplit(t)
  333. InstanceList = {}
  334. Model = inst"Model"
  335. CurPar = Model
  336. table_foreach(t,function(ct,c)
  337. if c=="n" or c=="p" then
  338. CurPar = c=="n" and LastIns or CurPar[parnt]
  339. else
  340. ct = split(c,"|")
  341. local class = classes[tonum(table_remove(ct,1))]
  342. if class=="UnionOperation" then
  343. LastIns = {UsePartColor="1"}
  344. else
  345. LastIns = inst(class)
  346. if LastIns:IsA"Script" then
  347. s(LastIns)
  348. elseif LastIns:IsA("ModuleScript") then
  349. ms(LastIns)
  350. end
  351. end
  352.  
  353. local function SetProperty(LastIns,p,str,s)
  354. s = Types[typeof(LastIns[p])]
  355. if p=="CustomPhysicalProperties" then
  356. s = PhysicalProperties.new
  357. end
  358. if s then
  359. LastIns[p] = s(unpack(split(str,comma)))
  360. else
  361. LastIns[p] = str
  362. end
  363. end
  364.  
  365. local UnionData
  366. table_foreach(ct,function(s,p,a,str)
  367. a = p:find":"
  368. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  369. if p=="UnionData" then
  370. UnionData = split(str," ")
  371. return
  372. end
  373. if class=="UnionOperation" then
  374. LastIns[p] = str
  375. return
  376. end
  377. SetProperty(LastIns,p,str)
  378. end)
  379.  
  380. if UnionData then
  381. local LI_Data = LastIns
  382. LastIns = DecodeUnion(UnionData)
  383. table_foreach(LI_Data,function(p,str)
  384. SetProperty(LastIns,p,str)
  385. end)
  386. end
  387. table.insert(InstanceList,LastIns)
  388. LastIns[parnt] = CurPar
  389. end
  390. end)
  391. table_remove(ICList,1)
  392. table_foreach(ICList,function(a,b)
  393. b = split(b,">")
  394. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  395. end)
  396.  
  397. return Model:GetChildren()
  398. end
  399.  
  400. local Objects = Decode('Name,Color,Material,Position,Orientation,Size,C0,C1,Part0,Part1,Transparency,TopSurface,BottomSurface,CanCollide,Texture,Reflectance,BackSurface,Torque,MaxSpeed,Value,BackgroundColor3,BackgroundTransparency,BorderSizePixel,SizeConstraint,Text,TextColor3,MaxForce,MaxTorque,CFrame,LeftSurface,FrontSurface,RightSurface;Part,Model,Snap,Weld,Seat,WedgePart,Decal,VehicleSeat,StringValue,Script,ScreenGui,Frame,TextButton,TextLabel,BodyPosition'
  401. ..',BodyGyro,ClickDetector,IntValue;Part|0.3882,0.3725,0.3843|1056|18.322,19.9117,50.153|0,132.02,0|12,6,2|0,-3,0,1,0,0,-0,-0,-1,0,1,0|3,1.2,0.0002,1,-0.0001,0,0,0,-1,0,1,0|20.3303,15.7118,52.3817|18,2.4,2|11.6286,19.3116,42.7233|8,4.8,2|0,-2.4001,0,1,0,0,-0,-0,-1,0,1,0|25,1.2,0.0005,-1,0,0,-0.0001,-0.0001,-1,-0.0001,-1,0|0.4313,0.6,0.7921|0.3|24.3465,19.9118,56.8392|0,-47.98,0|6,6,2|-6,1.2,0.0002,-1,0,0,-0.0001,-0.0001,-1,-0.0001,-1,0|6.9'
  402. ..'428,19.3115,37.523|6,4.8,2|18,1.2,0.0005,1,-0.0001,0,0,0,-1,0,1,0|-40.5146,7.3102,-30.0892|70,9.6,2|0,-4.8001,0,1,0,0,-0,-0,-1,0,1,0|0,1.2,-26.0021,-1,-0.0001,0,-0.0001,-0.0001,-1,0,-1.0001,0|35,0,0,0,0,1,0,1,0,-1,-0,-0|4.2897,8.2008,10.4999,0,-1,0,-1.0001,-0.0001,-0.0001,0,-0.0001,-1|-23.4821,13.3111,-3.712|8,2.4,12|4,0,0,0,0,1,0,1,0,-1,-0,-0|-29,0,-21.0002,-0.0001,-0.0001,0.9999,0,0.9999,-0.0001,-1.0001,-0.0001,0|0,-1.2001,0,1,0,0,-0,'
  403. ..'-0,-1,0,1,0|-30.9975,4.8006,-5.0023,-1,0,-0.0001,0,-0.0001,-1,-0.0001,-1,0|20.9985,4.8007,-3.0026,-0.0001,-1,0,0,-0.0001,-1,1,-0.0001,0|0,1.2,0,-1,-0,-0,0,0,1,0,1,0|5.5001,-3.6,-3,0,-1,-0.0001,0,-0.0001,1,-1,-0.0001,0|32,-4.2001,5.0003,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|11,-4.2001,-1.0002,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|-5.1056,15.7113,24.15|58,2.4,2|2.2571,19.3114,32.3227|11,1.2,0.0009,-1,0,0,-0.0001,-0.0001,-1,-0.0001,-1,0|-16.'
  404. ..'4859,19.3112,11.5213|-17,1.2,0.0008,-1,0,0,-0.0001,-0.0001,-1,-0.0001,-1,0|-7.1144,19.3113,21.922|-3,1.2,0.0005,-1,0,0,-0.0001,-0.0001,-1,-0.0001,-1,0|-2.429,19.3113,27.1224|4,1.2,0.0001,1,-0.0001,0,0,-0.0001,-1,0,1,-0.0001|0,2.4,0,-1,-0,-0,0,0,1,0,1,0|3.9999,-1.2001,-16.0002,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|-11.8005,19.3112,16.7217|-10,1.2,-0.0001,0.9999,0,0,-0.0001,-0.0001,-1,0,1,0|-10,-1.2,-16.0002,-1,-0.0001,0,0,-0.0001,1,-0.000'
  405. ..'1,1,0|-21.172,19.3111,6.321|-24,1.1999,0.0002,0.9999,0,0,0,0,-1,-0.0001,1,0|-24,-1.2,-16.0002,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|-23.8494,19.3111,3.3495|2,4.8,2|-27.9999,1.1999,0.0007,-1,0,0,-0.0001,-0.0001,-1,-0.0001,-1,0|-27.9999,-1.2,-16.0003,1,0,0,-0.0001,-0.0001,1,0,-1,-0.0001|-3.1679,15.1114,34.5189|4,1.2,9|-25.5594,18.111,2.1979|0,42.02,0|23,7.2,2|0,-3.6001,0,1,0,0,-0,-0,-1,0,1,0|15.5007,1.2,-0.0002,1,0,0,0,-0.0001,-1,-0.0001,1'
  406. ..',-0.0001|6.2033,15.1115,44.9198|0,-0.6001,0,1,0,0,-0,-0,-1,0,1,0|23.0002,1.2001,-10.4999,1,-0.0001,0,0,0,-1,0,1,0|8.1382,18.1115,48.5604|11,7.2,4|27.0001,1.2,-9.5004,0,1,0,-0.0001,0,-1,-1,0,0|-3.1679,16.3114,34.5189|0|0,0.6,0,0.9999,0,0,-0.0001,-0.0001,-1,0,1,0|6.2033,16.3115,44.9198|-0.0001,0.5999,0,0.9999,0,0,-0.0001,-0.0001,-1,0,1,0|0.0666,0.0666,0.0666|0.4767,15.1114,39.3113|2,1.2,2|15.0002,1.2,-9.9999,-1,0,0,-0.0001,-0.0001,-1,-0.0'
  407. ..'001,-1,0|-21.9113,16.311,13.7175|-0.0001,0.6,0,0.9999,0,0,-0.0001,-0.0001,-1,0,1,0|-31.5872,18.7109,-11.2155|26,8.4,10|0.1058,0.1647,0.2078|-50.2551,7.3101,-33.427|48,9.6,8|-9.0001,1.2,-21.0002,0.9999,0,0,-0.0001,-0.0001,-1,0,1,0|-21.9113,15.111,13.7175|-19,1.2,-10.5001,1,-0.0001,-0.0001,-0.0001,-0.0001,-1,0,1,-0.0001|-12.54,15.1112,24.1186|-4.9999,1.2,-10.4996,1,-0.0001,0,0,0,-1,0,1,0|-1.9027,18.1113,37.4167|11,7.2,2|12,1.1999,-9.4997,'
  408. ..'-0.0001,1,-0.0001,0,-0.0001,-1,-1,-0.0001,-0.0001|0,3.6,0,-1,-0,-0,0,0,1,0,1,0|12,-1.2001,-9.5002,0,1,0,-0.0001,-0.0001,1,1,-0.0001,0|-11.2738,18.1112,27.0159|-12.54,16.3112,24.1186|-1.3804,15.7114,40.9846|3,2.4,4|-8.8947,15.1113,28.9105|1.0002,1.2,-10.0001,-1,0,0,-0.0001,-0.0001,-1,-0.0001,-1,0|-18.2663,15.1111,18.5096|-13,1.2,-10.0001,-1,-0.0001,0,0,0,-1,-0.0001,-1.0001,0|-4.6538,6.1113,35.8578|0,-47.98,-180|76,12,17|3|0,-6,0,1,0,0,-0'
  409. ..',-0,-1,0,1,0|8.5002,-1.2001,-29,0,-1,0,-0.0001,0,1,-1,-0.0001,-0.0001|9.0001,-1.2,-8.5001,-1,-0.0001,-0.0001,-0.0001,0,1,-0.0001,1,-0.0001|-51.5115,15.7106,-16.1457|4,2.4,5|-0.0001,-0.6001,-0.0002,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|0.0001,-0.6001,-1.5001,0,-1,-0.0001,0,-0.0001,1,-1,-0.0001,0|-0.0001,-0.6001,1.9998,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|13.7985,15.7116,69.0355|30,2.4,2|-0.0001,1.1999,7.9999,1,0,0,0,-0.0001,-1,-0.0001,1,-'
  410. ..'0.0001|-0.0001,-3.0001,-0.0001,-1,0,-0.0001,-0.0001,-0.0001,1,0,1,0|-28.6746,21.1109,14.4273|12,1.2,2|0,0.6,0,-1,-0,-0,0,0,1,0,1,0|-23,-1.2,-5.0003,1,0,-0.0001,0,-0.0001,1,0,-1,-0.0001|3.9999,3,-0.0005,-1,0,0,-0.0001,0,-1,-0.0001,-1,-0.0001|-0.5602,21.1113,45.6295|18.9999,-1.2001,-5.0001,1,0,-0.0001,0,0,1,0,-1,0|-0.0001,2.9999,-0.0001,-1,-0.0001,0,0,0,-1,-0.0001,-1.0001,0|-4.0001,2.9999,-0.0001,-1,-0.0001,0,0,0,-1,-0.0001,-1.0001,0|-9.9'
  411. ..'317,21.1112,35.2288|4.9999,-1.2001,-5.0001,0.9999,-0.0001,-0.0001,-0.0001,0,0.9999,0,-1.0001,-0.0001|-0.0001,3,-0.0001,-1,0,-0.0001,0,0,-1,-0.0001,-1,-0.0001|-4.0001,3,-0.0001,-1,0,-0.0001,0,0,-1,-0.0001,-1,-0.0001|3.9999,3,-0.0001,-1,0,-0.0001,0,0,-1,-0.0001,-1,-0.0001|-45.0454,18.7107,-17.9339|21,8.4,2|-19.3036,21.1111,24.8285|3.9998,2.9999,0.0003,-1,-0.0001,0,-0.0001,-0.0001,-1,0,-1,0|-51.7331,3.7102,-18.6345|4,2.4,2|0.9999,1.1999,-1'
  412. ..'0,1,0,-0.0001,0,-0.0001,-1,0,1,0|-0.0001,-2.4,-2.0001,-1,0,0,-0.0001,-0.0001,1,0,1,-0.0001|-53.2189,7.3102,-17.2957|4,4.8,6|-73.154,3.7101,-42.4073|-31,1.1999,-10,1,0,-0.0001,0,-0.0001,-1,0,1,0|-57.0883,3.7102,-24.5777|-7,1.1999,-10,1,0,-0.0001,0,-0.0001,-1,0,1,0|0,-2.4,-2.0001,-1,0,0,0,-0.0001,0.9999,-0.0001,0.9999,0|-62.4436,3.7102,-30.5209|-15.0001,1.1999,-10,1,0,-0.0001,0,-0.0001,-1,0,1,0|-0.0001,-2.4,-2,-1,0,0,0,0,1,0,1,-0.0001|-67'
  413. ..'.7987,3.7102,-36.4641|-23,1.2,-10.0001,1,-0.0001,-0.0001,-0.0001,-0.0001,-1,0,1,-0.0001|-55.6353,5.5102,-18.4835|1,1.2,2|13.5,1.1999,-6.5001,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-55.525,5.5102,-20.602|4,1.2,1|11.9999,1.1999,-8.0001,1,0,0,0,0,-1,0,1,0|-58.5741,7.3102,-23.2389|7.9999,1.1999,-7.5001,1,0,0,0,0,-1,0,1,0|-60.8802,5.5102,-26.5452|3.9999,1.1999,-8.0001,1,0,0,0,0,-1,0,1,0|-63.9293,7.3102,-29.1821|-0.0001,1.1999,-7.5001,1,0,0,0,-0.00'
  414. ..'01,-1,0,1,-0.0001|-66.2354,5.5102,-32.4884|-4.0001,1.1999,-8.0001,1,0,0,0,0,-1,0,1,0|-38.0498,18.7108,-2.7002|10,8.4,11|0,4.2,0,-1,-0,-0,0,0,1,0,1,0|9.5,-0.6001,-3,0,-1.0001,0,0,-0.0001,0.9999,-1,0,-0.0001|0,-4.2001,0,1,0,0,-0,-0,-1,0,1,0|25.9999,1.2,-9.5002,1,-0.0001,-0.0001,-0.0001,-0.0001,-1,0,1,-0.0001|-31.3529,17.5109,11.4564|4,6,2|-27,1.2,-4.9995,1,0,-0.0001,-0.0001,0,-1,-0.0001,1,0|-25.9974,17.511,17.3993|-19,1.2,-5,1,-0.0001,-0.'
  415. ..'0001,-0.0001,-0.0001,-1,0,1,-0.0001|0,3,0,-1,-0,-0,0,0,1,0,1,0|-4.0001,-0.6,0.0001,1,0,-0.0001,0,-0.0001,1,0,-1,-0.0001|-20.6458,18.1111,16.6157|-15.9998,1.2,-9.5002,-0.0001,1,0,-0.0001,0,-1,-1,-0.0001,0|-21.9809,17.5111,21.8568|-12.9998,1.2,-5,1,-0.0001,0,0,0,-1,0,1,0|-16.6262,17.5111,27.8004|-4.9999,1.2,-4.9995,1,-0.0001,0,0,0,-1,0,1,0|-4.0001,-0.6001,0.0001,1,0,-0.0001,0,-0.0001,1,0,-1,-0.0001|-12.6095,17.5111,32.2574|1,1.2,-5,1,0,-0'
  416. ..'.0001,-0.0001,-0.0001,-1,-0.0001,1,-0.0001|-7.2545,17.5112,38.2008|9,1.2,-4.9997,1,-0.0001,-0.0001,-0.0001,-0.0001,-1,0,1,-0.0001|-3.238,17.5113,42.6581|14.9999,1.2,-5,1,-0.0001,-0.0001,-0.0001,-0.0001,-1,0,1,-0.0001|4,-0.6001,0.0001,1,0,-0.0001,0,-0.0001,1,0,-1,-0.0001|2.1173,17.5114,48.6012|22.9999,1.2,-5.0002,1,-0.0001,-0.0001,-0.0001,-0.0001,-1,0,1,-0.0001|-29.4952,15.7109,9.7827|-26.9999,1.2,-7.4999,0,1,0,-0.0001,0,-1,-1,0,0|-10.75'
  417. ..'19,15.7112,30.5839|-20.1236,15.711,20.1831|-13,1.2,-7.5001,-0.0001,0.9999,0,0,-0.0001,-1,-1.0001,0,0|-27.6379,15.111,8.109|-27,1.2,-10.0001,-1,0,-0.0001,0,0,-1,-0.0001,-1,-0.0001|-28.675,17.5109,14.4277|0|-23,1.2,-5,1,-0.0001,-0.0001,-0.0001,-0.0001,-1,0,1,-0.0001|-0.0001,-0.6,0.0001,1,0,-0.0001,0,-0.0001,1,0,-1,-0.0001|-19.3038,17.5111,24.8288|-8.9999,1.2,-4.9995,1,-0.0001,0,0,0,-1,0,1,0|-9.9319,17.5112,35.229|5,1.2,-5,1,-0.0001,0,0,0,'
  418. ..'-1,0,1,0|-0.5603,17.5113,45.6296|19,1.2,-5.0002,1,-0.0001,-0.0001,-0.0001,-0.0001,-1,0,1,-0.0001|-44.0011,16.3107,-10.7984|1,3.6,10|-41.0292,18.7108,-13.4763|1,8.4,10|15.9999,1.2,-14.5002,-0.0001,0.9999,0,0,-0.0001,-1,-1.0001,0,0|-41.7724,18.1107,-12.8066|1,7.2,10|-43.2582,16.9107,-11.4678|1,4.8,10|-42.5153,17.5107,-12.1372|1,6,10|-44.7437,15.7107,-10.1293|1,2.4,10|16,1.2,-9.5002,-0.0001,1,-0.0001,0,-0.0001,-1,-1,-0.0001,-0.0001|-45.486'
  419. ..'9,15.1107,-9.4596|1,1.2,10|8.4434,13.3115,63.0923|34,2.4,18|28.9998,-6,8.5001,-0.0001,1,-0.0001,-0.0001,0,1,1,0,0|0,-1.2001,-16.0004,-0.0001,-1,-0.0001,-0.0001,-0.0001,1,-1,0,-0.0001|-50.5075,17.5106,-15.0313|3,1.2,1|0,-0.6001,0,-1,0,-0.0001,-0.0001,-0.0001,1,0,1,0|-52.5156,17.5106,-17.2601|-1.5,1.2,-0.0001,-0.0001,0.9999,0,0,-0.0001,-1,-1.0001,0,0|0.1|-51.5116,17.5106,-16.1456|2,1.2,3|-50.0257,17.5106,-17.4844|-50.5075,18.7106,-15.0313'
  420. ..'|1,1.2,1|-29.6526,25.311,-7.5746|-2.0014,-3.0001,0,1,-0.0001,0,-0.0001,-0.0001,1,-0.0001,-1,-0.0001|-27.1961,25.311,-0.3656|16,2.4,2|-33,1.2,-16.0009,-1,0,-0.0001,0,0,-1,-0.0001,-1,-0.0001|0.9993,-3,-7,-0.0001,-1,0,-0.0001,0,1,-1,0,-0.0001|-4,-3,0.0006,-1,0,-0.0001,-0.0001,0,1,0,1,-0.0001|8.4433,23.5115,63.0923|34,1.2,18|-6,2.9999,16.0002,-0.0001,1,-0.0001,0,-0.0001,-1,-1,-0.0001,-0.0001|-3.0001,2.9999,-16.0003,0,-1,0,0,-0.0001,-1,1,0,0'
  421. ..'|-3.0001,3,16.0002,-0.0001,-1,0,0,-0.0001,-1,1,-0.0001,0|13.7985,19.9116,69.0356|30,6,2|-0.0001,-0.6001,7.9999,-1,-0.0001,-0.0001,-0.0001,-0.0001,1,-0.0001,1,0|-24.5188,29.511,2.6064|-2.0001,-0.6,0,-1,0,-0.0001,0,-0.0001,0.9999,-0.0001,1,-0.0001|5.9999,-0.6,-16.0008,-1,-0.0001,-0.0001,-0.0001,0,1,-0.0001,1,-0.0001|16.0008,1.2,-5.0001,-0.0001,-1,0,-0.0001,-0.0001,-1,1,-0.0001,-0.0001|-4.0001,1.1999,-0.0001,-1,0,-0.0001,0,0,-1,-0.0001,-1,'
  422. ..'-0.0001|-33.3606,25.3109,9.2271|10,2.4,4|-30,1.2,-5.0001,0.9999,0,0,-0.0001,-0.0001,-1,0,1,0|4.9999,0.6,9,0,-1,0,-0.0001,-0.0001,-1,1,0,-0.0001|5.0001,1.2,0,-0.0001,-1,0,-0.0001,-0.0001,-1,1,-0.0001,-0.0001|-34.03,27.7108,8.4842|4,2.4,4|http://www.roblox.com/asset/?id=21861613|-1.0001,1.1999,-0.0001,-1,0,-0.0001,0,-0.0001,-1,-0.0001,-1.0001,0|-59.8315,1.3103,-12.6833|70,2.4,54|-40.7901,25.3107,15.9215|-36.1039,17.5108,21.1218|-22.9998,1'
  423. ..'.2,4.9999,1,-0.0001,0,0,0,-1,0,1,0|-0.0002,-0.6,-0.0003,1,0,0,-0.0001,0,1,0,-1,0|HoverSeatV3|0.5|-37.7445,24.6108,11.8313|0,-137.98,0|2,1,2|2|20|300|CanFly|No|HoverSeat|HoverSeatGUI|Buttons|0.5,0,0.8999,0|0.1,0,0.1,0|1,1,1|1|UpButton|-2,0,0,0|1,0,1,0|0.498,0.498,0.498|Up|0,0,0|DownButton|Down|HoverButton|-1,0,0,0|1,0,0.5,0|Hover|By TankLeadfoot|-2,0,-0.3001,0|4,0,0.3,0|Hover Seat V3 By TankLeadfoot|AllStopButton|-1,0,0.5,0|All Stop|Warp'
  424. ..'Button|1,0,0,0|Warp|VMode|-49.8469,45.9,-94.4798|inf,inf,inf|-21,52.5,-60,-0.743,0,-0.6695,0,1,0,0.6694,0,-0.743|-17.2837,6.1111,47.238|0,132.02,180|9.0002,-1.1999,8.5004,1,0,-0.0001,0,-0.0001,1,0,-1,-0.0001|-37.0722,7.3103,12.5753|50,9.6,2|33.9997,1.1999,0.0003,-0.0001,1,-0.0001,0,-0.0001,-1,-1,-0.0001,-0.0001|0,4.8,0,-1,-0,-0,0,0,1,0,1,0|0.0012,-1.2005,0.0025,-1.0001,0,0,0,-0.0001,0.9999,0,0.9999,0|3.0025,-1.2005,-21.0017,0,0.9999,0,0'
  425. ..',-0.0001,0.9999,1,-0.0001,-0.0001|-77.0647,11.5999,-58.4015|0,42.02,-90|23,19.2,21|0,0,10.5,1,0,0,0,1,0,0,0,1|17.8017,-11.9104,-19.9973,-0.0001,1,0,-1,-0.0001,-0.0001,-0.0001,-0.0001,1|-35,10.2897,-17.8013,-0.0001,0,1,-1,-0.0001,-0.0001,0,-1,0|-33.9974,-7.1104,8.1997,-0.0001,-0.0001,0.9999,-1,-0.0001,-0.0001,0,-1.0001,-0.0001|-55.8173,29.5105,-8.2279|38,6,2|-0.0018,-0.6001,-9,-1,0,0,0,-0.0001,1,0,1,0|-0.0011,1.1999,0,1,0,0,0,-0.0001,-1,'
  426. ..'-0.0001,1,-0.0001|-37.0754,22.9108,12.5745|54,2.4,2|-3,-1.2,-16.0001,-0.0001,-1,0,-0.0001,0,0.9999,-1.0001,0,0|-0.0001,-1.2,-5.0002,0,0.9999,-0.0001,-0.0001,0,0.9999,1,-0.0001,-0.0001|-3,-1.2,16.0002,-0.0001,-1,0,-0.0001,0,0.9999,-1.0001,0,0|-15.5008,3.6,0,1,0,0,0,-0.0001,-1,-0.0001,1,-0.0001|15.4996,3.6,-0.0001,1,0,0,0,-0.0001,-1,-0.0001,1,-0.0001|0.0004,-0.5,-1,1,-0.0001,0,-0.0001,-0.0001,1,-0.0001,-1,-0.0001|-7.9894,21.1112,52.3236|3'
  427. ..'.9998,2.9998,-0.0001,-1,-0.0001,-0.0001,0,0,-1,0,-1,-0.0001|-40.639,15.7107,19.8239|-26.9998,1.2,7.5003,0,1,0,-0.0001,0,-1,-1,0,0|-17.3609,21.111,41.9229|-4,3,-0.0001,-1,-0.0001,0,0,0,-1,-0.0001,-1.0001,0|4.9999,-1.2001,5,1,0,0,-0.0001,0,1,0,-1,0|0,2.9999,0,-1,0,-0.0001,0,0,-1,-0.0001,-1.0001,-0.0001|3.9999,2.9999,0,-1,0,-0.0001,0,0,-1,-0.0001,-1.0001,-0.0001|-26.7324,21.1109,31.5222|-9,-1.2001,5,1,0,-0.0001,0,0,1,0,-1,0|-4,3,0,-1,-0.00'
  428. ..'01,0,0,0,-1,-0.0001,-1.0001,0|3.9999,3,0,-1,-0.0001,0,0,0,-1,-0.0001,-1.0001,0|-36.1039,21.1108,21.1215|-90.2893,1.3101,-46.4853|16,2.4,21|0,-9,-0.0001,-0.0001,0.9999,-0.0001,-0.0001,0,0.9999,1,0,-0.0001|-35,-0.0001,0,0,0,1,0,1,0,-1,-0.0001,0|-0.0001,-9,-7,0,-1,0,-0.0001,0,0.9999,-1.0001,-0.0001,0|-0.0001,-9,7.0001,0,-1,0,-0.0001,0,0.9999,-1.0001,-0.0001,0|-82.5911,7.3102,-37.942|0,0,-1,-1,-0,-0,0,1,0,-0,-0,-1|-4.2951,-17.7819,10.4937,0'
  429. ..'.0002,0.9999,-0.0003,1,-0.0003,-0.0003,-0.0003,-0.0003,-1|-34,1.2,-0.0001,-0.0001,0.9999,0,0,0,-1,-1.0001,-0.0001,0|4.2898,-17.8012,10.4999,0,-1,0,-1.0001,-0.0001,-0.0001,0,-0.0001,-1|-29.9973,-1.1999,-0.0013,0,1,0,0,-0.0001,1,1,-0.0001,-0.0001|-85.0889,11.51,-51.1713|21,18,2|-62.5117,13.3104,-15.6564|62,2.4,54|-3.0001,-4.2001,26.0015,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|-31,0,0,-0,-0,-1,0,1,0,1,0,0|-1.7101,-17.8021,10.4971,0,-1,0,-1.00'
  430. ..'01,-0.0001,0,-0.0001,-0.0001,-1|-3.0001,-4.2,-26.0003,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|1.7048,-17.7826,10.4895,0.0002,1,-0.0003,1,-0.0003,-0.0003,-0.0003,-0.0003,-1|-0.0014,-4.1995,29.9971,0,-1,-0.0001,-0.0001,-0.0001,1,-1,-0.0001,-0.0001|-13.4997,-3.6,-16.0001,0,-1.0001,0,-0.0001,-0.0001,0.9999,-1,0,-0.0001|-0.001,4.8001,-30.0028,-0.0001,-1.0001,0,0,-0.0001,-1,0.9999,-0.0001,0|-14.5003,-4.2001,-10.0001,-0.0001,-1.0001,0,0,0,0.9999,'
  431. ..'-1,0,0|-7.0001,-1.2,8.4996,-1,0,-0.0001,-0.0001,-0.0001,0.9999,-0.0001,1,-0.0001|4.0027,4.8001,25.9993,-1,0,-0.0001,0,-0.0001,-1,-0.0001,-1.0001,0|9.5005,-1.2,-16.0001,0,-1.0001,0,-0.0001,-0.0001,0.9999,-1,0,-0.0001|-7.5001,-0.2,-4.5005,-1,0,-0.0001,-0.0001,-0.0001,0.9999,-0.0001,1,-0.0001|4,-0.6,9.0005,0.9999,-0.0001,0,-0.0001,-0.0001,0.9999,0,-1.0001,0|9.0005,-1.2,-8.0001,0,-1.0001,0,-0.0001,-0.0001,0.9999,-1,0,-0.0001|-4.0001,-2.4,-6'
  432. ..'.0005,-1,0,-0.0001,-0.0001,-0.0001,0.9999,-0.0001,1,-0.0001|-14.4997,-4.2001,11.9999,0,-1.0001,0,-0.0001,-0.0001,0.9999,-1,0,-0.0001|-17.5006,-0.2,1.5,-0.0001,1,-0.0001,-0.0001,-0.0001,0.9999,0.9999,-0.0001,0|18.5005,-0.2,-1.5001,0,-1.0001,0,-0.0001,-0.0001,0.9999,-1,0,-0.0001|12.5005,-3,-16.0001,0,-1.0001,0,-0.0001,-0.0001,0.9999,-1,0,-0.0001|20.9999,-1.2,17.4996,-1,0,-0.0001,-0.0001,-0.0001,0.9999,-0.0001,1,-0.0001|21.0005,-3.6,-0.000'
  433. ..'1,0,-1.0001,0,-0.0001,-0.0001,0.9999,-1,0,-0.0001|-8.4997,-0.6,-16.0001,0,-1.0001,0,-0.0001,-0.0001,0.9999,-1,0,-0.0001|20.9999,-1.8,7.9996,-1,0,-0.0001,-0.0001,-0.0001,0.9999,-0.0001,1,-0.0001|8.5005,-0.6,-16.0001,0,-1.0001,0,-0.0001,-0.0001,0.9999,-1,0,-0.0001|-4.0001,-4.2,-16.0006,-1,0,-0.0001,-0.0001,-0.0001,0.9999,-0.0001,1,-0.0001|-24.0001,-4.2,-20.0006,-1,0,-0.0001,-0.0001,-0.0001,0.9999,-0.0001,1,-0.0001|10.5005,-1.8,-16.0001,0,'
  434. ..'-1.0001,0,-0.0001,-0.0001,0.9999,-1,0,-0.0001|-12.4997,-3,-16.0001,0,-1.0001,0,-0.0001,-0.0001,0.9999,-1,0,-0.0001|4.9972,4.8001,21.0009,0.9999,-0.0001,0,0,-0.0001,-1,0,1,-0.0001|11.5005,-2.4,-16.0001,0,-1.0001,0,-0.0001,-0.0001,0.9999,-1,0,-0.0001|14.5005,-4.2,-16.0001,0,-1.0001,0,-0.0001,-0.0001,0.9999,-1,0,-0.0001|-10.4997,-1.8,-16.0001,0,-1.0001,0,-0.0001,-0.0001,0.9999,-1,0,-0.0001|14.4995,-4.2,-10.0001,0,-1,-0.0001,0,-0.0001,1,-1,'
  435. ..'-0.0001,0|4.0028,4.8,-26.003,-1,0,-0.0001,0,-0.0001,-1,-0.0001,-1,0|10.9999,1.2,0.4995,0.9999,0,0,0,-0.0001,-1,0,1,0|-1.0001,-3,4.9995,-1,0,-0.0001,-0.0001,-0.0001,0.9999,-0.0001,1,-0.0001|13.9999,-0.6,-23.0007,-1,0,-0.0001,-0.0001,-0.0001,0.9999,-0.0001,1,-0.0001|7.5,-0.2,23.5006,0.9999,-0.0001,0,-0.0001,-0.0001,0.9999,0,-1.0001,0|13.9999,-1.2,-18.0006,-1,0,-0.0001,-0.0001,-0.0001,0.9999,-0.0001,1,-0.0001|-11.4997,-2.4,-16.0001,0,-1.00'
  436. ..'01,0,-0.0001,-0.0001,0.9999,-1,0,-0.0001|-24,-4.2001,20.0011,-1,0,0,0,-0.0001,0.9999,0,1,0|-69.5038,10.9103,-24.1628|36,2.4,3|-69.5011,7.3102,-24.1616|36,4.8,9|0,1.1999,-0.0001,1,0,-0.0001,0,-0.0001,-1,0,1,0|0.0026,-1.2001,-0.0013,-1,0,0,0,0,1,0,1,-0.0001|-0.0001,-1.2,2.9999,-1,0,-0.0001,0,-0.0001,0.9999,-0.0001,1,0|-69.5011,3.7102,-24.1615|36,2.4,17|-12,-0.6,6.5,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|-15,1.2,-0.5,1,-0.0001,-0.0001,-0.000'
  437. ..'1,-0.0001,-1,0,1,-0.0001|-16,-2.4,7.5,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|4,-0.6,-6.5,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|-13.5001,-0.6,6.4999,1,0,-0.0001,0,-0.0001,1,0,-1,-0.0001|1,0,0|1072|-90.2893,11.51,-46.4854|21,18,12|-56.6394,5.5102,-19.5979|-67.2724,10.9101,-26.1698|-71.7298,10.9102,-22.1534|0,2.3999,2.9999,-1,0,-0.0001,0,-0.0001,-1,0,-1,0|-41.459,27.7107,15.1781|http://www.roblox.com/asset/?id=14959624|-1.0001,1.2,-0.0008,1,-'
  438. ..'0.0001,-0.0001,-0.0001,-0.0001,-1,0,1,-0.0001|-56.1131,6.1103,-9.3036|5,2.4,2|-54.1049,3.1103,-7.0748|3,1.2,2|7.9999,1.1999,-0.5,0,1,-0.0001,0,0,-1,-1,0,0|-16.9934,13.3111,34.8614|58,2.4,34|-0.0002,-1.2001,16.0015,-1,-0.0001,-0.0001,-0.0001,0,1,-0.0001,1,-0.0001|-7.5002,-1.2001,-15.0003,0,-1,-0.0001,0,-0.0001,1,-1,-0.0001,0|-23.0002,-0.6001,-10.5001,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|-7.5002,-1.2001,-1.0003,0,-1,-0.0001,0,-0.0001,1,-1'
  439. ..',-0.0001,0|-1.0001,-3.0001,-4.9999,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|-9.5009,-3.6001,1.9998,-0.0001,-1,-0.0001,0,-0.0001,1,-1,0,0|-9.0003,-0.6001,10.5002,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|18.9997,-0.6001,-10.5,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|26.9997,-0.6001,-10,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|7.4999,-1.2001,12.9997,0,-1,-0.0001,0,-0.0001,1,-1,-0.0001,0|-39.7495,3.1103,9.6037|6,1.2,30|29.9999,1.1999,0,1,0,-0.0001,0,-0.000'
  440. ..'1,-1,0,1,0|-57.1172,6.1103,-10.4179|1,2.4,5|-53.8476,6.1103,-12.0179|3,2.4,2|3.5,1.2,0,0,-1,-0.0001,0,-0.0001,-1,1,0,-0.0001|-59.0479,6.1103,-7.3321|-56.4478,3.7103,-9.675|9,2.4,3|4.4999,1.2,-0.5,0,1,-0.0001,0,0,-1,-1,0,0|0,-1.2,-3.5,0,1,0,-0.0001,0,1,1,0,-0.0001|1,-1.2,0,0,1,0,-0.0001,0,1,1,0,-0.0001|0,-1.2,0.4999,0.9999,0,0,-0.0001,-0.0001,0.9999,0,-1,-0.0001|-52.2476,3.7103,-8.7483|2,2.4,2|7.9999,1.1999,-3,1,0,-0.0001,0,-0.0001,-1,0,'
  441. ..'1,0|-57.6435,5.5102,-20.7123|10.4999,1.1999,-6.5001,-1,0,0,-0.0001,-0.0001,-1,0,-1,0|-57.7538,5.5102,-18.5938|1,1.2,4|11.9999,1.1999,-5.0001,0,-1,-0.0001,-0.0001,-0.0001,-1,1,0,0|-61.9946,5.5102,-25.5411|3.9999,1.1999,-6.5001,1,0,-0.0001,0,-0.0001,-1,0,1,0|-63.109,5.5102,-24.537|3.9999,1.1999,-5.0001,0,-1,0,0,-0.0001,-1,1,0,0|-60.9905,5.5102,-24.4268|5.4999,1.1999,-6.5001,-1,0,0,-0.0001,-0.0001,-1,0,-1,0|-62.9987,5.5102,-26.6554|2.5,1.1'
  442. ..'999,-6.5001,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-74.6398,7.3101,-41.0685|-16.0001,1.1999,-7.5001,1,0,-0.0001,0,-0.0001,-1,0,1,0|-0.0001,1.1999,1.9999,1,0,-0.0001,0,-0.0001,-1,0,1,0|-68.4642,5.5102,-30.4802|-4,1.1999,-5.0001,0,-1,0,0,-0.0001,-1,1,0,0|-66.3458,5.5102,-30.3699|-2.5001,1.1999,-6.5001,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-67.3498,5.5102,-31.4843|-4,1.1999,-6.5001,1,0,0,0,0,-1,0,1,0|-68.3539,5.5102,-32.5987|-5.5001,1.1999,-6.5001,-1'
  443. ..',0,0,-0.0001,-0.0001,-1,0,-1,0|-69.2846,7.3102,-35.1253|-8,1.1999,-7.5001,1,0,0,0,0,-1,0,1,0|-0.0001,1.1999,1.9999,1,0,0,0,0,-1,0,1,0|-73.8194,5.5102,-36.4234|-12.0001,1.1999,-5,0,-1,-0.0001,-0.0001,-0.0001,-1,1,0,0|-71.701,5.5102,-36.3131|-10.5,1.1999,-6.5001,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-72.7051,5.5102,-37.4275|-12.0001,1.1999,-6.5001,1,0,-0.0001,0,-0.0001,-1,0,1,0|-73.7092,5.5102,-38.5418|-13.5001,1.1999,-6.5001,-1,0,-0.0001,-0.0'
  444. ..'001,0,-1,0,-1,0|-71.5907,5.5101,-38.4316|-12.0001,1.1999,-8.0001,1,0,-0.0001,0,-0.0001,-1,0,1,0|-65.1828,5.5103,-11.8997|12,1.1999,4.9999,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-64.3624,7.3103,-7.2546|16,1.1999,7.4999,-1,0,-0.0001,-0.0001,-0.0001,-1,0,-1,0|0,1.1999,-2.0001,-1,0,-0.0001,-0.0001,-0.0001,-1,0,-1,0|-67.4115,5.5103,-9.8915|11.9999,1.1999,7.9999,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-65.293,5.5103,-9.7813|13.5,1.1999,6.4999,-1,0,-0.0001'
  445. ..',-0.0001,0,-1,0,-1,0|-66.2972,5.5103,-10.8956|11.9999,1.1999,6.5,1,0,0,0,0,-1,0,1,0|-67.3013,5.5103,-12.01|10.5,1.1999,6.5,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-85.7833,7.3102,-31.0274|-16,1.1999,7.5,-1,0,0,-0.0001,0,-1,0,-1,-0.0001|-69.7177,7.3103,-13.1978|7.9999,1.1999,7.5,-1,-0.0001,0,-0.0001,-0.0001,-1,0,-1,0|-70.538,5.5102,-17.8429|3.9999,1.1999,5,-1,0,0,-0.0001,-0.0001,-1,0,-1,0|-70.6483,5.5102,-15.7245|5.4999,1.1999,6.4999,-1,0,-0.00'
  446. ..'01,-0.0001,0,-1,0,-1,0|-71.6524,5.5102,-16.8388|3.9999,1.1999,6.5,1,0,0,0,0,-1,0,1,0|-72.6565,5.5102,-17.9532|2.4999,1.1999,6.4999,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-72.7668,5.5103,-15.8347|3.9999,1.1999,8,-1,0,0,-0.0001,-0.0001,-1,0,-1,0|-75.0729,7.3102,-19.1411|-0.0001,1.1999,7.4999,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-75.8932,5.5102,-23.7861|-4,1.1999,5,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-76.0035,5.5102,-21.6677|-2.5001,1.1999,6.4999,-1,0,'
  447. ..'-0.0001,-0.0001,0,-1,0,-1,0|-77.0076,5.5102,-22.782|-78.0117,5.5102,-23.8964|-5.5001,1.1999,6.5,-1,0,0,-0.0001,-0.0001,-1,0,-1,0|-80.4281,7.3102,-25.0842|-8.0001,1.1999,7.5,-1,0,0,-0.0001,-0.0001,-1,0,-1,0|0,1.1999,-1.9999,-1,0,-0.0001,0,0,-1,-0.0001,-1,-0.0001|-81.2484,5.5102,-29.7294|-12,1.1999,4.9999,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-81.3587,5.5102,-27.6109|-10.5001,1.1999,6.5,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-82.3628,5.5102,-28.7253'
  448. ..'|-12.0001,1.1999,6.4999,1,0,-0.0001,0,-0.0001,-1,0,1,0|-83.3669,5.5102,-29.8396|-52.7661,4.9103,-5.589|2,4.8,7|9.9999,1.1999,-0.5,1,0,-0.0001,0,-0.0001,-1,0,1,0|-55.9621,3.7103,-5.4013|7.9999,1.1999,2,1,0,-0.0001,0,-0.0001,-1,0,1,0|-39.7495,4.3103,9.6037|6,1.2,28|-0.0001,0.5999,-0.0001,1,0,-0.0001,0,-0.0001,-1,0,1,0|-39.7495,13.9103,9.6036|6,1.2,12|0,0.6,0,1,0,-0.0001,0,-0.0001,-1,0,1,0|-37.0749,13.3108,12.5742|0,0,1,1,0,0,0,1,0,0,0,1|-'
  449. ..'28.9999,0,-0.0003,0,-0.0001,1,-0.0001,1,0,-1,-0.0001,0|-39.7495,12.7103,9.6036|6,1.2,14|0,0.6,-0.0001,1,0,-0.0001,0,-0.0001,-1,0,1,0|-42.4271,7.3103,6.6321|30,9.6,2|25.9999,1.1999,0,-0.0001,0.9999,0,0,-0.0001,-1,-1.0001,0,0|-39.7495,11.5103,9.6036|6,1.2,16|-39.7495,5.5103,9.6037|6,1.2,26|-0.0001,0.6,-0.0001,1,0,-0.0001,0,-0.0001,-1,0,1,0|-39.7495,7.9103,9.6036|6,1.2,22|-39.7495,6.7103,9.6036|6,1.2,24|-0.0001,-0.6001,0,-1,0,0,-0.0001,-0.'
  450. ..'0001,1,0,1,-0.0001|0,0.5999,0,1,0,-0.0001,0,-0.0001,-1,0,1,0|-39.7495,10.3103,9.6036|6,1.2,18|-0.0001,0.5999,0,1,0,-0.0001,0,-0.0001,-1,0,1,0|0,-0.6,0,-1,0,0,-0.0001,-0.0001,1,0,1,-0.0001|-39.7495,9.1103,9.6036|6,1.2,20|0,0.5999,-0.0001,1,0,-0.0001,0,-0.0001,-1,0,1,0|-82.591,18.71,-37.9421|50,8.4,2|0.0009,-0.6001,-18.9971,-1,0,0,0,-0.0001,1,0,1,0|7.1047,-17.7847,10.4911,0.0002,0.9999,-0.0003,1,-0.0003,-0.0003,-0.0003,-0.0003,-1|-7.11,-1'
  451. ..'7.8012,10.4999,0,-1,-0.0001,-1,-0.0001,-0.0001,0,0,-1|-41.1868,18.7107,-30.8331|68,8.4,2|-24.0554,17.5109,34.4944|-5,1.2,5.0006,1,-0.0001,-0.0001,-0.0001,-0.0001,-1,0,1,-0.0001|-38.7815,17.5108,18.1501|-26.9998,1.2,4.9999,1,-0.0001,0,0,0,-1,0,1,0|3.9998,-0.6,-0.0002,1,0,0,-0.0001,0,1,0,-1,0|-33.4265,17.5108,24.0933|-19,1.2,5,0.9999,0,0,-0.0001,-0.0001,-1,0,1,0|-4.0001,-0.6001,-0.0001,1,0,-0.0001,0,-0.0001,1,0,-1,-0.0001|-29.4103,17.5109'
  452. ..',28.5509|-13,1.2,5.0002,1,-0.0001,-0.0001,-0.0001,0,-1,0,1,0|-20.0385,17.511,38.9513|-14.684,17.5111,44.8951|9,1.1999,5.0007,1,-0.0001,-0.0001,-0.0001,-0.0001,-1,0,1,-0.0001|-16.0187,18.1111,50.136|12,-1.2,9.5001,0,1,-0.0001,-0.0001,0,1,1,-0.0001,0|12,1.2,9.5004,-0.0001,1,-0.0001,0,-0.0001,-1,-1,-0.0001,-0.0001|-5.9775,18.1112,61.2792|26.9999,1.1999,9.5002,-0.0001,1,-0.0001,0,-0.0001,-1,-1,-0.0001,-0.0001|26.9999,-1.2001,9.5002,0,1,0,-0'
  453. ..'.0001,-0.0001,1,1,-0.0001,0|-10.6669,17.5113,49.3522|15.0002,1.2001,4.9999,1,-0.0001,0,0,0,-1,0,1,0|-5.3121,17.5112,55.2954|22.9999,1.1999,5.0002,1,-0.0001,-0.0001,-0.0001,-0.0001,-1,0,1,-0.0001|-4,-0.6001,-0.0002,1,0,-0.0001,0,-0.0001,1,0,-1,-0.0001|-31.2672,15.7109,30.2243|-21.8957,15.7111,40.625|1.0002,1.2,7.5,-0.0001,1,0,-0.0001,0,-1,-1,-0.0001,0|-12.5242,15.7112,51.0257|15.0002,1.2001,7.5,-0.0001,1,0,-0.0001,0,-1,-1,-0.0001,0|-26.7'
  454. ..'327,17.5109,31.5225|-9,1.2,5.0002,1,-0.0001,-0.0001,-0.0001,-0.0001,-1,0,1,-0.0001|-0.0001,-0.6001,-0.0002,1,0,-0.0001,0,-0.0001,1,0,-1,-0.0001|-7.9897,17.5113,52.3241|19.0002,1.2001,5.0004,1,-0.0001,0,0,0,-1,0,1,0|-0.0002,-0.5999,-0.0002,1,0,0,-0.0001,0,1,0,-1,0|-17.3612,17.511,41.9232|5,1.2,5.0002,1,-0.0001,-0.0001,-0.0001,0,-1,0,1,0|-16.9933,22.9111,34.8613|-9.5004,3.5999,-27.0001,0,-1,0,-0.0001,-0.0001,-1,1,0,-0.0001|25,2.3999,-16.0'
  455. ..'004,-1,-0.0001,0,-0.0001,-0.0001,-1,0,-1,0|-18.0001,2.3999,16.0003,1,0,-0.0001,-0.0001,-0.0001,-1,-0.0001,1,-0.0001|11,2.3999,-16.0004,-1,-0.0001,0,-0.0001,-0.0001,-1,0,-1,0|-3,2.3999,-16.0004,-1,-0.0001,0,-0.0001,-0.0001,-1,0,-1,0|24.9999,2.4,16.0003,-1,0,-0.0001,0,0,-1,-0.0001,-1,-0.0001|-9.5004,3.5999,1.9999,0,-1,0,-0.0001,-0.0001,-1,1,0,-0.0001|-4.0001,2.4,-16.0004,1,-0.0001,-0.0001,-0.0001,0,-1,0,1,0|-9,0.5999,-4.9996,-1,0,0,-0.000'
  456. ..'1,-0.0001,-1,-0.0001,-1,0|26.9998,-1.2001,0.0002,-1,0,0,0,-0.0001,1,0,1,0|0,-1.2001,23.9998,-0.0001,-1,-0.0001,0,-0.0001,1,-1,0,0|-17,2.3999,16.0003,-1,0,0,-0.0001,0,-1,-0.0001,-1,-0.0001|-17,2.3999,-16.0005,-1,-0.0001,0,-0.0001,-0.0001,-1,0,-1,0|29.9999,-1.2,-5.0005,-1,-0.0001,-0.0001,-0.0001,-0.0001,1,-0.0001,1,0|-23,0.5999,4.9999,-1,0,0,-0.0001,-0.0001,-1,-0.0001,-1,0|18.9999,0.6,5,-1,0,-0.0001,0,0,-1,-0.0001,-1,-0.0001|-32.9999,-1.2'
  457. ..',16.0014,1,0,-0.0001,0,-0.0001,1,0,-1,-0.0001|10.9999,2.4,16.0003,-1,0,0,-0.0001,0,-1,-0.0001,-1,-0.0001|9.9999,2.3999,-16.0004,1,-0.0001,-0.0001,-0.0001,0,-1,0,1,0|-9.5,3.5999,15.9998,0,-1,0,-0.0001,-0.0001,-1,1,0,-0.0001|23.9999,2.3999,-16.0003,1,-0.0001,-0.0001,-0.0001,0,-1,0,1,0|Gate buttons|button|0.2941,0.5921,0.2941|-60.1652,14.7104,-6.3292|1,0.4,1|0,-0.2001,0,1,0,0,-0,-0,-1,0,1,0|8.5,1.1999,4.5003,1,-0.0001,-0.0001,-0.0001,-0.00'
  458. ..'01,-1,0,1,-0.0001|0.7686,0.1568,0.1098|-60.8347,14.7104,-7.072|Door|-55.818,18.7105,-8.2272|8,8.4,2|10,1.2,0.0002,-0.0001,1,-0.0001,0,-0.0001,-1,-1,-0.0001,-0.0001|-10.5005,-0.0001,0,-0.0001,0,1,0,1,-0.0001,-1,0,-0.0001|-69.8751,23.5103,-23.8286|54,1.2,40|0,0,-20,-1,-0,-0,0,1,0,-0,-0,-1|11.9047,-17.7851,10.487,0.0002,0.9999,-0.0003,1,-0.0003,-0.0003,-0.0003,-0.0003,-1|-14.0002,4.2,-26.0007,-0.0001,1,0,0,0,-1,-1,-0.0001,-0.0001|-14.0001,'
  459. ..'4.1999,26.0015,-0.0001,1,-0.0001,0,-0.0001,-1,-1,-0.0001,-0.0001|-3.0001,0.5999,22.0001,-0.0001,1,0,0,0,-1,-1,-0.0001,-0.0001|21.0006,0.6,-11.0001,1,0,-0.0001,-0.0001,0,-1,-0.0001,0.9999,0|-43.0996,23.5107,5.8879|54,1.2,16|6,-1.2001,-16.0003,0,-1,0,-0.0001,0,1,-1,-0.0001,-0.0001|-19.0013,-1.2001,0.9999,-1.0001,-0.0001,-0.0001,-0.0001,-0.0001,0.9999,-0.0001,0.9999,0|-9.0001,-1.2,-5.001,-0.0001,1,-0.0001,-0.0001,0,1,1,0,0|25.9998,4.2,-26.'
  460. ..'0003,0,0.9999,-0.0001,0,-0.0001,-1,-1.0001,0,-0.0001|5,4.1999,20.0015,-0.0001,1,-0.0001,0,-0.0001,-1,-1,-0.0001,-0.0001|25.9999,4.1998,26.0021,-0.0001,1,-0.0001,0,-0.0001,-1,-1,-0.0001,-0.0001|-10,-1.2001,-20.0022,-0.0001,-1,-0.0001,-0.0001,-0.0001,0.9999,-1.0001,0,-0.0001|18.9999,-1.2001,0.9999,-1.0001,0,-0.0001,-0.0001,-0.0001,0.9999,0,0.9999,0|6,-1.2,16.0016,0,-1,0,-0.0001,0,1,-1,-0.0001,-0.0001|-0.0002,-4.2001,6.9999,-1.0001,0,-0.00'
  461. ..'01,-0.0001,-0.0001,0.9999,0,0.9999,0|-0.0002,-0.5,8,1,-0.0001,0,-0.0001,-0.0001,1,0,-1,-0.0001|-10,-1.2001,19.9999,-0.0001,-1,-0.0001,-0.0001,-0.0001,0.9999,-1.0001,0,-0.0001|4.9999,4.2,-20.0005,-0.0001,1,-0.0001,0,-0.0001,-1,-1,-0.0001,-0.0001|-43.5592,23.5107,-19.2731|21,1.2,2|6.9999,4.2,9.5005,-0.0001,1,-0.0001,0,-0.0001,-1,-1,-0.0001,-0.0001|16.5002,-1.2,-0.0001,-1,0,0,0,-0.0001,1,0,1,0|2.0001,4.2,-0.0001,1,0,-0.0001,-0.0001,-0.0001'
  462. ..',-1,-0.0001,1,-0.0001|-52.4712,23.5105,-4.5125|12,1.2,12|-14.5008,4.1999,5,1,-0.0001,-0.0001,-0.0001,-0.0001,-1,0,1,-0.0001|-0.0024,-1.2001,5,-1,-0.0001,-0.0001,-0.0001,-0.0001,1,-0.0001,1,0|-36.1993,23.5109,-17.8283|12,1.2,10|3,-1.2,1,-0.0001,-1,0,0,0,1,-1,0,0|13,4.1999,5,-0.0001,1,-0.0001,0,-0.0001,-1,-1,-0.0001,-0.0001|-8,4.2,-1.0005,-0.0001,1,-0.0001,0,-0.0001,-1,-1,-0.0001,-0.0001|-51.5227,22.3106,-36.3268|6,1.2,6|-2.5,2.9999,0,1,-'
  463. ..'0.0001,-0.0001,-0.0001,0,-1,0,1,0|-70.626,16.3102,-36.6124|8,3.6,4|-49.8491,18.7106,-34.4696|1,6,6|0.9725,0.9725,0.9725|-64.3114,17.5103,-42.3022|8,1.2,13|-63.5682,15.7104,-42.9718|8,2.4,15|0,-1.2001,6.4997,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|0,-0.6,-1.0003,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|-58.1281,17.5105,-18.2602|16,6,2|2,-1.2,0.0006,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|-51.5228,15.1106,-36.3265|2.4996,-3.0001,0,0,-1.0001,0,0,0,0'
  464. ..'.9999,-1,-0.0001,0|-2.5,-3.0001,0.0004,-1,0,-0.0001,-0.0001,-0.0001,0.9999,0,1,0|2.5,-3.0001,-2.4997,-1,0,-0.0001,-0.0001,-0.0001,0.9999,0,1,0|-8,1.2,-22.0002,0.9999,0,0,-0.0001,-0.0001,-1,0,1,0|-59.7725,18.7104,-34.2774|14.5,-0.6,-1,-1,-0.0001,-0.0001,-0.0001,-0.0001,1,-0.0001,1,0|-64.292,16.9104,-8.668|10,4.8,2|-52.9974,17.5105,-14.8068|0,1.2,2.0001,1,-0.0001,-0.0001,-0.0001,-0.0001,-1,0,1,-0.0001|-59.4664,21.7104,-19.7467|20,2.4,2|5.'
  465. ..'0001,-0.6001,10,0,-1,-0.0001,0,-0.0001,1,-1,-0.0001,0|-58.7395,18.1104,-47.3227|8,2.4,2|-50.8422,19.9106,-15.4027|0,0.6,-0.5,1,-0.0001,-0.0001,0,-0.0001,-1,-0.0001,0.9999,0|0.6666,0,0.6666|-64.8217,17.5104,-25.6896|2,6,4|-9,1.2,-5.0001,-0.0001,1,-0.0001,0,-0.0001,-1,-1,-0.0001,-0.0001|-8,-1.2,0.0002,0,0.9999,-0.0001,-0.0001,-0.0001,0.9999,1,-0.0001,0|-55.053,18.7105,-36.5109|1,6,1|-2.5001,-0.6,2.4994,-1,-0.0001,-0.0001,-0.0001,-0.0001,1'
  466. ..',-0.0001,1,0|-53.3799,18.7105,-34.6533|1,6,4|-0.0001,-0.6,2.5,0,1,0,-0.0001,-0.0001,1,1,-0.0001,0|-33.0588,25.3109,17.0317|34,2.4,2|-55.8166,25.3106,-8.2287|42,2.4,2|-34.9335,25.3109,-14.9307|-29.8742,29.511,-3.3367|-2.0001,-0.6,-16.0005,1,0,-0.0001,0,-0.0001,1,0,-1,-0.0001|-33.7283,33.1108,16.2888|4,1.2,30|-33.0589,29.5109,17.0317|1,-0.6,-0.0001,0,0.9999,-0.0001,-0.0001,-0.0001,0.9999,1,0,-0.0001|-0.0001,1.2,-0.0001,1,-0.0001,-0.0001,0'
  467. ..',-0.0001,-1,-0.0001,0.9999,0|-35.0667,25.3109,14.8027|4,2.4,6|-31.139,29.511,-6.2353|16.9978,-0.6,9,1,0,-0.0001,0,0,1,0,-1,0|-23.1798,33.111,4.092|8,1.2,2|1.9999,0,-2.0011,1,0,-0.0001,-0.0001,1,-0.0001,0,0,1|-51.8017,28.3106,-3.7698|12,8.4,10|-0.0028,-0.6001,-3,-1,-0.0001,0,0,0,1,-0.0001,1,-0.0001|-0.0001,0.6,1,1,0,0,0,-0.0001,-1,-0.0001,1,-0.0001|-34.933,29.5109,-14.9312|20,6,2|20.0001,-0.6,-0.0001,0,-1.0001,0,0,-0.0001,0.9999,-1,0,-0.'
  468. ..'0001|0,1.2,0.0001,-1,0,0,-0.0001,-0.0001,-1,-0.0001,-1,0|20.0009,1.2,9,-0.0001,-1,0,-0.0001,-0.0001,-1,1,-0.0001,-0.0001|1.0005,1.2,-9.0001,-0.0001,-1,0,-0.0001,-0.0001,-1,1,-0.0001,-0.0001|-49.7916,33.1106,-1.543|42,1.2,20|-47.7852,28.3106,0.6875|30,8.4,2|-0.0026,-0.6001,3,-1,0,-0.0001,-0.0001,-0.0001,1,0,1,0|-40.4224,33.1107,8.8599|8,1.2,34|-2.0001,-0.0001,13,0,0,1,0,1,-0.0001,-1,0,0|-6.0001,2.9999,-16.0004,1,-0.0001,-0.0001,-0.0001,-'
  469. ..'0.0001,-1,0,1,-0.0001|-35.067,27.7108,14.8031|http://www.roblox.com/asset/?id=18981244|0,1.1999,0.0004,0,1,-0.0001,-0.0001,-0.0001,-1,-1,0,0|-26.7481,33.111,4.6151|4,1.2,4|-38.6345,33.1108,15.3253|4,1.2,28|-42.496,15.1107,21.4972|-75.2519,14.7102,-2.1577|0,0,-0.5,-1,-0,-0,0,1,0,-0,-0,-1|2.5001,-3.4001,0.9999,-1,0,-0.0001,0,1,0,0,0,-1|-78.1135,18.1101,-1.5985|8,7.2,2|-16.8312,20.5111,58.9445|6,2.4,2|18,-1.1999,16.0005,-1,-0.0001,-0.0001,'
  470. ..'-0.0001,0,1,-0.0001,1,-0.0001|-47.623,19.3106,24.7705|-28,1.2,-0.0001,-1,-0.0001,0,0,0,-1,-0.0001,-1.0001,0|-28,-1.2,16.0001,1,0,0,-0.0001,0,1,0,-1,0|-103.4943,11.6035,-34.5711|0.0099,42.0299,90.01|-34.9884,10.2908,17.7828,0.0002,0.0002,0.9999,0.9999,-0.0003,-0.0003,0.0002,1,-0.0003|-3.4434,15.7113,73.8029|-16.0003,1.2,0,0,1,0,0,0,-1,-1,0,-0.0001|-6,-3.0001,0.0002,1,0,0,-0.0001,0,1,0,-1,0|-3.0001,-3.0001,-0.0003,-1,-0.0001,-0.0001,-0.00'
  471. ..'01,0,1,-0.0001,1,-0.0001|-50.971,25.3105,21.057|-0.9986,-3.0001,-7,-0.0001,-1,0,-0.0001,0,1,-1,0,-0.0001|-95.4896,11.51,-41.7994|-79.1474,7.3104,4.7215|0,1.2,26.0006,-1,0,-0.0001,0,-0.0001,-1,-0.0001,-1,0|-4.2889,8.2187,10.4873,0.0002,0.9999,-0.0003,1,-0.0003,-0.0003,-0.0003,-0.0003,-1|-30.9971,-1.1998,4.9991,1,-0.0001,0,-0.0001,-0.0001,1,-0.0001,-1,-0.0001|-81.0856,7.3103,-5.6467|48,9.6,9|-9.0001,1.1999,20.5,1,0,-0.0001,0,-0.0001,-1,0,'
  472. ..'1,0|-4.9971,-1.1998,20.4987,-1,0,0,0,0,0.9999,0,1,-0.0001|-65.8483,3.7103,-5.9158|0.9999,1.1999,9.0001,1,-0.0001,-0.0001,-0.0001,-0.0001,-1,0,1,-0.0001|-71.2035,3.7103,-11.859|-7.0001,1.1999,9,1,0,-0.0001,0,-0.0001,-1,0,1,0|0,-2.4,-2.0001,0.9999,0,0,-0.0001,-0.0001,0.9999,0,-1,-0.0001|-76.5587,3.7103,-17.8022|-15.0001,1.1999,9,1,0,-0.0001,0,-0.0001,-1,0,1,0|0,-2.4,-2.0001,1,0,-0.0001,-0.0001,-0.0001,1,0,-1,0|-81.9139,3.7102,-23.7454|-23'
  473. ..',1.1999,9,1,0,0,0,-0.0001,-1,0,1,-0.0001|-87.2691,3.7102,-29.6886|-31,1.1999,9,1,0,-0.0001,0,-0.0001,-1,0,1,0|0,-2.4,-2.0001,1,0,-0.0001,-0.0001,0,0.9999,0,-1,0|-78.1219,5.5102,-21.7779|-4,1.1999,7.9999,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-83.4772,5.5102,-27.7211|-12.0001,1.1999,8,-1,0,0,-0.0001,-0.0001,-1,0,-1,0|-54.6846,13.3105,24.4033|-28.9998,0,21.0001,-0.0001,-0.0001,1,-0.0001,1,0,-1,-0.0001,-0.0001|-48.5905,18.1106,22.9503|-15.5001,1'
  474. ..'.1999,-0.0001,1,0,0,0,-0.0001,-1,-0.0001,1,-0.0001|2.9999,1.1999,-5.5,-0.0001,1,-0.0001,0,-0.0001,-1,-1,-0.0001,-0.0001|-52.1654,18.7106,10.0186|-9.5002,-0.6,-3,0,-1,-0.0001,-0.0001,-0.0001,1,-1,-0.0001,-0.0001|26,1.2,9.5002,1,-0.0001,-0.0001,-0.0001,-0.0001,-1,0,1,-0.0001|-61.305,18.7104,15.5618|-11,1.2,-0.9998,1,-0.0001,-0.0001,-0.0001,-0.0001,-1,0,1,-0.0001|-79.8194,18.7101,3.9769|-34,0,0,-0,-0,-1,0,1,0,1,0,0|7.1105,8.2165,10.4817,0.'
  475. ..'0002,0.9999,-0.0003,1,-0.0003,-0.0003,-0.0003,-0.0003,-1|-32,1.2,4.9999,1,0,0,0,-0.0001,-1,0,1,-0.0001|-37.5123,15.1108,27.7751|-28.1412,15.111,38.1761|-4.9998,1.2001,10.5004,1,-0.0001,0,0,0,-1,0,1,0|0,-0.6001,0.0002,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|-28.8802,15.7108,45.5721|-18,-1.2001,0.0001,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|24.9999,-2.4001,-0.0002,1,0,-0.0001,0,-0.0001,1,0,-1,-0.0001|0,1.1999,16.0002,1,-0.0001,-0.0001,-0.0001,-'
  476. ..'0.0001,-1,0,1,-0.0001|-4,-2.4001,0.0002,-1,-0.0001,0,0,-0.0001,0.9999,-0.0001,1,0|10.9999,-2.4001,-0.0003,0.9999,0,-0.0001,0,-0.0001,0.9999,0,-1.0001,-0.0001|-3.0001,-2.4001,-0.0003,0.9999,0,-0.0001,0,-0.0001,0.9999,0,-1.0001,-0.0001|-17,-2.4001,-0.0003,0.9999,0,-0.0001,0,-0.0001,0.9999,0,-1.0001,-0.0001|23.9999,-2.4001,0.0002,-1,-0.0001,0,0,-0.0001,0.9999,-0.0001,1,0|10,-2.4001,0.0002,-1,-0.0001,0,0,-0.0001,0.9999,-0.0001,1,0|-18.7695,'
  477. ..'15.1111,48.5767|9.0001,1.2001,10.5002,1,-0.0001,0,0,0,-1,0,1,0|-9.3978,15.1113,58.9772|-34.7615,18.1108,29.3344|-16,-1.2001,9.5,0,0.9999,-0.0001,-0.0001,-0.0001,0.9999,1,0,-0.0001|-16,1.2,9.5001,-0.0001,1,-0.0001,0,-0.0001,-1,-1,-0.0001,-0.0001|-25.3902,18.111,39.7354|-1.9999,1.2,9.5009,0,1,0,-0.0001,0,-1,-1,0,0|-2,-1.2,9.5007,-0.0001,1,-0.0001,0,0,1,1,0,-0.0001|-40.2598,19.3107,32.9426|-21.5168,19.3109,53.7439|-30.8879,19.3108,43.3429|'
  478. ..'-3,-1.2,15.9998,1,0,0,-0.0001,0,1,0,-1,0|-12.1452,19.311,64.1446|-44.9455,19.3106,27.7423|-26.2025,19.3109,48.5436|-35.574,19.3108,38.143|-16.831,18.111,58.9443|-0.0001,-1.2002,-0.0004,-1,0,0,0,-0.0001,1,0,1,0|-37.5122,16.3108,27.775|-0.0001,0.6,-0.0002,1,-0.0001,-0.0001,-0.0001,-0.0001,-1,0,1,-0.0001|-9.3978,16.3113,58.9772|0,0.5999,0,0.9999,0,0,-0.0001,-0.0001,-1,0,1,0|-18.7695,16.3111,48.5767|-28.141,16.311,38.176|-33.1247,15.1109,31'
  479. ..'.898|-12.9998,1.2,10.0002,1,-0.0001,0,0,0,-1,0,1,0|-14.382,15.111,52.6995|15,1.1999,10.0006,1,0,-0.0001,-0.0001,-0.0001,-1,-0.0001,1,-0.0001|-23.753,15.111,42.2986|1.0002,1.2001,10,1,-0.0001,0,0,0,-1,0,1,0|-66.5896,18.7104,1.4786|-14.4994,-0.6,-5,-1,0,0,0,0,1,0,1,-0.0001|-62.5741,18.7104,5.9368|-58.1165,15.1105,1.9204|-58.8595,15.7104,2.5898|-59.6024,16.3104,3.2592|-60.3453,16.9104,3.9286|-61.0883,17.5104,4.598|-61.8311,18.1104,5.2673|1'
  480. ..'6,1.1999,13.5004,-0.0001,1,-0.0001,0,-0.0001,-1,-1,-0.0001,-0.0001|-68.076,23.5103,2.8179|6.9999,4.2,-9.5001,-0.0001,0.9999,0,0,-0.0001,-1,-1.0001,0,0|-16.5002,-1.2001,0,-1,0,-0.0001,-0.0001,-0.0001,1,0,1,0|-2.0009,4.1999,0,1,0,0,0,-0.0001,-1,-0.0001,1,-0.0001|-67.4034,23.5103,10.2881|12.9999,4.1999,-4.9993,0,0.9999,-0.0001,0,-0.0001,-1,-1.0001,0,-0.0001|2.9999,-1.2001,-1.0006,-0.0001,-1,-0.0001,-0.0001,-0.0001,1,-1,0,-0.0001|-8,4.1999,'
  481. ..'1.0002,-0.0001,1,-0.0001,0,-0.0001,-1,-1,-0.0001,-0.0001|-5.4517,19.9113,71.5742|-69.198,15.7103,-9.6318|0,1.2,9,0,-1,0,-0.0001,0,-1,1,-0.0001,0|-70.6069,18.7103,-2.9781|8,6,1|http://www.roblox.com/asset/?id=41060048|0,0,0.5,1,0,0,0,1,0,0,0,1|0,0,-1.0001,0.9999,-0.0001,0,-0.0001,0.9999,-0.0001,0,-0.0001,1|-74.509,14.7102,-2.8271|-78.1134,22.3101,-1.5986|0.0001,3.5999,-0.0001,1,0,0,0,-0.0001,-1,-0.0001,1,-0.0001|-63.8432,15.7104,-3.6882|'
  482. ..'-71.7212,18.7102,-1.9739|10,8.4,2|-16.0006,-0.6001,15,0,-1,-0.0001,0,-0.0001,1,-1,-0.0001,0|4.0001,0.6,3.9999,-0.0001,0,-1,-0.0001,1,0,1,0,-0.0001|-57.8844,25.3105,17.8638|8.9999,-3.0001,-1.0001,0,1,0,-0.0001,-0.0001,1,1,-0.0001,0|1.9999,-3.0001,0,1,-0.0001,0,-0.0001,-0.0001,1,-0.0001,-1,-0.0001|-85.2561,15.71,-14.0074|12,2.4,6|Tele1|0.0509,0.4117,0.6745|-74.9502,14.7102,5.6468|3,0.4,3|Enabled|Teleport pad script|-66.5207,15.1103,-6.659'
  483. ..'8|6,1.2,4|-88.9707,15.1099,-10.6604|-48.2928,29.5106,24.028|-16.0006,1.2,-5,0,-1,-0.0001,0,0,-1,1,0,0|0,-0.6001,13.0006,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|-4.0001,1.2,0.0008,-1,0,-0.0001,0,0,-1,-0.0001,-1,-0.0001|-90.2892,21.71,-46.4854|-0.0001,9,0,-0.0001,0.9999,0,0,-0.0001,-1,-1.0001,0,0|0,2.9999,-1.0001,1,-0.0001,0,0,1,0,-0.0001,-0.0001,1|0,9,-7.0001,0,-1,0,0,-0.0001,-1,1,0,0|0,9,7,0,-1,0,0,-0.0001,-1,1,0,0|0.5729,19.9114,78.2603|-'
  484. ..'16.0003,-0.6001,5.9999,-0.0001,-1,-0.0001,0,-0.0001,1,-1,0,0|-64.6519,25.3104,11.8471|-56.3991,29.5105,16.5255|-17.0034,-0.6001,9,1,-0.0001,0,-0.0001,-0.0001,1,-0.0001,-1,-0.0001|-64.6517,29.5104,11.8469|-20.0025,-0.6,0,0,-1,0,-0.0001,0,1,-1,-0.0001,-0.0001|0,1.2,-0.0001,-1,0,0,-0.0001,-0.0001,-1,-0.0001,-1,0|-20.0026,1.1999,9,-0.0001,-1,0,-0.0001,-0.0001,-1,1,-0.0001,-0.0001|-53.6479,29.5105,18.0846|-2,-0.6,16.0001,0.9999,-0.0001,-0.00'
  485. ..'01,-0.0001,0,0.9999,0,-1.0001,-0.0001|4,1.2,0.0007,1,-0.0001,-0.0001,-0.0001,-0.0001,-1,0,1,-0.0001|-45.6153,33.1107,26.9996|3.9999,2.9999,-0.0001,0.9999,0,0,-0.0001,-0.0001,-1,0,1,0;0,3>9>2,3>10>4,6>9>5,6>10>21,8>9>7,8>10>4,10>9>9,10>10>21,12>9>11,12>10>208,13>9>11,13>10>234,15>9>14,15>10>338,16>9>14,16>10>11,17>9>14,17>10>230,18>9>14,18>10>41,19>9>14,19>10>474,20>9>14,20>10>55,23>9>22,23>10>21,25>9>24,25>10>21,27>9>26,27>10>21,29>9>28'
  486. ..',29>10>21,30>9>28,30>10>512,32>9>31,32>10>21,33>9>31,33>10>512,35>9>34,35>10>21,36>9>34,36>10>512,38>9>37,38>10>21,39>9>37,39>10>512,42>9>41,42>10>452,44>9>43,44>10>338,46>9>45,46>10>338,48>9>47,48>10>40,50>9>49,50>10>43,52>9>51,52>10>338,54>9>53,54>10>58,57>9>56,57>10>208,59>9>58,59>10>338,61>9>60,61>10>338,63>9>62,63>10>338,64>9>62,64>10>512,67>9>66,67>10>60,70>9>69,70>10>338,72>9>71,72>10>338,74>9>73,74>10>174,75>9>73,75>10>338,77>9>'
  487. ..'76,77>10>181,78>9>76,78>10>177,79>9>76,79>10>182,81>9>80,81>10>174,82>9>80,82>10>194,84>9>83,84>10>512,85>9>83,85>10>127,87>9>86,87>10>512,88>9>86,88>10>163,89>9>86,89>10>146,91>9>90,91>10>512,92>9>90,92>10>161,93>9>90,93>10>141,94>9>90,94>10>139,97>9>96,97>10>134,99>9>98,99>10>208,100>9>98,100>10>101,103>9>102,103>10>208,105>9>104,105>10>208,106>9>104,106>10>116,108>9>107,108>10>208,109>9>107,109>10>120,111>9>110,111>10>208,113>9>112,1'
  488. ..'13>10>320,115>9>114,115>10>320,117>9>116,117>10>320,119>9>118,119>10>320,121>9>120,121>10>320,123>9>122,123>10>320,125>9>124,125>10>551,126>9>124,126>10>273,128>9>127,128>10>338,130>9>129,130>10>338,131>9>129,131>10>83,133>9>132,133>10>338,135>9>134,135>10>338,137>9>136,137>10>338,138>9>136,138>10>96,140>9>139,140>10>338,142>9>141,142>10>338,144>9>143,144>10>338,145>9>143,145>10>86,147>9>146,147>10>338,149>9>148,149>10>338,152>9>151,152'
  489. ..'>10>338,154>9>153,154>10>338,156>9>155,156>10>338,157>9>155,157>10>83,159>9>158,159>10>338,160>9>158,160>10>96,162>9>161,162>10>338,164>9>163,164>10>338,167>9>166,167>10>273,172>9>171,172>10>273,175>9>174,175>10>228,176>9>174,176>10>4,178>9>177,178>10>183,180>9>179,180>10>76,185>9>184,185>10>618,187>9>186,187>10>512,188>9>186,188>10>618,189>9>186,189>10>611,191>9>190,191>10>7,192>9>190,192>10>2,193>9>190,193>10>762,195>9>194,195>10>190,'
  490. ..'197>9>196,197>10>620,198>9>196,198>10>633,199>9>196,199>10>608,200>9>196,200>10>186,202>9>201,202>10>512,203>9>201,203>10>551,204>9>201,204>10>241,207>9>205,207>10>201,211>9>210,211>10>338,212>9>210,212>10>261,229>9>228,229>10>338,231>9>230,231>10>208,232>9>230,232>10>452,233>9>230,233>10>685,235>9>234,235>10>545,236>9>234,236>10>208,237>9>234,237>10>474,239>9>238,239>10>630,240>9>238,240>10>609,242>9>241,242>10>186,243>9>241,243>10>209'
  491. ..',244>9>241,244>10>658,245>9>241,245>10>41,246>9>241,246>10>687,247>9>241,247>10>213,249>9>248,249>10>494,251>9>250,251>10>338,253>9>252,253>10>486,254>9>252,254>10>512,255>9>252,255>10>510,256>9>252,256>10>485,258>9>257,258>10>512,259>9>257,259>10>475,260>9>257,260>10>483,263>9>262,263>10>326,264>9>262,264>10>208,265>9>262,265>10>272,266>9>262,266>10>660,268>9>267,268>10>652,269>9>267,269>10>208,270>9>267,270>10>234,271>9>267,271>10>273'
  492. ..',274>9>273,274>10>474,275>9>273,275>10>234,276>9>273,276>10>695,277>9>273,277>10>652,278>9>273,278>10>470,279>9>273,279>10>168,280>9>273,280>10>456,281>9>273,281>10>95,282>9>273,282>10>76,283>9>273,283>10>661,284>9>273,284>10>748,285>9>273,285>10>539,286>9>273,286>10>784,287>9>273,287>10>773,288>9>273,288>10>593,289>9>273,289>10>591,290>9>273,290>10>768,291>9>273,291>10>642,292>9>273,292>10>751,293>9>273,293>10>581,294>9>273,294>10>646,'
  493. ..'295>9>273,295>10>173,296>9>273,296>10>578,297>9>273,297>10>747,298>9>273,298>10>774,299>9>273,299>10>693,300>9>273,300>10>749,301>9>273,301>10>170,302>9>273,302>10>56,303>9>273,303>10>750,304>9>273,304>10>746,305>9>273,305>10>165,306>9>273,306>10>744,307>9>273,307>10>11,308>9>273,308>10>315,309>9>273,309>10>584,310>9>273,310>10>785,311>9>273,311>10>781,312>9>273,312>10>780,313>9>273,313>10>169,314>9>273,314>10>55,317>9>316,317>10>320,31'
  494. ..'8>9>316,318>10>315,319>9>316,319>10>328,321>9>320,321>10>327,322>9>320,322>10>208,323>9>320,323>10>101,324>9>320,324>10>431,325>9>320,325>10>443,330>9>329,330>10>316,333>9>331,333>10>209,337>9>336,337>10>208,339>9>338,339>10>21,340>9>338,340>10>68,341>9>338,341>10>714,342>9>338,342>10>150,343>9>338,343>10>485,344>9>338,344>10>65,345>9>338,345>10>40,346>9>338,346>10>698,347>9>338,347>10>641,348>9>338,348>10>499,350>9>349,350>10>208,353>9'
  495. ..'>352,353>10>355,356>9>355,356>10>208,357>9>355,357>10>354,358>9>355,358>10>351,359>9>355,359>10>334,361>9>360,361>10>208,363>9>362,363>10>320,365>9>364,365>10>320,367>9>366,367>10>320,369>9>368,369>10>320,371>9>370,371>10>320,373>9>372,373>10>320,375>9>374,375>10>320,376>9>374,376>10>102,378>9>377,378>10>320,380>9>379,380>10>320,382>9>381,382>10>320,384>9>383,384>10>320,386>9>385,386>10>320,387>9>385,387>10>110,389>9>388,389>10>320,391>'
  496. ..'9>390,391>10>320,393>9>392,393>10>320,395>9>394,395>10>320,397>9>396,397>10>320,399>9>398,399>10>320,401>9>400,401>10>320,402>9>400,402>10>668,404>9>403,404>10>320,406>9>405,406>10>320,408>9>407,408>10>320,410>9>409,410>10>320,412>9>411,412>10>320,414>9>413,414>10>320,416>9>415,416>10>320,418>9>417,418>10>320,420>9>419,420>10>320,422>9>421,422>10>320,424>9>423,424>10>320,426>9>425,426>10>320,428>9>427,428>10>320,430>9>429,430>10>320,433'
  497. ..'>9>432,433>10>320,435>9>434,435>10>320,436>9>434,436>10>676,438>9>437,438>10>320,440>9>439,440>10>320,442>9>441,442>10>320,445>9>444,445>10>208,447>9>446,447>10>208,449>9>448,449>10>349,451>9>450,451>10>454,453>9>452,453>10>338,455>9>454,455>10>458,457>9>456,457>10>208,460>9>459,460>10>448,463>9>462,463>10>461,464>9>462,464>10>459,466>9>465,466>10>468,467>9>465,467>10>458,469>9>468,469>10>461,471>9>470,471>10>545,472>9>470,472>10>652,47'
  498. ..'3>9>470,473>10>234,476>9>475,476>10>338,478>9>477,478>10>338,479>9>477,479>10>261,481>9>480,481>10>338,482>9>480,482>10>261,484>9>483,484>10>338,487>9>486,487>10>338,489>9>488,489>10>512,490>9>488,490>10>338,492>9>491,492>10>338,493>9>491,493>10>512,495>9>494,495>10>338,497>9>496,497>10>338,498>9>496,498>10>248,501>9>500,501>10>338,503>9>502,503>10>338,505>9>504,505>10>338,506>9>504,506>10>257,508>9>507,508>10>338,509>9>507,509>10>248,5'
  499. ..'11>9>510,511>10>338,513>9>512,513>10>45,514>9>512,514>10>5,515>9>512,515>10>9,516>9>512,516>10>22,517>9>512,517>10>26,518>9>512,518>10>725,519>9>512,519>10>65,520>9>512,520>10>727,521>9>512,521>10>96,522>9>512,522>10>617,523>9>512,523>10>608,524>9>512,524>10>721,525>9>512,525>10>24,526>9>512,526>10>209,527>9>512,527>10>261,528>9>512,528>10>248,529>9>512,529>10>658,530>9>512,530>10>722,531>9>512,531>10>728,532>9>512,532>10>132,533>9>512,'
  500. ..'533>10>726,538>9>535,538>10>273,543>9>542,543>10>273,544>9>542,544>10>95,546>9>545,546>10>652,547>9>545,547>10>695,548>9>545,548>10>474,549>9>545,549>10>576,550>9>545,550>10>771,552>9>551,552>10>186,553>9>551,553>10>184,554>9>551,554>10>209,555>9>551,555>10>695,556>9>551,556>10>55,557>9>551,557>10>474,558>9>551,558>10>610,559>9>551,559>10>777,560>9>551,560>10>658,561>9>551,561>10>631,562>9>551,562>10>213,563>9>551,563>10>797,564>9>551,5'
  501. ..'64>10>693,566>9>565,566>10>474,567>9>565,567>10>609,568>9>565,568>10>95,570>9>569,570>10>95,571>9>569,571>10>609,573>9>572,573>10>610,574>9>572,574>10>474,575>9>572,575>10>55,577>9>576,577>10>579,582>9>581,582>10>598,583>9>581,583>10>580,585>9>584,585>10>596,587>9>586,587>10>606,588>9>586,588>10>579,589>9>586,589>10>604,590>9>586,590>10>273,592>9>591,592>10>545,595>9>594,595>10>76,597>9>596,597>10>545,600>9>599,600>10>183,602>9>601,602>'
  502. ..'10>273,603>9>601,603>10>596,605>9>604,605>10>576,607>9>606,607>10>576,612>9>611,612>10>633,615>9>614,615>10>613,616>9>614,616>10>608,619>9>618,619>10>630,621>9>620,621>10>639,623>9>622,623>10>630,624>9>622,624>10>569,626>9>625,626>10>630,627>9>625,627>10>610,628>9>625,628>10>609,629>9>625,629>10>184,632>9>631,632>10>630,634>9>633,634>10>639,635>9>633,635>10>786,638>9>636,638>10>617,645>9>642,645>10>646,648>9>647,648>10>512,650>9>649,650'
  503. ..'>10>702,651>9>649,651>10>512,653>9>652,653>10>208,655>9>654,655>10>174,656>9>654,656>10>795,657>9>654,657>10>762,659>9>658,659>10>798,662>9>661,662>10>208,663>9>661,663>10>652,664>9>661,664>10>685,666>9>665,666>10>208,667>9>665,667>10>273,669>9>668,669>10>208,671>9>670,671>10>208,672>9>670,672>10>413,674>9>673,674>10>208,675>9>673,675>10>425,677>9>676,677>10>208,679>9>678,679>10>208,680>9>678,680>10>411,682>9>681,682>10>320,684>9>683,68'
  504. ..'4>10>320,686>9>685,686>10>338,688>9>687,688>10>452,689>9>687,689>10>685,691>9>690,691>10>551,692>9>690,692>10>273,694>9>693,694>10>685,696>9>695,696>10>652,697>9>695,697>10>685,700>9>699,700>10>338,701>9>699,701>10>737,703>9>702,703>10>729,704>9>702,704>10>725,705>9>702,705>10>338,706>9>702,706>10>727,707>9>702,707>10>722,708>9>702,708>10>723,709>9>702,709>10>721,710>9>702,710>10>726,711>9>702,711>10>728,713>9>712,713>10>338,716>9>715,7'
  505. ..'16>10>512,717>9>715,717>10>338,719>9>718,719>10>338,720>9>718,720>10>512,724>9>723,724>10>512,730>9>729,730>10>647,732>9>731,732>10>698,734>9>733,734>10>714,736>9>735,736>10>712,739>9>738,739>10>338,741>9>740,741>10>338,743>9>742,743>10>338,745>9>744,745>10>569,753>9>752,753>10>273,755>9>754,755>10>695,756>9>754,756>10>609,757>9>754,757>10>744,759>9>758,759>10>695,760>9>758,760>10>797,761>9>758,761>10>693,764>9>763,764>10>273,767>9>765,'
  506. ..'767>10>774,772>9>771,772>10>646,775>9>774,775>10>545,776>9>774,776>10>646,778>9>777,778>10>800,779>9>777,779>10>798,787>9>786,787>10>608,788>9>786,788>10>640,789>9>786,789>10>658,791>9>790,791>10>326,792>9>790,792>10>470,793>9>790,793>10>272,794>9>790,794>10>660,796>9>795,796>10>190,799>9>798,799>10>630,801>9>800,801>10>630,802>9>800,802>10>797,803>9>800,803>10>609,805>9>804,805>10>633,806>9>804,806>10>658,808>9>807,808>10>786;2;n;1|2:2'
  507. ..'|3:3|4:4|5:5|6:6|2:2|2:2;n;3|7:7|8:8;p;1|2:2|3:3|4:9|5:5|6:10|2:2|2:2;1|2:2|3:3|4:11|5:5|6:12|2:2|2:2;n;3|7:13|8:14;p;1|2:15|11:16|4:17|5:18|6:19|2:15|2:15;n;3|7:7|8:20;p;1|2:15|11:16|4:21|5:18|6:22|2:15|2:15;n;3|7:13|8:23;p;1|2:2|3:3|4:24|5:5|6:25|2:2|2:2;n;3|7:26|8:27;4|7:28|8:29;p;1|2:2|3:3|4:30|5:18|6:31|2:2|2:2;n;4|7:32|8:33;3|7:34|8:35;3|7:34|8:36;3|7:37|8:38;3|7:37|8:39;3|7:37|8:40;p;1|2:2|3:3|4:41|5:18|6:42|2:2|2:2;1|2:2|3:3|4:4'
  508. ..'3|5:5|6:12|2:2|2:2;n;3|7:13|8:44;p;1|2:2|3:3|4:45|5:5|6:12|2:2|2:2;n;3|7:13|8:46;p;1|2:2|3:3|4:47|5:5|6:12|2:2|2:2;n;3|7:13|8:48;p;1|2:15|11:16|4:49|5:18|6:22|2:15|2:15;n;3|7:13|8:50;3|7:51|8:52;p;1|2:15|11:16|4:53|5:18|6:22|2:15|2:15;n;3|7:13|8:54;3|7:51|8:55;p;1|2:15|11:16|4:56|5:18|6:22|2:15|2:15;n;3|7:13|8:57;3|7:51|8:58;p;1|2:2|3:3|4:59|5:5|6:60|2:2|2:2;n;3|7:13|8:61;3|7:51|8:62;p;1|2:2|3:3|4:63|5:18|6:64|2:2|2:2;1|2:2|3:3|4:65|5:6'
  509. ..'6|6:67|2:2|2:2;n;3|7:68|8:69;p;1|2:2|3:3|4:70|5:18|6:64|2:2|2:2;n;3|7:71|8:72;p;1|2:2|3:3|4:73|5:66|6:74|2:2|2:2;n;3|7:68|8:75;p;1|4:76|5:18|6:64|12:77;n;3|7:71|8:78;p;1|4:79|5:18|6:64|12:77;n;3|7:71|8:80;p;5|2:81|3:3|4:82|5:5|6:83|2:81|2:81;n;3|7:71|8:84;p;1|4:85|5:18|6:64|12:77;n;3|7:71|8:86;p;1|2:2|3:3|4:87|5:18|6:88|2:2|2:2;1|2:89|3:3|4:90|5:18|6:91|2:89|2:89;n;3|7:26|8:92;p;1|2:2|3:3|4:93|5:18|6:64|2:2|2:2;n;3|7:71|8:94;p;1|2:2|3:3'
  510. ..'|4:95|5:18|6:64|2:2|2:2;n;3|7:71|8:96;p;1|2:2|3:3|4:97|5:66|6:98|2:2|2:2;n;3|7:68|8:99;3|7:100|8:101;p;1|2:2|3:3|4:102|5:66|6:98|2:2|2:2;1|4:103|5:18|6:64|12:77;n;3|7:71|8:78;p;1|2:2|3:3|4:104|5:66|6:105|2:2|2:2;5|2:81|3:3|4:106|5:5|6:83|2:81|2:81;n;3|7:71|8:107;p;5|2:81|3:3|4:108|5:5|6:83|2:81|2:81;n;3|7:71|8:109;p;6|2:2|3:3|4:110|5:111|6:112|13:113|2:2|2:2;n;3|7:114|8:115;3|7:114|8:116;p;1|2:2|3:3|4:117|5:18|6:118|2:2|2:2;n;3|7:37|8:1'
  511. ..'19;3|7:37|8:120;3|7:37|8:121;p;1|2:2|3:3|4:122|5:66|6:123|2:2|2:2;n;3|7:34|8:124;3|7:37|8:125;p;1|2:2|3:3|4:126|5:5|6:127|2:2|2:2;n;3|7:128|8:129;3|7:71|8:130;p;1|2:2|3:3|4:131|5:5|6:127|2:2|2:2;n;3|7:128|8:132;3|7:71|8:133;3|7:71|8:134;p;1|2:2|3:3|4:135|5:5|6:127|2:2|2:2;n;3|7:128|8:136;3|7:71|8:137;3|7:71|8:138;3|7:71|8:139;p;1|2:2|3:3|4:140|5:66|6:141|2:2|2:2;1|2:2|3:3|4:142|5:5|6:127|2:2|2:2;n;3|7:71|8:143;p;1|2:89|3:3|4:144|5:18|6:'
  512. ..'145|2:89|2:89;n;3|7:34|8:146;3|7:37|8:147;p;6|2:89|4:148|5:18|6:149|2:89|2:89;1|2:89|3:3|4:150|5:18|6:145|2:89|2:89;n;3|7:34|8:151;p;1|2:89|3:3|4:152|5:18|6:145|2:89|2:89;n;3|7:34|8:153;3|7:37|8:154;p;1|2:89|3:3|4:155|5:18|6:145|2:89|2:89;n;3|7:34|8:156;3|7:37|8:157;p;1|2:89|3:3|4:158|5:18|6:145|2:89|2:89;n;3|7:34|8:159;p;1|2:89|3:3|4:160|5:5|6:161|2:89|2:89;n;3|7:71|8:162;p;1|2:89|3:3|4:163|5:18|6:164|2:89|2:89;n;3|7:71|8:165;p;6|2:89|'
  513. ..'4:166|5:18|6:149|2:89|2:89;n;3|7:13|8:167;p;1|2:89|3:3|4:168|5:18|6:164|2:89|2:89;n;3|7:71|8:169;p;6|2:89|4:170|5:18|6:149|2:89|2:89;n;3|7:13|8:171;p;1|2:89|3:3|4:172|5:18|6:164|2:89|2:89;n;3|7:71|8:173;p;1|2:2|3:3|4:174|5:18|6:175|2:2|2:2;n;3|7:176|8:177;3|7:178|8:179;p;1|2:2|3:3|4:180|5:18|6:181|2:2|2:2;n;3|7:7|8:182;p;1|2:2|3:3|4:183|5:18|6:181|2:2|2:2;n;3|7:7|8:184;3|7:185|8:186;p;1|2:2|3:3|4:187|5:66|6:98|2:2|2:2;n;3|7:68|8:188;p;1'
  514. ..'|2:2|3:3|4:189|5:18|6:181|2:2|2:2;n;3|7:7|8:190;p;1|2:2|3:3|4:191|5:18|6:181|2:2|2:2;n;3|7:7|8:192;3|7:185|8:193;p;1|2:2|3:3|4:194|5:18|6:181|2:2|2:2;n;3|7:7|8:195;p;1|2:2|3:3|4:196|5:18|6:181|2:2|2:2;n;3|7:7|8:197;p;1|2:2|3:3|4:198|5:18|6:181|2:2|2:2;n;3|7:7|8:199;3|7:185|8:200;p;1|2:2|3:3|4:201|5:18|6:181|2:2|2:2;n;3|7:7|8:202;p;1|2:2|3:3|4:203|5:66|6:105|2:2|2:2;n;3|7:34|8:204;p;1|2:2|3:3|4:205|5:66|6:105|2:2|2:2;1|2:2|3:3|4:206|5:66'
  515. ..'|6:105|2:2|2:2;n;3|7:34|8:207;p;5|2:81|3:3|4:208|5:5|6:83|2:81|2:81;n;3|7:71|8:209;p;1|2:81|3:3|4:210|5:18|6:181|14:211|2:81|2:81;n;3|7:7|8:212;3|7:185|8:213;p;1|2:81|3:3|4:214|5:18|6:181|14:211|2:81|2:81;n;3|7:7|8:215;3|7:185|8:213;p;1|2:81|3:3|4:216|5:18|6:181|14:211|2:81|2:81;n;3|7:7|8:217;p;1|2:81|3:3|4:218|5:18|6:181|14:211|2:81|2:81;n;3|7:7|8:219;p;1|2:2|3:3|4:220|5:66|6:221|2:2|2:2;1|2:2|3:3|4:222|5:66|6:223|2:2|2:2;n;3|7:178|8:2'
  516. ..'24;p;1|2:2|3:3|4:225|5:66|6:226|2:2|2:2;1|2:2|3:3|4:227|5:66|6:228|2:2|2:2;1|2:2|3:3|4:229|5:66|6:230|2:2|2:2;1|2:2|3:3|4:231|5:66|6:232|2:2|2:2;n;3|7:34|8:233;p;1|2:2|3:3|4:234|5:66|6:235|2:2|2:2;1|2:2|3:3|4:236|5:66|6:237|2:2|2:2;n;3|7:34|8:238;3|7:37|8:239;p;1|2:2|3:3|4:240|5:66|6:241|2:2|2:2;n;3|7:128|8:242;p;1|2:2|3:3|4:243|5:66|6:241|2:2|2:2;n;3|7:71|8:244;p;1|2:15|11:245|4:246|5:18|6:247|12:77|2:15|2:15;1|2:2|3:3|4:248|5:18|6:164'
  517. ..'|2:2|2:2;1|2:2|3:3|4:249|5:66|6:250|2:2|2:2;1|2:2|3:3|4:251|5:66|6:145|2:2|2:2;n;3|7:37|8:252;p;1|2:2|3:3|4:253|5:5|6:254|2:2|2:2;n;3|7:34|8:255;3|7:37|8:256;3|7:37|8:257;p;1|2:2|3:3|4:258|5:66|6:259|2:2|2:2;n;3|7:71|8:260;3|7:71|8:261;3|7:71|8:262;p;1|2:15|11:16|4:263|5:66|6:264|2:15|2:15;n;3|7:185|8:265;p;1|2:15|11:16|4:266|5:18|6:6|2:15|2:15;n;3|7:185|8:267;3|7:185|8:268;3|7:7|8:269;3|7:7|8:270;p;1|2:2|3:3|4:271|5:18|6:272|2:2|2:2;n;'
  518. ..'3|7:34|8:273;3|7:34|8:274;3|7:34|8:275;p;6|4:276|5:5|6:277;n;7|15:278;3|7:34|8:279;p;1|2:2|3:3|4:280|5:18|6:281|2:2|2:2;1|2:2|3:3|4:282|5:18|6:272|2:2|2:2;1|2:81|3:3|4:283|5:18|6:181|14:211|2:81|2:81;n;3|7:7|8:284;3|7:185|8:285;p;8|1:286|16:287|4:288|5:289|6:290|17:291|13:291|12:77|18:292|19:293;n;9|1:294|20:295;10|1:296;10|1:297;n;11|1:296;n;12|1:298|4:299|6:300|21:301|22:302|23:211|24:291;n;13|1:303|4:304|6:305|21:306|24:291|25:307|26'
  519. ..':308;13|1:309|6:305|21:306|24:291|25:310|26:308;13|1:311|4:312|6:313|21:301|24:291|25:314|26:308;14|1:315|4:316|6:317|21:308|24:291|25:318|26:301;13|1:319|4:320|6:313|21:306|24:291|25:321|26:308;13|1:322|4:323|6:305|21:306|24:291|25:324|26:308;p;p;p;9|1:325|20:314;15|4:326|27:327;16|28:327|29:328;p;6|2:2|3:3|4:329|5:330|6:112|13:113|2:2|2:2;n;3|7:114|8:331;p;1|2:2|3:3|4:332|5:66|6:333|2:2|2:2;n;3|7:26|8:334;3|7:335|8:336;3|7:335|8:337;p'
  520. ..';6|2:2|3:3|4:338|5:339|6:340|17:291|2:2|2:2;n;4|7:341|8:342;4|7:341|8:343;4|7:341|8:344;p;1|2:2|3:3|4:345|5:66|6:346|2:2|2:2;n;3|7:185|8:347;3|7:7|8:348;p;1|2:2|3:3|4:349|5:66|6:350|2:2|2:2;n;3|7:37|8:351;3|7:37|8:352;3|7:37|8:353;3|7:34|8:354;3|7:34|8:355;4|7:37|8:356;p;1|2:2|3:3|4:357|5:5|6:127|2:2|2:2;n;3|7:71|8:358;p;1|2:2|3:3|4:359|5:66|6:105|2:2|2:2;n;3|7:34|8:360;p;1|2:2|3:3|4:361|5:5|6:127|2:2|2:2;n;3|7:71|8:362;3|7:128|8:363;3|'
  521. ..'7:71|8:364;3|7:71|8:365;p;1|2:2|3:3|4:366|5:5|6:127|2:2|2:2;n;3|7:128|8:367;3|7:71|8:368;3|7:71|8:369;p;1|2:2|3:3|4:370|5:5|6:127|2:2|2:2;1|2:2|3:3|4:371|5:66|6:372|17:291|2:2|2:2;n;3|7:37|8:373;4|7:341|8:374;3|7:37|8:375;3|7:37|8:376;p;1|2:2|3:3|4:377|5:66|6:333|2:2|2:2;n;4|7:378|8:379;3|7:26|8:380;4|7:378|8:381;3|7:335|8:382;p;1|2:2|3:3|4:383|5:5|6:384|2:2|2:2;1|2:2|3:3|4:385|5:18|6:386|2:2|2:2;n;3|7:37|8:387;4|7:388|8:389;3|7:37|8:39'
  522. ..'0;4|7:388|8:391;3|7:37|8:392;3|7:37|8:393;3|7:34|8:394;3|7:37|8:395;3|7:37|8:396;3|7:34|8:397;3|7:37|8:398;4|7:37|8:399;3|7:37|8:400;3|7:37|8:401;3|7:37|8:402;3|7:37|8:403;3|7:37|8:404;3|7:37|8:405;3|7:37|8:406;3|7:37|8:407;3|7:37|8:408;3|7:37|8:409;3|7:37|8:410;3|7:37|8:411;3|7:37|8:412;3|7:37|8:413;3|7:37|8:414;3|7:37|8:415;3|7:34|8:416;3|7:37|8:417;3|7:37|8:418;3|7:37|8:419;3|7:37|8:420;3|7:34|8:421;3|7:34|8:422;3|7:37|8:423;3|7:37|8'
  523. ..':424;3|7:37|8:425;3|7:37|8:426;3|7:37|8:427;3|7:37|8:428;p;1|2:89|3:3|4:429|5:18|6:430|2:89|2:89;1|2:89|3:3|4:431|5:18|6:432|2:89|2:89;n;3|7:13|8:433;3|7:51|8:434;3|7:51|8:435;p;1|2:89|3:3|4:436|5:18|6:437|2:89|2:89;n;3|7:37|8:438;3|7:34|8:439;3|7:37|8:440;3|7:37|8:441;3|7:37|8:442;p;1|2:443|3:444|4:445|5:18|6:446|2:443|2:443;1|2:443|3:444|4:447|5:18|6:83|2:443|2:443;6|2:89|4:448|5:18|6:430|2:89|2:89;6|2:89|4:449|5:5|6:430|2:89|2:89;n;3'
  524. ..'|7:34|8:450;p;6|4:451|5:18|6:277;n;7|15:452;3|7:34|8:453;p;6|4:454|5:289|6:455;n;7|15:452;p;5|2:81|3:3|4:456|5:66|6:457|2:81|2:81;n;3|7:71|8:458;p;1|2:2|3:3|4:459|5:18|6:460|30:291|2:2|2:2;n;3|7:37|8:461;3|7:37|8:462;3|7:37|8:463;3|7:37|8:464;3|7:37|8:465;3|7:37|8:466;3|7:37|8:467;3|7:37|8:468;3|7:37|8:469;3|7:37|8:470;p;1|2:2|3:3|4:471|5:18|6:472|2:2|2:2;n;3|7:71|8:473;p;1|2:89|3:3|4:474|5:18|6:475|2:89|2:89;1|2:89|3:3|4:476|5:18|6:477'
  525. ..'|2:89|2:89;n;3|7:34|8:478;p;1|2:89|3:3|4:479|5:18|6:477|2:89|2:89;1|2:89|3:3|4:480|5:66|6:481|2:89|2:89;n;3|7:34|8:482;3|7:37|8:483;3|7:37|8:484;3|7:37|8:485;p;1|2:89|3:3|4:486|5:18|6:487|14:211|2:89|2:89;n;3|7:34|8:488;p;1|2:89|3:3|4:489|5:5|6:161|2:89|2:89;n;3|7:71|8:490;p;1|2:89|3:3|4:491|5:289|6:492|2:89|2:89;n;3|7:71|8:493;p;1|2:443|3:444|4:494|5:18|6:83|2:443|2:443;n;3|7:71|8:495;p;1|2:89|3:3|4:496|5:289|6:492|2:89|2:89;n;3|7:71|8'
  526. ..':497;p;1|2:89|3:3|4:498|5:5|6:161|2:89|2:89;n;3|7:71|8:499;p;1|2:89|3:3|4:500|5:5|6:161|2:89|2:89;n;3|7:71|8:501;p;6|2:89|4:502|5:18|6:149|2:89|2:89;n;3|7:13|8:503;3|7:13|8:504;p;1|2:89|3:3|4:505|5:289|6:492|2:89|2:89;n;3|7:71|8:506;p;1|2:89|3:3|4:507|5:5|6:161|2:89|2:89;n;3|7:71|8:508;p;1|2:443|3:444|4:509|5:18|6:83|2:443|2:443;n;3|7:71|8:510;p;1|2:89|3:3|4:511|5:5|6:161|2:89|2:89;n;3|7:71|8:512;p;6|2:89|4:513|5:18|6:149|2:89|2:89;n;3|'
  527. ..'7:13|8:514;3|7:13|8:515;p;1|2:89|3:3|4:516|5:289|6:492|2:89|2:89;n;3|7:71|8:517;p;1|2:89|3:3|4:518|5:5|6:161|2:89|2:89;n;3|7:71|8:519;p;1|2:443|3:444|4:520|5:18|6:83|2:443|2:443;n;3|7:71|8:521;p;1|2:89|3:3|4:522|5:5|6:161|2:89|2:89;n;3|7:71|8:523;p;1|2:89|3:3|4:524|5:18|6:164|2:89|2:89;n;3|7:71|8:525;p;1|2:89|3:3|4:526|5:5|6:164|2:89|2:89;n;3|7:71|8:527;p;6|2:89|4:528|5:5|6:149|2:89|2:89;n;3|7:13|8:529;3|7:13|8:530;p;1|2:89|3:3|4:531|5:'
  528. ..'5|6:164|2:89|2:89;n;3|7:71|8:532;p;1|2:89|3:3|4:533|5:5|6:161|2:89|2:89;n;3|7:71|8:534;p;1|2:443|3:444|4:535|5:18|6:83|2:443|2:443;n;3|7:71|8:536;p;1|2:89|3:3|4:537|5:5|6:161|2:89|2:89;n;3|7:71|8:538;p;6|2:89|4:539|5:5|6:149|2:89|2:89;n;3|7:13|8:540;p;6|2:89|4:541|5:5|6:149|2:89|2:89;n;3|7:13|8:542;p;1|2:89|3:3|4:543|5:5|6:164|2:89|2:89;n;3|7:71|8:544;p;1|2:89|3:3|4:545|5:5|6:161|2:89|2:89;n;3|7:71|8:546;p;1|2:443|3:444|4:547|5:18|6:83|'
  529. ..'2:443|2:443;n;3|7:71|8:548;p;1|2:89|3:3|4:549|5:5|6:161|2:89|2:89;n;3|7:71|8:550;p;1|2:89|3:3|4:551|5:5|6:164|2:89|2:89;n;3|7:71|8:552;p;6|2:89|4:553|5:5|6:149|2:89|2:89;n;3|7:13|8:554;p;1|2:89|3:3|4:555|5:5|6:164|2:89|2:89;n;3|7:71|8:556;p;1|2:89|3:3|4:557|5:5|6:161|2:89|2:89;n;3|7:71|8:558;p;1|2:443|3:444|4:559|5:18|6:83|2:443|2:443;1|2:89|3:3|4:560|5:5|6:161|2:89|2:89;n;3|7:71|8:561;p;6|2:89|4:562|5:5|6:149|2:89|2:89;n;3|7:13|8:563;3'
  530. ..'|7:13|8:564;p;1|2:89|3:3|4:565|5:5|6:164|2:89|2:89;n;3|7:71|8:566;p;1|2:89|3:3|4:567|5:5|6:161|2:89|2:89;n;3|7:71|8:568;p;1|2:443|3:444|4:569|5:18|6:83|2:443|2:443;n;3|7:71|8:570;p;1|2:89|3:3|4:571|5:5|6:161|2:89|2:89;1|2:89|3:3|4:572|5:18|6:573|14:211|2:89|2:89;n;3|7:13|8:574;p;1|2:89|3:3|4:575|5:18|6:487|14:211|2:89|2:89;n;3|7:34|8:576;p;1|2:2|3:3|4:577|5:18|6:578|2:2|2:2;n;3|7:71|8:579;p;1|2:2|3:3|4:580|5:18|6:581|2:2|2:2;n;3|7:71|8:'
  531. ..'582;p;1|2:2|3:3|4:583|5:66|6:123|2:2|2:2;n;4|7:584|8:585;p;1|2:2|3:3|4:586|5:18|6:587|2:2|2:2;n;3|7:71|8:588;p;1|2:2|3:3|4:589|5:66|6:590|2:2|2:2;n;3|7:26|8:591;p;1|2:2|3:3|4:592|5:18|6:593|2:2|2:2;1|2:2|3:3|4:594|5:18|6:595|2:2|2:2;n;3|7:71|8:596;p;1|2:2|3:3|4:597|5:18|6:598|2:2|2:2;1|2:2|3:3|4:599|5:18|6:600|2:2|2:2;n;3|7:128|8:601;3|7:71|8:602;p;1|2:2|3:3|4:603|5:18|6:604|2:2|2:2;n;3|7:71|8:605;3|7:128|8:606;p;1|2:2|3:3|4:607|5:18|6:'
  532. ..'608|2:2|2:2;n;3|7:71|8:609;p;1|2:2|3:3|4:610|5:66|6:611|2:2|2:2;n;3|7:176|8:612;4|7:378|8:613;4|7:378|8:614;p;1|2:2|3:3|4:615|5:18|6:616|2:2|2:2;1|2:2|3:3|4:617|5:18|6:181|2:2|2:2;n;3|7:7|8:618;p;1|2:2|3:3|4:619|5:18|6:181|2:2|2:2;n;3|7:7|8:620;3|7:185|8:621;p;1|2:2|3:3|4:622|5:18|6:181|2:2|2:2;n;3|7:7|8:623;3|7:185|8:624;p;1|2:2|3:3|4:625|5:18|6:181|2:2|2:2;n;3|7:7|8:626;p;1|2:2|3:3|4:627|5:18|6:181|2:2|2:2;1|2:2|3:3|4:628|5:18|6:181|2'
  533. ..':2|2:2;n;3|7:7|8:629;p;1|2:2|3:3|4:630|5:66|6:98|2:2|2:2;n;3|7:100|8:631;3|7:68|8:632;p;1|2:2|3:3|4:633|5:66|6:74|2:2|2:2;n;3|7:68|8:634;3|7:100|8:635;p;1|2:2|3:3|4:636|5:18|6:181|2:2|2:2;n;3|7:7|8:637;p;1|2:2|3:3|4:638|5:18|6:181|2:2|2:2;n;3|7:7|8:639;3|7:185|8:640;p;1|2:2|3:3|4:641|5:66|6:105|2:2|2:2;1|2:2|3:3|4:642|5:66|6:105|2:2|2:2;n;3|7:34|8:643;p;1|2:2|3:3|4:644|5:66|6:105|2:2|2:2;n;3|7:34|8:645;p;1|2:81|3:3|4:646|5:18|6:181|14:2'
  534. ..'11|2:81|2:81;n;3|7:7|8:647;3|7:185|8:648;p;1|2:81|3:3|4:649|5:18|6:181|14:211|2:81|2:81;n;3|7:7|8:650;3|7:185|8:651;p;1|2:81|3:3|4:652|5:18|6:181|14:211|2:81|2:81;n;3|7:7|8:653;p;1|2:2|3:3|4:654|5:18|6:460|2:2|2:2;n;3|7:34|8:655;3|7:34|8:656;3|7:34|8:657;3|7:34|8:658;3|7:34|8:659;3|7:34|8:660;3|7:34|8:661;3|7:34|8:662;3|7:34|8:663;3|7:37|8:664;3|7:37|8:665;3|7:34|8:666;3|7:34|8:667;3|7:37|8:668;3|7:34|8:669;3|7:34|8:670;3|7:37|8:671;3|7'
  535. ..':34|8:672;3|7:34|8:673;3|7:34|8:674;3|7:34|8:675;p;2|1:676;n;1|1:677|2:678|11:302|4:679|5:18|6:680|13:291|31:291|12:77|2:678|2:678;n;17;10;4|7:681|8:682;p;1|1:677|2:683|11:302|4:684|5:18|6:680|13:291|31:291|12:77|2:683|2:683;n;17;10;p;1|1:685|2:81|4:686|5:66|6:687|32:291|12:77|2:81|2:81;n;3|7:178|8:688;4|7:32|8:689;p;p;1|2:2|3:3|4:690|5:66|6:691|2:2|2:2;n;4|7:692|8:693;3|7:71|8:694;3|7:71|8:695;3|7:71|8:696;3|7:71|8:697;p;1|2:2|3:3|4:69'
  536. ..'8|5:66|6:699|2:2|2:2;n;3|7:128|8:700;3|7:128|8:701;3|7:128|8:702;3|7:71|8:703;3|7:71|8:704;3|7:71|8:705;3|7:128|8:706;3|7:128|8:707;3|7:128|8:708;3|7:128|8:709;4|7:128|8:710;3|7:128|8:711;3|7:71|8:712;p;1|2:2|3:3|4:713|5:66|6:714|2:2|2:2;n;3|7:71|8:715;3|7:128|8:716;3|7:71|8:717;p;1|2:2|3:3|4:718|5:66|6:719|2:2|2:2;n;3|7:71|8:720;3|7:128|8:721;p;1|2:2|3:3|4:722|5:66|6:723|2:2|2:2;n;3|7:128|8:724;3|7:71|8:725;3|7:71|8:726;p;1|2:2|3:3|4:7'
  537. ..'27|5:18|6:728|2:2|2:2;n;3|7:71|8:729;p;1|2:2|3:3|4:730|5:18|6:731|2:2|2:2;1|2:2|3:3|4:732|5:18|6:733|2:2|2:2;1|2:734|4:735|5:18|6:736|12:77|2:734|2:734;1|2:2|3:3|4:737|5:18|6:738|2:2|2:2;n;3|7:37|8:739;3|7:37|8:740;p;1|2:2|3:3|4:741|5:18|6:742|2:2|2:2;n;3|7:185|8:743;p;1|2:2|3:3|4:744|5:18|6:728|2:2|2:2;n;3|7:128|8:745;3|7:128|8:746;3|7:128|8:747;3|7:71|8:748;p;1|2:2|3:3|4:749|5:66|6:141|2:2|2:2;n;3|7:176|8:750;p;1|2:2|3:3|4:751|5:18|6:'
  538. ..'752|2:2|2:2;1|2:2|3:3|4:753|5:18|6:164|2:2|2:2;n;3|7:71|8:754;p;1|2:2|3:3|4:755|5:18|6:756|2:2|2:2;n;3|7:37|8:757;p;1|2:2|3:3|4:758|5:18|6:759|2:2|2:2;1|2:2|3:3|4:760|5:66|6:161|2:2|2:2;n;3|7:71|8:761;p;1|2:762|11:245|4:763|5:66|6:764|14:211|2:762|2:762;n;3|7:7|8:765;3|7:185|8:766;p;1|2:2|3:3|4:767|5:18|6:768|2:2|2:2;n;3|7:185|8:769;p;1|2:762|11:245|4:770|5:66|6:771|14:211|2:762|2:762;n;3|7:185|8:772;p;1|2:2|3:3|4:773|5:66|6:774|2:2|2:2'
  539. ..';1|2:2|3:3|4:775|5:66|6:776|2:2|2:2;1|2:2|3:3|4:777|5:5|6:254|2:2|2:2;1|2:2|3:3|4:778|5:5|6:181|2:2|2:2;n;3|7:185|8:779;p;1|2:2|3:3|4:780|5:18|6:781|2:2|2:2;1|2:15|11:16|4:782|5:66|6:264|2:15|2:15;n;3|7:185|8:783;3|7:7|8:784;p;1|2:2|3:3|4:785|5:18|6:786|2:2|2:2;1|2:2|3:3|4:787|5:289|6:181|2:2|2:2;n;3|7:185|8:788;p;1|2:2|3:3|4:789|5:18|6:790|2:2|2:2;n;4|7:584|8:791;p;1|2:2|3:3|4:792|5:66|6:793|2:2|2:2;n;3|7:176|8:794;3|7:178|8:795;p;1|2:'
  540. ..'2|3:3|4:796|5:18|6:797|2:2|2:2;n;3|7:185|8:798;3|7:7|8:799;3|7:7|8:800;3|7:7|8:801;p;1|2:2|3:3|4:802|5:66|6:803|2:2|2:2;1|2:2|3:3|4:804|5:66|6:805|2:2|2:2;n;3|7:176|8:806;p;1|2:2|3:3|4:807|5:18|6:808|2:2|2:2;n;4|7:32|8:809;3|7:71|8:810;p;6|4:811|5:66|6:277;n;7|15:812;3|7:34|8:813;p;1|2:2|3:3|4:814|5:18|6:815|14:211|31:291|30:291|2:2|2:2;1|2:2|3:3|4:816|5:18|6:817|2:2|2:2;5|2:81|3:3|4:818|5:18|6:83|2:81|2:81;1|1:677|2:683|4:819|5:66|6:68'
  541. ..'0|31:291|12:77|2:683|2:683;n;17;10;4|7:820|8:821;p;1|1:685|2:2|3:3|4:822|5:66|6:823|32:291|2:2|2:2;1|2:2|3:3|4:824|5:18|6:825|2:2|2:2;n;3|7:37|8:826;p;1|2:2|3:3|4:827|5:5|6:60|2:2|2:2;n;3|7:13|8:828;3|7:51|8:829;p;6|2:2|3:3|4:830|5:831|6:340|17:291|2:2|2:2;n;4|7:341|8:832;p;1|2:2|3:3|4:833|5:5|6:10|2:2|2:2;n;3|7:34|8:834;3|7:37|8:835;3|7:37|8:836;p;1|2:2|3:3|4:837|5:5|6:254|2:2|2:2;n;3|7:37|8:838;p;1|2:2|3:3|4:839|5:5|6:384|2:2|2:2;1|2:'
  542. ..'2|3:3|4:840|5:5|6:25|2:2|2:2;n;3|7:26|8:841;4|7:28|8:842;3|7:335|8:843;p;1|2:89|3:3|4:844|5:18|6:845|2:89|2:89;n;3|7:26|8:846;3|7:335|8:847;p;1|2:89|3:3|4:848|5:18|6:145|2:89|2:89;n;3|7:34|8:849;p;1|2:89|3:3|4:850|5:18|6:145|2:89|2:89;n;3|7:34|8:851;3|7:37|8:852;p;1|2:89|3:3|4:853|5:18|6:145|2:89|2:89;n;3|7:34|8:854;3|7:37|8:855;p;1|2:89|3:3|4:856|5:18|6:145|2:89|2:89;n;3|7:34|8:857;p;1|2:89|3:3|4:858|5:18|6:145|2:89|2:89;n;3|7:34|8:859'
  543. ..';3|7:37|8:860;p;1|2:89|3:3|4:861|5:5|6:164|2:89|2:89;n;3|7:71|8:862;p;1|2:89|3:3|4:863|5:5|6:164|2:89|2:89;n;3|7:71|8:864;p;1|2:2|3:3|4:865|5:18|6:31|2:2|2:2;n;4|7:32|8:866;p;1|2:2|3:3|4:867|5:66|6:67|2:2|2:2;n;3|7:68|8:868;3|7:68|8:869;p;1|2:2|3:3|4:870|5:18|6:175|2:2|2:2;n;3|7:176|8:871;3|7:178|8:872;p;1|2:2|3:3|4:873|5:18|6:88|2:2|2:2;n;3|7:178|8:874;p;1|2:2|3:3|4:875|5:18|6:616|2:2|2:2;n;4|7:876|8:877;3|7:178|8:878;p;1|2:2|3:3|4:879'
  544. ..'|5:18|6:64|2:2|2:2;1|2:2|3:3|4:880|5:18|6:64|2:2|2:2;n;3|7:71|8:881;3|7:128|8:882;p;1|2:2|3:3|4:883|5:18|6:42|2:2|2:2;n;3|7:37|8:884;3|7:37|8:885;3|7:34|8:886;3|7:37|8:887;3|7:37|8:888;3|7:37|8:889;3|7:37|8:890;3|7:37|8:891;3|7:37|8:892;p;1|2:2|3:3|4:893|5:18|6:64|2:2|2:2;n;3|7:71|8:894;p;1|2:2|3:3|4:895|5:18|6:64|2:2|2:2;1|2:2|3:3|4:896|5:66|6:98|2:2|2:2;n;3|7:100|8:897;3|7:68|8:898;p;1|2:2|3:3|4:899|5:66|6:98|2:2|2:2;n;3|7:68|8:900;3|'
  545. ..'7:100|8:901;p;1|2:2|3:3|4:902|5:5|6:12|2:2|2:2;1|2:2|3:3|4:903|5:5|6:12|2:2|2:2;1|2:2|3:3|4:904|5:5|6:12|2:2|2:2;n;3|7:51|8:905;p;1|2:2|3:3|4:906|5:5|6:12|2:2|2:2;1|2:15|11:16|4:907|5:18|6:22|2:15|2:15;1|2:15|11:16|4:908|5:18|6:22|2:15|2:15;1|2:15|11:16|4:909|5:18|6:22|2:15|2:15;1|2:15|11:16|4:910|5:18|6:825|2:15|2:15;n;3|7:37|8:911;p;1|4:912|5:18|6:64|12:77;n;3|7:71|8:913;p;1|4:914|5:18|6:64|12:77;n;3|7:71|8:915;p;1|4:916|5:18|6:64|12:'
  546. ..'77;n;3|7:71|8:86;p;1|4:917|5:18|6:64|12:77;5|2:81|3:3|4:918|5:18|6:83|2:81|2:81;n;3|7:71|8:919;p;5|2:81|3:3|4:920|5:18|6:83|2:81|2:81;n;3|7:71|8:921;p;5|2:81|3:3|4:922|5:18|6:83|2:81|2:81;n;3|7:71|8:923;p;1|2:2|3:3|4:924|5:66|6:141|2:2|2:2;n;3|7:176|8:925;p;1|2:2|3:3|4:926|5:66|6:223|2:2|2:2;1|2:2|3:3|4:927|5:66|6:235|2:2|2:2;1|2:2|3:3|4:928|5:66|6:232|2:2|2:2;1|2:2|3:3|4:929|5:66|6:221|2:2|2:2;1|2:2|3:3|4:930|5:66|6:228|2:2|2:2;1|2:2|3'
  547. ..':3|4:931|5:66|6:230|2:2|2:2;1|2:2|3:3|4:932|5:66|6:226|2:2|2:2;n;3|7:68|8:933;p;1|2:2|3:3|4:934|5:66|6:714|2:2|2:2;n;3|7:71|8:935;3|7:128|8:936;3|7:71|8:937;p;1|2:2|3:3|4:938|5:66|6:723|2:2|2:2;n;3|7:71|8:939;3|7:128|8:940;3|7:71|8:941;p;1|2:2|3:3|4:942|5:5|6:6|2:2|2:2;1|2:2|3:3|4:943|5:289|6:145|2:2|2:2;n;3|7:34|8:944;p;1|2:2|3:3|4:945|5:18|6:946|17:291|2:2|2:2;n;7|15:947;4|7:948|8:949;p;1|1:677|2:678|4:950|5:289|6:680|31:291|12:77|2:6'
  548. ..'78|2:678;n;17;10;p;1|2:2|3:3|4:951|5:66|6:790|2:2|2:2;n;3|7:71|8:952;p;1|2:2|3:3|4:953|5:66|6:145|2:2|2:2;1|2:2|3:3|4:954|5:18|6:955|2:2|2:2;n;3|7:176|8:956;4|7:584|8:957;p;1|2:2|3:3|4:958|5:66|6:145|2:2|2:2;n;3|7:37|8:959;3|7:37|8:960;p;1|2:2|3:3|4:961|5:18|6:962|2:2|2:2;1|1:963|2:964|4:965|5:5|6:966|12:77|2:964|2:964;n;18|1:967|20:302;10|1:968;p;5|2:81|3:3|4:969|5:5|6:970|2:81|2:81;5|2:81|3:3|4:971|5:18|6:83|2:81|2:81;1|2:15|11:16|4:9'
  549. ..'72|5:18|6:6|2:15|2:15;n;3|7:7|8:973;3|7:185|8:974;3|7:7|8:975;p;1|2:2|3:3|4:976|5:66|6:372|17:291|2:2|2:2;n;3|7:34|8:977;4|7:341|8:978;3|7:34|8:979;3|7:34|8:980;p;1|2:15|11:16|4:981|5:18|6:19|2:15|2:15;n;3|7:185|8:982;p;1|2:2|3:3|4:983|5:5|6:254|2:2|2:2;1|2:2|3:3|4:984|5:289|6:181|2:2|2:2;n;3|7:185|8:985;p;1|2:2|3:3|4:986|5:18|6:797|2:2|2:2;n;3|7:185|8:987;3|7:7|8:988;3|7:7|8:989;p;1|2:2|3:3|4:990|5:5|6:181|2:2|2:2;n;3|7:185|8:991;3|7:7'
  550. ..'|8:992;p;1|2:2|3:3|4:993|5:18|2:2|2:2;n;3|7:71|8:994;p;p;')
  551. for _,Object in pairs(Objects) do
  552. Object.Parent = script and script.Parent==workspace and script or workspace
  553. end
  554. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement