Advertisement
lafur

Untitled

May 17th, 2020
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 71.52 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 64604
  3. local genv={}
  4. local Scripts = {
  5. function() while true do
  6. script.Parent.Color = Color3.new(math.random(), math.random(), math.random())
  7. wait(0.9)
  8. end
  9. end;
  10. function() while true do
  11. script.Parent.Color = Color3.new(math.random(), math.random(), math.random())
  12. wait(0.9)
  13. end
  14. end;
  15. function() while true do
  16. script.Parent.Color = Color3.new(math.random(), math.random(), math.random())
  17. wait(0.9)
  18. end
  19. end;
  20. function() while true do
  21. script.Parent.Color = Color3.new(math.random(), math.random(), math.random())
  22. wait(0.9)
  23. end
  24. end;
  25. function() while true do
  26. script.Parent.Color = Color3.new(math.random(), math.random(), math.random())
  27. wait(0.9)
  28. end
  29. end;
  30. function() while true do
  31. script.Parent.Color = Color3.new(math.random(), math.random(), math.random())
  32. wait(0.9)
  33. end
  34. end;
  35. function() while true do
  36. script.Parent.Color = Color3.new(math.random(), math.random(), math.random())
  37. wait(0.9)
  38. end
  39. end;
  40. function() while true do
  41. script.Parent.Color = Color3.new(math.random(), math.random(), math.random())
  42. wait(0.9)
  43. end
  44. end;
  45. function() while true do
  46. script.Parent.Color = Color3.new(math.random(), math.random(), math.random())
  47. wait(0.9)
  48. end
  49. end;
  50. function() while true do
  51. script.Parent.Color = Color3.new(math.random(), math.random(), math.random())
  52. wait(0.9)
  53. end
  54. end;
  55. function() while true do
  56. script.Parent.Color = Color3.new(math.random(), math.random(), math.random())
  57. wait(0.9)
  58. end
  59. end;
  60. function() while true do
  61. script.Parent.Color = Color3.new(math.random(), math.random(), math.random())
  62. wait(0.9)
  63. end
  64. end;}local ActualScripts = {}
  65. function s(var)
  66. local func = table.remove(Scripts,1)
  67. setfenv(func,setmetatable({script=var,require=fake_require or require,global=genv},{
  68. __index = getfenv(func),
  69. }))
  70. table.insert(ActualScripts,coroutine.wrap(func))
  71. end
  72.  
  73. local Part_Classes = {"Part","WedgePart","CornerWedgePart"}
  74. local Part_Shapes = {"Brick","Cylinder","Sphere","Torso","Wedge"}
  75. function DecodeUnion(t)
  76. local r = function()return table.remove(t,1) end
  77. local split = function(str,sep)
  78. local fields = {}
  79. str:gsub(("([^%s]+)"):format(sep or ','),function(c)fields[#fields+1]=c end)
  80. return fields
  81. end
  82. local m = Instance.new("Folder")
  83. m.Name = "UnionCache ["..tostring(math.random(1,9999)).."]"
  84. m.Archivable = false
  85. m.Parent = game:GetService("ServerStorage")
  86. local Union,Subtract = {},{}
  87. repeat
  88. local isNegate = false
  89. local class = r()
  90. if class=='-' then
  91. isNegate = true
  92. class = r()
  93. end
  94. if class=='n' then
  95. local d = {}
  96. local a = r()
  97. repeat
  98. table.insert(d,a)
  99. a = r()
  100. until a=='p'
  101. local u = DecodeUnion(d)
  102. if u then
  103. table.insert(isNegate and Subtract or Union,u)
  104. end
  105. else
  106. local size,pos,rot = Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r())))
  107. local part = Instance.new(Part_Classes[tonumber(class)])
  108. part.Size = size
  109. part.Position = pos
  110. part.Orientation = rot
  111. if r()=="+" then
  112. local m,ms,of = r(),Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r())))
  113. if tonumber(m)==6 then
  114. part.Shape = Enum.PartType.Cylinder
  115. elseif tonumber(m)==7 then
  116. part.Shape = Enum.PartType.Ball
  117. else
  118. local mesh = Instance.new(tonumber(m)==8 and "CylinderMesh" or "SpecialMesh")
  119. if tonumber(m)~=8 then
  120. mesh.MeshType = Enum.MeshType[Part_Shapes[tonumber(m)]]
  121. end
  122. mesh.Scale = ms
  123. mesh.Offset = of
  124. mesh.Parent = part
  125. end
  126. end
  127. table.insert(isNegate and Subtract or Union,part)
  128. end
  129. until #t<=0
  130. local first = Union[1]
  131. first.Parent = m
  132. if #Union>1 then
  133. first = first:UnionAsync(Union)
  134. first.Parent = m
  135. end
  136. if #Subtract>0 then
  137. first = first:SubtractAsync(Subtract)
  138. first.Parent = m
  139. end
  140. first.Parent = nil
  141. m:Destroy()
  142. return first
  143. end
  144. Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  145. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  146. function(t,f)
  147. for a,b in pairs(t) do
  148. f(a,b)
  149. end
  150. end
  151. local Types = {
  152. Color3 = Color3.new,
  153. Vector3 = Vector3.new,
  154. Vector2 = Vector2.new,
  155. UDim = UDim.new,
  156. UDim2 = UDim2.new,
  157. CFrame = CFrame.new,
  158. Rect = Rect.new,
  159. NumberRange = NumberRange.new,
  160. BrickColor = BrickColor.new,
  161. PhysicalProperties = PhysicalProperties.new,
  162. NumberSequence = function(...)
  163. local a = {...}
  164. local t = {}
  165. repeat
  166. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  167. until #a==0
  168. return NumberSequence.new(t)
  169. end,
  170. ColorSequence = function(...)
  171. local a = {...}
  172. local t = {}
  173. repeat
  174. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  175. until #a==0
  176. return ColorSequence.new(t)
  177. end,
  178. number = tonumber,
  179. boolean = function(a)
  180. return a=="1"
  181. end
  182. }
  183. split = function(str,sep)
  184. if not str then return end
  185. local fields = {}
  186. local ConcatNext = false
  187. str:gsub(("([^%s]+)"):format(sep),function(c)
  188. if ConcatNext == true then
  189. fields[#fields] = fields[#fields]..sep..c
  190. ConcatNext = false
  191. else
  192. fields[#fields+1] = c
  193. end
  194. if c:sub(#c)=="\\" then
  195. c = fields[#fields]
  196. fields[#fields] = c:sub(1,#c-1)
  197. ConcatNext = true
  198. end
  199. end)
  200. return fields
  201. end
  202. RemoveAndSplit = function(t)
  203. return split(table_remove(t,1),comma)
  204. end
  205. t = split(str,";")
  206. props = RemoveAndSplit(t)
  207. classes = RemoveAndSplit(t)
  208. values = split(table_remove(t,1),'|')
  209. ICList = RemoveAndSplit(t)
  210. InstanceList = {}
  211. Model = inst"Model"
  212. CurPar = Model
  213. table_foreach(t,function(ct,c)
  214. if c=="n" or c=="p" then
  215. CurPar = c=="n" and LastIns or CurPar[parnt]
  216. else
  217. ct = split(c,"|")
  218. local class = classes[tonum(table_remove(ct,1))]
  219. if class=="UnionOperation" then
  220. LastIns = {UsePartColor="1"}
  221. else
  222. LastIns = inst(class)
  223. if LastIns:IsA"Script" then
  224. s(LastIns)
  225. elseif LastIns:IsA("ModuleScript") then
  226. ms(LastIns)
  227. end
  228. end
  229.  
  230. local function SetProperty(LastIns,p,str,s)
  231. s = Types[typeof(LastIns[p])]
  232. if p=="CustomPhysicalProperties" then
  233. s = PhysicalProperties.new
  234. end
  235. if s then
  236. LastIns[p] = s(unpack(split(str,comma)))
  237. else
  238. LastIns[p] = str
  239. end
  240. end
  241.  
  242. local UnionData
  243. table_foreach(ct,function(s,p,a,str)
  244. a = p:find":"
  245. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  246. if p=="UnionData" then
  247. UnionData = split(str," ")
  248. return
  249. end
  250. if class=="UnionOperation" then
  251. LastIns[p] = str
  252. return
  253. end
  254. SetProperty(LastIns,p,str)
  255. end)
  256.  
  257. if UnionData then
  258. local LI_Data = LastIns
  259. LastIns = DecodeUnion(UnionData)
  260. table_foreach(LI_Data,function(p,str)
  261. SetProperty(LastIns,p,str)
  262. end)
  263. end
  264. table.insert(InstanceList,LastIns)
  265. LastIns[parnt] = CurPar
  266. end
  267. end)
  268. table_remove(ICList,1)
  269. table_foreach(ICList,function(a,b)
  270. b = split(b,">")
  271. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  272. end)
  273.  
  274. return Model:GetChildren()
  275. end
  276.  
  277. local Objects = Decode('Name,Anchored,Color,Material,Position,Orientation,Size,BottomSurface,TopSurface,C0,C1,Part0,Part1,Reflectance,Scale,Range,Transparency,UnionData,BackSurface,Texture,CanvasSize,BackgroundColor3,BackgroundTransparency,Font,Text,TextColor3,TextScaled,TextSize,TextStrokeTransparency,TextWrapped;Part,Model,Snap,Script,Weld,CylinderMesh,PointLight,UnionOperation,ManualWeld,Decal,SurfaceGui,TextLabel;Part|1|0.4117,0.2509,0.1568|512|-'
  278. ..'31.1187,14.0338,-31.1263|0,-90,0|0.3897,0.4676,0.3897|0|-31.1164,14.6573,-31.129|-31.1164,15.5926,-31.129|-31.1164,16.5279,-31.129|0.949,0.9529,0.9529|-31.8958,15.125,-31.7136|1.9485,0.4676,0.7794|0,-0.2339,0,1,0,0,-0,-0,-1,0,1,0|2.7279,0.2338,-0.9743,0,1,0,0,0,-1,-1,0,0|0.2274,0.4901,0.0823|-32.8701,15.125,-35.2209|4.6764,0.1558,3.897|-32.8701,14.3455,-34.2467|6.6249,0.1558,3.897|-32.8701,15.125,-31.129|0.3897,0.4676,3.897|0.'
  279. ..'898,0.8941,0.8745|-32.8701,14.9691,-34.8312|5.4558,0.1558,3.897|0,-0.078,0,1,0,0,-0,-0,-1,0,1,0|-0.3898,0.2338,0,1,0,0,0,0,-1,0,1,0|-32.8701,16.0603,-31.129|0.9725,0.9725,0.9725|-32.8701,14.6573,-34.4415|6.2352,0.4676,3.897|0,0.2338,0,-1,-0,-0,0,0,1,0,1,0|0.9742,-0.2339,-2.728,0,-1,0,0,0,1,-1,0,0|-33.8444,15.125,-31.7136|-34.626,14.0338,-31.1263|-34.6238,14.6573,-31.129|-34.6238,15.5926,-31.129|-34.6238,16.5279,-31.129|-31.118'
  280. ..'7,14.0338,-37.3615|-34.626,14.0338,-37.3615|0.3882,0.3725,0.3843|0.3|-30.8001,23.896,-46.5664|0.4866,0.5839,7.2999|-34.2067,21.852,-46.5664|0.4866,3.5039,0.4866|0.3843,0.145,0.8196|-30.8001,22.144,-46.5664|0.4866,2.9199,6.3266|-27.3934,21.852,-46.5664|-30.8001,20.392,-46.5664|6.3266,0.5839,0.4866|-31.1187,14.0338,68.1737|-31.1164,14.6573,68.171|-31.1164,15.5926,68.171|-31.1164,16.5279,68.171|-31.8958,15.125,67.5864|-32.8701,15'
  281. ..'.125,64.0791|-32.8701,14.3455,65.0533|-32.8701,15.125,68.171|-32.8701,14.9691,64.4688|-32.8701,16.0603,68.171|-32.8701,14.6573,64.8585|-33.8444,15.125,67.5864|-34.626,14.0338,68.1737|-34.6238,14.6573,68.171|-34.6238,15.5926,68.171|-34.6238,16.5279,68.171|-31.1187,14.0338,61.9386|-34.626,14.0338,61.9386|-31.1187,14.0338,48.8737|-31.1164,14.6573,48.871|-31.1164,15.5926,48.871|-31.1164,16.5279,48.871|-31.8958,15.125,48.2864|-32.8'
  282. ..'701,15.125,44.7791|-32.8701,14.3455,45.7533|-32.8701,15.125,48.871|-32.8701,14.9691,45.1688|-32.8701,16.0603,48.871|-32.8701,14.6573,45.5585|-33.8444,15.125,48.2864|-34.626,14.0338,48.8737|-34.6238,14.6573,48.871|-34.6238,15.5926,48.871|-34.6238,16.5279,48.871|-31.1187,14.0338,42.6385|-34.626,14.0338,42.6385|-30.8001,23.896,-26.7664|-5.2501,-6.85,1,1,0,0,0,1,0,0,0,1|-0.2337,-9.8961,5.0999,0,0,1,0,1,0,-1,0,0|-34.2067,21.852,-26'
  283. ..'.7664|-0.2337,-7.8521,1.6932,0,0,1,0,1,0,-1,0,0|-30.8001,22.144,-26.7664|-0.2337,-8.1441,5.0999,0,0,1,0,1,0,-1,0,0|-27.3934,21.852,-26.7664|-0.2337,-7.8521,8.5065,0,0,1,0,1,0,-1,0,0|-30.8001,20.392,-26.7664|-5.1,-6.3921,-0.2337,1,0,0,0,1,0,0,0,1|-30.8001,23.896,-6.6664|-34.2067,21.852,-6.6664|-30.8001,22.144,-6.6664|-27.3934,21.852,-6.6664|-30.8001,20.392,-6.6664|-30.8001,23.896,13.1336|-34.2067,21.852,13.1336|-30.8001,22.144,'
  284. ..'13.1336|-27.3934,21.852,13.1336|-30.8001,20.392,13.1336|-31.1193,0.2338,48.8742|-256,10,256,-1,0,0,0,0,1,0,1,0|207.126,-0.2339,224.881,0,0.9999,0,0,0,1,0.9999,0,0|-31.1164,0.8573,48.871|-31.1164,1.7926,48.871|-31.1164,2.7279,48.871|-31.8958,1.325,48.2864|-32.8701,1.325,44.7791|-32.8701,0.5455,45.7533|-32.8701,1.325,48.871|-32.8701,1.1691,45.1688|-32.8701,2.2603,48.871|-32.8701,0.8573,45.5585|-33.8444,1.325,48.2864|-34.6265,0.2'
  285. ..'338,48.8742|207.126,-0.2339,221.3737,0,0.9999,0,0,0,1,0.9999,0,0|-34.6238,0.8573,48.871|-34.6238,1.7926,48.871|-34.6238,2.7279,48.871|-31.1193,0.2338,42.639|213.3611,-0.2339,224.881,0,0.9999,0,0,0,1,0.9999,0,0|-34.6265,0.2338,42.639|213.3611,-0.2339,221.3737,0,0.9999,0,0,0,1,0.9999,0,0|-31.1193,0.2338,68.1741|187.826,-0.2339,224.881,0,0.9999,0,0,0,1,0.9999,0,0|-31.1164,0.8573,68.171|-31.1164,1.7926,68.171|-31.1164,2.7279,68.17'
  286. ..'1|-31.8958,1.325,67.5864|-32.8701,1.325,64.0791|-32.8701,0.5455,65.0533|-32.8701,1.325,68.171|-32.8701,1.1691,64.4688|-32.8701,2.2603,68.171|-32.8701,0.8573,64.8585|-33.8444,1.325,67.5864|-34.6265,0.2338,68.1741|187.826,-0.2339,221.3737,0,0.9999,0,0,0,1,0.9999,0,0|-34.6238,0.8573,68.171|-34.6238,1.7926,68.171|-34.6238,2.7279,68.171|-31.1193,0.2338,61.939|194.0611,-0.2339,224.881,0,0.9999,0,0,0,1,0.9999,0,0|-34.6265,0.2338,61.9'
  287. ..'39|194.0611,-0.2339,221.3737,0,0.9999,0,0,0,1,0.9999,0,0|-31.1193,0.2338,-11.8257|267.8259,-0.2339,224.881,0,0.9999,0,0,0,1,0.9999,0,0|-31.1164,0.8573,-11.829|-31.1164,1.7926,-11.829|-31.1164,2.7279,-11.829|-31.8958,1.325,-12.4136|-32.8701,1.325,-15.9209|-32.8701,0.5455,-14.9467|-32.8701,1.325,-11.829|-32.8701,1.1691,-15.5312|-32.8701,2.2603,-11.829|-32.8701,0.8573,-15.1415|-33.8444,1.325,-12.4136|-34.6265,0.2338,-11.8257|267.'
  288. ..'8259,-0.2339,221.3737,0,0.9999,0,0,0,1,0.9999,0,0|-34.6238,0.8573,-11.829|-34.6238,1.7926,-11.829|-34.6238,2.7279,-11.829|-31.1193,0.2338,-18.0608|274.061,-0.2339,224.881,0,0.9999,0,0,0,1,0.9999,0,0|-34.6265,0.2338,-18.0608|274.061,-0.2339,221.3737,0,0.9999,0,0,0,1,0.9999,0,0|-31.1193,0.2338,9.3743|246.6259,-0.2339,224.881,0,0.9999,0,0,0,1,0.9999,0,0|-31.1164,0.8573,9.371|-31.1164,1.7926,9.371|-31.1164,2.7279,9.371|-31.8958,1.'
  289. ..'325,8.7864|-32.8701,1.325,5.2791|-32.8701,0.5455,6.2533|-32.8701,1.325,9.371|-32.8701,1.1691,5.6688|-32.8701,2.2603,9.371|-32.8701,0.8573,6.0585|-33.8444,1.325,8.7864|-34.6265,0.2338,9.3743|246.6259,-0.2339,221.3737,0,0.9999,0,0,0,1,0.9999,0,0|-34.6238,0.8573,9.371|-34.6238,1.7926,9.371|-34.6238,2.7279,9.371|-31.1193,0.2338,3.1391|252.8611,-0.2339,224.881,0,0.9999,0,0,0,1,0.9999,0,0|-34.6265,0.2338,3.1391|252.8611,-0.2339,221.'
  290. ..'3737,0,0.9999,0,0,0,1,0.9999,0,0|-31.1193,0.2338,28.6742|227.326,-0.2339,224.881,0,0.9999,0,0,0,1,0.9999,0,0|-31.1164,0.8573,28.671|-31.1164,1.7926,28.671|-31.1164,2.7279,28.671|-31.8958,1.325,28.0864|-32.8701,1.325,24.579|-32.8701,0.5455,25.5533|-32.8701,1.325,28.671|-32.8701,1.1691,24.9688|-32.8701,2.2603,28.671|-32.8701,0.8573,25.3585|-33.8444,1.325,28.0864|-34.6265,0.2338,28.6742|227.326,-0.2339,221.3737,0,0.9999,0,0,0,1,0'
  291. ..'.9999,0,0|-34.6238,0.8573,28.671|-34.6238,1.7926,28.671|-34.6238,2.7279,28.671|-31.1193,0.2338,22.4391|233.5611,-0.2339,224.881,0,0.9999,0,0,0,1,0.9999,0,0|-34.6265,0.2338,22.4391|233.5611,-0.2339,221.3737,0,0.9999,0,0,0,1,0.9999,0,0|-31.1187,14.0338,9.3737|-31.1164,14.6573,9.371|-31.1164,15.5926,9.371|-31.1164,16.5279,9.371|-31.8958,15.125,8.7864|-32.8701,15.125,5.2791|-32.8701,14.3455,6.2533|-32.8701,15.125,9.371|-32.8701,14'
  292. ..'.9691,5.6688|-32.8701,16.0603,9.371|-32.8701,14.6573,6.0585|-33.8444,15.125,8.7864|-34.626,14.0338,9.3737|-34.6238,14.6573,9.371|-34.6238,15.5926,9.371|-34.6238,16.5279,9.371|-31.1187,14.0338,3.1385|-34.626,14.0338,3.1385|-31.1187,14.0338,28.6737|-31.1164,14.6573,28.671|-31.1164,15.5926,28.671|-31.1164,16.5279,28.671|-31.8958,15.125,28.0864|-32.8701,15.125,24.579|-32.8701,14.3455,25.5533|-32.8701,15.125,28.671|-32.8701,14.9691'
  293. ..',24.9688|-32.8701,16.0603,28.671|-32.8701,14.6573,25.3585|-33.8444,15.125,28.0864|-34.626,14.0338,28.6737|-34.6238,14.6573,28.671|-34.6238,15.5926,28.671|-34.6238,16.5279,28.671|-31.1187,14.0338,22.4385|-34.626,14.0338,22.4385|-30.8001,9.796,53.0336|-34.2067,7.752,53.0336|-30.8001,8.044,53.0336|-27.3934,7.752,53.0336|-30.8001,6.292,53.0336|-30.8001,9.796,33.2336|-34.2067,7.752,33.2336|-30.8001,8.044,33.2336|-27.3934,7.752,33.2'
  294. ..'336|-30.8001,6.292,33.2336|-30.8001,9.796,13.1336|-0.2337,-9.7961,5.1,0,0,1,0,1,0,-1,0,0|-34.2067,7.752,13.1336|-0.2337,-7.7521,1.6933,0,0,1,0,1,0,-1,0,0|-30.8001,8.044,13.1336|-0.2337,-8.0441,5.1,0,0,1,0,1,0,-1,0,0|-27.3934,7.752,13.1336|-0.2337,-7.7521,8.5067,0,0,1,0,1,0,-1,0,0|-30.8001,6.292,13.1336|-5.1001,-6.2921,-0.2337,1,0,0,0,1,0,0,0,1|-30.8001,9.796,-6.6664|-34.2067,7.752,-6.6664|-30.8001,8.044,-6.6664|-27.3934,7.752,'
  295. ..'-6.6664|-30.8001,6.292,-6.6664|-30.8001,9.796,-46.5664|-34.2067,7.752,-46.5664|-30.8001,8.044,-46.5664|-27.3934,7.752,-46.5664|-30.8001,6.292,-46.5664|-30.8001,9.796,-26.7664|-34.2067,7.752,-26.7664|-30.8001,8.044,-26.7664|-27.3934,7.752,-26.7664|-30.8001,6.292,-26.7664|-31.1187,14.0338,-11.8263|-31.1164,14.6573,-11.829|-31.1164,15.5926,-11.829|-31.1164,16.5279,-11.829|-31.8958,15.125,-12.4136|-32.8701,15.125,-15.9209|-32.8701'
  296. ..',14.3455,-14.9467|-32.8701,15.125,-11.829|-32.8701,14.9691,-15.5312|-32.8701,16.0603,-11.829|-32.8701,14.6573,-15.1415|-33.8444,15.125,-12.4136|-34.626,14.0338,-11.8263|-34.6238,14.6573,-11.829|-34.6238,15.5926,-11.829|-34.6238,16.5279,-11.829|-31.1187,14.0338,-18.0615|-34.626,14.0338,-18.0615|-30.8001,23.896,53.0336|-34.2067,21.852,53.0336|-30.8001,22.144,53.0336|-27.3934,21.852,53.0336|-30.8001,20.392,53.0336|-30.8001,23.896'
  297. ..',33.2336|-34.2067,21.852,33.2336|-30.8001,22.144,33.2336|-27.3934,21.852,33.2336|-30.8001,20.392,33.2336|-31.1187,0.2338,-31.1263|287.1266,-0.2339,224.8816,0,0.9999,0,0,0,1,0.9999,0,0|-31.1164,0.8573,-31.129|-31.1164,1.7926,-31.129|-31.1164,2.7279,-31.129|-31.8958,1.325,-31.7136|-32.8701,1.325,-35.2209|-32.8701,0.5456,-34.2467|-32.8701,1.325,-31.129|-32.8701,1.1691,-34.8312|-32.8701,2.2603,-31.129|-32.8701,0.8573,-34.4415|-33.'
  298. ..'8444,1.325,-31.7136|-34.626,0.2338,-31.1263|287.1266,-0.2339,221.3743,0,0.9999,0,0,0,1,0.9999,0,0|-34.6238,0.8573,-31.129|-34.6238,1.7926,-31.129|-34.6238,2.7279,-31.129|-31.1187,0.2338,-37.3615|293.3617,-0.2339,224.8816,0,0.9999,0,0,0,1,0.9999,0,0|-34.626,0.2338,-37.3615|293.3617,-0.2339,221.3743,0,0.9999,0,0,0,1,0.9999,0,0|Light|0.9921,0.9176,0.5529|272|0.4|-29.2583,12.6,21.6838|2,0.2,2|1,1.0099,1|40|2.4,0.2,2.4|-30.6501,13.'
  299. ..'1999,21.4005|10.2999,1,16.8|-64.6,-15.4001,1,1,0,0,0,1,0,0,0,1|-5.15,-13.2,56.8994,0,0,0.9999,0,1,0,-1,0,0|-30.9003,20.85,-29.8501|89.97,0,0|9.9999,1.7,13.6999|-26.3001,6.35,23.9499|0,90,0|11.7,12.7,1|-256,10,256,-1,0,0,0,0,1,0,1,-0|-232.0501,-6.3501,-229.7,0,-1,0,0,0,1,-1,0,0|-31.6409,1.8,15.9376|1,1.6,4|-33.5407,0.5,15.9376|0,0,90|1,4.8,4|-0.5001,222.4593,240.0623,0,0,1,1,0,0,0,1,0|-33.1407,1.8,14.4376|1,1.6,2|-33.1407,1.8,1'
  300. ..'7.4376|-34.6407,1.8,15.9376|0.0509,0.4117,0.6745|0.5|-33.1407,1.8,15.9376|2,1.6,2|-35.5407,3.5,15.9376|5,0.8,4|-30.6501,6.8499,11.9|10.5,13.6999,2|-225.35,-6.85,244.0999,-1,0,0,0,0,1,0,1,-0|4.9999,-0.8501,6.8499,1,0,0,0,0,-1,0,1,0|-5.2506,-6.8501,-1.0001,-1,0,0,0,-1,0,0,0,1|-31.6409,15.8,15.9376|-33.5407,14.5,15.9376|-33.1407,15.8,14.4376|-33.1407,15.8,17.4376|-34.6407,15.8,15.9376|-33.1407,15.8,15.9376|-35.5407,17.5,15.9376|-'
  301. ..'29.2583,26.6,21.6838|-30.65,20.85,11.9|-5.2504,-6.85,-1.0001,-1,0,0,0,-1,0,0,0,1|-30.9003,20.85,29.95|Plate|1 0.0675,1.35,1.35 1.0228,3.6529,33.9207 0,0,-90 = 1 0.0405,1.1589,1.1589 1.0228,3.6056,33.9207 0,0,-90 = - 1 0.0675,1.0125,1.0125 1.0228,3.6529,33.9207 0,0,-90 =|0.7921,0.796,0.8196|-5.6499,13.35,73.8986|43.2999,1.1,4.5999|58.05,-15.4001,-1.05,-1,0,0,0,1,0,0,0,-1|21.6493,-13.3501,-113.7983,0,0,-1,0,1,0,0.9999,0,0|26.949'
  302. ..'9,-15.4001,-1.05,-1,0,0,0,1,0,0,0,-1|23.7498,-13.3501,2.301,-1,0,0,0,1,0,0,0,-1|1 0.0675,1.35,1.35 2.8228,3.6529,36.1707 0,0,-90 = 1 0.0405,1.1589,1.1589 2.8228,3.6056,36.1707 0,0,-90 = - 1 0.0675,1.0125,1.0125 2.8228,3.6529,36.1707 0,0,-90 =|1 0.0675,1.35,1.35 2.8228,3.6529,31.6707 0,0,-90 = 1 0.0405,1.1589,1.1589 2.8228,3.6056,31.6707 0,0,-90 = - 1 0.0675,1.0125,1.0125 2.8228,3.6529,31.6707 0,0,-90 =|0.5607,0.298,0.1647|0.34'
  303. ..'78,1.8,31.2207|0.4499,3.5999,0.4499|0.3478,1.8,36.6207|1 0.0675,1.35,1.35 5.0728,3.6529,33.9207 0,0,-90 = 1 0.0405,1.1589,1.1589 5.0728,3.6056,33.9207 0,0,-90 = - 1 0.0675,1.0125,1.0125 5.0728,3.6529,33.9207 0,0,-90 =|-0.3272,1.575,33.9207|1.7999,0.4499,2.2499|Part-to-Part Strong Joint|-0.9,0.2249,1.1249,-1,0,0,0,0,1,0,1,-0|-0.9,-1.35,2.0249,-1,0,0,0,0,1,0,1,-0|-1.2272,0.9,34.5957|0.4499,1.7999,0.4499|-0.225,0.8999,0.2249,-1,0'
  304. ..',0,0,0,1,0,1,-0|-0.9,-1.35,0.2249,-1,0,0,0,0,1,0,1,-0|0.5728,0.9,34.5957|-1.2272,3.15,33.9207|1.7999,2.6999,0.4499|-1.2272,0.9,33.2457|0.4499,-1.35,0.2249,-1,0,0,0,0,1,0,1,-0|0.5728,0.9,33.2457|2.8228,3.375,33.9207|5.3999,0.4499,5.8499|2.8228,1.575,37.0707|0,180,0|3.4978,0.9,37.9707|3.4978,0.9,36.1707|2.8228,3.15,37.9707|2.1478,0.9,37.9707|2.1478,0.9,36.1707|5.9728,1.575,33.9207|6.8728,0.9,33.2457|5.0728,0.9,33.2457|6.8728,3.1'
  305. ..'5,33.9207|6.8728,0.9,34.5957|5.0728,0.9,34.5957|0.9294,0.9176,0.9176|528|11.6998,2.2498,-12.9011|8.5999,5.9,2|5.2978,1.8,31.2207|5.2978,1.8,36.6207|2.8228,1.575,30.3207|2.1478,0.9,29.4207|2.1478,0.9,31.2207|2.8228,3.15,29.4207|3.4978,0.9,29.4207|3.4978,0.9,31.2207|1 0.0675,1.35,1.35 13.5728,3.6529,33.9207 0,0,-90 = 1 0.0405,1.1589,1.1589 13.5728,3.6056,33.9207 0,0,-90 = - 1 0.0675,1.0125,1.0125 13.5728,3.6529,33.9207 0,0,-90 ='
  306. ..'|13.7978,1.8,31.2207|13.7978,1.8,36.6207|11.3228,3.375,33.9207|11.3228,1.575,37.0707|11.9978,0.9,37.9707|11.9978,0.9,36.1707|11.3228,3.15,37.9707|10.6478,0.9,37.9707|10.6478,0.9,36.1707|11.3228,1.575,30.3207|10.6478,0.9,29.4207|10.6478,0.9,31.2207|11.3228,3.15,29.4207|11.9978,0.9,29.4207|11.9978,0.9,31.2207|8.8478,1.8,31.2207|8.8478,1.8,36.6207|1 0.0675,1.35,1.35 9.5228,3.6529,33.9207 0,0,-90 = 1 0.0405,1.1589,1.1589 9.5228,3.'
  307. ..'6056,33.9207 0,0,-90 = - 1 0.0675,1.0125,1.0125 9.5228,3.6529,33.9207 0,0,-90 =|8.1728,1.575,33.9207|7.2728,0.9,34.5957|9.0728,0.9,34.5957|7.2728,3.15,33.9207|7.2728,0.9,33.2457|9.0728,0.9,33.2457|1 0.0675,1.35,1.35 11.3228,3.6529,31.6707 0,0,-90 = 1 0.0405,1.1589,1.1589 11.3228,3.6056,31.6707 0,0,-90 = - 1 0.0675,1.0125,1.0125 11.3228,3.6529,31.6707 0,0,-90 =|1 0.0675,1.35,1.35 11.3228,3.6529,36.1707 0,0,-90 = 1 0.0405,1.1589'
  308. ..',1.1589 11.3228,3.6056,36.1707 0,0,-90 = - 1 0.0675,1.0125,1.0125 11.3228,3.6529,36.1707 0,0,-90 =|14.4728,1.575,33.9207|15.3728,0.9,33.2457|13.5728,0.9,33.2457|15.3728,3.15,33.9207|15.3728,0.9,34.5957|13.5728,0.9,34.5957|0.0352,0.5372,0.8117|17.0494,15.4,18.1505|116.1,30.8,2.0999|-237.8496,-15.4001,-273.0495,0,-1,0,0,0,1,-1,0,0|-58.0496,-15.4001,1.0504,0,0,0.9999,0,1,0,-1,0,0|8.1991,2.5499,-2.5492|18.7,5.0999,1.5999|-258.5492'
  309. ..',-2.55,-264.1992,0,-1,0,0,0,1,-1,0,0|0.0666,0.0666,0.0666|8.2491,5.5999,-9.399|0.9,1,0.9999|-9.3501,2.5499,0.7999,-1,0,0,0,0,1,0,1,-0|0.7499,-0.5,16.1998,0,0.9999,0,0,0,1,0.9999,0,0|1.3101,29.7,-36.7215|25.9499,-0.5,62.7999,1,0,0,0,0,-1,0,1,0|14.6899,0.0999,112.9214,0.9999,0,0,0,0,-1,0,0.9999,0|-8.8501,15.3999,-49.85|53.8999,30.7999,2.0999|-247.15,-15.4,305.8499,-1,0,0,0,0,1,0,1,-0|1,1,0|8.1991,6.2999,-9.399|0.5999,0.3999,0.39'
  310. ..'99|-0.4501,0.5,0.4999,-1,0,0,0,0,1,0,1,-0|-0.4,-0.2,0.4999,-1,0,0,0,0,1,0,0.9999,0|-26.3001,20.35,23.9499|-30.6501,27.2,21.4006|-5.15,-27.2001,56.8993,0,0,0.9999,0,1,0,-1,0,0|5.9728,1.575,21.9207|0.8999,-1.35,0.2249,1,0,0,0,0,-1,0,1,0|-0.9001,0.225,-1.525,-1,0,-0,0,0,-1,0,-1,-0|6.8728,0.9,21.2458|234.7541,-0.9001,262.8728,0,1,0,0,0,1,1,0,0|-0.2251,0.9,-0.625,-1,0,-0,0,0,-1,0,-1,-0|5.0728,0.9,21.2458|234.7541,-0.9001,261.0728,0'
  311. ..',1,0,0,0,1,1,0,0|6.8728,3.15,21.9207|0.8999,-1.35,-2.425,1,0,-0,0,0,1,0,-1,0|0.8999,-1.3501,-0.625,1,0,-0,0,0,1,0,-1,0|-0.4501,-1.3501,-0.625,1,0,-0,0,0,1,0,-1,0|6.8728,0.9,22.5957|233.4042,-0.9001,262.8728,0,1,0,0,0,1,1,0,0|-1.5751,0.9,-0.625,-1,0,-0,0,0,-1,0,-1,-0|5.0728,0.9,22.5957|233.4042,-0.9001,261.0728,0,1,0,0,0,1,1,0,0|10.2618,10.5,69.7|11,1,4|10.2618,12.5,70.7|11,1,2|10.2618,6.5,67.7|11,1,8|10.2618,3.5,66.2|11,1,11|1'
  312. ..'0.2618,2.5,65.7|11,1,12|10.2618,8.5,68.7|11,1,6|10.2618,9.5,69.2|11,1,5|10.2618,7.5,68.2|11,1,7|10.2618,4.5,66.7|11,1,10|10.2618,5.5,67.2|11,1,9|10.2618,1.5,65.2|11,1,13|10.2618,13.5,71.2|11,1,1|10.2618,0.5,64.7|11,1,14|-266.2619,-0.5001,191.2999,-1,0,0,0,0,1,0,1,-0|-22.3005,13.3,11.4469|7.1999,1,120.4999|-26.95,-15.4,1.0499,1,0,0,0,1,0,0,0,1|-13.4997,-13.3001,-60.2475,0.9999,0,0,0,1,0,0,0,0.9999|-5,-0.8501,-6.85,-0,0,-1,0,1,0'
  313. ..',0.9999,0,-0|-3.6007,0.3999,59.1513,0,0,0.9999,-1,0,0,0,-1,0|-3.6006,0.3999,39.1516,0,0,0.9999,-1,0,0,0,-1,0|-3.6004,0.3999,-0.5481,0,0,0.9999,-1,0,0,0,-1,0|-3.6002,0.3999,-20.5479,0,0,0.9999,-1,0,0,0,-1,0|-3.6001,0.3999,-40.4477,0,0,0.9999,-1,0,0,0,-1,0|-3.6005,0.3999,19.3517,0,0,0.9999,-1,0,0,0,-1,0|10.2618,11.5,70.2|11,1,3|1 0.0675,1.35,1.35 11.3228,3.6529,19.6707 0,0,-90 = 1 0.0405,1.1589,1.1589 11.3228,3.6056,19.6707 0,0,'
  314. ..'-90 = - 1 0.0675,1.0125,1.0125 11.3228,3.6529,19.6707 0,0,-90 =|13.7978,1.8,19.2207|-269.7979,-1.8001,236.7792,-1,0,0,0,0,1,0,1,-0|13.7978,1.8,24.6207|-269.7979,-1.8001,231.3792,-1,0,0,0,0,1,0,1,-0|11.3228,3.375,21.9207|8.8478,1.8,19.2207|-264.8479,-1.8001,236.7792,-1,0,0,0,0,1,0,1,-0|8.8478,1.8,24.6207|-264.8479,-1.8001,231.3792,-1,0,0,0,0,1,0,1,-0|11.3228,1.575,25.0707|11.9978,0.9,25.9707|267.9978,-0.9001,-230.0293,1,0,-0,0,'
  315. ..'0,1,0,-1,0|11.9978,0.9,24.1707|267.9978,-0.9001,-231.8293,1,0,-0,0,0,1,0,-1,0|11.3228,3.15,25.9707|10.6478,0.9,25.9707|266.6478,-0.9001,-230.0293,1,0,-0,0,0,1,0,-1,0|10.6478,0.9,24.1707|266.6478,-0.9001,-231.8293,1,0,-0,0,0,1,0,-1,0|1 0.0675,1.35,1.35 13.5728,3.6529,21.9207 0,0,-90 = 1 0.0405,1.1589,1.1589 13.5728,3.6056,21.9207 0,0,-90 = - 1 0.0675,1.0125,1.0125 13.5728,3.6529,21.9207 0,0,-90 =|8.1728,1.575,21.9207|7.2728,0.9'
  316. ..',22.5957|-233.4043,-0.9001,-263.2729,0,-1,0,0,0,1,-1,0,0|9.0728,0.9,22.5957|-233.4043,-0.9001,-265.0729,0,-1,0,0,0,1,-1,0,0|7.2728,3.15,21.9207|7.2728,0.9,21.2457|-234.7543,-0.9001,-263.2729,0,-1,0,0,0,1,-1,0,0|9.0728,0.9,21.2457|-234.7543,-0.9001,-265.0729,0,-1,0,0,0,1,-1,0,0|1 0.0675,1.35,1.35 9.5228,3.6529,21.9207 0,0,-90 = 1 0.0405,1.1589,1.1589 9.5228,3.6056,21.9207 0,0,-90 = - 1 0.0675,1.0125,1.0125 9.5228,3.6529,21.9207'
  317. ..' 0,0,-90 =|1 0.0675,1.35,1.35 11.3228,3.6529,24.1707 0,0,-90 = 1 0.0405,1.1589,1.1589 11.3228,3.6056,24.1707 0,0,-90 = - 1 0.0675,1.0125,1.0125 11.3228,3.6529,24.1707 0,0,-90 =|11.3228,1.575,18.3207|10.6478,0.9,17.4207|-266.6479,-0.9001,238.5792,-1,0,0,0,0,1,0,1,-0|10.6478,0.9,19.2207|-266.6479,-0.9001,236.7792,-1,0,0,0,0,1,0,1,-0|11.3228,3.15,17.4207|11.9978,0.9,17.4207|-267.9979,-0.9001,238.5792,-1,0,0,0,0,1,0,1,-0|11.9978,0'
  318. ..'.9,19.2207|-267.9979,-0.9001,236.7792,-1,0,0,0,0,1,0,1,-0|14.4728,1.575,21.9207|15.3728,0.9,21.2457|234.7542,-0.9001,271.3728,0,1,0,0,0,1,1,0,0|13.5728,0.9,21.2457|234.7542,-0.9001,269.5728,0,1,0,0,0,1,1,0,0|15.3728,3.15,21.9207|15.3728,0.9,22.5957|233.4042,-0.9001,271.3728,0,1,0,0,0,1,1,0,0|13.5728,0.9,22.5957|233.4042,-0.9001,269.5728,0,1,0,0,0,1,1,0,0|-30.6501,27.2,1.5005|-5.15,-27.2001,76.7994,0,0,0.9999,0,1,0,-1,0,0|-26.3'
  319. ..'001,20.35,4.05|-29.2583,26.6,1.7838|-31.6409,15.8,-3.9624|-33.5407,14.5,-3.9624|-33.1407,15.8,-5.4624|-33.1407,15.8,-2.4624|-34.6407,15.8,-3.9624|-33.1407,15.8,-3.9624|-35.5407,17.5,-3.9624|-30.65,20.85,-8|-26.3001,6.35,4.0499|-251.9501,-6.3501,-229.7,0,-1,0,0,0,1,-1,0,0|-30.6501,13.1999,1.5004|-5.15,-13.2,76.7996,0,0,0.9999,0,1,0,-1,0,0|-30.9003,20.85,10.0499|-29.2583,12.6,1.7838|-31.6409,1.8,-3.9624|-33.5407,0.5,-3.9624|-0.5'
  320. ..'001,222.4593,259.9623,0,0,1,1,0,0,0,1,0|-33.1407,1.8,-5.4624|-33.1407,1.8,-2.4624|-34.6407,1.8,-3.9624|-33.1407,1.8,-3.9624|-35.5407,3.5,-3.9624|-30.6501,6.8499,-8|-225.35,-6.85,263.9999,-1,0,0,0,0,1,0,1,-0|-29.2583,26.6,-38.1162|-31.6409,15.8,-43.8624|-33.5407,14.5,-43.8624|-33.1407,15.8,-45.3624|-33.1407,15.8,-42.3624|-34.6407,15.8,-43.8624|-33.1407,15.8,-43.8624|-35.5407,17.5,-43.8624|-30.65,20.85,-47.9|-30.6501,27.2,-38.39'
  321. ..'98|-5.15,-27.2001,116.6997,0,0,0.9999,0,1,0,-1,0,0|-26.3001,20.35,-35.8501|-36.8001,15.4,13.7|129.1999,30.8,2|-242.3,-15.4001,-219.2,0,-1,0,0,0,1,-1,0,0|-26.95,-15.4,-1.05,0,0,-1,0,1,0,1,0,0|64.5999,-15.4001,1,-1,0,0,0,1,0,0,0,-1|-26.95,-15.4001,-1.05,0,0,-1,0,1,0,1,0,0|-62.5,-15.4001,1,-1,0,0,0,1,0,0,0,-1|1 0.0675,1.35,1.35 2.8228,3.6529,24.1707 0,0,-90 = 1 0.0405,1.1589,1.1589 2.8228,3.6056,24.1707 0,0,-90 = - 1 0.0675,1.012'
  322. ..'5,1.0125 2.8228,3.6529,24.1707 0,0,-90 =|1 0.0675,1.35,1.35 5.0728,3.6529,21.9207 0,0,-90 = 1 0.0405,1.1589,1.1589 5.0728,3.6056,21.9207 0,0,-90 = - 1 0.0675,1.0125,1.0125 5.0728,3.6529,21.9207 0,0,-90 =|12.4991,4.4,5.6007|6.9999,1,2|3.5003,-4.4,-45.5004,0,0,-1,0,1,0,0.9999,0,0|-9.3501,-2.55,0.7999,1,0,0,0,1,0,0,0,1|-3.5,-4.4001,1.1999,0,0,0.9999,0,1,0,-1,0,0|1 0.0675,1.35,1.35 2.8228,3.6529,19.6707 0,0,-90 = 1 0.0405,1.1589,1'
  323. ..'.1589 2.8228,3.6056,19.6707 0,0,-90 = - 1 0.0675,1.0125,1.0125 2.8228,3.6529,19.6707 0,0,-90 =|2.8228,1.575,25.0707|3.4978,0.9,25.9707|259.4978,-0.9001,-230.0293,1,0,-0,0,0,1,0,-1,0|3.4978,0.9,24.1707|259.4978,-0.9001,-231.8293,1,0,-0,0,0,1,0,-1,0|2.8228,3.15,25.9707|2.1478,0.9,25.9707|258.1478,-0.9001,-230.0293,1,0,-0,0,0,1,0,-1,0|2.1478,0.9,24.1707|258.1478,-0.9001,-231.8293,1,0,-0,0,0,1,0,-1,0|1 0.0675,1.35,1.35 1.0228,3.65'
  324. ..'29,21.9207 0,0,-90 = 1 0.0405,1.1589,1.1589 1.0228,3.6056,21.9207 0,0,-90 = - 1 0.0675,1.0125,1.0125 1.0228,3.6529,21.9207 0,0,-90 =|0.3478,1.8,19.2207|-256.3479,-1.8001,236.7792,-1,0,0,0,0,1,0,1,-0|0.3478,1.8,24.6208|-256.3479,-1.8001,231.3791,-1,0,0,0,0,1,0,1,-0|2.8228,3.375,21.9207|-30.9008,6.8499,29.9499|225.0992,-226.0501,6.8499,0.9999,0,0,0,-1,0,0,0,-1|-0.3272,1.575,21.9208|-1.2272,0.9,22.5958|-233.4042,-0.9001,-254.7729'
  325. ..',0,-1,0,0,0,1,-1,0,0|0.5728,0.9,22.5957|-233.4043,-0.9001,-256.5729,0,-1,0,0,0,1,-1,0,0|-1.2272,3.15,21.9208|-1.2272,0.9,21.2458|-234.7542,-0.9001,-254.7729,0,-1,0,0,0,1,-1,0,0|0.5728,0.9,21.2458|-234.7542,-0.9001,-256.5729,0,-1,0,0,0,1,-1,0,0|5.2978,1.8,19.2207|-261.2979,-1.8001,236.7792,-1,0,0,0,0,1,0,1,-0|5.2978,1.8,24.6208|-261.2979,-1.8001,231.3791,-1,0,0,0,0,1,0,1,-0|2.8228,1.575,18.3207|2.1478,0.9,17.4207|-258.1479,-0.9'
  326. ..'001,238.5792,-1,0,0,0,0,1,0,1,-0|2.1478,0.9,19.2207|-258.1479,-0.9001,236.7792,-1,0,0,0,0,1,0,1,-0|2.8228,3.15,17.4207|3.4978,0.9,17.4207|-259.4979,-0.9001,238.5792,-1,0,0,0,0,1,0,1,-0|3.4978,0.9,19.2207|-259.4979,-0.9001,236.7792,-1,0,0,0,0,1,0,1,-0|-26.3001,6.35,43.75|-212.25,-6.3501,-229.7,0,-1,0,0,0,1,-1,0,0|-30.6501,13.1999,41.2005|-5.15,-13.2,37.0994,0,0,0.9999,0,1,0,-1,0,0|-31.6409,1.8,35.7376|-33.5407,0.5,35.7376|-0.50'
  327. ..'01,222.4593,220.2622,0,0,1,1,0,0,0,1,0|-33.1407,1.8,34.2376|-33.1407,1.8,37.2376|-34.6407,1.8,35.7376|-33.1407,1.8,35.7376|-35.5407,3.5,35.7376|-29.2583,12.6,41.4838|-30.6501,6.8499,31.7|-225.35,-6.85,224.2999,-1,0,0,0,0,1,0,1,-0|-31.6409,15.8,35.7376|-33.5407,14.5,35.7376|-33.1407,15.8,34.2376|-33.1407,15.8,37.2376|-34.6407,15.8,35.7376|-33.1407,15.8,35.7376|-35.5407,17.5,35.7376|-26.3001,20.35,43.75|-30.6501,27.2,41.2007|-5.'
  328. ..'15,-27.2001,37.0993,0,0,0.9999,0,1,0,-1,0,0|-30.9009,6.8499,49.75|225.0992,-206.25,6.8499,0.9999,0,0,0,-1,0,0,0,-1|-29.2583,26.6,41.4838|-30.65,20.85,31.7|17.0994,21.1497,-44.2994|0,90,180|8.7999,19.5,2|58.05,-15.4001,1.0499,0,0,1,0,1,-0,-1,0,0|4.3998,21.1497,0.9999,0,0,-1,-0,-1,0,-1,0,0|-30.9003,20.85,49.75|-29.2583,26.6,-18.2162|-31.6409,15.8,-23.9624|-33.5407,14.5,-23.9624|-33.1407,15.8,-25.4624|-33.1407,15.8,-22.4624|-34.6'
  329. ..'407,15.8,-23.9624|-33.1407,15.8,-23.9624|-35.5407,17.5,-23.9624|-30.6501,27.2,-18.4996|-5.15,-27.2001,96.7996,0,0,0.9999,0,1,0,-1,0,0|-26.3001,20.35,-15.95|-30.65,20.85,-28|-26.3001,6.35,-15.9501|-271.9501,-6.3501,-229.7,0,-1,0,0,0,1,-1,0,0|-30.9003,20.85,-9.9501|-30.6501,13.1999,-18.4998|-5.15,-13.2,96.7998,0,0,0.9999,0,1,0,-1,0,0|-29.2583,12.6,-18.2162|-31.6409,1.8,-23.9624|-33.5407,0.5,-23.9624|-0.5001,222.4593,279.9623,0,0'
  330. ..',1,1,0,0,0,1,0|-33.1407,1.8,-25.4624|-33.1407,1.8,-22.4624|-34.6407,1.8,-23.9624|-33.1407,1.8,-23.9624|-35.5407,3.5,-23.9624|-30.6501,6.8499,-28|-225.35,-6.85,284,-1,0,0,0,0,1,0,1,-0|-5.2503,-6.8501,-1,-1,0,0,0,-1,0,0,0,1|-31.6409,1.8,-43.8624|-33.5407,0.5,-43.8624|-0.5001,222.4593,299.8623,0,0,1,1,0,0,0,1,0|-33.1407,1.8,-45.3624|-33.1407,1.8,-42.3624|-34.6407,1.8,-43.8624|-33.1407,1.8,-43.8624|-35.5407,3.5,-43.8624|-29.2583,1'
  331. ..'2.6,-38.1162|-30.6501,13.1999,-38.4|-5.15,-13.2,116.6999,0,0,0.9999,0,1,0,-1,0,0|-30.9006,6.8499,10.0499|225.0994,-245.9501,6.8499,0.9999,0,0,0,-1,0,0,0,-1|-26.3001,6.35,-35.8501|-291.8501,-6.3501,-229.7,0,-1,0,0,0,1,-1,0,0|-30.6501,6.8499,-47.9|-225.35,-6.85,303.8999,-1,0,0,0,0,1,0,1,-0|-26.3001,6.35,63.7499|-192.2501,-6.3501,-229.7,0,-1,0,0,0,1,-1,0,0|-30.6501,13.1999,61.2005|-5.15,-13.2,17.0994,0,0,0.9999,0,1,0,-1,0,0|-30.9'
  332. ..'006,20.85,69.7499|89.98,0,0|-31.6409,1.8,55.7377|-33.5407,0.5,55.7377|-0.5001,222.4593,200.2622,0,0,1,1,0,0,0,1,0|-33.1407,1.8,54.2377|-33.1407,1.8,57.2377|-34.6407,1.8,55.7377|-33.1407,1.8,55.7377|-35.5407,3.5,55.7377|-29.2583,12.6,61.4838|-30.6501,6.8499,51.7|-225.35,-6.85,204.2999,-1,0,0,0,0,1,0,1,-0|1.3101,29.7,59.0785|14.6899,0.0999,17.1214,0.9999,0,0,0,0,-1,0,0.9999,0|15.4994,12.55,18.9002|14.5999,7.7,1|2|http://www.robl'
  333. ..'ox.com/asset/?id=39103669|58.7997,-12.5501,0.4999,-1,0,0,0,1,0,0,0,-1|1.3101,29.7,17.9785|14.6899,0.0999,58.2214,0.9999,0,0,0,0,-1,0,0.9999,0|-30.9009,6.8499,69.7499|225.0991,-186.2501,6.8499,0.9999,0,0,0,-1,0,0,0,-1|Sign|18.2244,14.1997,-44.3993|4,2,0.25|200,100|1,0,1,0|1,1,1|4|Billy Hotel|48|0|Sign Terrain Joint|-4.4,-9.7501,1,1,0,0,0,1,0,0,0,1|-4.3,16.6999,0.125,0.9999,0,0,0,-1,0,0,0,-1|0.8352,0.4509,0.2392|-9.95,30.3,13.4|'
  334. ..'51.8999,1,125.5999|25.9494,-30.3001,-53.2994,0,0,-1,0,1,0,0.9999,0,0|28.0499,-30.3001,62.8,-1,0,0,0,1,0,0,0,-1|-8.8501,15.4,77.25|53.8999,30.8,2.0999|-247.15,-15.4001,178.75,-1,0,0,0,0,1,0,1,-0|-30.9003,6.8499,-29.8501|225.0997,-285.8501,6.8499,0.9999,0,0,0,-1,0,0,0,-1|-29.2583,26.6,61.4838|-31.6409,15.8,55.7377|-33.5407,14.5,55.7377|-33.1407,15.8,54.2377|-33.1407,15.8,57.2377|-34.6407,15.8,55.7377|-33.1407,15.8,55.7377|-35.54'
  335. ..'07,17.5,55.7377|-26.3003,20.35,63.75|-30.6501,27.2,61.2007|-5.15,-27.2001,17.0992,0,0,0.9999,0,1,0,-1,0,0|-30.65,20.85,51.7|-30.9004,6.8499,-9.9501|225.0996,-265.9501,6.8499,0.9999,0,0,0,-1,0,0,0,-1;0,8>12>7,8>13>15,13>12>12,13>13>15,16>12>15,16>13>17,37>12>36,37>13>44,42>12>41,42>13>44,45>12>44,45>13>46,59>12>58,59>13>66,64>12>63,64>13>66,67>12>66,67>13>68,77>12>992,77>13>76,79>12>992,79>13>78,82>12>992,82>13>80,84>12>992,84>'
  336. ..'13>83,86>12>992,86>13>85,96>12>431,96>13>95,98>12>431,98>13>97,101>12>431,101>13>99,103>12>431,103>13>102,105>12>431,105>13>104,108>12,108>13>107,113>12>112,113>13>120,118>12>117,118>13>120,121>12>120,121>13>122,124>12,124>13>123,129>12,129>13>128,131>12,131>13>130,134>12,134>13>133,139>12>138,139>13>146,144>12>143,144>13>146,147>12>146,147>13>148,150>12,150>13>149,155>12,155>13>154,157>12,157>13>156,160>12,160>13>159,165>12>1'
  337. ..'64,165>13>172,170>12>169,170>13>172,173>12>172,173>13>174,176>12,176>13>175,181>12,181>13>180,183>12,183>13>182,186>12,186>13>185,191>12>190,191>13>198,196>12>195,196>13>198,199>12>198,199>13>200,202>12,202>13>201,207>12,207>13>206,209>12,209>13>208,212>12,212>13>211,217>12>216,217>13>224,222>12>221,222>13>224,225>12>224,225>13>226,228>12,228>13>227,233>12,233>13>232,235>12,235>13>234,242>12>241,242>13>249,247>12>246,247>13>24'
  338. ..'9,250>12>249,250>13>251,264>12>263,264>13>271,269>12>268,269>13>271,272>12>271,272>13>273,296>12>414,296>13>295,298>12>414,298>13>297,301>12>414,301>13>299,303>12>414,303>13>302,305>12>414,305>13>304,322>12>1014,322>13>321,324>12>1014,324>13>323,327>12>1014,327>13>325,329>12>1014,329>13>328,331>12>1014,331>13>330,338>12>337,338>13>345,343>12>342,343>13>345,346>12>345,346>13>347,370>12,370>13>369,375>12>374,375>13>382,380>12>37'
  339. ..'9,380>13>382,383>12>382,383>13>384,386>12,386>13>385,391>12,391>13>390,393>12,393>13>392,401>12>830,401>13>400,404>12,404>13>403,408>12,408>13>407,415>12,415>13>414,416>12>1034,416>13>414,432>12>794,432>13>431,436>12>598,436>13>435,437>12>1089,437>13>435,446>12>445,446>13>451,449>12>448,449>13>451,454>12>453,454>13>451,459>12>458,459>13>464,462>12>461,462>13>464,467>12>466,467>13>464,472>12>471,472>13>477,475>12>474,475>13>477'
  340. ..',480>12>479,480>13>477,490>12>489,490>13>495,493>12>492,493>13>495,498>12>497,498>13>495,502>12>501,502>13>507,505>12>504,505>13>507,510>12>509,510>13>507,529>12>528,529>13>534,532>12>531,532>13>534,537>12>536,537>13>534,541>12>540,541>13>546,544>12>543,544>13>546,549>12>548,549>13>546,560>12>559,560>13>565,563>12>562,563>13>565,568>12>567,568>13>565,574>12>573,574>13>579,577>12>576,577>13>579,582>12>581,582>13>579,588>12>587,'
  341. ..'588>13>593,591>12>590,591>13>593,596>12>595,596>13>593,599>12,599>13>598,600>12>1089,600>13>598,602>12,602>13>601,604>12>601,604>13>603,608>12>1086,608>13>605,610>12,610>13>609,612>12>603,612>13>611,616>12>1086,616>13>614,618>12>830,618>13>617,621>12>620,621>13>630,622>12>702,622>13>620,625>12>624,625>13>630,626>12,626>13>624,627>12>702,627>13>624,629>12,629>13>628,631>12>694,631>13>630,632>12>697,632>13>630,633>12>704,633>13>'
  342. ..'630,636>12>635,636>13>630,637>12,637>13>635,638>12>702,638>13>635,640>12,640>13>639,654>12,654>13>653,656>12>609,656>13>655,657>12>1075,657>13>655,658>12>963,658>13>655,659>12>1034,659>13>655,660>12>1111,660>13>655,661>12>1091,661>13>655,662>12>863,662>13>655,667>12,667>13>666,669>12,669>13>668,673>12,673>13>672,675>12,675>13>674,678>12>677,678>13>685,681>12>680,681>13>685,682>12,682>13>680,684>12,684>13>683,688>12>687,688>13>'
  343. ..'685,689>12,689>13>687,691>12,691>13>690,695>12>694,695>13>702,698>12>697,698>13>702,699>12,699>13>697,701>12,701>13>700,705>12>704,705>13>702,706>12,706>13>704,708>12,708>13>707,716>12,716>13>715,718>12,718>13>717,721>12>720,721>13>728,724>12>723,724>13>728,725>12,725>13>723,727>12,727>13>726,731>12>730,731>13>728,732>12,732>13>730,734>12,734>13>733,737>12>736,737>13>744,740>12>739,740>13>744,741>12,741>13>739,743>12,743>13>74'
  344. ..'2,747>12>746,747>13>744,748>12,748>13>746,750>12,750>13>749,753>12,753>13>752,755>12,755>13>754,758>12>757,758>13>765,761>12>760,761>13>765,762>12,762>13>760,764>12,764>13>763,768>12>767,768>13>765,769>12,769>13>767,771>12,771>13>770,773>12>830,773>13>772,791>12,791>13>790,793>12>830,793>13>792,804>12,804>13>803,811>12,811>13>810,828>12>830,828>13>827,831>12,831>13>830,832>12>609,832>13>830,833>12>1089,833>13>830,837>12>598,83'
  345. ..'7>13>836,838>12>601,838>13>836,842>12>841,842>13>849,845>12>844,845>13>849,846>12,846>13>844,848>12,848>13>847,852>12>851,852>13>849,853>12,853>13>851,855>12,855>13>854,859>12,859>13>858,861>12,861>13>860,864>12,864>13>863,867>12>866,867>13>874,870>12>869,870>13>874,871>12,871>13>869,873>12,873>13>872,877>12>876,877>13>874,878>12,878>13>876,880>12,880>13>879,883>12,883>13>882,885>12,885>13>884,890>12,890>13>889,892>12,892>13>8'
  346. ..'91,895>12>894,895>13>902,898>12>897,898>13>902,899>12,899>13>897,901>12,901>13>900,905>12>904,905>13>902,906>12,906>13>904,908>12,908>13>907,911>12>910,911>13>918,914>12>913,914>13>918,915>12,915>13>913,917>12,917>13>916,921>12>920,921>13>918,922>12,922>13>920,924>12,924>13>923,927>12,927>13>926,929>12,929>13>928,932>12,932>13>931,934>12>830,934>13>933,938>12,938>13>937,951>12,951>13>950,962>12>830,962>13>961,964>12,964>13>963'
  347. ..',973>12>598,973>13>972,990>12>830,990>13>989,993>12>402,993>13>992,995>12,995>13>994,998>12>830,998>13>997,1008>12,1008>13>1007,1015>12,1015>13>1014,1016>12>1091,1016>13>1014,1020>12,1020>13>1019,1033>12>830,1033>13>1032,1035>12,1035>13>1034,1037>12,1037>13>1036,1039>12,1039>13>1038,1041>12,1041>13>1040,1043>12>830,1043>13>1042,1048>12,1048>13>1047,1061>12,1061>13>1060,1064>12>1086,1064>13>1062,1068>12>1086,1068>13>1065,1071>1'
  348. ..'2>598,1071>13>1069,1074>12>1086,1074>13>1072,1076>12,1076>13>1075,1080>13>1077,1081>12>972,1081>13>1077,1085>12>1086,1085>13>1082,1087>12>598,1087>13>1086,1088>12>1089,1088>13>1086,1090>12,1090>13>1089,1092>12,1092>13>1091,1109>12>830,1109>13>1108,1112>12,1112>13>1111;2;n;2;n;1|2:2|3:3|4:4|5:5|6:6|7:7|8:8|3:3|3:3;1|2:2|3:3|4:4|5:9|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:10|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:11|6:6|7:7|9:8|3:3|3:3;1|2:2|3'
  349. ..':12|5:13|7:14|9:8|3:12|3:12;n;3|10:15|11:16;p;1|2:2|3:17|5:18|6:6|7:19|9:8|3:17|3:17;1|2:2|3:3|4:4|5:20|6:6|7:21|8:8|9:8|3:3|3:3;1|2:2|3:3|4:4|5:22|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:24|5:25|6:6|7:26|9:8|3:24|3:24;n;3|10:27|11:28;p;1|2:2|3:3|4:4|5:29|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:30|5:31|6:6|7:32|3:30|3:30;n;3|10:33|11:34;p;1|2:2|3:12|5:35|7:14|9:8|3:12|3:12;1|2:2|3:3|4:4|5:36|6:6|7:7|8:8|3:3|3:3;1|2:2|3:3|4:4|5:37|6:6|7:7|3:'
  350. ..'3|3:3;1|2:2|3:3|4:4|5:38|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:39|6:6|7:7|9:8|3:3|3:3;1|2:2|3:3|4:4|5:40|6:6|7:7|8:8|3:3|3:3;1|2:2|3:3|4:4|5:41|6:6|7:7|8:8|3:3|3:3;p;2;n;1|2:2|3:42|14:43|5:44|6:6|7:45|9:8|3:42|3:42;1|2:2|3:42|14:43|5:46|6:6|7:47|9:8|3:42|3:42;1|2:2|3:48|5:49|6:6|7:50|9:8|3:48|3:48;n;4;p;1|2:2|3:42|14:43|5:51|6:6|7:47|9:8|3:42|3:42;1|2:2|3:42|14:43|5:52|7:53|9:8|3:42|3:42;p;2;n;1|2:2|3:3|4:4|5:54|6:6|7:7|8:8|3:3|3:3;'
  351. ..'1|2:2|3:3|4:4|5:55|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:56|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:57|6:6|7:7|9:8|3:3|3:3;1|2:2|3:12|5:58|7:14|9:8|3:12|3:12;n;3|10:15|11:16;p;1|2:2|3:17|5:59|6:6|7:19|9:8|3:17|3:17;1|2:2|3:3|4:4|5:60|6:6|7:21|8:8|9:8|3:3|3:3;1|2:2|3:3|4:4|5:61|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:24|5:62|6:6|7:26|9:8|3:24|3:24;n;3|10:27|11:28;p;1|2:2|3:3|4:4|5:63|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:30|5:64|6:6|7:32|3:30|3:30;n;3|1'
  352. ..'0:33|11:34;p;1|2:2|3:12|5:65|7:14|9:8|3:12|3:12;1|2:2|3:3|4:4|5:66|6:6|7:7|8:8|3:3|3:3;1|2:2|3:3|4:4|5:67|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:68|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:69|6:6|7:7|9:8|3:3|3:3;1|2:2|3:3|4:4|5:70|6:6|7:7|8:8|3:3|3:3;1|2:2|3:3|4:4|5:71|6:6|7:7|8:8|3:3|3:3;p;2;n;1|2:2|3:3|4:4|5:72|6:6|7:7|8:8|3:3|3:3;1|2:2|3:3|4:4|5:73|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:74|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:75|6:6|7:7|9:8|3:3|3:3;1|'
  353. ..'2:2|3:12|5:76|7:14|9:8|3:12|3:12;n;3|10:15|11:16;p;1|2:2|3:17|5:77|6:6|7:19|9:8|3:17|3:17;1|2:2|3:3|4:4|5:78|6:6|7:21|8:8|9:8|3:3|3:3;1|2:2|3:3|4:4|5:79|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:24|5:80|6:6|7:26|9:8|3:24|3:24;n;3|10:27|11:28;p;1|2:2|3:3|4:4|5:81|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:30|5:82|6:6|7:32|3:30|3:30;n;3|10:33|11:34;p;1|2:2|3:12|5:83|7:14|9:8|3:12|3:12;1|2:2|3:3|4:4|5:84|6:6|7:7|8:8|3:3|3:3;1|2:2|3:3|4:4|5:85|6:6|7'
  354. ..':7|3:3|3:3;1|2:2|3:3|4:4|5:86|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:87|6:6|7:7|9:8|3:3|3:3;1|2:2|3:3|4:4|5:88|6:6|7:7|8:8|3:3|3:3;1|2:2|3:3|4:4|5:89|6:6|7:7|8:8|3:3|3:3;p;2;n;1|2:2|3:42|14:43|5:90|6:6|7:45|9:8|3:42|3:42;n;5|10:91|11:92;p;1|2:2|3:42|14:43|5:93|6:6|7:47|9:8|3:42|3:42;n;5|10:91|11:94;p;1|2:2|3:48|5:95|6:6|7:50|9:8|3:48|3:48;n;4;5|10:91|11:96;p;1|2:2|3:42|14:43|5:97|6:6|7:47|9:8|3:42|3:42;n;5|10:91|11:98;p;1|2:2|3:42|14'
  355. ..':43|5:99|7:53|9:8|3:42|3:42;n;5|10:91|11:100;p;p;2;n;1|2:2|3:42|14:43|5:101|6:6|7:45|9:8|3:42|3:42;1|2:2|3:42|14:43|5:102|6:6|7:47|9:8|3:42|3:42;1|2:2|3:48|5:103|6:6|7:50|9:8|3:48|3:48;n;4;p;1|2:2|3:42|14:43|5:104|6:6|7:47|9:8|3:42|3:42;1|2:2|3:42|14:43|5:105|7:53|9:8|3:42|3:42;p;2;n;1|2:2|3:42|14:43|5:106|6:6|7:45|9:8|3:42|3:42;n;5|10:91|11:92;p;1|2:2|3:42|14:43|5:107|6:6|7:47|9:8|3:42|3:42;n;5|10:91|11:94;p;1|2:2|3:48|5:108|'
  356. ..'6:6|7:50|9:8|3:48|3:48;n;4;5|10:91|11:96;p;1|2:2|3:42|14:43|5:109|6:6|7:47|9:8|3:42|3:42;n;5|10:91|11:98;p;1|2:2|3:42|14:43|5:110|7:53|9:8|3:42|3:42;n;5|10:91|11:100;p;p;2;n;1|2:2|3:3|4:4|5:111|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:113;p;1|2:2|3:3|4:4|5:114|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:115|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:116|6:6|7:7|9:8|3:3|3:3;1|2:2|3:12|5:117|7:14|9:8|3:12|3:12;n;3|10:15|11:16;p;1|2:2|3:17|5:118|6:6|7:19|9:8|'
  357. ..'3:17|3:17;1|2:2|3:3|4:4|5:119|6:6|7:21|8:8|9:8|3:3|3:3;1|2:2|3:3|4:4|5:120|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:24|5:121|6:6|7:26|9:8|3:24|3:24;n;3|10:27|11:28;p;1|2:2|3:3|4:4|5:122|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:30|5:123|6:6|7:32|3:30|3:30;n;3|10:33|11:34;p;1|2:2|3:12|5:124|7:14|9:8|3:12|3:12;1|2:2|3:3|4:4|5:125|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:126;p;1|2:2|3:3|4:4|5:127|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:128|6:6|7:7|3:3|3:3;1|2:2'
  358. ..'|3:3|4:4|5:129|6:6|7:7|9:8|3:3|3:3;1|2:2|3:3|4:4|5:130|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:131;p;1|2:2|3:3|4:4|5:132|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:133;p;p;2;n;1|2:2|3:3|4:4|5:134|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:135;p;1|2:2|3:3|4:4|5:136|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:137|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:138|6:6|7:7|9:8|3:3|3:3;1|2:2|3:12|5:139|7:14|9:8|3:12|3:12;n;3|10:15|11:16;p;1|2:2|3:17|5:140|6:6|7:19|9:8|3:17|3:17;1|2'
  359. ..':2|3:3|4:4|5:141|6:6|7:21|8:8|9:8|3:3|3:3;1|2:2|3:3|4:4|5:142|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:24|5:143|6:6|7:26|9:8|3:24|3:24;n;3|10:27|11:28;p;1|2:2|3:3|4:4|5:144|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:30|5:145|6:6|7:32|3:30|3:30;n;3|10:33|11:34;p;1|2:2|3:12|5:146|7:14|9:8|3:12|3:12;1|2:2|3:3|4:4|5:147|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:148;p;1|2:2|3:3|4:4|5:149|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:150|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:15'
  360. ..'1|6:6|7:7|9:8|3:3|3:3;1|2:2|3:3|4:4|5:152|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:153;p;1|2:2|3:3|4:4|5:154|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:155;p;p;2;n;1|2:2|3:3|4:4|5:156|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:157;p;1|2:2|3:3|4:4|5:158|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:159|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:160|6:6|7:7|9:8|3:3|3:3;1|2:2|3:12|5:161|7:14|9:8|3:12|3:12;n;3|10:15|11:16;p;1|2:2|3:17|5:162|6:6|7:19|9:8|3:17|3:17;1|2:2|3:3|4:4|5:'
  361. ..'163|6:6|7:21|8:8|9:8|3:3|3:3;1|2:2|3:3|4:4|5:164|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:24|5:165|6:6|7:26|9:8|3:24|3:24;n;3|10:27|11:28;p;1|2:2|3:3|4:4|5:166|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:30|5:167|6:6|7:32|3:30|3:30;n;3|10:33|11:34;p;1|2:2|3:12|5:168|7:14|9:8|3:12|3:12;1|2:2|3:3|4:4|5:169|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:170;p;1|2:2|3:3|4:4|5:171|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:172|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:173|6:6|7:7|9:8'
  362. ..'|3:3|3:3;1|2:2|3:3|4:4|5:174|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:175;p;1|2:2|3:3|4:4|5:176|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:177;p;p;2;n;1|2:2|3:3|4:4|5:178|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:179;p;1|2:2|3:3|4:4|5:180|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:181|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:182|6:6|7:7|9:8|3:3|3:3;1|2:2|3:12|5:183|7:14|9:8|3:12|3:12;n;3|10:15|11:16;p;1|2:2|3:17|5:184|6:6|7:19|9:8|3:17|3:17;1|2:2|3:3|4:4|5:185|6:6|7:21|'
  363. ..'8:8|9:8|3:3|3:3;1|2:2|3:3|4:4|5:186|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:24|5:187|6:6|7:26|9:8|3:24|3:24;n;3|10:27|11:28;p;1|2:2|3:3|4:4|5:188|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:30|5:189|6:6|7:32|3:30|3:30;n;3|10:33|11:34;p;1|2:2|3:12|5:190|7:14|9:8|3:12|3:12;1|2:2|3:3|4:4|5:191|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:192;p;1|2:2|3:3|4:4|5:193|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:194|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:195|6:6|7:7|9:8|3:3|3:3;1|2:'
  364. ..'2|3:3|4:4|5:196|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:197;p;1|2:2|3:3|4:4|5:198|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:199;p;p;2;n;1|2:2|3:3|4:4|5:200|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:201;p;1|2:2|3:3|4:4|5:202|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:203|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:204|6:6|7:7|9:8|3:3|3:3;1|2:2|3:12|5:205|7:14|9:8|3:12|3:12;n;3|10:15|11:16;p;1|2:2|3:17|5:206|6:6|7:19|9:8|3:17|3:17;1|2:2|3:3|4:4|5:207|6:6|7:21|8:8|9:8|3:3|3'
  365. ..':3;1|2:2|3:3|4:4|5:208|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:24|5:209|6:6|7:26|9:8|3:24|3:24;n;3|10:27|11:28;p;1|2:2|3:3|4:4|5:210|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:30|5:211|6:6|7:32|3:30|3:30;n;3|10:33|11:34;p;1|2:2|3:12|5:212|7:14|9:8|3:12|3:12;1|2:2|3:3|4:4|5:213|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:214;p;1|2:2|3:3|4:4|5:215|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:216|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:217|6:6|7:7|9:8|3:3|3:3;1|2:2|3:3|4:4|5:2'
  366. ..'18|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:219;p;1|2:2|3:3|4:4|5:220|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:221;p;p;2;n;1|2:2|3:3|4:4|5:222|6:6|7:7|8:8|3:3|3:3;1|2:2|3:3|4:4|5:223|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:224|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:225|6:6|7:7|9:8|3:3|3:3;1|2:2|3:12|5:226|7:14|9:8|3:12|3:12;n;3|10:15|11:16;p;1|2:2|3:17|5:227|6:6|7:19|9:8|3:17|3:17;1|2:2|3:3|4:4|5:228|6:6|7:21|8:8|9:8|3:3|3:3;1|2:2|3:3|4:4|5:229|6:6|7:23|8'
  367. ..':8|9:8|3:3|3:3;1|2:2|3:24|5:230|6:6|7:26|9:8|3:24|3:24;n;3|10:27|11:28;p;1|2:2|3:3|4:4|5:231|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:30|5:232|6:6|7:32|3:30|3:30;n;3|10:33|11:34;p;1|2:2|3:12|5:233|7:14|9:8|3:12|3:12;1|2:2|3:3|4:4|5:234|6:6|7:7|8:8|3:3|3:3;1|2:2|3:3|4:4|5:235|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:236|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:237|6:6|7:7|9:8|3:3|3:3;1|2:2|3:3|4:4|5:238|6:6|7:7|8:8|3:3|3:3;1|2:2|3:3|4:4|5:239|6:6|7:7|8:'
  368. ..'8|3:3|3:3;p;2;n;1|2:2|3:3|4:4|5:240|6:6|7:7|8:8|3:3|3:3;1|2:2|3:3|4:4|5:241|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:242|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:243|6:6|7:7|9:8|3:3|3:3;1|2:2|3:12|5:244|7:14|9:8|3:12|3:12;n;3|10:15|11:16;p;1|2:2|3:17|5:245|6:6|7:19|9:8|3:17|3:17;1|2:2|3:3|4:4|5:246|6:6|7:21|8:8|9:8|3:3|3:3;1|2:2|3:3|4:4|5:247|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:24|5:248|6:6|7:26|9:8|3:24|3:24;n;3|10:27|11:28;p;1|2:2|3:3|4:4|5:249|'
  369. ..'6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:30|5:250|6:6|7:32|3:30|3:30;n;3|10:33|11:34;p;1|2:2|3:12|5:251|7:14|9:8|3:12|3:12;1|2:2|3:3|4:4|5:252|6:6|7:7|8:8|3:3|3:3;1|2:2|3:3|4:4|5:253|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:254|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:255|6:6|7:7|9:8|3:3|3:3;1|2:2|3:3|4:4|5:256|6:6|7:7|8:8|3:3|3:3;1|2:2|3:3|4:4|5:257|6:6|7:7|8:8|3:3|3:3;p;2;n;1|2:2|3:42|14:43|5:258|6:6|7:45|9:8|3:42|3:42;1|2:2|3:42|14:43|5:259|6:6|7:47'
  370. ..'|9:8|3:42|3:42;1|2:2|3:48|5:260|6:6|7:50|9:8|3:48|3:48;n;4;p;1|2:2|3:42|14:43|5:261|6:6|7:47|9:8|3:42|3:42;1|2:2|3:42|14:43|5:262|7:53|9:8|3:42|3:42;p;2;n;1|2:2|3:42|14:43|5:263|6:6|7:45|9:8|3:42|3:42;1|2:2|3:42|14:43|5:264|6:6|7:47|9:8|3:42|3:42;1|2:2|3:48|5:265|6:6|7:50|9:8|3:48|3:48;n;4;p;1|2:2|3:42|14:43|5:266|6:6|7:47|9:8|3:42|3:42;1|2:2|3:42|14:43|5:267|7:53|9:8|3:42|3:42;p;2;n;1|2:2|3:42|14:43|5:268|6:6|7:45|9:8|3:42|3:'
  371. ..'42;n;5|10:91|11:269;p;1|2:2|3:42|14:43|5:270|6:6|7:47|9:8|3:42|3:42;n;5|10:91|11:271;p;1|2:2|3:48|5:272|6:6|7:50|9:8|3:48|3:48;n;4;5|10:91|11:273;p;1|2:2|3:42|14:43|5:274|6:6|7:47|9:8|3:42|3:42;n;5|10:91|11:275;p;1|2:2|3:42|14:43|5:276|7:53|9:8|3:42|3:42;n;5|10:91|11:277;p;p;2;n;1|2:2|3:42|14:43|5:278|6:6|7:45|9:8|3:42|3:42;1|2:2|3:42|14:43|5:279|6:6|7:47|9:8|3:42|3:42;1|2:2|3:48|5:280|6:6|7:50|9:8|3:48|3:48;n;4;p;1|2:2|3:42|1'
  372. ..'4:43|5:281|6:6|7:47|9:8|3:42|3:42;1|2:2|3:42|14:43|5:282|7:53|9:8|3:42|3:42;p;2;n;1|2:2|3:42|14:43|5:283|6:6|7:45|9:8|3:42|3:42;1|2:2|3:42|14:43|5:284|6:6|7:47|9:8|3:42|3:42;1|2:2|3:48|5:285|6:6|7:50|9:8|3:48|3:48;n;4;p;1|2:2|3:42|14:43|5:286|6:6|7:47|9:8|3:42|3:42;1|2:2|3:42|14:43|5:287|7:53|9:8|3:42|3:42;p;2;n;1|2:2|3:42|14:43|5:288|6:6|7:45|9:8|3:42|3:42;n;5|10:91|11:269;p;1|2:2|3:42|14:43|5:289|6:6|7:47|9:8|3:42|3:42;n;5|1'
  373. ..'0:91|11:271;p;1|2:2|3:48|5:290|6:6|7:50|9:8|3:48|3:48;n;4;5|10:91|11:273;p;1|2:2|3:42|14:43|5:291|6:6|7:47|9:8|3:42|3:42;n;5|10:91|11:275;p;1|2:2|3:42|14:43|5:292|7:53|9:8|3:42|3:42;n;5|10:91|11:277;p;p;2;n;1|2:2|3:3|4:4|5:293|6:6|7:7|8:8|3:3|3:3;1|2:2|3:3|4:4|5:294|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:295|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:296|6:6|7:7|9:8|3:3|3:3;1|2:2|3:12|5:297|7:14|9:8|3:12|3:12;n;3|10:15|11:16;p;1|2:2|3:17|5:298|'
  374. ..'6:6|7:19|9:8|3:17|3:17;1|2:2|3:3|4:4|5:299|6:6|7:21|8:8|9:8|3:3|3:3;1|2:2|3:3|4:4|5:300|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:24|5:301|6:6|7:26|9:8|3:24|3:24;n;3|10:27|11:28;p;1|2:2|3:3|4:4|5:302|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:30|5:303|6:6|7:32|3:30|3:30;n;3|10:33|11:34;p;1|2:2|3:12|5:304|7:14|9:8|3:12|3:12;1|2:2|3:3|4:4|5:305|6:6|7:7|8:8|3:3|3:3;1|2:2|3:3|4:4|5:306|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:307|6:6|7:7|3:3|3:3;1|2:2|3:3|4:'
  375. ..'4|5:308|6:6|7:7|9:8|3:3|3:3;1|2:2|3:3|4:4|5:309|6:6|7:7|8:8|3:3|3:3;1|2:2|3:3|4:4|5:310|6:6|7:7|8:8|3:3|3:3;p;2;n;1|2:2|3:42|14:43|5:311|6:6|7:45|9:8|3:42|3:42;1|2:2|3:42|14:43|5:312|6:6|7:47|9:8|3:42|3:42;1|2:2|3:48|5:313|6:6|7:50|9:8|3:48|3:48;n;4;p;1|2:2|3:42|14:43|5:314|6:6|7:47|9:8|3:42|3:42;1|2:2|3:42|14:43|5:315|7:53|9:8|3:42|3:42;p;2;n;1|2:2|3:42|14:43|5:316|6:6|7:45|9:8|3:42|3:42;1|2:2|3:42|14:43|5:317|6:6|7:47|9:8|3:'
  376. ..'42|3:42;1|2:2|3:48|5:318|6:6|7:50|9:8|3:48|3:48;n;4;p;1|2:2|3:42|14:43|5:319|6:6|7:47|9:8|3:42|3:42;1|2:2|3:42|14:43|5:320|7:53|9:8|3:42|3:42;p;2;n;1|2:2|3:3|4:4|5:321|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:322;p;1|2:2|3:3|4:4|5:323|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:324|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:325|6:6|7:7|9:8|3:3|3:3;1|2:2|3:12|5:326|7:14|9:8|3:12|3:12;n;3|10:15|11:16;p;1|2:2|3:17|5:327|6:6|7:19|9:8|3:17|3:17;1|2:2|3:3|4:4|5:'
  377. ..'328|6:6|7:21|8:8|9:8|3:3|3:3;1|2:2|3:3|4:4|5:329|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:24|5:330|6:6|7:26|9:8|3:24|3:24;n;3|10:27|11:28;p;1|2:2|3:3|4:4|5:331|6:6|7:23|8:8|9:8|3:3|3:3;1|2:2|3:30|5:332|6:6|7:32|3:30|3:30;n;3|10:33|11:34;p;1|2:2|3:12|5:333|7:14|9:8|3:12|3:12;1|2:2|3:3|4:4|5:334|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:335;p;1|2:2|3:3|4:4|5:336|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:337|6:6|7:7|3:3|3:3;1|2:2|3:3|4:4|5:338|6:6|7:7|9:8'
  378. ..'|3:3|3:3;1|2:2|3:3|4:4|5:339|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:340;p;1|2:2|3:3|4:4|5:341|6:6|7:7|8:8|3:3|3:3;n;5|10:112|11:342;p;p;2|1:343;n;1|1:343|2:2|3:344|4:345|14:346|5:347|7:348|8:8|9:8|3:344|3:344;n;6|15:349;7|16:350;p;1|2:2|3:42|4:345|5:347|7:351|8:8|9:8|3:42|3:42;n;6;p;p;1|2:2|5:352|7:353|8:8|9:8;n;5|10:354|11:355;p;1|2:2|5:356|6:357|7:358|8:8|9:8;1|2:2|5:359|6:360|7:361|8:8|9:8;n;5|10:362|11:363;p;2;n;1|2:2|5:364|7:3'
  379. ..'65|9:8;1|2:2|5:366|6:367|7:368|8:8|9:8;n;5|10:362|11:369;p;1|2:2|5:370|6:6|7:371|9:8;1|2:2|5:372|6:6|7:371|9:8;1|2:2|5:373|7:365|9:8;1|2:2|3:374|17:375|5:376|7:377|9:8|3:374|3:374;1|2:2|5:378|6:367|7:379|8:8|9:8;p;1|2:2|5:380|7:381|8:8|9:8;n;5|10:362|11:382;5|10:383|11:384;p;2;n;1|2:2|5:385|7:365|9:8;1|2:2|5:386|6:367|7:368|8:8|9:8;n;p;1|2:2|5:387|6:6|7:371|9:8;1|2:2|5:388|6:6|7:371|9:8;1|2:2|5:389|7:365|9:8;1|2:2|3:374|17:375'
  380. ..'|5:390|7:377|9:8|3:374|3:374;1|2:2|5:391|6:367|7:379|8:8|9:8;p;2|1:343;n;1|1:343|2:2|3:344|4:345|14:346|5:392|7:348|8:8|9:8|3:344|3:344;n;6|15:349;7|16:350;p;1|2:2|3:42|4:345|5:392|7:351|8:8|9:8|3:42|3:42;n;6;p;p;1|2:2|5:393|7:381|8:8|9:8;n;5|10:383|11:394;p;1|2:2|5:395|6:357|7:358|8:8|9:8;8|1:396|2:2|3:30|4:345|3:30|3:30|18:397;1|2:2|3:398|5:399|7:400|8:8|9:8|3:398|3:398;n;5|10:401|11:402;5|10:403|11:404;p;8|1:396|2:2|3:30|4:'
  381. ..'345|3:30|3:30|18:405;8|1:396|2:2|3:30|4:345|3:30|3:30|18:406;2;n;1|2:2|3:407|4:4|5:408|7:409|8:8|9:8|3:407|3:407;1|2:2|3:407|4:4|5:410|7:409|8:8|9:8|3:407|3:407;p;8|1:396|2:2|3:30|4:345|3:30|3:30|18:411;2;n;1|2:2|3:407|4:4|5:412|6:360|7:413|8:8|9:8|3:407|3:407;n;9|1:414|10:415|11:416;p;2;n;1|2:2|3:407|4:4|5:417|6:360|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:420;p;1|2:2|3:407|4:4|5:421|6:360|7:418|8:8|9:8|3:407|3:407;p;1|2'
  382. ..':2|3:407|4:4|5:422|6:360|7:423|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:424|6:360|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:425;p;1|2:2|3:407|4:4|5:426|6:360|7:418|8:8|9:8|3:407|3:407;p;p;1|2:2|3:407|4:4|5:427|7:428|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:429|6:430|7:413|8:8|9:8|3:407|3:407;n;9|1:414|10:415|11:416;p;2;n;1|2:2|3:407|4:4|5:431|6:430|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:420;p;1|2:2|3:407|4:4|5:432'
  383. ..'|6:430|7:418|8:8|9:8|3:407|3:407;p;1|2:2|3:407|4:4|5:433|6:430|7:423|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:434|6:430|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:425;p;1|2:2|3:407|4:4|5:435|6:430|7:418|8:8|9:8|3:407|3:407;p;p;8|1:396|2:2|3:30|4:345|3:30|3:30|18:406;2;n;1|2:2|3:407|4:4|5:436|6:6|7:413|8:8|9:8|3:407|3:407;n;9|1:414|10:415|11:416;p;2;n;1|2:2|3:407|4:4|5:437|6:6|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:4'
  384. ..'20;p;1|2:2|3:407|4:4|5:438|6:6|7:418|8:8|9:8|3:407|3:407;p;1|2:2|3:407|4:4|5:439|6:6|7:423|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:440|6:6|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:425;p;1|2:2|3:407|4:4|5:441|6:6|7:418|8:8|9:8|3:407|3:407;p;p;1|2:2|3:442|4:443|5:444|7:445|8:8|9:8|3:442|3:442;2;n;1|2:2|3:407|4:4|5:427|7:428|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:446|7:409|8:8|9:8|3:407|3:407;1|2:2|3:407|4:4|5:447|7:409'
  385. ..'|8:8|9:8|3:407|3:407;p;2;n;1|2:2|3:407|4:4|5:429|6:430|7:413|8:8|9:8|3:407|3:407;n;9|1:414|10:415|11:416;p;2;n;1|2:2|3:407|4:4|5:431|6:430|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:420;p;1|2:2|3:407|4:4|5:432|6:430|7:418|8:8|9:8|3:407|3:407;p;1|2:2|3:407|4:4|5:433|6:430|7:423|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:434|6:430|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:425;p;1|2:2|3:407|4:4|5:435|6:430|7:418|8:8|9:8|3:4'
  386. ..'07|3:407;p;p;2;n;1|2:2|3:407|4:4|5:448|7:413|8:8|9:8|3:407|3:407;n;9|1:414|10:415|11:416;p;2;n;1|2:2|3:407|4:4|5:449|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:420;p;1|2:2|3:407|4:4|5:450|7:418|8:8|9:8|3:407|3:407;p;1|2:2|3:407|4:4|5:451|7:423|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:452|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:425;p;1|2:2|3:407|4:4|5:453|7:418|8:8|9:8|3:407|3:407;p;p;2;n;1|2:2|3:407|4:4|5:408|7:409|8'
  387. ..':8|9:8|3:407|3:407;1|2:2|3:407|4:4|5:410|7:409|8:8|9:8|3:407|3:407;p;p;2;n;1|2:2|3:407|4:4|5:446|7:409|8:8|9:8|3:407|3:407;1|2:2|3:407|4:4|5:447|7:409|8:8|9:8|3:407|3:407;p;8|1:396|2:2|3:30|4:345|3:30|3:30|18:454;2;n;1|2:2|3:407|4:4|5:455|7:409|8:8|9:8|3:407|3:407;1|2:2|3:407|4:4|5:456|7:409|8:8|9:8|3:407|3:407;p;2;n;1|2:2|3:407|4:4|5:457|7:428|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:455|7:409|8:8|9:8|3:407|3:407;1|2:2|3:407'
  388. ..'|4:4|5:456|7:409|8:8|9:8|3:407|3:407;p;2;n;1|2:2|3:407|4:4|5:458|6:430|7:413|8:8|9:8|3:407|3:407;n;9|1:414|10:415|11:416;p;2;n;1|2:2|3:407|4:4|5:459|6:430|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:420;p;1|2:2|3:407|4:4|5:460|6:430|7:418|8:8|9:8|3:407|3:407;p;1|2:2|3:407|4:4|5:461|6:430|7:423|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:462|6:430|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:425;p;1|2:2|3:407|4:4|5:463|6:430|7'
  389. ..':418|8:8|9:8|3:407|3:407;p;p;2;n;1|2:2|3:407|4:4|5:464|7:413|8:8|9:8|3:407|3:407;n;9|1:414|10:415|11:416;p;2;n;1|2:2|3:407|4:4|5:465|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:420;p;1|2:2|3:407|4:4|5:466|7:418|8:8|9:8|3:407|3:407;p;1|2:2|3:407|4:4|5:467|7:423|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:468|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:425;p;1|2:2|3:407|4:4|5:469|7:418|8:8|9:8|3:407|3:407;p;p;2;n;1|2:2|3:407|4'
  390. ..':4|5:470|7:409|8:8|9:8|3:407|3:407;1|2:2|3:407|4:4|5:471|7:409|8:8|9:8|3:407|3:407;p;p;2;n;1|2:2|3:407|4:4|5:470|7:409|8:8|9:8|3:407|3:407;1|2:2|3:407|4:4|5:471|7:409|8:8|9:8|3:407|3:407;p;8|1:396|2:2|3:30|4:345|3:30|3:30|18:472;2;n;1|2:2|3:407|4:4|5:473|6:360|7:413|8:8|9:8|3:407|3:407;n;9|1:414|10:415|11:416;p;2;n;1|2:2|3:407|4:4|5:474|6:360|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:420;p;1|2:2|3:407|4:4|5:475|6:360|7:418'
  391. ..'|8:8|9:8|3:407|3:407;p;1|2:2|3:407|4:4|5:476|6:360|7:423|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:477|6:360|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:425;p;1|2:2|3:407|4:4|5:478|6:360|7:418|8:8|9:8|3:407|3:407;p;p;8|1:396|2:2|3:30|4:345|3:30|3:30|18:479;8|1:396|2:2|3:30|4:345|3:30|3:30|18:479;2;n;1|2:2|3:407|4:4|5:458|6:430|7:413|8:8|9:8|3:407|3:407;n;9|1:414|10:415|11:416;p;2;n;1|2:2|3:407|4:4|5:459|6:430|7:418|8:8|9:8|3'
  392. ..':407|3:407;n;9|1:414|10:419|11:420;p;1|2:2|3:407|4:4|5:460|6:430|7:418|8:8|9:8|3:407|3:407;p;1|2:2|3:407|4:4|5:461|6:430|7:423|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:462|6:430|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:425;p;1|2:2|3:407|4:4|5:463|6:430|7:418|8:8|9:8|3:407|3:407;p;p;1|2:2|3:407|4:4|5:457|7:428|8:8|9:8|3:407|3:407;8|1:396|2:2|3:30|4:345|3:30|3:30|18:480;2;n;1|2:2|3:407|4:4|5:481|6:6|7:413|8:8|9:8|3:407|3:4'
  393. ..'07;n;9|1:414|10:415|11:416;p;2;n;1|2:2|3:407|4:4|5:482|6:6|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:420;p;1|2:2|3:407|4:4|5:483|6:6|7:418|8:8|9:8|3:407|3:407;p;1|2:2|3:407|4:4|5:484|6:6|7:423|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:485|6:6|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:425;p;1|2:2|3:407|4:4|5:486|6:6|7:418|8:8|9:8|3:407|3:407;p;p;1|2:2|3:487|4:443|5:488|6:360|7:489|8:8|9:8|3:487|3:487;n;5|10:362|11:490;5'
  394. ..'|10:403|11:491;p;1|2:2|3:442|4:443|5:492|6:360|7:493|8:8|9:8|3:442|3:442;n;5|10:362|11:494;p;1|2:2|3:495|5:496|7:497|8:8|9:8|3:495|3:495;n;5|10:498|11:499;p;1|1:343|2:2|3:344|4:345|14:346|5:500|7:348|8:8|9:8|3:344|3:344;n;6|15:349;7|16:350;5|10:501|11:502;p;1|2:2|3:487|4:443|5:503|7:504|8:8|9:8|3:487|3:487;n;5|10:362|11:505;p;1|2:2|3:506|5:507|7:508|8:8|9:8|3:506|3:506;n;5|10:509|11:510;p;1|2:2|5:511|6:360|7:361|8:8|9:8;1|2:2|'
  395. ..'3:42|4:345|5:500|7:351|8:8|9:8|3:42|3:42;n;6;5|10:501|11:502;p;1|2:2|5:512|7:353|8:8|9:8;n;5|10:354|11:513;p;2;n;1|2:2|3:407|4:4|5:514|6:6|7:413|8:8|9:8|3:407|3:407;n;9|1:414|10:415|11:416;5|10:515|11:516;p;2;n;1|2:2|3:407|4:4|5:517|6:6|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:420;5|10:362|11:518;5|10:515|11:519;p;1|2:2|3:407|4:4|5:520|6:6|7:418|8:8|9:8|3:407|3:407;n;5|10:362|11:521;p;p;1|2:2|3:407|4:4|5:522|6:6|7:423|8:8'
  396. ..'|9:8|3:407|3:407;n;5|10:415|11:523;5|10:419|11:524;5|10:419|11:525;p;2;n;1|2:2|3:407|4:4|5:526|6:6|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:425;5|10:362|11:527;5|10:515|11:528;p;1|2:2|3:407|4:4|5:529|6:6|7:418|8:8|9:8|3:407|3:407;n;5|10:362|11:530;p;p;p;1|2:2|4:345|5:531|7:532|8:8|9:8;1|2:2|4:345|5:533|7:534|8:8|9:8;1|2:2|4:345|5:535|7:536|8:8|9:8;1|2:2|4:345|5:537|7:538|8:8|9:8;1|2:2|4:345|5:539|7:540|8:8|9:8;1|2:2|4:345'
  397. ..'|5:541|7:542|8:8|9:8;1|2:2|4:345|5:543|7:544|8:8|9:8;1|2:2|4:345|5:545|7:546|8:8|9:8;1|2:2|4:345|5:547|7:548|8:8|9:8;1|2:2|4:345|5:549|7:550|8:8|9:8;1|2:2|4:345|5:551|7:552|8:8|9:8;1|2:2|4:345|5:553|7:554|8:8|9:8;1|2:2|4:345|5:555|7:556|8:8|9:8;n;5|10:362|11:557;p;1|2:2|3:398|5:558|7:559|8:8|9:8|3:398|3:398;n;5|10:560|11:561;5|10:562|11:563;5|10:562|11:564;5|10:562|11:565;5|10:562|11:566;5|10:562|11:567;5|10:562|11:568;p;1|2:2'
  398. ..'|4:345|5:569|7:570|8:8|9:8;8|1:396|2:2|3:30|4:345|3:30|3:30|18:571;2;n;1|2:2|3:407|4:4|5:572|7:409|8:8|9:8|3:407|3:407;n;5|10:362|11:573;p;1|2:2|3:407|4:4|5:574|7:409|8:8|9:8|3:407|3:407;n;5|10:362|11:575;p;p;1|2:2|3:407|4:4|5:576|7:428|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:577|7:409|8:8|9:8|3:407|3:407;n;5|10:362|11:578;p;1|2:2|3:407|4:4|5:579|7:409|8:8|9:8|3:407|3:407;n;5|10:362|11:580;p;p;2;n;1|2:2|3:407|4:4|5:581|6:430'
  399. ..'|7:413|8:8|9:8|3:407|3:407;n;9|1:414|10:415|11:416;p;2;n;1|2:2|3:407|4:4|5:582|6:430|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:420;5|10:362|11:583;p;1|2:2|3:407|4:4|5:584|6:430|7:418|8:8|9:8|3:407|3:407;n;5|10:362|11:585;p;p;1|2:2|3:407|4:4|5:586|6:430|7:423|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:587|6:430|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:425;5|10:362|11:588;p;1|2:2|3:407|4:4|5:589|6:430|7:418|8:8|9:8|3:407'
  400. ..'|3:407;n;5|10:362|11:590;p;p;p;8|1:396|2:2|3:30|4:345|3:30|3:30|18:591;2;n;1|2:2|3:407|4:4|5:592|6:360|7:413|8:8|9:8|3:407|3:407;n;9|1:414|10:415|11:416;p;2;n;1|2:2|3:407|4:4|5:593|6:360|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:420;5|10:362|11:594;p;1|2:2|3:407|4:4|5:595|6:360|7:418|8:8|9:8|3:407|3:407;n;5|10:362|11:596;p;p;1|2:2|3:407|4:4|5:597|6:360|7:423|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:598|6:360|7:418|8:8|9:8'
  401. ..'|3:407|3:407;n;9|1:414|10:419|11:425;5|10:362|11:599;p;1|2:2|3:407|4:4|5:600|6:360|7:418|8:8|9:8|3:407|3:407;n;5|10:362|11:601;p;p;p;8|1:396|2:2|3:30|4:345|3:30|3:30|18:602;8|1:396|2:2|3:30|4:345|3:30|3:30|18:603;8|1:396|2:2|3:30|4:345|3:30|3:30|18:571;2;n;1|2:2|3:407|4:4|5:576|7:428|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:572|7:409|8:8|9:8|3:407|3:407;n;5|10:362|11:573;p;1|2:2|3:407|4:4|5:574|7:409|8:8|9:8|3:407|3:407;n;5|1'
  402. ..'0:362|11:575;p;p;2;n;1|2:2|3:407|4:4|5:581|6:430|7:413|8:8|9:8|3:407|3:407;n;9|1:414|10:415|11:416;p;2;n;1|2:2|3:407|4:4|5:582|6:430|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:420;5|10:362|11:583;p;1|2:2|3:407|4:4|5:584|6:430|7:418|8:8|9:8|3:407|3:407;n;5|10:362|11:585;p;p;1|2:2|3:407|4:4|5:586|6:430|7:423|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:587|6:430|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:425;5|10:362|11:588;p'
  403. ..';1|2:2|3:407|4:4|5:589|6:430|7:418|8:8|9:8|3:407|3:407;n;5|10:362|11:590;p;p;p;2;n;1|2:2|3:407|4:4|5:604|7:413|8:8|9:8|3:407|3:407;n;9|1:414|10:415|11:416;p;2;n;1|2:2|3:407|4:4|5:605|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:420;5|10:362|11:606;p;1|2:2|3:407|4:4|5:607|7:418|8:8|9:8|3:407|3:407;n;5|10:362|11:608;p;p;1|2:2|3:407|4:4|5:609|7:423|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:610|7:418|8:8|9:8|3:407|3:407;n;9|1:414'
  404. ..'|10:419|11:425;5|10:362|11:611;p;1|2:2|3:407|4:4|5:612|7:418|8:8|9:8|3:407|3:407;n;5|10:362|11:613;p;p;p;2;n;1|2:2|3:407|4:4|5:577|7:409|8:8|9:8|3:407|3:407;n;5|10:362|11:578;p;1|2:2|3:407|4:4|5:579|7:409|8:8|9:8|3:407|3:407;n;5|10:362|11:580;p;p;p;2;n;1|2:2|3:407|4:4|5:614|6:6|7:413|8:8|9:8|3:407|3:407;n;9|1:414|10:415|11:416;p;2;n;1|2:2|3:407|4:4|5:615|6:6|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:420;5|10:362|11:616;p;1'
  405. ..'|2:2|3:407|4:4|5:617|6:6|7:418|8:8|9:8|3:407|3:407;n;5|10:362|11:618;p;p;1|2:2|3:407|4:4|5:619|6:6|7:423|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:620|6:6|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:425;5|10:362|11:621;p;1|2:2|3:407|4:4|5:622|6:6|7:418|8:8|9:8|3:407|3:407;n;5|10:362|11:623;p;p;p;1|2:2|5:624|7:353|8:8|9:8;n;5|10:354|11:625;p;1|2:2|5:626|6:360|7:361|8:8|9:8;2|1:343;n;1|1:343|2:2|3:344|4:345|14:346|5:627|7:348|'
  406. ..'8:8|9:8|3:344|3:344;n;6|15:349;7|16:350;p;1|2:2|3:42|4:345|5:627|7:351|8:8|9:8|3:42|3:42;n;6;p;p;2;n;1|2:2|5:628|7:365|9:8;1|2:2|5:629|6:367|7:368|8:8|9:8;n;p;1|2:2|5:630|6:6|7:371|9:8;1|2:2|5:631|6:6|7:371|9:8;1|2:2|5:632|7:365|9:8;1|2:2|3:374|17:375|5:633|7:377|9:8|3:374|3:374;1|2:2|5:634|6:367|7:379|8:8|9:8;p;1|2:2|5:635|7:381|8:8|9:8;1|2:2|5:636|6:360|7:361|8:8|9:8;n;5|10:362|11:637;p;1|2:2|5:638|7:353|8:8|9:8;n;5|10:354|1'
  407. ..'1:639;p;1|2:2|5:640|6:357|7:358|8:8|9:8;2|1:343;n;1|1:343|2:2|3:344|4:345|14:346|5:641|7:348|8:8|9:8|3:344|3:344;n;6|15:349;7|16:350;p;1|2:2|3:42|4:345|5:641|7:351|8:8|9:8|3:42|3:42;n;6;p;p;2;n;1|2:2|5:642|7:365|9:8;1|2:2|5:643|6:367|7:368|8:8|9:8;n;5|10:362|11:644;p;1|2:2|5:645|6:6|7:371|9:8;1|2:2|5:646|6:6|7:371|9:8;1|2:2|5:647|7:365|9:8;1|2:2|3:374|17:375|5:648|7:377|9:8|3:374|3:374;1|2:2|5:649|6:367|7:379|8:8|9:8;p;1|2:2|5'
  408. ..':650|7:381|8:8|9:8;n;5|10:362|11:651;p;2|1:343;n;1|1:343|2:2|3:344|4:345|14:346|5:652|7:348|8:8|9:8|3:344|3:344;n;6|15:349;7|16:350;p;1|2:2|3:42|4:345|5:652|7:351|8:8|9:8|3:42|3:42;n;6;p;p;2;n;1|2:2|5:653|7:365|9:8;1|2:2|5:654|6:367|7:368|8:8|9:8;n;p;1|2:2|5:655|6:6|7:371|9:8;1|2:2|5:656|6:6|7:371|9:8;1|2:2|5:657|7:365|9:8;1|2:2|3:374|17:375|5:658|7:377|9:8|3:374|3:374;1|2:2|5:659|6:367|7:379|8:8|9:8;p;1|2:2|5:660|7:381|8:8|9:'
  409. ..'8;1|2:2|5:661|7:353|8:8|9:8;n;5|10:354|11:662;p;1|2:2|5:663|6:360|7:361|8:8|9:8;1|2:2|3:487|4:443|5:664|6:360|7:665|8:8|9:8|3:487|3:487;n;5|10:362|11:666;5|10:667|11:668;5|10:669|11:670;p;8|1:396|2:2|3:30|4:345|3:30|3:30|18:671;8|1:396|2:2|3:30|4:345|3:30|3:30|18:672;1|2:2|3:442|4:443|5:673|7:674|8:8|9:8|3:442|3:442;n;5|10:401|11:675;5|10:676|11:677;p;8|1:396|2:2|3:30|4:345|3:30|3:30|18:678;2;n;1|2:2|3:407|4:4|5:679|6:430|7:41'
  410. ..'3|8:8|9:8|3:407|3:407;n;9|1:414|10:415|11:416;p;2;n;1|2:2|3:407|4:4|5:680|6:430|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:420;5|10:362|11:681;p;1|2:2|3:407|4:4|5:682|6:430|7:418|8:8|9:8|3:407|3:407;n;5|10:362|11:683;p;p;1|2:2|3:407|4:4|5:684|6:430|7:423|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:685|6:430|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:425;5|10:362|11:686;p;1|2:2|3:407|4:4|5:687|6:430|7:418|8:8|9:8|3:407|3:40'
  411. ..'7;n;5|10:362|11:688;p;p;p;8|1:396|2:2|3:30|4:345|3:30|3:30|18:689;2;n;1|2:2|3:407|4:4|5:690|7:409|8:8|9:8|3:407|3:407;n;5|10:362|11:691;p;1|2:2|3:407|4:4|5:692|7:409|8:8|9:8|3:407|3:407;n;5|10:362|11:693;p;p;1|2:2|3:407|4:4|5:694|7:428|8:8|9:8|3:407|3:407;1|2:2|5:695|6:357|7:358|8:8|9:8;n;5|10:362|11:696;p;2;n;1|2:2|3:407|4:4|5:697|6:360|7:413|8:8|9:8|3:407|3:407;n;9|1:414|10:415|11:416;p;2;n;1|2:2|3:407|4:4|5:698|6:360|7:418|'
  412. ..'8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:420;5|10:362|11:699;p;1|2:2|3:407|4:4|5:700|6:360|7:418|8:8|9:8|3:407|3:407;n;5|10:362|11:701;p;p;1|2:2|3:407|4:4|5:702|6:360|7:423|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:703|6:360|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:425;5|10:362|11:704;p;1|2:2|3:407|4:4|5:705|6:360|7:418|8:8|9:8|3:407|3:407;n;5|10:362|11:706;p;p;p;2;n;1|2:2|3:407|4:4|5:707|7:409|8:8|9:8|3:407|3:407;n;5|10:3'
  413. ..'62|11:708;p;1|2:2|3:407|4:4|5:709|7:409|8:8|9:8|3:407|3:407;n;5|10:362|11:710;p;p;2;n;1|2:2|3:407|4:4|5:694|7:428|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:707|7:409|8:8|9:8|3:407|3:407;n;5|10:362|11:708;p;1|2:2|3:407|4:4|5:709|7:409|8:8|9:8|3:407|3:407;n;5|10:362|11:710;p;p;2;n;1|2:2|3:407|4:4|5:679|6:430|7:413|8:8|9:8|3:407|3:407;n;9|1:414|10:415|11:416;p;2;n;1|2:2|3:407|4:4|5:680|6:430|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10'
  414. ..':419|11:420;5|10:362|11:681;p;1|2:2|3:407|4:4|5:682|6:430|7:418|8:8|9:8|3:407|3:407;n;5|10:362|11:683;p;p;1|2:2|3:407|4:4|5:684|6:430|7:423|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:685|6:430|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:425;5|10:362|11:686;p;1|2:2|3:407|4:4|5:687|6:430|7:418|8:8|9:8|3:407|3:407;n;5|10:362|11:688;p;p;p;2;n;1|2:2|3:407|4:4|5:711|7:413|8:8|9:8|3:407|3:407;n;9|1:414|10:415|11:416;p;2;n;1|2:2|3:40'
  415. ..'7|4:4|5:712|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:420;5|10:362|11:713;p;1|2:2|3:407|4:4|5:714|7:418|8:8|9:8|3:407|3:407;n;5|10:362|11:715;p;p;1|2:2|3:407|4:4|5:716|7:423|8:8|9:8|3:407|3:407;2;n;1|2:2|3:407|4:4|5:717|7:418|8:8|9:8|3:407|3:407;n;9|1:414|10:419|11:425;5|10:362|11:718;p;1|2:2|3:407|4:4|5:719|7:418|8:8|9:8|3:407|3:407;n;5|10:362|11:720;p;p;p;2;n;1|2:2|3:407|4:4|5:690|7:409|8:8|9:8|3:407|3:407;n;5|10:362|11:'
  416. ..'691;p;1|2:2|3:407|4:4|5:692|7:409|8:8|9:8|3:407|3:407;n;5|10:362|11:693;p;p;p;8|1:396|2:2|3:30|4:345|3:30|3:30|18:678;1|2:2|5:721|6:360|7:361|8:8|9:8;n;5|10:362|11:722;p;1|2:2|5:723|7:353|8:8|9:8;n;5|10:354|11:724;p;2;n;1|2:2|5:725|7:365|9:8;1|2:2|5:726|6:367|7:368|8:8|9:8;n;5|10:362|11:727;p;1|2:2|5:728|6:6|7:371|9:8;1|2:2|5:729|6:6|7:371|9:8;1|2:2|5:730|7:365|9:8;1|2:2|3:374|17:375|5:731|7:377|9:8|3:374|3:374;1|2:2|5:732|6:3'
  417. ..'67|7:379|8:8|9:8;p;2|1:343;n;1|1:343|2:2|3:344|4:345|14:346|5:733|7:348|8:8|9:8|3:344|3:344;n;6|15:349;7|16:350;p;1|2:2|3:42|4:345|5:733|7:351|8:8|9:8|3:42|3:42;n;6;p;p;1|2:2|5:734|7:381|8:8|9:8;n;5|10:362|11:735;p;2;n;1|2:2|5:736|7:365|9:8;1|2:2|5:737|6:367|7:368|8:8|9:8;n;p;1|2:2|5:738|6:6|7:371|9:8;1|2:2|5:739|6:6|7:371|9:8;1|2:2|5:740|7:365|9:8;1|2:2|3:374|17:375|5:741|7:377|9:8|3:374|3:374;1|2:2|5:742|6:367|7:379|8:8|9:8;'
  418. ..'p;1|2:2|5:743|6:360|7:361|8:8|9:8;1|2:2|5:744|7:353|8:8|9:8;n;5|10:354|11:745;p;1|2:2|5:746|6:357|7:358|8:8|9:8;n;5|10:362|11:747;p;2|1:343;n;1|1:343|2:2|3:344|4:345|14:346|5:748|7:348|8:8|9:8|3:344|3:344;n;6|15:349;7|16:350;p;1|2:2|3:42|4:345|5:748|7:351|8:8|9:8|3:42|3:42;n;6;p;p;1|2:2|5:749|7:381|8:8|9:8;1|2:2|3:487|4:443|5:750|6:751|7:752|8:8|9:8|3:487|3:487;n;5|10:753|11:754;p;1|2:2|5:755|6:357|7:358|8:8|9:8;2|1:343;n;1|1:'
  419. ..'343|2:2|3:344|4:345|14:346|5:756|7:348|8:8|9:8|3:344|3:344;n;6|15:349;7|16:350;p;1|2:2|3:42|4:345|5:756|7:351|8:8|9:8|3:42|3:42;n;6;p;p;2;n;1|2:2|5:757|7:365|9:8;1|2:2|5:758|6:367|7:368|8:8|9:8;n;p;1|2:2|5:759|6:6|7:371|9:8;1|2:2|5:760|6:6|7:371|9:8;1|2:2|5:761|7:365|9:8;1|2:2|3:374|17:375|5:762|7:377|9:8|3:374|3:374;1|2:2|5:763|6:367|7:379|8:8|9:8;p;1|2:2|5:764|7:353|8:8|9:8;n;5|10:354|11:765;p;1|2:2|5:766|6:360|7:361|8:8|9:8'
  420. ..';1|2:2|5:767|7:381|8:8|9:8;n;5|10:383|11:394;p;1|2:2|5:768|6:360|7:361|8:8|9:8;n;5|10:362|11:769;p;1|2:2|5:770|6:357|7:358|8:8|9:8;1|2:2|5:771|7:353|8:8|9:8;n;5|10:354|11:772;p;2|1:343;n;1|1:343|2:2|3:344|4:345|14:346|5:773|7:348|8:8|9:8|3:344|3:344;n;6|15:349;7|16:350;p;1|2:2|3:42|4:345|5:773|7:351|8:8|9:8|3:42|3:42;n;6;p;p;2;n;1|2:2|5:774|7:365|9:8;1|2:2|5:775|6:367|7:368|8:8|9:8;n;5|10:362|11:776;p;1|2:2|5:777|6:6|7:371|9:8'
  421. ..';1|2:2|5:778|6:6|7:371|9:8;1|2:2|5:779|7:365|9:8;1|2:2|3:374|17:375|5:780|7:377|9:8|3:374|3:374;1|2:2|5:781|6:367|7:379|8:8|9:8;p;1|2:2|5:782|7:381|8:8|9:8;n;5|10:362|11:783;5|10:383|11:784;p;2;n;1|2:2|5:785|7:365|9:8;1|2:2|5:786|6:367|7:368|8:8|9:8;n;5|10:362|11:787;p;1|2:2|5:788|6:6|7:371|9:8;1|2:2|5:789|6:6|7:371|9:8;1|2:2|5:790|7:365|9:8;1|2:2|3:374|17:375|5:791|7:377|9:8|3:374|3:374;1|2:2|5:792|6:367|7:379|8:8|9:8;p;2|1:3'
  422. ..'43;n;1|1:343|2:2|3:344|4:345|14:346|5:793|7:348|8:8|9:8|3:344|3:344;n;6|15:349;7|16:350;p;1|2:2|3:42|4:345|5:793|7:351|8:8|9:8|3:42|3:42;n;6;p;p;1|2:2|5:794|7:353|8:8|9:8;n;5|10:354|11:795;p;1|2:2|5:796|6:357|7:358|8:8|9:8;n;5|10:362|11:797;p;1|2:2|5:798|6:360|7:361|8:8|9:8;n;5|10:362|11:799;p;1|2:2|5:800|7:381|8:8|9:8;n;5|10:362|11:801;p;1|2:2|5:802|6:360|7:361|8:8|9:8;n;5|10:362|11:803;p;1|2:2|5:804|7:353|8:8|9:8;n;5|10:354|'
  423. ..'11:805;p;1|2:2|5:806|6:807|7:358|8:8|9:8;2;n;1|2:2|5:808|7:365|9:8;1|2:2|5:809|6:367|7:368|8:8|9:8;n;5|10:362|11:810;p;1|2:2|5:811|6:6|7:371|9:8;1|2:2|5:812|6:6|7:371|9:8;1|2:2|5:813|7:365|9:8;1|2:2|3:374|17:375|5:814|7:377|9:8|3:374|3:374;1|2:2|5:815|6:367|7:379|8:8|9:8;p;2|1:343;n;1|1:343|2:2|3:344|4:345|14:346|5:816|7:348|8:8|9:8|3:344|3:344;n;6|15:349;7|16:350;p;1|2:2|3:42|4:345|5:816|7:351|8:8|9:8|3:42|3:42;n;6;p;p;1|2:2|'
  424. ..'5:817|7:381|8:8|9:8;n;5|10:362|11:818;p;1|2:2|3:42|4:345|5:819|7:351|8:8|9:8|3:42|3:42;n;6;5|10:501|11:820;p;1|1:343|2:2|3:344|4:345|14:346|5:819|7:348|8:8|9:8|3:344|3:344;n;6|15:349;7|16:350;5|10:501|11:820;p;1|2:2|3:30|5:821|6:360|7:822|19:823|9:8|3:30|3:30;n;10|20:824;5|10:401|11:825;p;1|2:2|3:42|4:345|5:826|7:351|8:8|9:8|3:42|3:42;n;6;5|10:501|11:827;p;1|2:2|5:828|6:357|7:358|8:8|9:8;n;5|10:362|11:829;p;1|1:830|2:2|3:30|5:'
  425. ..'831|6:6|7:832|3:30|3:30;n;11|21:833;n;12|7:834|22:835|23:2|24:836|25:837|26:835|27:2|28:838|29:839|30:2;p;9|1:840;5|10:841|11:842;p;1|1:343|2:2|3:344|4:345|14:346|5:826|7:348|8:8|9:8|3:344|3:344;n;6|15:349;7|16:350;5|10:501|11:827;p;1|2:2|3:843|4:4|5:844|7:845|8:8|9:8|3:843|3:843;n;5|10:401|11:846;5|10:403|11:847;p;1|2:2|3:487|4:443|5:848|7:849|8:8|9:8|3:487|3:487;n;5|10:362|11:850;p;1|2:2|5:851|6:357|7:358|8:8|9:8;n;5|10:362|'
  426. ..'11:852;p;2|1:343;n;1|1:343|2:2|3:344|4:345|14:346|5:853|7:348|8:8|9:8|3:344|3:344;n;6|15:349;7|16:350;p;1|2:2|3:42|4:345|5:853|7:351|8:8|9:8|3:42|3:42;n;6;p;p;2;n;1|2:2|5:854|7:365|9:8;1|2:2|5:855|6:367|7:368|8:8|9:8;n;p;1|2:2|5:856|6:6|7:371|9:8;1|2:2|5:857|6:6|7:371|9:8;1|2:2|5:858|7:365|9:8;1|2:2|3:374|17:375|5:859|7:377|9:8|3:374|3:374;1|2:2|5:860|6:367|7:379|8:8|9:8;p;1|2:2|5:861|6:360|7:361|8:8|9:8;1|2:2|5:862|7:353|8:8|'
  427. ..'9:8;n;5|10:354|11:863;p;1|2:2|5:864|7:381|8:8|9:8;1|2:2|5:865|6:357|7:358|8:8|9:8;n;5|10:362|11:866;p;p;')
  428. for _,Object in pairs(Objects) do
  429. Object.Parent = script and script.Parent==workspace and script or workspace
  430. end
  431. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement