Advertisement
lafur

Untitled

May 17th, 2020
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 48.04 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 42407
  3. local genv={}
  4.  
  5. local Part_Classes = {"Part","WedgePart","CornerWedgePart"}
  6. local Part_Shapes = {"Brick","Cylinder","Sphere","Torso","Wedge"}
  7. function DecodeUnion(t)
  8. local r = function()return table.remove(t,1) end
  9. local split = function(str,sep)
  10. local fields = {}
  11. str:gsub(("([^%s]+)"):format(sep or ','),function(c)fields[#fields+1]=c end)
  12. return fields
  13. end
  14. local m = Instance.new("Folder")
  15. m.Name = "UnionCache ["..tostring(math.random(1,9999)).."]"
  16. m.Archivable = false
  17. m.Parent = game:GetService("ServerStorage")
  18. local Union,Subtract = {},{}
  19. repeat
  20. local isNegate = false
  21. local class = r()
  22. if class=='-' then
  23. isNegate = true
  24. class = r()
  25. end
  26. if class=='n' then
  27. local d = {}
  28. local a = r()
  29. repeat
  30. table.insert(d,a)
  31. a = r()
  32. until a=='p'
  33. local u = DecodeUnion(d)
  34. if u then
  35. table.insert(isNegate and Subtract or Union,u)
  36. end
  37. else
  38. local size,pos,rot = Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r())))
  39. local part = Instance.new(Part_Classes[tonumber(class)])
  40. part.Size = size
  41. part.Position = pos
  42. part.Orientation = rot
  43. if r()=="+" then
  44. local m,ms,of = r(),Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r())))
  45. if tonumber(m)==6 then
  46. part.Shape = Enum.PartType.Cylinder
  47. elseif tonumber(m)==7 then
  48. part.Shape = Enum.PartType.Ball
  49. else
  50. local mesh = Instance.new(tonumber(m)==8 and "CylinderMesh" or "SpecialMesh")
  51. if tonumber(m)~=8 then
  52. mesh.MeshType = Enum.MeshType[Part_Shapes[tonumber(m)]]
  53. end
  54. mesh.Scale = ms
  55. mesh.Offset = of
  56. mesh.Parent = part
  57. end
  58. end
  59. table.insert(isNegate and Subtract or Union,part)
  60. end
  61. until #t<=0
  62. local first = Union[1]
  63. first.Parent = m
  64. if #Union>1 then
  65. first = first:UnionAsync(Union)
  66. first.Parent = m
  67. end
  68. if #Subtract>0 then
  69. first = first:SubtractAsync(Subtract)
  70. first.Parent = m
  71. end
  72. first.Parent = nil
  73. m:Destroy()
  74. return first
  75. end
  76. Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  77. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  78. function(t,f)
  79. for a,b in pairs(t) do
  80. f(a,b)
  81. end
  82. end
  83. local Types = {
  84. Color3 = Color3.new,
  85. Vector3 = Vector3.new,
  86. Vector2 = Vector2.new,
  87. UDim = UDim.new,
  88. UDim2 = UDim2.new,
  89. CFrame = CFrame.new,
  90. Rect = Rect.new,
  91. NumberRange = NumberRange.new,
  92. BrickColor = BrickColor.new,
  93. PhysicalProperties = PhysicalProperties.new,
  94. NumberSequence = function(...)
  95. local a = {...}
  96. local t = {}
  97. repeat
  98. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  99. until #a==0
  100. return NumberSequence.new(t)
  101. end,
  102. ColorSequence = function(...)
  103. local a = {...}
  104. local t = {}
  105. repeat
  106. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  107. until #a==0
  108. return ColorSequence.new(t)
  109. end,
  110. number = tonumber,
  111. boolean = function(a)
  112. return a=="1"
  113. end
  114. }
  115. split = function(str,sep)
  116. if not str then return end
  117. local fields = {}
  118. local ConcatNext = false
  119. str:gsub(("([^%s]+)"):format(sep),function(c)
  120. if ConcatNext == true then
  121. fields[#fields] = fields[#fields]..sep..c
  122. ConcatNext = false
  123. else
  124. fields[#fields+1] = c
  125. end
  126. if c:sub(#c)=="\\" then
  127. c = fields[#fields]
  128. fields[#fields] = c:sub(1,#c-1)
  129. ConcatNext = true
  130. end
  131. end)
  132. return fields
  133. end
  134. RemoveAndSplit = function(t)
  135. return split(table_remove(t,1),comma)
  136. end
  137. t = split(str,";")
  138. props = RemoveAndSplit(t)
  139. classes = RemoveAndSplit(t)
  140. values = split(table_remove(t,1),'|')
  141. ICList = RemoveAndSplit(t)
  142. InstanceList = {}
  143. Model = inst"Model"
  144. CurPar = Model
  145. table_foreach(t,function(ct,c)
  146. if c=="n" or c=="p" then
  147. CurPar = c=="n" and LastIns or CurPar[parnt]
  148. else
  149. ct = split(c,"|")
  150. local class = classes[tonum(table_remove(ct,1))]
  151. if class=="UnionOperation" then
  152. LastIns = {UsePartColor="1"}
  153. else
  154. LastIns = inst(class)
  155. if LastIns:IsA"Script" then
  156. s(LastIns)
  157. elseif LastIns:IsA("ModuleScript") then
  158. ms(LastIns)
  159. end
  160. end
  161.  
  162. local function SetProperty(LastIns,p,str,s)
  163. s = Types[typeof(LastIns[p])]
  164. if p=="CustomPhysicalProperties" then
  165. s = PhysicalProperties.new
  166. end
  167. if s then
  168. LastIns[p] = s(unpack(split(str,comma)))
  169. else
  170. LastIns[p] = str
  171. end
  172. end
  173.  
  174. local UnionData
  175. table_foreach(ct,function(s,p,a,str)
  176. a = p:find":"
  177. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  178. if p=="UnionData" then
  179. UnionData = split(str," ")
  180. return
  181. end
  182. if class=="UnionOperation" then
  183. LastIns[p] = str
  184. return
  185. end
  186. SetProperty(LastIns,p,str)
  187. end)
  188.  
  189. if UnionData then
  190. local LI_Data = LastIns
  191. LastIns = DecodeUnion(UnionData)
  192. table_foreach(LI_Data,function(p,str)
  193. SetProperty(LastIns,p,str)
  194. end)
  195. end
  196. table.insert(InstanceList,LastIns)
  197. LastIns[parnt] = CurPar
  198. end
  199. end)
  200. table_remove(ICList,1)
  201. table_foreach(ICList,function(a,b)
  202. b = split(b,">")
  203. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  204. end)
  205.  
  206. return Model:GetChildren()
  207. end
  208.  
  209. local Objects = Decode('Name,Anchored,Color,Material,Position,Size,BottomSurface,TopSurface,C0,C1,Part0,Part1,Reflectance,Scale,Range,Orientation,Brightness,Face,UnionData,Transparency,Shape,CanCollide,F0,F1,F2,F3,BackSurface,FrontSurface,LeftSurface,RightSurface,Texture,CanvasSize,BackgroundColor3,Backgr'
  210. ..'oundTransparency,Font,Text,TextColor3,TextScaled,TextSize,TextStrokeTransparency,TextWrapped;Part,Model,Weld,CylinderMesh,PointLight,SpotLight,UnionOperation,Seat,Glue,ManualWeld,Decal,SurfaceGui,TextLabel;Part|1|0.0666,0.0666,0.0666|1312|66.35,13.6499,45.8499|3.9,1.5,18.1|0|-5.050'
  211. ..'1,-1.0501,12.5,1,0,0,0,1,0,0,0,1|-8.6501,-1.5501,-9.0501,1,0,0,0,1,0,0,0,1|51.8,13.5999,40.2|25.1999,1,6.7999|-1.9501,-0.75,-9.0501,-0,0,-1,0,1,0,1,0,-0|12.6,-0.7,-3.4001,0,0,-1,0,1,0,1,0,0|5.9,-1.5,-3.4001,1,0,0,0,1,0,0,0,1|Light|0.9921,0.9176,0.5529|272|0.4|54.1794,14.1,-0.6918|2'
  212. ..',0.2,2|1,1.0099,1|40|6.5,-0.5,11.5999,1,0,0,0,0,-1,-0,1,0|3.5205,0.0999,8.0917,1,0,0,0,0,-1,0,1,0|0.3882,0.3725,0.3843|2.4,0.2,2.4|TV|0.1058,0.1647,0.2078|1568|52.8476,10.6712,7.3855|0,90,0|0.05,0.55,0.05|52.7408,10.6712,7.3805|0.06,0.55,0.05|52.9497,10.6712,7.3855|1088|53.5607,9.0'
  213. ..'538,7.1326|45,180,0|0.1399,0.1099,0.608|53.5607,9.0539,7.6222|45,0,180|0.7921,0.796,0.8196|288|51.2058,10.8078,7.3462|90,180,0|5.48,0.05,2.9199|10|0.6|1,0,0|51.1963,9.2399,7.3433|0,-180,0|0.05,0.05,0.108|0.6666,0,0|4|3|0.3|48.8597,9.0538,7.1326|48.8597,9.0539,7.6222|- 1 0.19,0.55,0'
  214. ..'.05 52.7408,10.6712,7.4432 0,90,0 = - 1 0.19,0.55,0.05 52.8476,10.6712,7.4432 0,90,0 = - 1 0.19,0.55,0.05 52.9497,10.6712,7.4432 0,90,0 = n - 1 5.48,0.05,2.9199 51.2059,10.8078,7.3232 90,180,0 = 1 5.66,0.1499,3.1299 51.1958,10.7828,7.3733 90,180,0 = p|62.75,13.1499,-3.4001|10.1,2.1'
  215. ..',25|-4.4,6.05,1,-1,0,0,0,0,1,0,1,0|-5.05,-1.05,12.5999,-1,0,0,0,0,1,0,1,0|7,-7.9501,1,-0,0,1,0,1,0,-1,0,-0|-5.05,-13.15,12.9,0,0,1,0,1,0,-1,0,0|-4.45,-7.6501,1,1,0,0,0,1,0,0,0,1|-5.1501,-13.15,-12.5,1,0,0,0,1,0,0,0,1|Bed|0.4862,0.3607,0.2745|512|50.2939,2.4127,-11.8645|5.5677,0.123'
  216. ..'7,7.1762|52.7066,1.1754,-15.0196|0.7423,2.3508,0.8661|-256,10,256,-1,0,0,0,0,1,0,1,0|-308.7067,-1.1755,271.0195,-1,0,0,0,0,1,0,1,0|47.8812,1.1754,-8.7094|-303.8813,-1.1755,264.7093,-1,0,0,0,0,1,0,1,0|52.7066,1.1754,-8.7094|-308.7067,-1.1755,264.7093,-1,0,0,0,0,1,0,1,0|0.8745,0.8745'
  217. ..',0.8705|48.8091,4.4912,-14.6174|30,0,0|2.3508,0.8661,1.4847|50.2939,3.7118,-15.5145|5.5677,7.4237,0.1237|-306.294,-3.7119,271.5144,-1,0,0,0,0,1,0,1,0|51.6549,4.4912,-14.6174|47.8812,1.1754,-15.0196|-303.8813,-1.1755,271.0195,-1,0,0,0,0,1,0,1,0|0.596,0.7607,0.8588|50.2939,3.0932,-11'
  218. ..'.8645|5.5677,1.2372,7.1762|67.5,5.9999,-4.3501|26.8999,11.9999,2|-260.3501,-6,-323.5,0,-1,0,0,0,1,-1,0,0|60.7938,1.8,-7.2096|1,1.6,4|62.6938,0.5,-7.2096|0,180,90|1,4.8,4|-0.5001,-318.6939,-263.2096,0,0,1,-1,0,0,0,-1,0|62.2938,1.8,-5.7096|1,1.6,2|62.2938,1.8,-8.7096|63.7938,1.8,-7.2'
  219. ..'096|0.0509,0.4117,0.6745|0.5|62.2938,1.8,-7.2096|2,1.6,2|64.6938,3.5,-7.2096|0,-180,90|5,0.8,4|44.7,7.5,-6.6001|18.4,15,2|-262.6001,-7.5001,-300.7001,0,-1,0,0,0,1,-1,0,0|-7.1,-7.7,1,1,0,0,0,1,0,0,0,1|9.1999,-7.5001,-1.3001,0,0,-1,0,1,0,1,0,0|50.5,7.6999,-16.8001|14.1999,15.3999,2|-'
  220. ..'306.5,-7.7,272.8,-1,0,0,0,0,1,0,1,0|6.5,-0.5,-11.6,-1,0,0,0,1,0,0,0,-1|7.2,6.5,1,-1,0,0,0,1,0,0,0,-1|62.4018,8.11,0.2436|0,-90,90|0.2,1.2,2.2|2|0|-0.1001,0,0,-0,-0,-1,0,1,0,1,0,0|4,0,0,0,0,-1,0,1,-0,1,0,-0|-1.1,-0.6001,0|-1.1,0.6,0|1.0999,0.6,0|1.0999,-0.6001,0|61.9019,0.11,0.2436|'
  221. ..'0,-90,0|4,0.2,4|1|2,0,0,0,0,1,0,1,0,-1,-0,-0|0,-0.25,-0.5,1,0,0,0,1,0,0,0,1|2,-0.1,0|-2,-0.1,0|-2,0.0999,0|2,0.0999,0|0,0,2,1,0,0,0,1,0,0,0,1|0,0.1,0,-1,-0,-0,0,0,1,0,1,0|-1.5,-0.1,1.5,-1,0,0,-0,0,1,-0,1,0|-1,-2,-0.0001|-2,-2,-0.0001|-2,-1,-0.0001|-1,-1,-0.0001|0,0,-2,-1,-0,-0,0,1,'
  222. ..'0,-0,-0,-1|0,-4.25,0.5,-1,0,-0,-0,1,-0,-0,0,-1|-2,-0.1,-0|-2,0,0,-0,-0,-1,0,1,0,1,0,0|255.7563,-0.1101,317.9019,0,1,-0.0001,0,0,1,1,-0.0001,0|0.3568,0.3647,0.4117|61.9018,3.71,1.2436|4,2,2|1,-1,-0.5,1,0,0,0,1,0,0,0,1|-1,-1,-0|-1,0.9999,0|1,0.9999,0|1,-1,0|-0.5,0,0,-0,0,1,-0,1,0,-1,'
  223. ..'0,0|-0.5,-0.25,-0|-0.5,0.25,0|0.5,0.25,0|0.5,-0.25,0|1,-0.65,0.5,-1,0,-0,-0,1,-0,-0,0,-1|-1,-1,0|61.9017,0.36,-2.2564|0,180,0|4,0.6999,1|0,0.3499,0,-1,-0,-0,0,0,1,0,1,0|0,-4,0,1,-0,0,0,-0,1,0,-1,0|2,-0.5,-0.0001|-2,-0.5001,0|-2,0.4999,0|2,0.5,-0.0001|317.9017,-0.3601,-258.2564,1,-0'
  224. ..'.0001,0,-0.0001,-0.0001,1,-0.0001,-1,-0.0001|64.4019,4.36,0.2436|4,8.6999,1|Part-to-Part Strong Joint|-2,-4.35,0.5,1,0,0,0,1,0,0,0,1|-4,2,-1.5,0,1,-0,-1,0,0,0,0,1|0,4.3499,0,-1,-0,-0,0,0,1,0,1,0|0,-0.5,-2.5,-1,0,0,-0,0,1,-0,1,0|2,-0.5,0|-2,-0.5,0|-2,0.5,0|2,0.5,0|0,0,0.5,1,0,0,0,1,'
  225. ..'0,0,0,1|-0.5,-3.65,0,-0,0,1,-0,1,0,-1,0,0|-0.5,3.4999,0|-0.5,3.7999,0|0.5,3.7999,0|0.5,3.4999,0|255.7563,-4.3601,320.4019,0,1,0,0,0,1,1,0,0|63.4019,0.31,1.7436|1,0.2,1|0.5,-0.1001,-0.5,-1,0,0,0,1,0,0,0,-1|2,-4.1501,0.5,-1,0,0,0,1,0,0,0,-1|0.5,-0.1001,0.5,0,0,1,0,1,-0,-1,0,0|1,-0.15'
  226. ..',-0.5,1,0,0,0,1,0,0,0,1|61.9019,0.36,2.7436|-317.902,-0.3601,253.2563,-1,0,0,0,0,1,0,1,0|59.4019,0.36,0.2436|-2,0.3499,0.5,-1,0,0,0,0,1,0,1,-0|-2,-4.0001,0.5,-1,0,0,0,0,1,0,1,-0|255.7563,-0.3601,315.4019,0,1,0,0,0,1,1,0,0|0.9607,0.8039,0.1882|59.4018,3.71,1.2436|1,0.5,1|63.4018,8.0'
  227. ..'1,0.2436|1,0.3,1|0.0627,0.1647,0.8627|832|0.34|62.4019,4.01,0.2436|8,4,3|-4.0101,-255.7564,318.4019,0,0,1,0,-1,0,1,0,0|0.0352,0.5372,0.8117|0.4099|59.4019,4.71,0.2436|4,8,1|0,4,0,-1,-0,-0,0,0,1,0,1,0|0,-0.5,2.5,-1,0,0,-0,0,1,-0,1,0|61.9018,4.71,-2.2564|-2.5,-0.5,0,0,1,0,0,0,1,1,0,0'
  228. ..'|61.9018,9.2099,0.2436|6,1,4|10|61.9018,9.21,0.2436|4,1,6|61.9018,4.71,2.7436|2,-4,-0.5,-1,0,0,0,1,0,0,0,-1|2,-3.0001,1,-1,0,0,0,1,0,0,0,-1|2.5,-0.5,0,0,1,0,0,0,1,1,0,0|0,-4,0,1,0,0,-0,-0,-1,0,1,0|0,0.3499,0,1,0,-0,0,0,-1,0,1,-0|-2,-0.5,-0|51.2,14.7,-4.2001|13,1,23.1999|62.0499,7.6'
  229. ..'5,-16.9|8.8999,15.3,2|-318.05,-7.6501,272.8999,-1,0,0,0,0,1,0,1,0|13.4499,-6,-1,-1,0,0,0,1,0,0,0,-1|4.45,-7.6501,-0.9001,0,0,-1,0,1,0,1,0,0|7.0999,-7.7,1,-0,0,1,0,1,0,-1,0,-0|-4.45,-7.6501,1.0999,0,0,1,0,1,0,-1,0,0|62.1,6.05,8.1999|8.7999,12.1,2|-318.1001,-6.0501,247.8,-1,0,0,0,0,1'
  230. ..',0,1,0|4.3999,-6.0501,-26.0001,0,0,-1,0,1,0,1,0,0|-4.4,-6.0501,1.3,0,0,1,0,1,0,-1,0,0|55.75,7.1,-11.4001|8.6,14.1999,0.0999|-267.4001,-7.1001,-311.7501,0,-1,0,0,0,1,-1,0,0|-18.8,7.1,1.9499,0,-1,0,0,0,-1,1,0,0|50.7,7.95,8.5|14,15.9,2|-306.7001,-7.9501,247.5,-1,0,0,0,0,1,0,1,0|0.4117'
  231. ..',0.2509,0.1568|24.3,13.6,33.3999|-90,-90,0|12,1.2,7|http://www.roblox.com/asset/?id=9647612|-23.3501,-21.65,1,0.9999,0,0,0,1,0,0,0,0.9999|21.1999,-0.6001,-13.6001,-1,0,0,0,0,0.9999,0,1,0|54.1794,30,-0.6918|52.8476,26.5712,7.3855|52.7408,26.5712,7.3805|52.9497,26.5712,7.3855|53.5607'
  232. ..',24.9539,7.1326|53.5607,24.954,7.6222|51.2058,26.7079,7.3462|51.1963,25.14,7.3433|48.8597,24.9539,7.1326|48.8597,24.954,7.6222|- 1 0.19,0.55,0.05 52.7408,26.5713,7.4432 0,90,0 = - 1 0.19,0.55,0.05 52.8476,26.5713,7.4432 0,90,0 = - 1 0.19,0.55,0.05 52.9497,26.5713,7.4432 0,90,0 = n '
  233. ..'- 1 5.48,0.05,2.9199 51.2059,26.7079,7.3232 90,180,0 = 1 5.66,0.1499,3.1299 51.1958,26.6829,7.3733 90,180,0 = p|62.75,29.05,-3.4001|50.2939,18.3127,-11.8645|52.7066,17.0754,-15.0196|47.8812,17.0754,-8.7094|52.7066,17.0754,-8.7094|48.8091,20.3912,-14.6174|50.2939,19.6119,-15.5145|51'
  234. ..'.6549,20.3912,-14.6174|47.8812,17.0754,-15.0196|50.2939,18.9932,-11.8645|67.5,21.9,-4.3501|60.7938,17.7,-7.2096|62.6938,16.4,-7.2096|62.2938,17.7,-5.7096|62.2938,17.7,-8.7096|63.7938,17.7,-7.2096|62.2938,17.7,-7.2096|64.6938,19.4,-7.2096|44.7,23.4,-6.6001|50.5,23.6,-16.8001|62.4018'
  235. ..',24.01,0.2436|61.9019,16.01,0.2436|61.9018,19.61,1.2436|61.9017,16.26,-2.2564|64.4019,20.26,0.2436|63.4019,16.21,1.7436|61.9019,16.26,2.7436|59.4019,16.26,0.2436|59.4018,19.61,1.2436|63.4018,23.91,0.2436|62.4019,19.91,0.2436|59.4019,20.61,0.2436|61.9018,20.61,-2.2564|61.9018,25.11,'
  236. ..'0.2436|61.9018,20.61,2.7436|51.2,30.6,-4.2001|62.0499,23.55,-16.9|-23.2,-21.5,1,1,0,0,0,1,0,0,0,1|-40.0501,-23.5501,-1,1,0,0,0,1,0,0,0,1|62.1,21.95,8.1999|55.75,23,-11.4001|50.7,23.85,8.5|-7.0001,7.95,1,-1,0,0,0,0,1,0,1,0|-7,-7.9501,1,-1,0,0,0,0,1,0,1,0|54.1794,14.1,27.0082|52.8476'
  237. ..',10.6712,35.0855|52.7408,10.6712,35.0805|52.9497,10.6712,35.0855|53.5607,9.0538,34.8326|53.5607,9.0539,35.3222|51.2058,10.8078,35.0462|51.1963,9.2399,35.0433|48.8597,9.0538,34.8326|48.8597,9.0539,35.3222|- 1 0.19,0.55,0.05 52.7408,10.6712,35.1432 0,90,0 = - 1 0.19,0.55,0.05 52.8476'
  238. ..',10.6712,35.1432 0,90,0 = - 1 0.19,0.55,0.05 52.9497,10.6712,35.1432 0,90,0 = n - 1 5.48,0.05,2.9199 51.2059,10.8078,35.0232 90,180,0 = 1 5.66,0.1499,3.1299 51.1958,10.7828,35.0733 90,180,0 = p|62.75,13.1499,24.2999|50.2939,2.4127,15.8355|52.7066,1.1754,12.6804|-308.7067,-1.1755,24'
  239. ..'3.3195,-1,0,0,0,0,1,0,1,0|47.8812,1.1754,18.9906|-303.8813,-1.1755,237.0093,-1,0,0,0,0,1,0,1,0|52.7066,1.1754,18.9906|-308.7067,-1.1755,237.0093,-1,0,0,0,0,1,0,1,0|48.8091,4.4912,13.0825|50.2939,3.7118,12.1855|-306.294,-3.7119,243.8144,-1,0,0,0,0,1,0,1,0|51.6549,4.4912,13.0826|47.8'
  240. ..'812,1.1754,12.6804|-303.8813,-1.1755,243.3195,-1,0,0,0,0,1,0,1,0|50.2939,3.0932,15.8355|67.5,5.9999,23.3499|-232.6501,-6,-323.5,0,-1,0,0,0,1,-1,0,0|60.7938,1.8,20.4904|62.6938,0.5,20.4904|-0.5001,-318.6939,-235.5096,0,0,1,-1,0,0,0,-1,0|62.2938,1.8,21.9904|62.2938,1.8,18.9904|63.793'
  241. ..'8,1.8,20.4904|62.2938,1.8,20.4904|64.6938,3.5,20.4904|44.7,7.5,21.0999|-234.9001,-7.5001,-300.7001,0,-1,0,0,0,1,-1,0,0|50.5,7.6999,10.8999|-306.5,-7.7,245.1,-1,0,0,0,0,1,0,1,0|62.4018,8.11,27.9436|61.9019,0.11,27.9437|228.0562,-0.1101,317.9019,0,1,-0.0001,0,0,1,1,-0.0001,0|61.9018,'
  242. ..'3.71,28.9436|61.9017,0.36,25.4436|317.9017,-0.3601,-230.5564,1,-0.0001,0,-0.0001,-0.0001,1,-0.0001,-1,-0.0001|64.4019,4.36,27.9437|228.0562,-4.3601,320.4019,0,1,0,0,0,1,1,0,0|63.4019,0.31,29.4437|61.9019,0.36,30.4436|-317.902,-0.3601,225.5563,-1,0,0,0,0,1,0,1,0|59.4019,0.36,27.9437'
  243. ..'|228.0562,-0.3601,315.4019,0,1,0,0,0,1,1,0,0|59.4018,3.71,28.9436|63.4018,8.01,27.9436|62.4019,4.01,27.9437|-4.0101,-228.0563,318.4019,0,0,1,0,-1,0,1,0,0|59.4019,4.71,27.9437|61.9018,4.71,25.4436|61.9018,9.2099,27.9436|61.9018,9.21,27.9436|61.9018,4.71,30.4436|51.2,14.7,23.4999|62.'
  244. ..'0499,7.65,10.8|-318.05,-7.6501,245.1999,-1,0,0,0,0,1,0,1,0|62.1,6.05,35.8999|-318.1001,-6.0501,220.1,-1,0,0,0,0,1,0,1,0|55.75,7.1,16.2999|-239.7001,-7.1001,-311.7501,0,-1,0,0,0,1,-1,0,0|50.7,7.95,36.1999|-306.7001,-7.9501,219.8,-1,0,0,0,0,1,0,1,0|0.4156,0.2235,0.0352|23,27.1,3.75|8'
  245. ..'.2999,31.6,2|-8.7501,-21.55,-1,-0,0,-1,0,1,0,1,0,-0|4.1499,-27.1001,-1.3,0,0,-1,0,1,0,1,0,0|22.7,21.6499,31.2499|46.7,43.2999,2|-224.7501,-21.65,-278.7001,0,-1,0,0,0,1,-1,0,0|-4.15,-15.8001,-1,-0,0,-1,0,1,0,1,0,-0|23.3499,-10.3501,-0.7001,0,0,-1,0,1,0,1,0,0|42.2,14.0499,9.4|5.6,0.5'
  246. ..',54.7999|12.5999,-0.5,-3.4,-1,0,0,0,1,0,0,0,-1|22.2,-0.9501,27.3999,-1,0,0,0,1,0,0,0,-1|Stairs|62.6834,11.7283,52.1003|0,-90,-0.02|1.3335,1.0668,1.3335|60.6832,10.135,52.0997|0.8,0.5568,0.4117|61.3499,10.9364,48.7662|0.0199,0,0|2.667,0.5334,10.6681|60.6832,10.1375,45.4321|62.6834,1'
  247. ..'1.7309,45.4327|63.3502,12.5297,48.7668|58.6829,8.5291,52.0991|56.6826,6.9345,52.0984|57.3494,7.7359,48.7649|56.6826,6.9371,45.4308|58.6829,8.5317,45.4315|59.3496,9.3305,48.7656|54.6824,5.3284,52.0978|52.6821,3.7341,52.0972|53.3488,4.5355,48.7637|52.6821,3.7366,45.4296|54.6823,5.330'
  248. ..'9,45.4302|55.3491,6.1297,48.7643|50.6818,2.1286,52.0965|48.6815,0.5336,52.0959|49.3483,1.335,48.7624|48.6815,0.5362,45.4283|50.6818,2.1312,45.4289|51.3486,2.93,48.763|46.45,21.6499,55.6999|48.9,43.2999,2|-302.4501,-21.65,200.3,-1,0,0,0,0,1,0,1,0|-37.25,-21.45,-1.1001,-0,0,-1,0,1,0,'
  249. ..'0.9999,0,-0|22.1499,-21.65,-1.0001,0.9999,0,0,0,1,0,0,0,0.9999|Sign|0.6235,0.9529,0.9137|21.875,20.7999,3.7|8.6,14.3999,0.25|200,100|1,0,1,0|1,1,1|Rob\'s Hotel|0.8627,0.2156,0.5294|48|Sign Terrain Joint|4.1499,-15.8001,-1,-1,0,0,0,1,0,0,0,-1|4.0999,-9.5,0.125,-1,0,0,0,1,0,0,0,-1|Cy'
  250. ..'linder|0.6274,0.3725,0.2078|29.5466,0.5199,20.0056|0.5145,1.0291,0.5145|-235.9945,-0.52,-285.5467,0,-1,0,0,0,1,-1,0,0|28.5175,0.5199,20.0056|-235.9945,-0.52,-284.5176,0,-1,0,0,0,1,-1,0,0|29.5472,1.4922,20.0545|-90,0,0|0.5145,0.4116,0.5145|28.5181,1.4922,20.0545|90,-180,0|29.032,1.1'
  251. ..'373,19.491|1.5436,0.2058,1.5436|29.5466,0.5199,18.9764|-237.0235,-0.52,-285.5467,0,-1,0,0,0,1,-1,0,0|29.0326,2.0067,20.0545|1.5436,0.4116,0.5145|28.5175,0.5199,18.9764|-237.0235,-0.52,-284.5176,0,-1,0,0,0,1,-1,0,0|29.0326,0.1029,15.8867|3.6018,0.2058,2.5727|240.1132,-0.103,285.0326'
  252. ..',0,1,0,0,0,1,1,-0,-0|33.1515,0.5199,15.3727|289.1515,-0.52,-240.6273,1,0,0,-0.0001,0,1,0,-1,0|33.1515,0.5199,16.4018|289.1515,-0.52,-239.5982,1,0,0,-0.0001,0,1,0,-1,0|33.2005,1.4922,15.3721|-90,90,0|33.2005,1.4922,16.4012|90,-90,0|32.637,1.1374,15.8873|32.1224,0.5199,15.3727|288.12'
  253. ..'24,-0.52,-240.6273,1,0,0,-0.0001,0,1,0,-1,0|33.2005,2.0067,15.8867|32.1224,0.5199,16.4018|288.1224,-0.52,-239.5982,1,0,0,-0.0001,0,1,0,-1,0|24.6565,0.7771,16.4006|24.6565,0.7771,15.3715|24.6075,1.7496,16.4012|24.6075,1.7496,15.3721|90,90,0|25.171,1.3946,15.8861|25.6856,0.7771,16.40'
  254. ..'06|24.6075,2.2641,15.8867|25.6856,0.7771,15.3715|28.5181,0.5145,11.7703|244.2296,-0.5146,284.5181,0,1,0,0,0,1,1,-0,-0|29.5472,0.5145,11.7703|244.2296,-0.5146,285.5472,0,1,0,0,0,1,1,-0,-0|28.5175,1.4871,11.7213|-90,-180,0|29.5466,1.4871,11.7205|89.98,167.46,-178.23|29.0326,1.132,12.'
  255. ..'2848|28.5181,0.5145,12.7994|243.2005,-0.5146,284.5181,0,1,0,0,0,1,1,-0,-0|29.032,2.0017,11.7213|29.5472,0.5145,12.7994|243.2005,-0.5146,285.5472,0,1,0,0,0,1,1,-0,-0|29.0326,1.9553,15.8867|6.6891,0.2058,5.66|29.0326,1.0291,15.8867|0.5145,1.6465,0.5145|45.1999,21.4999,-18.9|46.3999,4'
  256. ..'2.9999,2|-301.2,-21.5,274.8999,-1,0,0,0,0,1,0,1,0|4.4499,-7.6501,-1,-1,0,0,0,1,0,0,0,-1|21.2999,-21.5,1,-1,0,0,0,1,0,0,0,-1|8.75,-21.55,1,-0,0,1,0,1,0,-1,0,-0|-21.5,-21.5,0.9999,-1,0,0,0,1,0,0,0,-1|27.5995,1.7999,34.2007|12,3.5999,2|-221.7993,-1.8,-283.5997,0,-1,0,0,0,0.9999,-1,0,0'
  257. ..'|54.1794,30,27.0082|52.8476,26.5712,35.0855|52.7408,26.5712,35.0805|52.9497,26.5712,35.0855|53.5607,24.9539,34.8326|53.5607,24.954,35.3222|51.2058,26.7079,35.0462|51.1963,25.14,35.0433|48.8597,24.9539,34.8326|48.8597,24.954,35.3222|- 1 0.19,0.55,0.05 52.7408,26.5713,35.1432 0,90,0 '
  258. ..'= - 1 0.19,0.55,0.05 52.8476,26.5713,35.1432 0,90,0 = - 1 0.19,0.55,0.05 52.9497,26.5713,35.1432 0,90,0 = n - 1 5.48,0.05,2.9199 51.2059,26.7079,35.0232 90,180,0 = 1 5.66,0.1499,3.1299 51.1958,26.6829,35.0733 90,180,0 = p|62.75,29.05,24.2999|50.2939,18.3127,15.8355|52.7066,17.0754,'
  259. ..'12.6804|47.8812,17.0754,18.9906|52.7066,17.0754,18.9906|48.8091,20.3912,13.0825|50.2939,19.6119,12.1855|51.6549,20.3912,13.0825|47.8812,17.0754,12.6804|50.2939,18.9932,15.8355|67.5,21.9,23.3499|60.7938,17.7,20.4904|62.6938,16.4,20.4904|62.2938,17.7,21.9904|62.2938,17.7,18.9904|63.7'
  260. ..'938,17.7,20.4904|62.2938,17.7,20.4904|64.6938,19.4,20.4904|44.7,23.4,21.0999|50.5,23.6,10.8999|62.4018,24.01,27.9436|61.9019,16.01,27.9437|61.9018,19.61,28.9436|61.9017,16.26,25.4436|64.4019,20.26,27.9437|63.4019,16.21,29.4437|61.9019,16.26,30.4437|59.4019,16.26,27.9437|59.4018,19.'
  261. ..'61,28.9436|63.4018,23.91,27.9436|62.4019,19.91,27.9437|59.4019,20.61,27.9437|61.9018,20.61,25.4436|61.9018,25.11,27.9436|61.9018,20.61,30.4436|51.2,30.6,23.4999|62.0499,23.55,10.8|62.1,21.95,35.8999|55.75,23,16.2999|50.7,23.85,36.1999|46.0499,42.4,18.35|45.1,1,72.5|37.2499,-21.45,-'
  262. ..'1.1001,-1,0,0,0,1,0,0,0,-1|22.55,-42.4001,-38.15,0,0,-1,0,1,0,1,0,0|-24.05,-42.4001,-36.25,1,0,0,0,1,0,0,0,1|22.7,21.5499,-9.15|17.5,43.0999,2|-265.15,-21.55,-278.7001,0,-1,0,0,0,1,-1,0,0|69.6999,21.4499,17.45|74.4999,42.8999,2.2|-238.55,-21.45,-325.7,0,-1,0,0,0,1,-1,0,0|29.5466,0.'
  263. ..'5199,-6.7944|-262.7945,-0.52,-285.5467,0,-1,0,0,0,1,-1,0,0|28.5175,0.5199,-6.7944|-262.7945,-0.52,-284.5176,0,-1,0,0,0,1,-1,0,0|29.5472,1.4922,-6.7455|28.5181,1.4922,-6.7455|29.032,1.1373,-7.309|29.5466,0.5199,-7.8235|-263.8235,-0.52,-285.5467,0,-1,0,0,0,1,-1,0,0|29.0326,2.0067,-6.'
  264. ..'7455|28.5175,0.5199,-7.8235|-263.8235,-0.52,-284.5176,0,-1,0,0,0,1,-1,0,0|29.0326,0.1029,-10.9133|266.9132,-0.103,285.0326,0,1,0,0,0,1,1,-0,-0|33.1515,0.5199,-11.4273|289.1515,-0.52,-267.4273,1,0,0,-0.0001,0,1,0,-1,0|33.1515,0.5199,-10.3982|289.1515,-0.52,-266.3982,1,0,0,-0.0001,0,'
  265. ..'1,0,-1,0|33.2005,1.4922,-11.4279|33.2005,1.4922,-10.3988|32.637,1.1374,-10.9127|32.1224,0.5199,-11.4273|288.1224,-0.52,-267.4273,1,0,0,-0.0001,0,1,0,-1,0|33.2005,2.0067,-10.9133|32.1224,0.5199,-10.3982|288.1224,-0.52,-266.3982,1,0,0,-0.0001,0,1,0,-1,0|24.6565,0.7771,-10.3994|24.656'
  266. ..'5,0.7771,-11.4285|24.6075,1.7496,-10.3988|24.6075,1.7496,-11.4279|25.171,1.3946,-10.9139|25.6856,0.7771,-10.3994|24.6075,2.2641,-10.9133|25.6856,0.7771,-11.4285|28.5181,0.5145,-15.0297|271.0296,-0.5146,284.5181,0,1,0,0,0,1,1,-0,-0|29.5472,0.5145,-15.0297|271.0296,-0.5146,285.5472,0'
  267. ..',1,0,0,0,1,1,-0,-0|28.5175,1.4871,-15.0787|29.5466,1.4871,-15.0795|29.0326,1.132,-14.5152|28.5181,0.5145,-14.0006|270.0005,-0.5146,284.5181,0,1,0,0,0,1,1,-0,-0|29.032,2.0017,-15.0787|29.5472,0.5145,-14.0006|270.0005,-0.5146,285.5472,0,1,0,0,0,1,1,-0,-0|29.0326,1.9553,-10.9133|29.03'
  268. ..'26,1.0291,-10.9133;0,3>11>247,3>12>2,5>11>2,5>12>4,6>11>247,6>12>4,12>11>109,12>12>9,15>11>109,15>12>13,30>11>114,30>12>29,31>11>121,31>12>29,32>11>110,32>12>29,36>11,36>12>35,38>11,38>12>37,40>11,40>12>39,43>11,43>12>42,46>11,46>12>45,49>11,49>12>48,53>11,53>12>52,60>11,60>12>59,6'
  269. ..'1>11>62,61>12>59,63>11,63>12>62,64>11>109,64>12>62,67>11>66,67>12>97,69>11>68,69>12>90,70>11>68,70>12>92,71>11>68,71>12>87,72>11>68,72>12>82,73>11>68,73>12>79,74>11,74>12>68,76>11>75,76>12>99,77>11>75,77>12>95,78>11>75,78>12>82,80>11>79,80>12>101,81>11,81>12>79,83>11>82,83>12>97,84'
  270. ..'>11>82,84>12>104,85>11>82,85>12>96,86>11,86>12>82,88>11>87,88>12>82,89>11>87,89>12>90,91>11,91>12>90,93>11>92,93>12>99,94>11,94>12>92,98>11,98>12>97,100>11>99,100>12>104,102>11>101,102>12>103,106>11>105,106>12>75,107>11>105,107>12>103,108>11>105,108>12>90,111>11,111>12>110,112>11>4'
  271. ..'8,112>12>110,113>11>62,113>12>110,115>11,115>12>114,116>11>48,116>12>114,117>11>121,117>12>114,119>11,119>12>118,120>11>109,120>12>118,122>11,122>12>121,125>11>343,125>12>123,131>11>213,131>12>128,134>11>213,134>12>132,149>11>218,149>12>148,150>11>223,150>12>148,151>11>214,151>12>1'
  272. ..'48,172>11>173,172>12>171,174>11>213,174>12>173,177>11>176,177>12>202,179>11>178,179>12>197,180>11>178,180>12>198,181>11>178,181>12>194,182>11>178,182>12>190,183>11>178,183>12>188,185>11>184,185>12>203,186>11>184,186>12>200,187>11>184,187>12>190,189>11>188,189>12>205,191>11>190,191>'
  273. ..'12>202,192>11>190,192>12>208,193>11>190,193>12>201,195>11>194,195>12>190,196>11>194,196>12>197,199>11>198,199>12>203,204>11>203,204>12>208,206>11>205,206>12>207,210>11>209,210>12>184,211>11>209,211>12>207,212>11>209,212>12>197,215>11>162,215>12>214,216>11>173,216>12>214,217>11>459,'
  274. ..'217>12>214,219>11>162,219>12>218,220>11>223,220>12>218,222>11>213,222>12>221,224>11>121,224>12>223,230>11>327,230>12>227,233>11>327,233>12>231,248>11>332,248>12>247,249>11>339,249>12>247,250>11>328,250>12>247,254>11,254>12>253,256>11,256>12>255,258>11,258>12>257,261>11,261>12>260,2'
  275. ..'64>11,264>12>263,267>11,267>12>266,271>11,271>12>270,278>11>280,278>12>277,279>11,279>12>277,281>11>327,281>12>280,282>11,282>12>280,285>11>284,285>12>315,287>11>286,287>12>308,288>11>286,288>12>310,289>11>286,289>12>305,290>11>286,290>12>300,291>11>286,291>12>297,292>11,292>12>286'
  276. ..',294>11>293,294>12>317,295>11>293,295>12>313,296>11>293,296>12>300,298>11>297,298>12>319,299>11,299>12>297,301>11>300,301>12>315,302>11>300,302>12>322,303>11>300,303>12>314,304>11,304>12>300,306>11>305,306>12>300,307>11>305,307>12>308,309>11,309>12>308,311>11>310,311>12>317,312>11,'
  277. ..'312>12>310,316>11,316>12>315,318>11>317,318>12>322,320>11>319,320>12>321,324>11>323,324>12>293,325>11>323,325>12>321,326>11>323,326>12>308,329>11>266,329>12>328,330>11>280,330>12>328,331>11,331>12>328,333>11>266,333>12>332,334>11>339,334>12>332,335>11,335>12>332,337>11>327,337>12>3'
  278. ..'36,338>11,338>12>336,340>11,340>12>339,342>11>566,342>12>341,344>11,344>12>343,345>11>341,345>12>343,347>11>4,347>12>346,380>11,380>12>379,381>11>568,381>12>379,385>12>382,386>11>341,386>12>382,391>11,391>12>389,394>11,394>12>392,400>11,400>12>398,404>11,404>12>402,407>11,407>12>40'
  279. ..'5,411>11,411>12>409,414>11,414>12>412,420>11,420>12>418,424>11,424>12>422,441>11,441>12>439,444>11,444>12>442,450>11,450>12>448,454>11,454>12>452,460>11,460>12>459,461>11>110,461>12>459,462>11>566,462>12>459,464>11,464>12>463,470>11>552,470>12>467,473>11>552,473>12>471,488>11>556,4'
  280. ..'88>12>487,489>11>561,489>12>487,490>11>553,490>12>487,511>11>512,511>12>510,513>11>552,513>12>512,516>11>515,516>12>541,518>11>517,518>12>536,519>11>517,519>12>537,520>11>517,520>12>533,521>11>517,521>12>529,522>11>517,522>12>527,524>11>523,524>12>542,525>11>523,525>12>539,526>11>5'
  281. ..'23,526>12>529,528>11>527,528>12>544,530>11>529,530>12>541,531>11>529,531>12>547,532>11>529,532>12>540,534>11>533,534>12>529,535>11>533,535>12>536,538>11>537,538>12>542,543>11>542,543>12>547,545>11>544,545>12>546,549>11>548,549>12>523,550>11>548,550>12>546,551>11>548,551>12>536,554>'
  282. ..'11>501,554>12>553,555>11>512,555>12>553,557>11>501,557>12>556,558>11>561,558>12>556,560>11>552,560>12>559,562>11>339,562>12>561,564>11>568,564>12>563,565>11>459,565>12>563,567>11,567>12>566,569>11,569>12>568,574>11,574>12>572,577>11,577>12>575,583>11,583>12>581,587>11,587>12>585,59'
  283. ..'0>11,590>12>588,594>11,594>12>592,597>11,597>12>595,603>11,603>12>601,607>11,607>12>605,624>11,624>12>622,627>11,627>12>625,633>11,633>12>631,637>11,637>12>635;2;n;1|2:2|3:3|4:4|5:5|6:6|7:7|8:7|3:3|3:3;n;3|9:8|10:9;p;1|2:2|3:3|4:4|5:10|6:11|7:7|8:7|3:3|3:3;n;3|9:12|10:13;3|9:8|10:1'
  284. ..'4;p;2;n;2|1:15;n;1|1:15|2:2|3:16|4:17|13:18|5:19|6:20|7:7|8:7|3:16|3:16;n;4|14:21;5|15:22;3|9:23|10:24;p;1|2:2|3:25|4:17|5:19|6:26|7:7|8:7|3:25|3:25;n;4;3|9:23|10:24;p;p;2|1:27;n;1|2:2|3:28|4:29|5:30|16:31|6:32|7:7|8:7|3:28|3:28;1|2:2|3:28|4:29|5:33|16:31|6:34|7:7|8:7|3:28|3:28;1|2'
  285. ..':2|3:28|4:29|5:35|16:31|6:32|7:7|8:7|3:28|3:28;1|2:2|3:28|4:36|5:37|16:38|6:39|7:7|8:7|3:28|3:28;1|2:2|3:28|4:36|5:40|16:41|6:39|7:7|8:7|3:28|3:28;1|2:2|3:42|4:43|5:44|16:45|6:46|7:7|8:7|3:42|3:42;n;6|15:47|17:48|17:48;p;1|2:2|3:49|4:36|5:50|16:51|6:52|7:7|8:7|3:49|3:49;n;6|3:53|18'
  286. ..':54|15:55|17:56|3:53|3:53|17:56;p;1|2:2|3:28|4:36|5:57|16:38|6:39|7:7|8:7|3:28|3:28;1|2:2|3:28|4:36|5:58|16:41|6:39|7:7|8:7|3:28|3:28;7|2:2|3:28|4:36|3:28|3:28|19:59;p;1|2:2|5:60|6:61|7:7|8:7;n;3|9:62|10:63;3|9:64|10:65;3|9:66|10:67;p;2|1:68;n;1|2:2|3:69|4:70|5:71|6:72|7:7|8:7|3:69'
  287. ..'|3:69;1|2:2|3:69|4:70|5:73|6:74|7:7|8:7|3:69|3:69;n;3|9:75|10:76;p;1|2:2|3:69|4:70|5:77|6:74|7:7|8:7|3:69|3:69;n;3|9:75|10:78;p;1|2:2|3:69|4:70|5:79|6:74|7:7|8:7|3:69|3:69;n;3|9:75|10:80;p;1|2:2|3:81|5:82|16:83|6:84|7:7|8:7|3:81|3:81;1|2:2|3:69|4:70|5:85|6:86|7:7|8:7|3:69|3:69;n;3|'
  288. ..'9:75|10:87;p;1|2:2|3:81|5:88|16:83|6:84|7:7|8:7|3:81|3:81;1|2:2|3:69|4:70|5:89|6:74|7:7|8:7|3:69|3:69;n;3|9:75|10:90;p;8|2:2|3:91|4:4|5:92|16:51|6:93|7:7|8:7|3:91|3:91;p;1|2:2|5:94|16:31|6:95|7:7|8:7;n;3|9:75|10:96;p;2;n;1|2:2|5:97|16:51|6:98|8:7;1|2:2|5:99|16:100|6:101|7:7|8:7;n;3'
  289. ..'|9:75|10:102;p;1|2:2|5:103|16:31|6:104|8:7;1|2:2|5:105|16:31|6:104|8:7;1|2:2|5:106|16:51|6:98|8:7;1|2:2|3:107|20:108|5:109|16:51|6:110|8:7|3:107|3:107;1|2:2|5:111|16:112|6:113|7:7|8:7;p;1|2:2|5:114|16:31|6:115|7:7|8:7;n;3|9:75|10:116;3|9:117|10:118;p;1|2:2|5:119|6:120|7:7|8:7;n;3|9'
  290. ..':75|10:121;3|9:122|10:123;p;2;n;1|2:2|5:124|16:125|6:126|21:127|22:128|7:7|8:7;n;9|9:129|10:130|23:131|24:132|25:133|26:134;p;1|2:2|5:135|16:136|6:137|27:138|28:138|29:138|30:138|8:7;n;9|9:139|10:140|23:141|24:142|25:143|26:144;9|9:145|10:140|23:142|24:143|25:144|26:141;9|9:146|10:'
  291. ..'147|23:148|24:149|25:150|26:151;9|9:152|10:153|23:141|24:154|25:143|26:144;9|9:155|10:140|23:154|24:143|25:144|26:141;3|9:75|10:156;p;1|2:2|3:157|20:2|5:158|6:159|22:128|29:138|30:138|3:157|3:157;n;9|9:155|10:160|23:161|24:162|25:163|26:164;9|9:155|10:165|23:166|24:167|25:168|26:16'
  292. ..'9;9|9:139|10:170|23:164|24:171|25:162|26:163;p;1|2:2|4:17|5:172|16:173|6:174|8:7;n;9|9:175|10:176|23:177|24:178|25:179|26:180;3|9:75|10:181;p;1|2:2|4:17|5:182|16:136|6:183|8:138;n;10|1:184|9:185|10:186;9|9:187|10:188|23:189|24:190|25:191|26:192;9|9:193|10:194|23:195|24:196|25:197|2'
  293. ..'6:198;3|9:75|10:199;p;1|2:2|3:3|5:200|16:136|6:201|7:138|8:7|3:3|3:3;n;10|1:184|9:202|10:203;10|1:184|9:204|10:205;p;1|2:2|4:17|5:206|6:174|8:7;n;3|9:75|10:207;p;1|2:2|4:17|5:208|16:136|6:174|8:7;n;10|1:184|9:209|10:210;3|9:75|10:211;p;1|2:2|3:212|5:213|16:51|6:214|21:127|22:128|7:'
  294. ..'7|8:7|3:212|3:212;1|2:2|3:25|5:215|16:173|6:216|21:127|7:7|29:138|30:138|8:7|3:25|3:25;1|2:2|3:217|4:218|20:219|5:220|16:125|6:221|21:127|22:128|7:7|29:138|30:138|8:7|3:217|3:217;n;3|9:75|10:222;p;1|2:2|3:223|4:17|20:224|5:225|16:136|6:226|22:128|8:138|3:223|3:223;n;9|9:227|10:228|'
  295. ..'23:189|24:190|25:191|26:192;p;1|2:2|3:223|4:17|20:224|5:229|6:226|7:138|8:138|3:223|3:223;n;9|9:227|10:230|23:189|24:190|25:191|26:192;p;1|2:2|3:157|5:231|16:136|6:232|22:128|8:233|3:157|3:157;1|2:2|3:157|5:234|16:136|6:235|8:233|3:157|3:157;1|2:2|3:223|4:17|20:224|5:236|6:226|7:13'
  296. ..'8|8:138|3:223|3:223;n;10|1:184|9:237|10:238;9|9:227|10:239|23:189|24:190|25:191|26:192;9|9:240|10:241|23:242|24:191|25:192|26:189;p;p;1|2:2|5:243|6:244|7:7|8:7;1|2:2|5:245|6:246|7:7|8:7;n;3|9:75|10:247;3|9:248|10:249;3|9:250|10:251;p;1|2:2|5:252|6:253|7:7|8:7;n;3|9:75|10:254;3|9:24'
  297. ..'8|10:255;3|9:64|10:256;p;1|2:2|5:257|16:31|6:258|7:7|8:7;n;3|9:75|10:259;3|9:23|10:260;p;1|2:2|5:261|6:262|7:7|8:7;n;3|9:75|10:263;p;p;1|2:2|3:264|5:265|16:266|6:267|3:264|3:264;n;11|31:268|18:138;3|9:269|10:270;p;2;n;2|1:15;n;1|1:15|2:2|3:16|4:17|13:18|5:271|6:20|7:7|8:7|3:16|3:16'
  298. ..';n;4|14:21;5|15:22;3|9:23|10:24;p;1|2:2|3:25|4:17|5:271|6:26|7:7|8:7|3:25|3:25;n;4;3|9:23|10:24;p;p;2|1:27;n;1|2:2|3:28|4:29|5:272|16:31|6:32|7:7|8:7|3:28|3:28;1|2:2|3:28|4:29|5:273|16:31|6:34|7:7|8:7|3:28|3:28;1|2:2|3:28|4:29|5:274|16:31|6:32|7:7|8:7|3:28|3:28;1|2:2|3:28|4:36|5:27'
  299. ..'5|16:38|6:39|7:7|8:7|3:28|3:28;1|2:2|3:28|4:36|5:276|16:41|6:39|7:7|8:7|3:28|3:28;1|2:2|3:42|4:43|5:277|16:45|6:46|7:7|8:7|3:42|3:42;n;6|15:47|17:48|17:48;p;1|2:2|3:49|4:36|5:278|16:51|6:52|7:7|8:7|3:49|3:49;n;6|3:53|18:54|15:55|17:56|3:53|3:53|17:56;p;1|2:2|3:28|4:36|5:279|16:38|6'
  300. ..':39|7:7|8:7|3:28|3:28;1|2:2|3:28|4:36|5:280|16:41|6:39|7:7|8:7|3:28|3:28;7|2:2|3:28|4:36|3:28|3:28|19:281;p;1|2:2|5:282|6:61|7:7|8:7;n;3|9:62|10:63;3|9:64|10:65;3|9:66|10:67;p;2|1:68;n;1|2:2|3:69|4:70|5:283|6:72|7:7|8:7|3:69|3:69;1|2:2|3:69|4:70|5:284|6:74|7:7|8:7|3:69|3:69;1|2:2|3'
  301. ..':69|4:70|5:285|6:74|7:7|8:7|3:69|3:69;1|2:2|3:69|4:70|5:286|6:74|7:7|8:7|3:69|3:69;1|2:2|3:81|5:287|16:83|6:84|7:7|8:7|3:81|3:81;1|2:2|3:69|4:70|5:288|6:86|7:7|8:7|3:69|3:69;1|2:2|3:81|5:289|16:83|6:84|7:7|8:7|3:81|3:81;1|2:2|3:69|4:70|5:290|6:74|7:7|8:7|3:69|3:69;8|2:2|3:91|4:4|5:'
  302. ..'291|16:51|6:93|7:7|8:7|3:91|3:91;p;1|2:2|5:292|16:31|6:95|7:7|8:7;2;n;1|2:2|5:293|16:51|6:98|8:7;1|2:2|5:294|16:100|6:101|7:7|8:7;n;p;1|2:2|5:295|16:31|6:104|8:7;1|2:2|5:296|16:31|6:104|8:7;1|2:2|5:297|16:51|6:98|8:7;1|2:2|3:107|20:108|5:298|16:51|6:110|8:7|3:107|3:107;1|2:2|5:299|'
  303. ..'16:112|6:113|7:7|8:7;p;1|2:2|5:300|16:31|6:115|7:7|8:7;n;3|9:117|10:118;p;1|2:2|5:301|6:120|7:7|8:7;n;3|9:122|10:123;p;2;n;1|2:2|5:302|16:125|6:126|21:127|22:128|7:7|8:7;n;9|9:129|10:130|23:131|24:132|25:133|26:134;p;1|2:2|5:303|16:136|6:137|27:138|28:138|29:138|30:138|8:7;n;9|9:13'
  304. ..'9|10:140|23:141|24:142|25:143|26:144;9|9:145|10:140|23:142|24:143|25:144|26:141;9|9:146|10:147|23:148|24:149|25:150|26:151;9|9:152|10:153|23:141|24:154|25:143|26:144;9|9:155|10:140|23:154|24:143|25:144|26:141;p;1|2:2|3:157|20:2|5:304|6:159|22:128|29:138|30:138|3:157|3:157;n;9|9:155'
  305. ..'|10:160|23:161|24:162|25:163|26:164;9|9:155|10:165|23:166|24:167|25:168|26:169;9|9:139|10:170|23:164|24:171|25:162|26:163;p;1|2:2|4:17|5:305|16:173|6:174|8:7;n;9|9:175|10:176|23:177|24:178|25:179|26:180;p;1|2:2|4:17|5:306|16:136|6:183|8:138;n;10|1:184|9:185|10:186;9|9:187|10:188|23'
  306. ..':189|24:190|25:191|26:192;9|9:193|10:194|23:195|24:196|25:197|26:198;p;1|2:2|3:3|5:307|16:136|6:201|7:138|8:7|3:3|3:3;n;10|1:184|9:202|10:203;10|1:184|9:204|10:205;p;1|2:2|4:17|5:308|6:174|8:7;1|2:2|4:17|5:309|16:136|6:174|8:7;n;10|1:184|9:209|10:210;p;1|2:2|3:212|5:310|16:51|6:214'
  307. ..'|21:127|22:128|7:7|8:7|3:212|3:212;1|2:2|3:25|5:311|16:173|6:216|21:127|7:7|29:138|30:138|8:7|3:25|3:25;1|2:2|3:217|4:218|20:219|5:312|16:125|6:221|21:127|22:128|7:7|29:138|30:138|8:7|3:217|3:217;1|2:2|3:223|4:17|20:224|5:313|16:136|6:226|22:128|8:138|3:223|3:223;n;9|9:227|10:228|2'
  308. ..'3:189|24:190|25:191|26:192;p;1|2:2|3:223|4:17|20:224|5:314|6:226|7:138|8:138|3:223|3:223;n;9|9:227|10:230|23:189|24:190|25:191|26:192;p;1|2:2|3:157|5:315|16:136|6:232|22:128|8:233|3:157|3:157;1|2:2|3:157|5:315|16:136|6:235|8:233|3:157|3:157;1|2:2|3:223|4:17|20:224|5:316|6:226|7:138'
  309. ..'|8:138|3:223|3:223;n;10|1:184|9:237|10:238;9|9:227|10:239|23:189|24:190|25:191|26:192;9|9:240|10:241|23:242|24:191|25:192|26:189;p;p;1|2:2|5:317|6:244|7:7|8:7;1|2:2|5:318|6:246|7:7|8:7;n;3|9:248|10:249;3|9:250|10:251;3|9:319|10:320;p;1|2:2|5:321|6:253|7:7|8:7;n;3|9:248|10:255;3|9:6'
  310. ..'4|10:256;p;1|2:2|5:322|16:31|6:258|7:7|8:7;n;3|9:23|10:260;p;1|2:2|5:323|6:262|7:7|8:7;n;3|9:324|10:325;p;p;2;n;2|1:15;n;1|1:15|2:2|3:16|4:17|13:18|5:326|6:20|7:7|8:7|3:16|3:16;n;4|14:21;5|15:22;3|9:23|10:24;p;1|2:2|3:25|4:17|5:326|6:26|7:7|8:7|3:25|3:25;n;4;3|9:23|10:24;p;p;2|1:27'
  311. ..';n;1|2:2|3:28|4:29|5:327|16:31|6:32|7:7|8:7|3:28|3:28;1|2:2|3:28|4:29|5:328|16:31|6:34|7:7|8:7|3:28|3:28;1|2:2|3:28|4:29|5:329|16:31|6:32|7:7|8:7|3:28|3:28;1|2:2|3:28|4:36|5:330|16:38|6:39|7:7|8:7|3:28|3:28;1|2:2|3:28|4:36|5:331|16:41|6:39|7:7|8:7|3:28|3:28;1|2:2|3:42|4:43|5:332|16'
  312. ..':45|6:46|7:7|8:7|3:42|3:42;n;6|15:47|17:48|17:48;p;1|2:2|3:49|4:36|5:333|16:51|6:52|7:7|8:7|3:49|3:49;n;6|3:53|18:54|15:55|17:56|3:53|3:53|17:56;p;1|2:2|3:28|4:36|5:334|16:38|6:39|7:7|8:7|3:28|3:28;1|2:2|3:28|4:36|5:335|16:41|6:39|7:7|8:7|3:28|3:28;7|2:2|3:28|4:36|3:28|3:28|19:336;'
  313. ..'p;1|2:2|5:337|6:61|7:7|8:7;n;3|9:62|10:63;3|9:64|10:65;3|9:66|10:67;p;2|1:68;n;1|2:2|3:69|4:70|5:338|6:72|7:7|8:7|3:69|3:69;1|2:2|3:69|4:70|5:339|6:74|7:7|8:7|3:69|3:69;n;3|9:75|10:340;p;1|2:2|3:69|4:70|5:341|6:74|7:7|8:7|3:69|3:69;n;3|9:75|10:342;p;1|2:2|3:69|4:70|5:343|6:74|7:7|8'
  314. ..':7|3:69|3:69;n;3|9:75|10:344;p;1|2:2|3:81|5:345|16:83|6:84|7:7|8:7|3:81|3:81;1|2:2|3:69|4:70|5:346|6:86|7:7|8:7|3:69|3:69;n;3|9:75|10:347;p;1|2:2|3:81|5:348|16:83|6:84|7:7|8:7|3:81|3:81;1|2:2|3:69|4:70|5:349|6:74|7:7|8:7|3:69|3:69;n;3|9:75|10:350;p;8|2:2|3:91|4:4|5:351|16:51|6:93|7'
  315. ..':7|8:7|3:91|3:91;p;1|2:2|5:352|16:31|6:95|7:7|8:7;n;3|9:75|10:353;p;2;n;1|2:2|5:354|16:51|6:98|8:7;1|2:2|5:355|16:100|6:101|7:7|8:7;n;3|9:75|10:356;p;1|2:2|5:357|16:31|6:104|8:7;1|2:2|5:358|16:31|6:104|8:7;1|2:2|5:359|16:51|6:98|8:7;1|2:2|3:107|20:108|5:360|16:51|6:110|8:7|3:107|3:'
  316. ..'107;1|2:2|5:361|16:112|6:113|7:7|8:7;p;1|2:2|5:362|16:31|6:115|7:7|8:7;n;3|9:117|10:118;3|9:75|10:363;p;1|2:2|5:364|6:120|7:7|8:7;n;3|9:122|10:123;3|9:75|10:365;p;2;n;1|2:2|5:366|16:125|6:126|21:127|22:128|7:7|8:7;n;9|9:129|10:130|23:131|24:132|25:133|26:134;p;1|2:2|5:367|16:136|6:'
  317. ..'137|27:138|28:138|29:138|30:138|8:7;n;9|9:139|10:140|23:141|24:142|25:143|26:144;9|9:145|10:140|23:142|24:143|25:144|26:141;9|9:146|10:147|23:148|24:149|25:150|26:151;9|9:152|10:153|23:141|24:154|25:143|26:144;9|9:155|10:140|23:154|24:143|25:144|26:141;3|9:75|10:368;p;1|2:2|3:157|2'
  318. ..'0:2|5:369|6:159|22:128|29:138|30:138|3:157|3:157;n;9|9:155|10:160|23:161|24:162|25:163|26:164;9|9:155|10:165|23:166|24:167|25:168|26:169;9|9:139|10:170|23:164|24:171|25:162|26:163;p;1|2:2|4:17|5:370|16:173|6:174|8:7;n;9|9:175|10:176|23:177|24:178|25:179|26:180;3|9:75|10:371;p;1|2:2'
  319. ..'|4:17|5:372|16:136|6:183|8:138;n;10|1:184|9:185|10:186;9|9:187|10:188|23:189|24:190|25:191|26:192;9|9:193|10:194|23:195|24:196|25:197|26:198;3|9:75|10:373;p;1|2:2|3:3|5:374|16:136|6:201|7:138|8:7|3:3|3:3;n;10|1:184|9:202|10:203;10|1:184|9:204|10:205;p;1|2:2|4:17|5:375|6:174|8:7;n;3'
  320. ..'|9:75|10:376;p;1|2:2|4:17|5:377|16:136|6:174|8:7;n;10|1:184|9:209|10:210;3|9:75|10:378;p;1|2:2|3:212|5:379|16:51|6:214|21:127|22:128|7:7|8:7|3:212|3:212;1|2:2|3:25|5:380|16:173|6:216|21:127|7:7|29:138|30:138|8:7|3:25|3:25;1|2:2|3:217|4:218|20:219|5:381|16:125|6:221|21:127|22:128|7:'
  321. ..'7|29:138|30:138|8:7|3:217|3:217;n;3|9:75|10:382;p;1|2:2|3:223|4:17|20:224|5:383|16:136|6:226|22:128|8:138|3:223|3:223;n;9|9:227|10:228|23:189|24:190|25:191|26:192;p;1|2:2|3:223|4:17|20:224|5:384|6:226|7:138|8:138|3:223|3:223;n;9|9:227|10:230|23:189|24:190|25:191|26:192;p;1|2:2|3:15'
  322. ..'7|5:385|16:136|6:232|22:128|8:233|3:157|3:157;1|2:2|3:157|5:386|16:136|6:235|8:233|3:157|3:157;1|2:2|3:223|4:17|20:224|5:387|6:226|7:138|8:138|3:223|3:223;n;10|1:184|9:237|10:238;9|9:227|10:239|23:189|24:190|25:191|26:192;9|9:240|10:241|23:242|24:191|25:192|26:189;p;p;1|2:2|5:388|6'
  323. ..':244|7:7|8:7;1|2:2|5:389|6:246|7:7|8:7;n;3|9:248|10:249;3|9:250|10:251;3|9:75|10:390;p;1|2:2|5:391|6:253|7:7|8:7;n;3|9:248|10:255;3|9:64|10:256;3|9:75|10:392;p;1|2:2|5:393|16:31|6:258|7:7|8:7;n;3|9:23|10:260;3|9:75|10:394;p;1|2:2|5:395|6:262|7:7|8:7;n;3|9:75|10:396;p;p;1|2:2|3:397|'
  324. ..'4:36|5:398|16:31|6:399|7:7|8:7|3:397|3:397;n;3|9:400|10:401;p;1|2:2|3:397|4:36|5:402|16:31|6:403|7:7|8:7|3:397|3:397;n;3|9:75|10:404;3|9:405|10:406;p;1|2:2|3:3|4:4|5:407|6:408|7:7|8:7|3:3|3:3;n;3|9:409|10:410;p;2|1:411;n;2;n;2;n;1|2:2|3:28|5:412|16:413|6:414|7:7|8:7|3:28|3:28;1|2:2'
  325. ..'|3:28|5:415|16:413|6:414|7:7|8:7|3:28|3:28;1|2:2|3:416|4:70|5:417|16:418|6:419|7:7|8:7|3:416|3:416;1|2:2|3:28|5:420|16:413|6:414|7:7|8:7|3:28|3:28;1|2:2|3:28|5:421|16:413|6:414|7:7|8:7|3:28|3:28;1|2:2|3:416|4:70|5:422|16:418|6:419|7:7|8:7|3:416|3:416;p;2;n;1|2:2|3:28|5:423|16:413|6'
  326. ..':414|7:7|8:7|3:28|3:28;1|2:2|3:28|5:424|16:413|6:414|7:7|8:7|3:28|3:28;1|2:2|3:416|4:70|5:425|16:418|6:419|7:7|8:7|3:416|3:416;1|2:2|3:28|5:426|16:413|6:414|7:7|8:7|3:28|3:28;1|2:2|3:28|5:427|16:413|6:414|7:7|8:7|3:28|3:28;1|2:2|3:416|4:70|5:428|16:418|6:419|7:7|8:7|3:416|3:416;p;p'
  327. ..';2;n;2;n;1|2:2|3:28|5:429|16:413|6:414|7:7|8:7|3:28|3:28;1|2:2|3:28|5:430|16:413|6:414|7:7|8:7|3:28|3:28;1|2:2|3:416|4:70|5:431|16:418|6:419|7:7|8:7|3:416|3:416;1|2:2|3:28|5:432|16:413|6:414|7:7|8:7|3:28|3:28;1|2:2|3:28|5:433|16:413|6:414|7:7|8:7|3:28|3:28;1|2:2|3:416|4:70|5:434|16'
  328. ..':418|6:419|7:7|8:7|3:416|3:416;p;2;n;1|2:2|3:28|5:435|16:413|6:414|7:7|8:7|3:28|3:28;1|2:2|3:28|5:436|16:413|6:414|7:7|8:7|3:28|3:28;1|2:2|3:416|4:70|5:437|16:418|6:419|7:7|8:7|3:416|3:416;1|2:2|3:28|5:438|16:413|6:414|7:7|8:7|3:28|3:28;1|2:2|3:28|5:439|16:413|6:414|7:7|8:7|3:28|3:'
  329. ..'28;1|2:2|3:416|4:70|5:440|16:418|6:419|7:7|8:7|3:416|3:416;p;p;p;1|2:2|5:441|6:442|7:7|8:7;n;3|9:75|10:443;3|9:444|10:445;p;1|1:446|2:2|3:447|5:448|16:31|6:449|3:447|3:447;n;12|32:450;n;13|6:451|33:452|34:2|35:54|36:453|37:454|38:2|39:455|40:128|41:2;p;10|1:456;3|9:457|10:458;p;2;n'
  330. ..';2;n;1|1:459|2:2|3:460|5:461|16:31|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:463;p;1|1:459|2:2|3:460|5:464|16:31|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:465;p;1|2:2|3:460|5:466|16:467|6:468|7:7|8:7|3:460|3:460;1|2:2|3:460|5:469|16:470|6:468|7:7|8:7|3:460|3:460;1|2:2|3:460|5:471|6:472'
  331. ..'|7:7|8:7|3:460|3:460;1|1:459|2:2|3:460|5:473|16:31|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:474;p;1|2:2|3:460|5:475|16:467|6:476|7:7|8:7|3:460|3:460;1|1:459|2:2|3:460|5:477|16:31|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:478;p;p;1|1:459|2:2|3:460|5:479|16:136|6:480|7:7|8:7|3:460|3:460'
  332. ..';n;4;3|9:75|10:481;p;2;n;1|1:459|2:2|3:460|5:482|16:173|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:483;p;1|1:459|2:2|3:460|5:484|16:173|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:485;p;1|2:2|3:460|5:486|16:487|6:468|7:7|8:7|3:460|3:460;1|2:2|3:460|5:488|16:489|6:468|7:7|8:7|3:460|3:460;1'
  333. ..'|2:2|3:460|5:490|16:31|6:472|7:7|8:7|3:460|3:460;1|1:459|2:2|3:460|5:491|16:173|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:492;p;1|2:2|3:460|5:493|16:487|6:476|7:7|8:7|3:460|3:460;1|1:459|2:2|3:460|5:494|16:173|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:495;p;p;2;n;1|1:459|2:2|3:460|5:49'
  334. ..'6|6:462|7:7|8:7|3:460|3:460;n;4;p;1|1:459|2:2|3:460|5:497|6:462|7:7|8:7|3:460|3:460;n;4;p;1|2:2|3:460|5:498|16:266|6:468|7:7|8:7|3:460|3:460;1|2:2|3:460|5:499|16:500|6:468|7:7|8:7|3:460|3:460;1|2:2|3:460|5:501|16:136|6:472|7:7|8:7|3:460|3:460;1|1:459|2:2|3:460|5:502|6:462|7:7|8:7|3'
  335. ..':460|3:460;n;4;p;1|2:2|3:460|5:503|16:266|6:476|7:7|8:7|3:460|3:460;1|1:459|2:2|3:460|5:504|6:462|7:7|8:7|3:460|3:460;n;4;p;p;2;n;1|1:459|2:2|3:460|5:505|16:136|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:506;p;1|1:459|2:2|3:460|5:507|16:136|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:508;'
  336. ..'p;1|2:2|3:460|5:509|16:510|6:468|7:7|8:7|3:460|3:460;1|2:2|3:460|5:511|16:512|6:468|7:7|8:7|3:460|3:460;1|2:2|3:460|5:513|16:51|6:472|7:7|8:7|3:460|3:460;1|1:459|2:2|3:460|5:514|16:136|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:515;p;1|2:2|3:460|5:516|16:510|6:476|7:7|8:7|3:460|3:460;'
  337. ..'1|1:459|2:2|3:460|5:517|16:136|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:518;p;p;1|1:459|2:2|3:460|5:519|16:136|6:520|7:7|8:7|3:460|3:460;n;4;p;1|1:459|2:2|3:460|5:521|16:136|6:522|7:7|8:7|3:460|3:460;n;4;p;p;1|2:2|4:36|5:523|6:524|7:7|8:7;n;3|9:75|10:525;3|9:526|10:527;3|9:528|10:52'
  338. ..'9;p;1|2:2|3:3|4:4|5:530|16:31|6:531|7:7|8:7|3:3|3:3;n;3|9:75|10:532;p;2;n;2|1:15;n;1|1:15|2:2|3:16|4:17|13:18|5:533|6:20|7:7|8:7|3:16|3:16;n;4|14:21;5|15:22;3|9:23|10:24;p;1|2:2|3:25|4:17|5:533|6:26|7:7|8:7|3:25|3:25;n;4;3|9:23|10:24;p;p;2|1:27;n;1|2:2|3:28|4:29|5:534|16:31|6:32|7:'
  339. ..'7|8:7|3:28|3:28;1|2:2|3:28|4:29|5:535|16:31|6:34|7:7|8:7|3:28|3:28;1|2:2|3:28|4:29|5:536|16:31|6:32|7:7|8:7|3:28|3:28;1|2:2|3:28|4:36|5:537|16:38|6:39|7:7|8:7|3:28|3:28;1|2:2|3:28|4:36|5:538|16:41|6:39|7:7|8:7|3:28|3:28;1|2:2|3:42|4:43|5:539|16:45|6:46|7:7|8:7|3:42|3:42;n;6|15:47|1'
  340. ..'7:48|17:48;p;1|2:2|3:49|4:36|5:540|16:51|6:52|7:7|8:7|3:49|3:49;n;6|3:53|18:54|15:55|17:56|3:53|3:53|17:56;p;1|2:2|3:28|4:36|5:541|16:38|6:39|7:7|8:7|3:28|3:28;1|2:2|3:28|4:36|5:542|16:41|6:39|7:7|8:7|3:28|3:28;7|2:2|3:28|4:36|3:28|3:28|19:543;p;1|2:2|5:544|6:61|7:7|8:7;n;3|9:62|10'
  341. ..':63;3|9:64|10:65;3|9:66|10:67;p;2|1:68;n;1|2:2|3:69|4:70|5:545|6:72|7:7|8:7|3:69|3:69;1|2:2|3:69|4:70|5:546|6:74|7:7|8:7|3:69|3:69;1|2:2|3:69|4:70|5:547|6:74|7:7|8:7|3:69|3:69;1|2:2|3:69|4:70|5:548|6:74|7:7|8:7|3:69|3:69;1|2:2|3:81|5:549|16:83|6:84|7:7|8:7|3:81|3:81;1|2:2|3:69|4:70'
  342. ..'|5:550|6:86|7:7|8:7|3:69|3:69;1|2:2|3:81|5:551|16:83|6:84|7:7|8:7|3:81|3:81;1|2:2|3:69|4:70|5:552|6:74|7:7|8:7|3:69|3:69;8|2:2|3:91|4:4|5:553|16:51|6:93|7:7|8:7|3:91|3:91;p;1|2:2|5:554|16:31|6:95|7:7|8:7;2;n;1|2:2|5:555|16:51|6:98|8:7;1|2:2|5:556|16:100|6:101|7:7|8:7;n;p;1|2:2|5:55'
  343. ..'7|16:31|6:104|8:7;1|2:2|5:558|16:31|6:104|8:7;1|2:2|5:559|16:51|6:98|8:7;1|2:2|3:107|20:108|5:560|16:51|6:110|8:7|3:107|3:107;1|2:2|5:561|16:112|6:113|7:7|8:7;p;1|2:2|5:562|16:31|6:115|7:7|8:7;n;3|9:117|10:118;p;1|2:2|5:563|6:120|7:7|8:7;n;3|9:122|10:123;p;2;n;1|2:2|5:564|16:125|6:'
  344. ..'126|21:127|22:128|7:7|8:7;n;9|9:129|10:130|23:131|24:132|25:133|26:134;p;1|2:2|5:565|16:136|6:137|27:138|28:138|29:138|30:138|8:7;n;9|9:139|10:140|23:141|24:142|25:143|26:144;9|9:145|10:140|23:142|24:143|25:144|26:141;9|9:146|10:147|23:148|24:149|25:150|26:151;9|9:152|10:153|23:141'
  345. ..'|24:154|25:143|26:144;9|9:155|10:140|23:154|24:143|25:144|26:141;p;1|2:2|3:157|20:2|5:566|6:159|22:128|29:138|30:138|3:157|3:157;n;9|9:155|10:160|23:161|24:162|25:163|26:164;9|9:155|10:165|23:166|24:167|25:168|26:169;9|9:139|10:170|23:164|24:171|25:162|26:163;p;1|2:2|4:17|5:567|16:'
  346. ..'173|6:174|8:7;n;9|9:175|10:176|23:177|24:178|25:179|26:180;p;1|2:2|4:17|5:568|16:136|6:183|8:138;n;10|1:184|9:185|10:186;9|9:187|10:188|23:189|24:190|25:191|26:192;9|9:193|10:194|23:195|24:196|25:197|26:198;p;1|2:2|3:3|5:569|16:136|6:201|7:138|8:7|3:3|3:3;n;10|1:184|9:202|10:203;10'
  347. ..'|1:184|9:204|10:205;p;1|2:2|4:17|5:570|6:174|8:7;1|2:2|4:17|5:571|16:136|6:174|8:7;n;10|1:184|9:209|10:210;p;1|2:2|3:212|5:572|16:51|6:214|21:127|22:128|7:7|8:7|3:212|3:212;1|2:2|3:25|5:573|16:173|6:216|21:127|7:7|29:138|30:138|8:7|3:25|3:25;1|2:2|3:217|4:218|20:219|5:574|16:125|6:'
  348. ..'221|21:127|22:128|7:7|29:138|30:138|8:7|3:217|3:217;1|2:2|3:223|4:17|20:224|5:575|16:136|6:226|22:128|8:138|3:223|3:223;n;9|9:227|10:228|23:189|24:190|25:191|26:192;p;1|2:2|3:223|4:17|20:224|5:576|6:226|7:138|8:138|3:223|3:223;n;9|9:227|10:230|23:189|24:190|25:191|26:192;p;1|2:2|3:'
  349. ..'157|5:577|16:136|6:232|22:128|8:233|3:157|3:157;1|2:2|3:157|5:577|16:136|6:235|8:233|3:157|3:157;1|2:2|3:223|4:17|20:224|5:578|6:226|7:138|8:138|3:223|3:223;n;10|1:184|9:237|10:238;9|9:227|10:239|23:189|24:190|25:191|26:192;9|9:240|10:241|23:242|24:191|25:192|26:189;p;p;1|2:2|5:579'
  350. ..'|6:244|7:7|8:7;1|2:2|5:580|6:246|7:7|8:7;n;3|9:248|10:249;3|9:250|10:251;p;1|2:2|5:581|6:253|7:7|8:7;n;3|9:248|10:255;3|9:64|10:256;p;1|2:2|5:582|16:31|6:258|7:7|8:7;n;3|9:23|10:260;p;1|2:2|5:583|6:262|7:7|8:7;n;3|9:324|10:325;p;p;1|2:2|3:397|4:36|5:584|6:585|7:7|8:7|3:397|3:397;n;'
  351. ..'3|9:586|10:587;3|9:319|10:588;p;1|2:2|3:397|4:36|5:589|16:31|6:590|7:7|8:7|3:397|3:397;n;3|9:75|10:591;p;1|2:2|3:397|4:36|5:592|16:31|6:593|7:7|8:7|3:397|3:397;n;3|9:75|10:594;p;2;n;2;n;1|1:459|2:2|3:460|5:595|16:31|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:596;p;1|1:459|2:2|3:460|5:'
  352. ..'597|16:31|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:598;p;1|2:2|3:460|5:599|16:467|6:468|7:7|8:7|3:460|3:460;1|2:2|3:460|5:600|16:470|6:468|7:7|8:7|3:460|3:460;1|2:2|3:460|5:601|6:472|7:7|8:7|3:460|3:460;1|1:459|2:2|3:460|5:602|16:31|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:603;p;1|2:'
  353. ..'2|3:460|5:604|16:467|6:476|7:7|8:7|3:460|3:460;1|1:459|2:2|3:460|5:605|16:31|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:606;p;p;1|1:459|2:2|3:460|5:607|16:136|6:480|7:7|8:7|3:460|3:460;n;4;3|9:75|10:608;p;2;n;1|1:459|2:2|3:460|5:609|16:173|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:610;p'
  354. ..';1|1:459|2:2|3:460|5:611|16:173|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:612;p;1|2:2|3:460|5:613|16:487|6:468|7:7|8:7|3:460|3:460;1|2:2|3:460|5:614|16:489|6:468|7:7|8:7|3:460|3:460;1|2:2|3:460|5:615|16:31|6:472|7:7|8:7|3:460|3:460;1|1:459|2:2|3:460|5:616|16:173|6:462|7:7|8:7|3:460|3'
  355. ..':460;n;4;3|9:75|10:617;p;1|2:2|3:460|5:618|16:487|6:476|7:7|8:7|3:460|3:460;1|1:459|2:2|3:460|5:619|16:173|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:620;p;p;2;n;1|1:459|2:2|3:460|5:621|6:462|7:7|8:7|3:460|3:460;n;4;p;1|1:459|2:2|3:460|5:622|6:462|7:7|8:7|3:460|3:460;n;4;p;1|2:2|3:460'
  356. ..'|5:623|16:266|6:468|7:7|8:7|3:460|3:460;1|2:2|3:460|5:624|16:500|6:468|7:7|8:7|3:460|3:460;1|2:2|3:460|5:625|16:136|6:472|7:7|8:7|3:460|3:460;1|1:459|2:2|3:460|5:626|6:462|7:7|8:7|3:460|3:460;n;4;p;1|2:2|3:460|5:627|16:266|6:476|7:7|8:7|3:460|3:460;1|1:459|2:2|3:460|5:628|6:462|7:7'
  357. ..'|8:7|3:460|3:460;n;4;p;p;2;n;1|1:459|2:2|3:460|5:629|16:136|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:630;p;1|1:459|2:2|3:460|5:631|16:136|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:632;p;1|2:2|3:460|5:633|16:510|6:468|7:7|8:7|3:460|3:460;1|2:2|3:460|5:634|16:512|6:468|7:7|8:7|3:460|3:4'
  358. ..'60;1|2:2|3:460|5:635|16:51|6:472|7:7|8:7|3:460|3:460;1|1:459|2:2|3:460|5:636|16:136|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:637;p;1|2:2|3:460|5:638|16:510|6:476|7:7|8:7|3:460|3:460;1|1:459|2:2|3:460|5:639|16:136|6:462|7:7|8:7|3:460|3:460;n;4;3|9:75|10:640;p;p;1|1:459|2:2|3:460|5:64'
  359. ..'1|16:136|6:520|7:7|8:7|3:460|3:460;n;4;p;1|1:459|2:2|3:460|5:642|16:136|6:522|7:7|8:7|3:460|3:460;n;4;p;p;p;')
  360. for _,Object in pairs(Objects) do
  361. Object.Parent = script and script.Parent==workspace and script or workspace
  362. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement