Advertisement
AxeuerAlt

Rocket Model Test Number: 2

Jun 10th, 2019
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 91.22 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 83424
  3.  
  4. local Scripts = { function()
  5. local d=script.Parent local e=d.Main local f={}table.insert(f,e)function a(g,h)b=Instance.new("Weld")b.Part0=g b.Part1=h local i=CFrame.new(g.Position)b.C0=g.CFrame:inverse()*i b.C1=h.CFrame:inverse()*i b.Parent=g table.insert(f,h)end function c(g)local h=g:GetChildren()for i,j in pairs(h)do if j:IsA("BasePart")then a(e,j)end c(j)end end c(d)for g,h in pairs(f)do if h:IsA("BasePart")then h.Anchored=false end end script:Destroy()
  6. end; function()
  7. function a()script.Parent.ClickDetector.MaxActivationDistance=0 script.Parent.Parent.Core.A:Play()script.Parent.BrickColor=BrickColor.new("Bright red")wait(10)script.Parent.Parent.Door.CanCollide=true script.Parent.Parent.Door.Transparency=0 script.Parent.Parent.Core.A:Stop()script.Parent.Parent.Core.B:Play()script.Parent.Parent.Motor.BodyAngularVelocity.AngularVelocity=Vector3.new(0,0.2,0)wait(10)script.Parent.Parent.Core.Decoupler:Play()script.Parent.Parent.Booster.Engine1.ParticleEmitter.Enabled=true script.Parent.Parent.Booster.Engine1.Smoke.Enabled=true script.Parent.Parent.Booster.Engine2.ParticleEmitter.Enabled=true script.Parent.Parent.Booster.Engine2.Smoke.Enabled=true script.Parent.Parent.Booster.Engine3.ParticleEmitter.Enabled=true script.Parent.Parent.Booster.Engine3.Smoke.Enabled=true script.Parent.Parent.Booster.Engine4.ParticleEmitter.Enabled=true script.Parent.Parent.Booster.Engine4.Smoke.Enabled=true script.Parent.Parent.Core.C:Play()script.Parent.Parent.E1.BrickColor=BrickColor.new("Lime green")for b=-2,75,1 do wait(0.1)script.Parent.Parent.Core.BodyVelocity.Velocity=Vector3.new(0,b,0)end wait(1)wait(30)script.Parent.Parent.Booster.Engine1.ParticleEmitter.Enabled=false script.Parent.Parent.Booster.Engine1.Smoke.Enabled=false script.Parent.Parent.Booster.Engine2.ParticleEmitter.Enabled=false script.Parent.Parent.Booster.Engine2.Smoke.Enabled=false script.Parent.Parent.Booster.Engine3.ParticleEmitter.Enabled=false script.Parent.Parent.Booster.Engine3.Smoke.Enabled=false script.Parent.Parent.Booster.Engine4.ParticleEmitter.Enabled=false script.Parent.Parent.Booster.Engine4.Smoke.Enabled=false script.Parent.Parent.Core.C:Stop()script.Parent.Parent.E1.BrickColor=BrickColor.new("Really red")wait(0.5)script.Parent.Parent.Core.Decoupler:Play()script.Parent.Parent.Joint1:Destroy()script.Parent.Parent.Joint2:Destroy()script.Parent.Parent.Joint3:Destroy()script.Parent.Parent.Joint4:Destroy()wait(0.1)script.Parent.Parent.Engine5.ParticleEmitter.Enabled=true script.Parent.Parent.Core.D:Play()script.Parent.Parent.Core.BodyVelocity.Velocity=Vector3.new(0,100,0)script.Parent.Parent.E2.BrickColor=BrickColor.new("Lime green")wait(60)script.Parent.Parent.Engine5.ParticleEmitter.Enabled=false script.Parent.Parent.Core.D:Stop()script.Parent.BrickColor=BrickColor.new("Deep orange")script.Parent.Parent.E2.BrickColor=BrickColor.new("Really red")wait(1)script.Parent.Parent.Joint5:BreakJoints()script.Parent.Parent.Core.Decoupler:Play()wait(5)script.Parent.Parent.Core.E:Play()script.Parent.Parent.Engine6.ParticleEmitter.Enabled=true script.Parent.Parent.Core.BodyVelocity.Velocity=Vector3.new(0,125,0)script.Parent.Parent.E3.BrickColor=BrickColor.new("Lime green")end script.Parent.ClickDetector.MouseClick:connect(a)
  8. end;}local ActualScripts = {}
  9. function s(var)
  10. local func = table.remove(Scripts,1)
  11. setfenv(func,setmetatable({script=var},{
  12. __index = getfenv(func),
  13. }))
  14. table.insert(ActualScripts,coroutine.wrap(func))
  15. end
  16.  
  17.  
  18. local Part_Classes = {"Part","WedgePart","CornerWedgePart"}
  19. local Part_Shapes = {"Brick","Cylinder","Sphere","Torso","Wedge"}
  20. local function DecodeUnion(t)
  21. local r = function()return table.remove(t,1) end
  22. local split = function(str,sep)
  23. local fields = {}
  24. str:gsub(("([^%s]+)"):format(sep or ','),function(c)fields[#fields+1]=c end)
  25. return fields
  26. end
  27. local m = Instance.new("Folder")
  28. m.Name = "UnionCache ["..tostring(math.random(1,9999)).."]"
  29. m.Archivable = false
  30. m.Parent = game:GetService("ServerStorage")
  31. local Union,Subtract = {},{}
  32. repeat
  33. local isNegate = false
  34. local class = r()
  35. if class=='-' then
  36. isNegate = true
  37. class = r()
  38. end
  39. if class=='n' then
  40. local d = {}
  41. local a = r()
  42. repeat
  43. table.insert(d,a)
  44. a = r()
  45. until a=='p'
  46. local u = DecodeUnion(d)
  47. if u then
  48. table.insert(isNegate and Subtract or Union,u)
  49. end
  50. else
  51. local size,pos,rot = Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r())))
  52. local part = Instance.new(Part_Classes[tonumber(class)])
  53. part.Size = size
  54. part.Position = pos
  55. part.Orientation = rot
  56. if r()=="+" then
  57. local m,ms = r(),Vector3.new(unpack(split(r())))
  58. if tonumber(m)==6 then
  59. part.Shape = Enum.PartType.Cylinder
  60. elseif tonumber(m)==7 then
  61. part.Shape = Enum.PartType.Ball
  62. else
  63. local mesh = Instance.new(tonumber(m)==8 and "CylinderMesh" or "SpecialMesh")
  64. if tonumber(m)~=8 then
  65. mesh.MeshType = Enum.MeshType[Part_Shapes[tonumber(m)]]
  66. end
  67. mesh.Scale = ms
  68. mesh.Parent = part
  69. end
  70. end
  71. table.insert(isNegate and Subtract or Union,part)
  72. end
  73. until #t<=0
  74. local first = Union[1]
  75. first.Parent = m
  76. if #Union>1 then
  77. first = first:UnionAsync(Union)
  78. first.Parent = m
  79. end
  80. if #Subtract>0 then
  81. first = first:SubtractAsync(Subtract)
  82. first.Parent = m
  83. end
  84. first.Parent = nil
  85. m:Destroy()
  86. return first
  87. end
  88. local Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  89. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  90. function(t,f)
  91. for a,b in pairs(t) do
  92. f(a,b)
  93. end
  94. end
  95. local Types = {
  96. Color3 = Color3.new,
  97. Vector3 = Vector3.new,
  98. Vector2 = Vector2.new,
  99. UDim = UDim.new,
  100. UDim2 = UDim2.new,
  101. CFrame = CFrame.new,
  102. Rect = Rect.new,
  103. NumberRange = NumberRange.new,
  104. NumberSequence = function(...)
  105. local a = {...}
  106. local t = {}
  107. repeat
  108. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  109. until #a==0
  110. return NumberSequence.new(t)
  111. end,
  112. ColorSequence = function(...)
  113. local a = {...}
  114. local t = {}
  115. repeat
  116. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  117. until #a==0
  118. return ColorSequence.new(t)
  119. end,
  120. number = tonumber,
  121. boolean = function(a)
  122. return a=="1"
  123. end
  124. }
  125. split = function(str,sep)
  126. if not str then return end
  127. local fields = {}
  128. local ConcatNext = false
  129. str:gsub(("([^%s]+)"):format(sep),function(c)
  130. if ConcatNext == true then
  131. fields[#fields] = fields[#fields]..sep..c
  132. ConcatNext = false
  133. else
  134. fields[#fields+1] = c
  135. end
  136. if c:sub(#c)=="\\" then
  137. c = fields[#fields]
  138. fields[#fields] = c:sub(1,#c-1)
  139. ConcatNext = true
  140. end
  141. end)
  142. return fields
  143. end
  144. RemoveAndSplit = function(t)
  145. return split(table_remove(t,1),comma)
  146. end
  147. t = split(str,";")
  148. props = RemoveAndSplit(t)
  149. classes = RemoveAndSplit(t)
  150. values = split(table_remove(t,1),'|')
  151. ICList = RemoveAndSplit(t)
  152. InstanceList = {}
  153. Model = inst"Model"
  154. CurPar = Model
  155. table_foreach(t,function(ct,c)
  156. if c=="n" or c=="p" then
  157. CurPar = c=="n" and LastIns or CurPar[parnt]
  158. else
  159. ct = split(c,"|")
  160. local class = classes[tonum(table_remove(ct,1))]
  161. if class=="UnionOperation" then
  162. LastIns = {Locked="true",Anchored="true",UsePartColor="true"}
  163. else
  164. LastIns = inst(class)
  165. if LastIns:IsA"Script" then
  166. s(LastIns)
  167. end
  168. end
  169.  
  170. local function SetProperty(LastIns,p,str,s)
  171. s = Types[typeof(LastIns[p])]
  172. LastIns[p] = s and s(unpack(split(str,comma))) or str
  173. end
  174.  
  175. local UnionData
  176. table_foreach(ct,function(s,p,a,str)
  177. a = p:find":"
  178. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  179. if p=="UnionData" then
  180. UnionData = split(str," ")
  181. return
  182. end
  183. if class=="UnionOperation" then
  184. LastIns[p] = str
  185. return
  186. end
  187. SetProperty(LastIns,p,str)
  188. end)
  189.  
  190. if UnionData then
  191. local LI_Data = LastIns
  192. LastIns = DecodeUnion(UnionData)
  193. table_foreach(LI_Data,function(p,str)
  194. SetProperty(LastIns,p,str)
  195. end)
  196. end
  197. table.insert(InstanceList,LastIns)
  198. LastIns[parnt] = CurPar
  199. end
  200. end)
  201. table_remove(ICList,1)
  202. table_foreach(ICList,function(a,b)
  203. b = split(b,">")
  204. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  205. end)
  206.  
  207. return Model:GetChildren()
  208. end
  209.  
  210. local Objects = Decode('Name,Anchored,Locked,Color,Material,Position,Orientation,Size,C0,C1,Part0,Part1,Style,Transparency,Shape,BackSurface,BottomSurface,FrontSurface,LeftSurface,RightSurface,TopSurface,Offset,Scale,MeshId,TextureId,MeshType,Texture,Enabled,Speed,LightEmission,EmissionDirection,Lifetime,LockedToPart,Rate,RotSpeed,CanCollide,Torque,MaxSpeed,LightInfluence,VertexColor,Velocity,MaxForce,Looped,SoundId,Volume,PlaybackSpeed,MaxActivationDistance,Range,Brightness,UnionData,AngularVelocity,MaxTorque;Part,Model,ManualWeld,TrussPart,SpecialMesh,ParticleEmitter,Vehi'
  211. ..'cleSeat,WedgePart,BlockMesh,Script,BodyVelocity,Sound,ClickDetector,CylinderMesh,PointLight,UnionOperation,BodyAngularVelocity;Part|Rocket|1|0.105,0.164,0.207|1088|73.479,41.996,-146.251|-0.11,135,-0.101|0.2,0.2,1.019|76.504,81.756,-146.251|0.109,-135,-0.101|0.2,1.3,0.2|73.139,43.495,-144.712|0,180,-0.141|0.2,0.2,2.5|Part-to-Part Strong Joint|0.1,-0.101,-1.25,-1,0,0,0,1,0,0,0,-1|1.997,1.324,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|75.03,45,-146.579|2.549,0.2,0.2|73.135,44.995,-144.712|1.997,2.824,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|7'
  212. ..'3.475,43.496,-146.251|76.601,42.754,-146.251|73.143,41.995,-144.712|1.997,-0.176,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.48,41.246,-146.251|0.2,1.299,0.2|76.946,40.505,-144.712|-1.803,-1.676,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|75.041,40.5,-146.579|76.924,49.505,-144.712|-1.804,7.324,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.943,42.005,-144.712|-1.803,-0.176,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.46,49.497,-146.251|75.018,49.5,-146.579|76.596,45.004,-146.251|76.585,49.504,-146.251|76.605,41.254,-146.251|76.6,43.'
  213. ..'504,-146.251|75.033,43.5,-146.579|73.045,80.998,-144.712|1.992,38.825,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.042,82.498,-144.712|1.992,40.325,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.502,82.506,-146.251|74.936,82.503,-146.579|73.477,42.746,-146.251|76.607,40.504,-146.251|73.471,44.996,-146.251|73.473,44.246,-146.251|76.598,44.254,-146.251|76.594,45.754,-146.251|76.939,43.505,-144.712|-1.803,1.324,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.935,45.005,-144.712|-1.803,2.824,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|75.037'
  214. ..',42,-146.579|73.469,45.746,-146.251|73.379,81.748,-146.251|73.378,82.498,-146.251|76.508,80.256,-146.251|74.94,81.002,-146.579|76.845,81.007,-144.712|-1.808,38.825,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.506,81.006,-146.251|73.37,85.498,-146.251|73.374,83.998,-146.251|74.932,84.003,-146.579|73.372,84.748,-146.251|73.376,83.248,-146.251|76.838,84.007,-144.712|76.5,83.256,-146.251|73.383,80.248,-146.251|73.038,83.998,-144.712|73.381,80.998,-146.251|74.929,85.503,-146.579|76.499,84.006,-146.251|76.497,84.756,-146.251|76.842,82.507,-144.712|76.'
  215. ..'834,85.507,-144.712|76.495,85.506,-146.251|73.034,85.498,-144.712|75.01,53.601,-142.962|2,62,2|2|74.958,73.502,-146.579|73.42,65.247,-146.251|73.409,69.748,-146.251|76.872,70.506,-144.712|-1.806,28.324,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.411,68.998,-146.251|74.97,69.002,-146.579|73.385,79.498,-146.251|73.387,78.748,-146.251|76.512,78.756,-146.251|76.514,78.006,-146.251|76.51,79.506,-146.251|73.413,68.248,-146.251|76.515,77.256,-146.251|73.079,67.497,-144.712|1.994,25.325,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.849,79.507,-144.'
  216. ..'712|-1.807,37.325,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.049,79.498,-144.712|1.993,37.325,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.389,77.998,-146.251|76.875,69.006,-144.712|-1.806,26.824,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|74.947,78.002,-146.579|73.506,30.746,-146.251|75.067,29.999,-146.579|76.633,30.003,-146.251|76.853,78.007,-144.712|-1.807,35.825,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.391,77.248,-146.251|74.943,79.502,-146.579|73.053,77.998,-144.712|1.993,35.825,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001'
  217. ..',-1|73.173,29.995,-144.712|1.999,-12.176,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.631,30.753,-146.251|76.973,30.004,-144.712|-1.801,-12.176,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.501,32.996,-146.251|73.505,31.496,-146.251|73.165,32.995,-144.712|1.998,-9.176,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|75.059,33,-146.579|73.508,29.996,-146.251|76.624,33.753,-146.251|76.628,32.253,-146.251|76.626,33.003,-146.251|73.499,33.746,-146.251|76.517,76.506,-146.251|73.503,32.246,-146.251|76.965,33.004,-144.712|-1.802,-9.176,1,-1,-0.001,0,'
  218. ..'-0.001,1,-0.001,-0.001,-0.001,-1|76.629,31.503,-146.251|74.951,76.502,-146.579|76.969,31.504,-144.712|-1.801,-10.676,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|75.063,31.5,-146.579|76.857,76.507,-144.712|-1.807,34.325,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.057,76.497,-144.712|1.993,34.325,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.392,76.498,-146.251|73.169,31.495,-144.712|1.999,-10.676,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|75.026,46.5,-146.579|73.464,47.997,-146.251|73.12,50.996,-144.712|1.996,8.824,1,-1,-0.001,0,-0.00'
  219. ..'1,1,-0.001,-0.001,-0.001,-1|73.462,48.747,-146.251|73.131,46.495,-144.712|1.997,4.324,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|75.022,48,-146.579|76.588,48.004,-146.251|76.583,50.254,-146.251|76.928,48.005,-144.712|-1.803,5.824,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.579,51.754,-146.251|73.482,40.496,-146.251|75.015,51.001,-146.579|73.465,47.247,-146.251|76.592,46.504,-146.251|73.128,47.996,-144.712|1.997,5.824,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.124,49.496,-144.712|1.996,7.324,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001'
  220. ..',-1|76.92,51.005,-144.712|-1.804,8.824,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.581,51.004,-146.251|76.932,46.505,-144.712|-1.803,4.324,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.146,40.495,-144.712|1.997,-1.676,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.586,48.754,-146.251|73.454,51.747,-146.251|76.59,47.254,-146.251|73.467,46.496,-146.251|73.458,50.247,-146.251|73.456,50.997,-146.251|73.025,85.598,-141.562|0.2,3,0.2|76.622,34.504,-146.251|76.958,36.005,-144.712|-1.802,-6.176,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.4'
  221. ..'94,35.996,-146.251|73.158,35.995,-144.712|1.998,-6.176,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|75.056,34.5,-146.579|73.495,35.246,-146.251|76.609,39.754,-146.251|75.052,36,-146.579|73.161,34.495,-144.712|1.998,-7.676,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.613,38.254,-146.251|73.15,38.995,-144.712|1.998,-3.176,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.497,34.496,-146.251|76.961,34.504,-144.712|-1.802,-7.676,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.616,36.754,-146.251|76.618,36.004,-146.251|73.492,36.746,-146.251|75.0'
  222. ..'44,39,-146.579|76.62,35.254,-146.251|73.484,39.746,-146.251|73.488,38.246,-146.251|76.95,39.005,-144.712|-1.802,-3.176,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.486,38.996,-146.251|76.615,37.504,-146.251|76.611,39.004,-146.251|73.154,37.495,-144.712|1.998,-4.676,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|75.048,37.5,-146.579|76.954,37.505,-144.712|-1.802,-4.676,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.49,37.496,-146.251|72.83,83.797,-129.362|0.2,0.2,0.2|75.071,28.499,-146.579|76.825,85.607,-141.562|76.822,87.007,-142.462|0.2,0.2,'
  223. ..'1.599|73.026,85.498,-142.462|73.176,28.495,-144.712|1.999,-13.676,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.512,28.496,-146.251|73.022,86.997,-142.462|76.825,85.607,-143.362|76.976,28.504,-144.712|-1.801,-13.676,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.025,85.598,-143.362|76.637,28.503,-146.251|76.635,29.253,-146.251|73.51,29.246,-146.251|76.826,85.507,-142.462|73.025,85.498,-140.662|76.83,87.007,-144.712|76.493,86.256,-146.251|73.03,86.998,-144.712|73.368,86.248,-146.251|73.023,86.248,-139.762|0.2,1.7,0.2|73.022,86.998,-140.662|74.9'
  224. ..'25,87.003,-146.579|76.491,87.006,-146.251|73.366,86.998,-146.251|76.555,61.505,-146.251|74.985,63.001,-146.579|73.428,62.247,-146.251|76.575,53.254,-146.251|74.992,60.001,-146.579|76.56,59.255,-146.251|73.432,60.747,-146.251|74.996,58.501,-146.579|73.435,59.247,-146.251|73.437,58.497,-146.251|76.549,63.755,-146.251|76.558,60.005,-146.251|76.551,63.005,-146.251|73.102,58.496,-144.712|1.995,16.325,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.098,59.996,-144.712|1.995,17.825,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.564,57.755,-146.251|76.8'
  225. ..'98,60.005,-144.712|-1.805,17.824,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|74.988,61.501,-146.579|73.43,61.497,-146.251|73.09,62.996,-144.712|1.995,20.825,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.094,61.496,-144.712|1.995,19.325,0.999,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.426,62.997,-146.251|76.894,61.505,-144.712|-1.805,19.324,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.89,63.005,-144.712|-1.805,20.824,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.562,58.505,-146.251|73.434,59.997,-146.251|76.902,58.505,-144.712|-1.'
  226. ..'805,16.324,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.556,60.755,-146.251|73.424,63.747,-146.251|76.573,54.004,-146.251|73.113,53.996,-144.712|1.996,11.825,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.553,62.255,-146.251|73.439,57.747,-146.251|76.577,52.504,-146.251|74.955,75.002,-146.579|76.868,72.006,-144.712|-1.806,29.824,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.532,70.505,-146.251|73.449,53.997,-146.251|73.117,52.496,-144.712|1.996,10.325,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.447,54.747,-146.251|73.068,71.997,-144'
  227. ..'.712|1.994,29.825,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.402,72.748,-146.251|76.523,74.255,-146.251|73.396,74.998,-146.251|76.913,54.005,-144.712|-1.804,11.824,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|75,57.001,-146.579|75.011,52.501,-146.579|76.917,52.505,-144.712|-1.804,10.324,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.86,75.006,-144.712|-1.807,32.825,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.087,64.496,-144.712|1.994,22.325,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.407,70.498,-146.251|73.105,56.996,-144.712|'
  228. ..'1.995,14.825,0.999,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|75.007,54.001,-146.579|76.568,56.255,-146.251|73.452,52.497,-146.251|76.571,54.754,-146.251|73.45,53.247,-146.251|74.966,70.502,-146.579|76.57,55.505,-146.251|73.405,71.248,-146.251|73.072,70.497,-144.712|1.994,28.325,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.441,56.997,-146.251|76.566,57.005,-146.251|73.06,74.997,-144.712|1.993,32.825,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.905,57.006,-144.712|-1.805,14.824,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.109,55.496,-'
  229. ..'144.712|1.996,13.325,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.527,72.755,-146.251|73.443,56.247,-146.251|73.404,71.998,-146.251|75.003,55.501,-146.579|74.962,72.002,-146.579|76.519,75.756,-146.251|76.528,72.005,-146.251|73.422,64.497,-146.251|73.445,55.497,-146.251|76.909,55.505,-144.712|-1.804,13.324,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.394,75.748,-146.251|73.398,74.248,-146.251|76.53,71.255,-146.251|76.545,65.255,-146.251|74.977,66.001,-146.579|73.415,67.497,-146.251|74.973,67.501,-146.579|76.864,73.506,-144.712|-1.807,31.324,'
  230. ..'1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|74.981,64.501,-146.579|76.879,67.506,-144.712|-1.806,25.324,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|73.4,73.498,-146.251|76.541,66.755,-146.251|76.538,68.255,-146.251|73.419,65.997,-146.251|73.417,66.747,-146.251|76.521,75.005,-146.251|76.54,67.505,-146.251|76.543,66.005,-146.251|76.547,64.505,-146.251|73.075,68.997,-144.712|1.994,26.825,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.534,69.755,-146.251|73.083,65.996,-144.712|1.994,23.825,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.536,69'
  231. ..'.005,-146.251|73.064,73.497,-144.712|1.993,31.325,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.883,66.006,-144.712|-1.806,23.824,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|76.525,73.505,-146.251|76.887,64.505,-144.712|-1.806,22.324,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|0.388,0.372,0.384|74.871,62.183,-111.254|0,-180,-90.24|0.2,12,12|Joint5|0.803,0.803,0.803|74.874,63.083,-111.254|1.599,12,12|73.164,20.994,-144.712|73.505,18.745,-146.251|75.058,20.999,-146.579|76.626,20.253,-146.251|73.171,17.994,-144.712|73.498,21.745,-146.251|76.63'
  232. ..'2,18.003,-146.251|73.503,19.495,-146.251|73.5,20.995,-146.251|73.507,17.995,-146.251|76.63,18.753,-146.251|76.623,21.753,-146.251|76.624,21.003,-146.251|73.501,20.245,-146.251|76.964,21.004,-144.712|76.628,19.503,-146.251|76.968,19.504,-144.712|75.062,19.499,-146.579|73.168,19.494,-144.712|75.066,17.999,-146.579|76.971,18.004,-144.712|73.175,16.494,-144.712|75.069,16.499,-146.579|76.634,17.253,-146.251|76.975,16.504,-144.712|73.511,16.495,-146.251|76.636,16.503,-146.251|73.509,17.245,-146.251|Engine6|74.87,63.983,-111.253|0,-180,-0.22|0,-0.25,0|7,6,7'
  233. ..'|http://www.roblox.com/asset/?id=1038653|http://www.roblox.com/asset/?id=1038654|5|0,0.392,1,1,0.587,1,0.333,0,1,1,0,0|0,0,0,1,1,0|0,5.65,0,1,0,0|rbxasset://textures/particles/explosion01_implosion_main.dds|0|150,150|4|0.4,0.4|1000000000|1000000,1000000|0.768,0.156,0.109|56.804,31.053,-111.322|-0.16,90,-0.16|2,2,6|E1|1,0.686,0|288|76.734,90.901,-115.453|0.27,-90,0|0.2,0.2,0.05|10|E3|76.734,90.902,-114.653|0.28,-90,0|73.174,10.494,-144.712|60.804,31.064,-111.322|-0.16,90,179.839|4,2,2|75.061,13.499,-146.579|74.802,82.588,-111.253|0,-180,-90.231|1,12,1'
  234. ..'2|E2|76.735,90.9,-115.053|0.259,-90,0|76.633,11.252,-146.251|74.786,85.193,-107.254|0,0,0.25|2,0.2,2|76.967,13.503,-144.712|70.786,85.176,-111.255|0.239,-90,0|76.974,10.503,-144.712|54.901,15.046,-111.227|2,30,2|70.775,87.576,-115.254|-0.25,90,-90|9,4,4|78.777,87.605,-115.252|0,0,-89.75|70.775,87.575,-107.255|0,-180,-90.25|78.777,87.606,-107.254|0.25,-90,-90|78.788,85.205,-111.254|-0.24,90,0|74.892,55.584,-111.254|Booster|0.972,0.972,0.972|64.585,8.29,-111.254|-0.231,90,-90|1.5,8,8|64.581,9.291,-111.254|0.5,8,8|64.577,10.291,-111.254|-0.24,90,-90|64.'
  235. ..'579,9.791,-111.254|64.575,10.791,-111.254|64.573,11.291,-111.254|64.532,21.291,-111.254|19.5,8,8|64.487,32.291,-111.254|0.239,-90,90|64.491,31.291,-111.254|64.485,32.791,-111.254|64.479,34.291,-111.254|0.23,-90,90|64.483,33.291,-111.254|64.489,31.791,-111.254|74.987,32.333,-100.754|0,0,90.239|74.983,33.334,-121.754|0,0,90.23|Engine1|64.592,6.541,-111.253|0,-180,-0.231|5,2,5|6,5,6|0,1,0.549,0,1,1,0,0|0,0.731,0,0.084,5.411,0,1,0,0|rbxasset://textures/particles/smoke_main.dds|200,200|0.8|1.25,1.25|500|10000000,10000000|Smoke|0,0.666,0.666,0.666,1,0.666,'
  236. ..'0.666,0.666|0,0.679,0,1,1,0|0,10,0,1,10,0|20,20|125|100,100|64.455,40.042,-111.253|0,-180,-0.24|8,10,8|4,13.34,4|3.0000000280822e+15,2.999999954473e+31,3.0000000280822e+15|http://www.roblox.com/asset/?id=1033714|74.985,32.834,-121.754|74.991,31.334,-121.754|74.954,40.084,-100.753|Engine4|75.092,6.584,-100.753|74.985,32.833,-100.754|74.983,33.333,-100.754|74.979,34.333,-100.754|74.989,31.833,-100.754|74.991,31.333,-100.754|75.032,21.333,-100.753|75.075,10.833,-100.754|75.073,11.333,-100.754|75.085,8.334,-100.754|75.077,10.333,-100.754|75.079,9.833,-10'
  237. ..'0.754|75.081,9.334,-100.754|74.955,40.084,-121.753|-0.231,90,0|85.454,40.126,-111.253|74.979,34.334,-121.754|74.987,32.334,-121.754|85.482,33.376,-111.254|85.486,32.376,-111.254|85.484,32.876,-111.254|85.488,31.876,-111.254|85.49,31.376,-111.254|85.478,34.376,-111.254|85.531,21.376,-111.254|85.575,10.876,-111.254|85.581,9.376,-111.254|85.577,10.377,-111.254|85.573,11.376,-111.254|85.585,8.376,-111.254|85.579,9.877,-111.254|Engine3|85.592,6.627,-111.253|75.032,21.334,-121.753|74.989,31.834,-121.754|Engine2|75.092,6.585,-121.753|75.081,9.334,-121.754|7'
  238. ..'5.086,8.334,-121.754|75.079,9.834,-121.754|75.077,10.334,-121.754|75.075,10.834,-121.754|75.073,11.334,-121.754|75.083,9.083,-111.254|4,12,12|74.896,54.583,-111.254|74.9,53.583,-111.254|0.066,0.066,0.066|67.638,9.006,-103.841|-0.231,135,0|0.5,2,9|82.48,18.66,-118.683|0.239,-45,0|0.5,17,9|82.508,9.083,-103.84|0,-135,-0.231|67.611,18.584,-118.683|0,45,0.23|82.481,18.583,-103.813|82.508,9.161,-118.71|67.611,18.507,-103.813|67.638,9.084,-118.711|Main|74.978,34.584,-111.254|37,12,12|Weld|74.761,90.592,-105.752|0,180,-0.25|4,1,1|Core|74.84,73.088,-111.253|'
  239. ..'18,12,12|0,0,0|inf,inf,inf|A|rbxassetid://154757584|B|rbxassetid://160914477|0.899|C|rbxassetid://167570993|3|D|1.5|rbxassetid://558246436|5|Decoupler|rbxassetid://231977665|E|2|75.065,13.582,-111.254|75.069,12.583,-111.254|74.874,60.084,-111.254|Joint1|81.281,21.359,-111.253|0.5,18.5,1|75.056,15.584,-111.254|75.073,11.583,-111.254|75.06,14.582,-111.254|69.262,90.569,-111.252|Engine5|75.091,6.984,-111.253|0,-1,0|8,6,8|0,10,0,1,0,0|300,300|0.5,0.5|0.015,0.686,0.925|0.6|80.273,88.611,-111.252|4,3,1|80.264,90.61,-111.252|76.035,85.398,-107.255|0,-180,-0'
  240. ..'.25|0.5,2.599,2|Part-to-VehicleSeat Strong Joint|0.25,-1.3,1,0,0,1,0,1,-0,-1,0,0|0.999,-1.101,-1.001,-0.001,0,-1,0,1,0,1,-0.001,-0.001|74.784,85.593,-105.754|-2,-1.5,0.5,1,0,0,0,1,0,0,0,1|-0.751,-1.3,-1.001,1,0,0,-0.001,1,0,-0.001,-0.001,1|-3.25,-1.3,-1.001,1,0,0,-0.001,1,0,-0.001,-0.001,1|2,-1.1,1,-1,-0.001,-0.001,-0.001,1,0,0,0,-1|80.286,85.611,-111.253|-2,-0.5,-1,0.999,0,0,-0.001,0.999,-0.001,-0.001,0,0.999|-3.25,-1.3,-1.001,0.999,0,0,-0.001,0.999,0,-0.001,-0.001,0.999|-0.75,-1.3,-1.001,0.999,0,0,-0.001,0.999,0,-0.001,0,0.999|1.999,-1.1,1,-1,-0.00'
  241. ..'1,-0.001,-0.001,1,-0.001,0,-0.001,-1|70.793,83.574,-111.253|0.25,-90,0|4,1,4|Trigger|0.203,0.556,0.25|76.029,86.798,-108.005|0.4,0.2,0.4|12|Door|74.777,87.092,-116.753|4,6,1|73.535,85.387,-107.255|-0.25,-1.3,-1,0,0,-1,0,1,0,1,0,0|-1,-1.101,0.999,0,0,1,-0.001,1,-0.001,-1,-0.001,0|78.793,83.609,-111.254|Joint4|75.031,21.334,-105.003|74.788,84.593,-107.254|2,1,2|-1,-0.5,-1,0,0,-1,0,1,0,1,0,0|0.249,-1.3,-1.001,0,0,-1,0,0.999,0,0.999,-0.001,0|1,-0.5,1,0,0,1,0,1,-0,-1,0,0|-0.25,-1.3,0.999,-0.001,0,0.999,-0.001,0.999,-0.001,-1,-0.001,-0.001|74.883,57.584,-1'
  242. ..'11.254|69.284,85.569,-111.255|2,-1.5,-0.5,-1,0,0,0,1,0,0,0,-1|-2.001,-0.5,-1,0.999,-0.001,-0.001,0,0.999,-0.001,0,0,0.999|-0.751,-1.3,-1.001,0.999,0,0,-0.001,0.999,-0.001,-0.001,0,0.999|-3.251,-1.3,-1.001,1,0,0,-0.001,1,0,-0.001,-0.001,1|2,-1.1,1,-1,-0.001,0,-0.001,1,-0.001,-0.001,-0.001,-1|74.793,83.592,-111.254|4,1,12|2,-0.5,6,0,0,1,0,1,-0,-1,0,0|-6,-0.5,-2,1,0,0,0,1,0,0,0,1|-2,-0.5,-6,0,0,-1,0,1,0,1,0,0|6,-0.5,2,-1,0,0,0,1,0,0,0,-1|78.791,84.605,-111.254|-0.25,-1.3,0.999,-0.001,0,1,-0.001,1,-0.001,-1,-0.001,-0.001|0.249,-1.3,-1.001,0,0,-1,0,1,0,1,'
  243. ..'-0.001,0|Joint3|68.782,21.308,-111.253|74.729,98.097,-111.253|0,-180,-0.21|12,12,12|5.969,16,5.969|74.888,56.584,-111.254|74.764,90.589,-116.752|0,180,-0.24|69.271,88.57,-111.254|74.77,88.592,-105.754|70.788,84.576,-111.255|70.785,85.376,-110.005|0.5,2.6,2|0.25,-1.301,1,0,0,1,0,1,-0,-1,0,0|0.999,-1.1,-1.001,-0.001,0,-1,0,1,0,1,-0.001,-0.001|Joint2|75.031,21.334,-117.503|78.787,85.405,-112.504|70.785,85.376,-112.505|-1,-1.1,0.999,0,0,1,-0.001,1,-0.001,-1,-0.001,0|78.787,85.405,-110.004|-1.001,-1.1,0.999,0,0,1,-0.001,1,-0.001,-1,-0.001,0|78.759,91.61,-'
  244. ..'111.254|74.759,91.593,-111.254|70.759,91.575,-111.253|73.502,7.495,-146.251|73.17,5.993,-144.712|76.631,6.002,-146.251|76.629,6.752,-146.251|73.498,8.995,-146.251|73.163,8.994,-144.712|73.504,6.745,-146.251|76.97,6.003,-144.712|75.064,5.998,-146.579|75.061,7.498,-146.579|76.621,9.752,-146.251|76.625,8.252,-146.251|76.966,7.503,-144.712|76.963,9.003,-144.712|73.166,7.494,-144.712|73.506,5.994,-146.251|76.623,9.002,-146.251|73.496,9.745,-146.251|73.5,8.245,-146.251|76.627,7.502,-146.251|75.057,8.998,-146.579|73.506,24.745,-146.251|73.504,25.495,-146.25'
  245. ..'1|76.631,24.753,-146.251|73.165,26.995,-144.712|73.508,23.995,-146.251|75.059,26.999,-146.579|76.965,27.004,-144.712|76.629,25.503,-146.251|73.172,23.994,-144.712|76.972,24.004,-144.712|73.5,26.995,-146.251|76.623,27.753,-146.251|76.627,26.253,-146.251|76.625,27.003,-146.251|73.498,27.746,-146.251|75.066,23.999,-146.579|73.502,26.245,-146.251|76.633,24.003,-146.251|73.176,22.494,-144.712|76.636,22.503,-146.251|73.168,25.494,-144.712|73.51,23.245,-146.251|73.512,22.495,-146.251|75.07,22.499,-146.579|76.976,22.504,-144.712|75.063,25.499,-146.579|76.634'
  246. ..',23.253,-146.251|76.968,25.504,-144.712|75.12,11.599,-142.962|2,22,2|73.507,11.995,-146.251|76.603,42.004,-146.251|Motor|0.639,0.635,0.647|1056|1 0.2,0.2,1.799 76.826,85.507,-138.162 0,180,-0.141 = 1 0.2,0.2,1.799 76.822,87.007,-128.162 0,180,-0.141 = 1 0.2,0.2,1.799 76.822,87.007,-130.162 0,180,-0.141 = 1 0.2,0.2,1.799 76.826,85.507,-128.162 0,180,-0.141 = 1 0.2,0.2,1.799 76.826,85.507,-130.162 0,180,-0.141 = 1 0.2,0.2,1.799 76.826,85.507,-122.162 0,180,-0.141 = 1 0.2,0.2,1.799 76.822,87.007,-122.162 0,180,-0.141 = 1 0.2,0.2,1.799 76.822,87.007,-120'
  247. ..'.162 0,180,-0.141 = 1 0.2,0.2,1.799 76.826,85.507,-120.162 0,180,-0.141 = n 1 4,0.2,4 74.929,84.002,-139.464 0,180,-0.141 + 8 1,1,1 1 3.2,0.4,0.399 74.93,83.702,-133.264 0,180,-0.141 = 1 0.4,0.4,4 73.13,83.698,-131.464 0,180,-0.141 = 1 3.2,0.4,0.399 74.93,83.702,-125.664 0,180,-0.141 = 1 3.2,0.4,0.399 74.93,83.702,-129.264 0,180,-0.141 = 1 0.4,0.4,5 74.93,83.702,-127.464 0.1,-135,-0.101 = 1 0.4,0.4,4 76.73,83.707,-131.464 0,180,-0.141 = 1 0.4,0.4,5 74.93,83.702,-131.464 -0.101,135,-0.101 = 1 0.4,0.4,5 74.93,83.702,-131.464 0.1,-135,-0.101 = 1 0.4,0.4'
  248. ..',5 74.93,83.702,-127.464 -0.101,135,-0.101 = 1 0.4,0.4,4 76.73,83.707,-127.464 0,180,-0.141 = 1 3.2,0.4,0.399 74.93,83.702,-129.664 0,180,-0.141 = 1 0.4,0.4,4 73.13,83.698,-127.464 0,180,-0.141 = 1 3.2,0.4,0.399 74.93,83.702,-125.264 0,180,-0.141 = 1 3.2,0.4,0.399 74.93,83.702,-121.664 0,180,-0.141 = 1 0.4,0.4,4 73.13,83.698,-123.464 0,180,-0.141 = 1 0.4,0.4,5 74.93,83.702,-123.464 0.1,-135,-0.101 = 1 0.4,0.4,5 74.93,83.702,-123.464 -0.101,135,-0.101 = 1 0.4,0.4,4 73.13,83.698,-119.464 0,180,-0.141 = 1 0.4,0.4,4 76.73,83.707,-123.464 0,180,-0.141 = 1'
  249. ..' 3.2,0.4,0.399 74.93,83.702,-121.264 0,180,-0.141 = 1 0.4,0.4,5 74.93,83.702,-119.464 -0.101,135,-0.101 = 1 3.2,0.4,0.399 74.93,83.702,-117.664 0,180,-0.141 = 1 0.4,0.4,4 76.73,83.707,-119.464 0,180,-0.141 = 1 0.4,0.4,5 74.93,83.702,-119.464 0.1,-135,-0.101 = 1 4,0.2,22 74.929,84.002,-128.464 0,180,-0.141 = 1 0.4,0.4,6 73.13,83.698,-136.464 0,180,-0.141 = 1 3.2,0.4,2.399 74.93,83.702,-138.264 0,180,-0.141 = 1 3.2,0.4,0.399 74.93,83.702,-133.664 0,180,-0.141 = 1 0.4,0.4,6 76.73,83.707,-136.464 0,180,-0.141 = 1 0.4,0.4,5 74.93,83.702,-135.464 0.1,-135,'
  250. ..'-0.101 = 1 0.4,0.4,5 74.93,83.702,-135.464 -0.101,135,-0.101 = 1 4,0.4,4 74.93,83.702,-139.464 0,180,-0.141 + 8 1,1,1 p 1 0.2,3,0.2 76.825,85.607,-129.162 0,180,-0.141 = 1 0.2,3,0.2 76.825,85.607,-123.162 0,180,-0.141 = 1 0.2,3,0.2 76.825,85.607,-125.162 0,180,-0.141 = 1 0.2,3,0.2 76.825,85.607,-119.162 0,180,-0.141 = 1 0.2,3,0.2 76.825,85.607,-131.162 0,180,-0.141 = 1 0.2,3,0.2 76.825,85.607,-127.162 0,180,-0.141 = 1 0.2,3,0.2 76.825,85.607,-121.162 0,180,-0.141 = 1 0.2,3,0.2 76.825,85.607,-139.162 0,180,-0.141 = 1 0.2,0.2,1.799 76.822,87.007,-136.1'
  251. ..'62 0,180,-0.141 = 1 0.2,0.2,1.799 76.826,85.507,-136.162 0,180,-0.141 = 1 0.2,3,0.2 76.825,85.607,-137.162 0,180,-0.141 = 1 0.2,0.2,1.799 73.026,85.498,-138.162 0,180,-0.141 = 1 0.2,0.2,1.799 73.022,86.998,-128.162 0,180,-0.141 = 1 0.2,0.2,1.799 73.022,86.998,-130.162 0,180,-0.141 = 1 0.2,0.2,1.799 73.026,85.498,-130.162 0,180,-0.141 = 1 0.2,0.2,1.799 73.022,86.998,-122.162 0,180,-0.141 = 1 0.2,3,0.2 73.025,85.598,-125.162 0,180,-0.141 = 1 0.2,0.2,1.799 73.022,86.998,-120.162 0,180,-0.141 = 1 0.2,0.2,1.799 73.026,85.498,-122.162 0,180,-0.141 = 1 0.2,'
  252. ..'3,0.2 73.025,85.598,-129.162 0,180,-0.141 = 1 0.2,0.2,1.799 73.026,85.498,-120.162 0,180,-0.141 = 1 0.2,3,0.2 73.025,85.598,-119.162 0,180,-0.141 = 1 0.2,3,0.2 73.025,85.598,-123.162 0,180,-0.141 = 1 0.2,3,0.2 73.025,85.598,-131.162 0,180,-0.141 = 1 0.2,0.2,1.799 73.026,85.498,-128.162 0,180,-0.141 = 1 0.2,3,0.2 73.025,85.598,-121.162 0,180,-0.141 = 1 0.2,0.2,1.799 73.026,85.498,-136.162 0,180,-0.141 = 1 0.2,3,0.2 73.025,85.598,-137.162 0,180,-0.141 = 1 0.2,3,0.2 73.025,85.598,-139.162 0,180,-0.141 = 1 0.2,0.2,1.799 73.022,86.998,-136.162 0,180,-0.14'
  253. ..'1 = 1 0.2,3,0.2 73.025,85.598,-127.162 0,180,-0.141 = 1 0.2,0.2,1.799 73.022,86.998,-126.162 0,180,-0.141 = 1 0.2,0.2,1.799 73.022,86.998,-124.162 0,180,-0.141 = 1 0.2,0.2,1.799 73.026,85.498,-124.162 0,180,-0.141 = 1 0.2,0.2,1.799 73.026,85.498,-126.162 0,180,-0.141 = 1 0.2,3,0.2 73.025,85.598,-133.162 0,180,-0.141 = 1 0.2,3,0.2 73.025,85.598,-135.162 0,180,-0.141 = 1 0.2,0.2,1.799 73.022,86.998,-132.162 0,180,-0.141 = 1 0.2,0.2,1.799 73.022,86.998,-138.162 0,180,-0.141 = 1 0.2,0.2,1.799 73.022,86.998,-134.162 0,180,-0.141 = 1 0.2,0.2,1.799 73.026,8'
  254. ..'5.498,-134.162 0,180,-0.141 = 1 0.2,0.2,1.799 73.026,85.498,-132.162 0,180,-0.141 = 1 0.2,0.2,1.399 73.022,86.998,-118.362 0,180,-0.141 = 1 0.2,0.2,1.399 73.026,85.498,-118.362 0,180,-0.141 = 1 0.2,0.2,1.799 76.826,85.507,-126.162 0,180,-0.141 = 1 0.2,0.2,1.799 76.822,87.007,-124.162 0,180,-0.141 = 1 0.2,0.2,1.799 76.822,87.007,-126.162 0,180,-0.141 = 1 0.2,0.2,1.799 76.826,85.507,-124.162 0,180,-0.141 = 1 0.2,3,0.2 73.025,85.598,-117.562 0,180,-0.141 = 1 0.2,3,0.2 76.825,85.607,-135.162 0,180,-0.141 = 1 0.2,3,0.2 76.825,85.607,-133.162 0,180,-0.141 '
  255. ..'= 1 0.2,0.2,1.799 76.826,85.507,-134.162 0,180,-0.141 = 1 0.2,0.2,1.799 76.822,87.007,-134.162 0,180,-0.141 = 1 0.2,0.2,1.799 76.826,85.507,-132.162 0,180,-0.141 = 1 0.2,0.2,1.799 76.822,87.007,-132.162 0,180,-0.141 = 1 0.2,0.2,1.799 76.822,87.007,-138.162 0,180,-0.141 = 1 0.2,0.2,1.399 76.826,85.507,-118.362 0,180,-0.141 = 1 0.2,3,0.2 76.825,85.607,-117.562 0,180,-0.141 = 1 0.2,0.2,1.399 76.822,87.007,-118.362 0,180,-0.141 =|0,-0.201,0|0,100000000,0|75.041,41.775,-140.462|2,83.45,2|75.041,41.775,-139.462|6|75.04,42.075,-142.462|4,84.05,2|-2,-42.026,'
  256. ..'1,1,0,0,0,1,0,0,0,1|-3.916,-26.951,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-0.116,-26.951,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-3.916,-23.951,-1.25,1,-0.001,-0.001,0,1,0,0,-0.001,1|-0.116,-23.951,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-3.917,-22.451,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-3.916,-25.451,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-0.117,-22.451,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-0.116,-25.451,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-3.932,-20.951,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-3.933,-17.951,-1.251,1,-0.001,-0.001,0,1,'
  257. ..'0,0,-0.001,1|-0.132,-20.951,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-0.133,-19.451,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-3.933,-19.451,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-0.133,-17.951,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-3.933,-16.451,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-0.133,-16.451,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-3.949,-11.951,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-0.149,-11.951,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-3.949,-14.951,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-0.149,-13.451,-1.251,1,-0.001,-0.001,0,1,0,0,-0'
  258. ..'.001,1|-0.149,-14.951,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-3.949,-13.451,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-3.949,-10.451,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-0.149,-10.451,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-3.966,-5.951,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-3.965,-8.951,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-0.166,-5.951,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-0.165,-7.451,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-0.165,-8.951,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|-3.965,-7.451,-1.251,1,-0.001,-0.001,0,1,0,0,-0.001,1|76.62'
  259. ..'9,12.752,-146.251|73.499,14.995,-146.251|76.631,12.002,-146.251|73.171,11.994,-144.712|73.505,12.745,-146.251|75.065,11.999,-146.579|76.971,12.003,-144.712|73.503,13.495,-146.251|76.635,10.502,-146.251|73.163,14.994,-144.712|75.058,14.999,-146.579|76.628,13.502,-146.251|76.624,15.003,-146.251|76.622,15.753,-146.251|73.497,15.745,-146.251|76.626,14.253,-146.251|73.501,14.245,-146.251|76.963,15.003,-144.712|73.167,13.494,-144.712|75.069,10.498,-146.579|73.51,10.495,-146.251|73.508,11.245,-146.251|89.389,31.063,-111.24|-0.16,-90,179.839|93.389,31.053,-1'
  260. ..'11.24|-0.16,-90,-0.16|95.293,15.046,-111.336|75.24,15.046,-91.087|-0.16,-180,-0.16|75.145,31.053,-92.991|75.145,31.064,-96.991|-0.16,-180,179.839|75.131,15.046,-131.479|-0.16,0,-0.16|75.226,31.064,-125.576|-0.16,0,179.839|75.227,31.053,-129.576;0,5>11>4,5>12>935,8>11>7,8>12>935,12>11>11,12>12>935,15>11>14,15>12>935,18>11>17,18>12>935,20>11>19,20>12>935,29>11>28,29>12>935,31>11>30,31>12>935,41>11>40,41>12>935,43>11>42,43>12>935,51>11>50,51>12>935,75>11>74,75>12>935,86>11>85,86>12>935,88>11>87,88>12>935,90>11>89,90>12>935,93>11>92,93>12>935,99>11>98,99'
  261. ..'>12>935,103>11>102,103>12>935,105>11>104,105>12>935,108>11>107,108>12>935,112>11>111,112>12>935,122>11>121,122>12>935,126>11>125,126>12>935,129>11>128,129>12>935,131>11>130,131>12>935,134>11>133,134>12>935,138>11>137,138>12>935,141>11>140,141>12>935,146>11>145,146>12>935,153>11>152,153>12>935,155>11>154,155>12>935,157>11>156,157>12>935,160>11>159,160>12>935,162>11>161,162>12>935,172>11>171,172>12>935,175>11>174,175>12>935,181>11>180,181>12>935,184>11>183,184>12>935,187>11>186,187>12>935,196>11>195,196>12>935,201>11>200,201>12>935,204>11>203,204>12>93'
  262. ..'5,212>11>211,212>12>935,217>11>216,217>12>935,247>11>246,247>12>935,249>11>248,249>12>935,252>11>251,252>12>935,256>11>255,256>12>935,258>11>257,258>12>935,261>11>260,261>12>935,263>11>262,263>12>935,267>11>266,267>12>935,272>11>271,272>12>935,278>11>277,278>12>935,282>11>281,282>12>935,285>11>284,285>12>935,290>11>289,290>12>935,294>11>293,294>12>935,296>11>295,296>12>935,298>11>297,298>12>935,301>11>300,301>12>935,311>11>310,311>12>935,315>11>314,315>12>935,317>11>316,317>12>935,319>11>318,319>12>935,330>11>329,330>12>935,339>11>338,339>12>935,342>'
  263. ..'11>341,342>12>935,353>11>352,353>12>935,356>11>355,356>12>935,359>11>358,359>12>935,361>11>360,361>12>935,364>11>363,364>12>935,565>11>564,565>12>435,567>11>566,567>12>564,568>11>566,568>12>581,569>11>566,569>12>435,571>11>570,571>12>598,572>11>570,572>12>618,573>11>570,573>12>614,574>11>570,574>12>444,582>11>581,582>12>435,586>11>585,586>12>564,587>11>585,587>12>581,590>11>589,590>12>608,591>11>589,591>12>611,592>11>589,592>12>616,593>11>589,593>12>437,595>11>594,595>12>575,596>11>594,596>12>583,599>11>598,599>12>618,600>11>598,600>12>614,609>11>608'
  264. ..',609>12>611,610>11>608,610>12>616,612>11>611,612>12>437,615>11>614,615>12>444,617>11>616,617>12>437,619>11>618,619>12>444,622>11>621,622>12>624,623>11>621,623>12>620,731>11>730,731>12>935,734>11>733,734>12>935,739>11>738,739>12>935,742>11>741,742>12>935,746>11>745,746>12>935,748>11>747,748>12>935,755>11>754,755>12>935,761>11>760,761>12>935,769>11>768,769>12>935,774>11>773,774>12>935,780>11>779,780>12>935,799>11>798,799>12>935,811>11>810,811>12>935,818>11>817,818>12>935,821>11>820,821>12>935,825>11>824,825>12>935,832>11>831,832>12>935,834>11>833,834>1'
  265. ..'2>935,836>11>835,836>12>935,839>11>838,839>12>935,841>11>840,841>12>935,844>11>843,844>12>935,846>11>845,846>12>935,850>11>849,850>12>935,853>11>852,853>12>935,861>11>860,861>12>935,867>11>866,867>12>935,869>11>868,869>12>935,874>11>873,874>12>935,878>11>877,878>12>935,880>11>879,880>12>935,884>11>883,884>12>935,888>11>887,888>12>935,893>11>892,893>12>935,899>11>898,899>12>935,901>11>900,901>12>935,907>11>906,907>12>935,909>11>908,909>12>935,913>11>912,913>12>935,924>11>923,924>12>935,929>11>928,929>12>935,933>11>932,933>12>935,936>11>935,936>12>670,'
  266. ..'937>11>935,937>12>673,938>11>935,938>12>675,939>11>935,939>12>676,940>11>935,940>12>686,941>11>935,941>12>689,942>11>935,942>12>690,943>11>935,943>12>694,944>11>935,944>12>696,945>11>935,945>12>700,946>11>935,946>12>704,947>11>935,947>12>708,948>11>935,948>12>709,949>11>935,949>12>711,950>11>935,950>12>713,951>11>935,951>12>722,952>11>935,952>12>367,953>11>935,953>12>371,954>11>935,954>12>381,955>11>935,955>12>383,956>11>935,956>12>385,957>11>935,957>12>387,958>11>935,958>12>390,959>11>935,959>12>397,960>11>935,960>12>398,961>11>935,961>12>400,962>11'
  267. ..'>935,962>12>402,963>11>935,963>12>405,964>11>935,964>12>406,965>11>935,965>12>409,966>11>935,966>12>413,967>11>935,967>12>414,968>11>935,968>12>1158,969>11>935,969>12>1161,970>11>935,970>12>1164,971>11>935,971>12>1169,972>11>935,972>12>1174,973>11>935,973>12>1176,974>11>935,974>12>1178,975>11>935,975>12>1180,976>11>935,976>12>1181,977>11>935,977>12>1183,978>11>935,978>12>1190,979>11>935,979>12>1191,980>11>935,980>12>1196,981>11>935,981>12>436,982>11>935,982>12>429,983>11>935,983>12>438,984>11>935,984>12>626,985>11>935,985>12>630,986>11>935,986>12>632'
  268. ..',987>11>935,987>12>637,988>11>935,988>12>638,989>11>935,989>12>639,990>11>935,990>12>659,991>11>935,991>12>662,992>11>935,992>12>648,993>11>935,993>12>653,994>11>935,994>12>654,995>11>935,995>12>657,1003>11>1002,1003>12>935,1005>11>1004,1005>12>935,1033>11>1032,1033>12>935,1035>11>1034,1035>12>935,1039>11>1038,1039>12>935,1044>11>1043,1044>12>935,1046>11>1045,1046>12>935,1051>11>1050,1051>12>935,1055>11>1054,1055>12>935,1059>11>1058,1059>12>935,1061>11>1060,1061>12>935,1063>11>1062,1063>12>935,1071>11>1070,1071>12>935,1073>11>1072,1073>12>935,1077>11'
  269. ..'>1076,1077>12>935,1092>11>1091,1092>12>935,1095>11>1094,1095>12>935,1097>11>1096,1097>12>935,1099>11>1098,1099>12>935,1102>11>1101,1102>12>935,1108>11>1107,1108>12>935,1110>11>1109,1110>12>935,1115>11>1114,1115>12>935,1117>11>1116,1117>12>935,1127>11>1126,1127>12>935,1139>11>1138,1139>12>935,1143>11>1142,1143>12>935,1146>11>1145,1146>12>935,1150>11>1149,1150>12>935,1152>11>1151,1152>12>935,1154>11>1153,1154>12>935;2|1:2;n;1|2:3|3:3|4:4|5:5|6:6|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:9|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:12|7:13|8:14|4:4|4:4;n;3|1:15|9:'
  270. ..'16|10:17;p;1|2:3|3:3|4:4|5:5|6:18|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:20|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:21;p;1|2:3|3:3|4:4|5:5|6:22|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:23|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:24|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:25;p;1|2:3|3:3|4:4|5:5|6:26|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:28|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:29;p;1|2:3|3:3|4:4|5:5|6:30|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:31|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:32;p;1|2:3|3:3|4:4|5:5|6:33|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:34;p;1|2:3|3:3|4:4|5:5|6:35|7:7|8'
  271. ..':8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:36|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:37|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:38|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:39|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:40|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:41|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:42|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:43;p;1|2:3|3:3|4:4|5:5|6:44|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:45;p;1|2:3|3:3|4:4|5:5|6:46|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:47|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:48|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:49|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5'
  272. ..':5|6:50|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:51|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:52|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:53|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:54|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:55;p;1|2:3|3:3|4:4|5:5|6:56|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:57;p;1|2:3|3:3|4:4|5:5|6:58|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:59|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:60|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:61|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:62|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:63|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:64|7:13|8:14|4:4|4:4;n'
  273. ..';3|1:15|9:16|10:65;p;1|2:3|3:3|4:4|5:5|6:66|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:67|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:68|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:69|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:70|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:71|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:72|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:73|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:74|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:75|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:76|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:77|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:78|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4'
  274. ..'|5:5|6:79|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:80|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:81|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:82|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:83|7:13|8:14|4:4|4:4;4|2:3|3:3|4:4|5:5|6:84|7:13|8:85|13:86|4:4|4:4;1|2:3|3:3|4:4|5:5|6:87|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:88|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:89|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:90|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:91;p;1|2:3|3:3|4:4|5:5|6:92|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:93|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:94|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5'
  275. ..':5|6:95|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:96|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:97|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:98|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:99|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:100|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:101|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:102;p;1|2:3|3:3|4:4|5:5|6:103|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:104;p;1|2:3|3:3|4:4|5:5|6:105|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:106;p;1|2:3|3:3|4:4|5:5|6:107|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:108|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:109;p;1|2:3|3:3|4:4|5:5|6:110|7:13'
  276. ..'|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:111|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:112|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:113|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:114|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:115;p;1|2:3|3:3|4:4|5:5|6:116|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:117|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:118|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:119;p;1|2:3|3:3|4:4|5:5|6:120|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:121;p;1|2:3|3:3|4:4|5:5|6:122|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:123|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:124;p;1|2:3|3:3|4:4|5:5|6:125|7:7|8:8|4'
  277. ..':4|4:4;1|2:3|3:3|4:4|5:5|6:126|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:127|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:128;p;1|2:3|3:3|4:4|5:5|6:129|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:130|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:131|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:132|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:133|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:134|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:135|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:136|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:137|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:138;p;1|2:3|3:3|4:4|5:5|6:139|7:10|8:8|4:4|4:4;1|2:3|3:'
  278. ..'3|4:4|5:5|6:140|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:141|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:142;p;1|2:3|3:3|4:4|5:5|6:143|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:144|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:145;p;1|2:3|3:3|4:4|5:5|6:146|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:147;p;1|2:3|3:3|4:4|5:5|6:148|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:149|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:150;p;1|2:3|3:3|4:4|5:5|6:151|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:152|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:153|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:154;p;1|2:3|3:3|4:4|5:5|6:155|7:7|8:27|'
  279. ..'4:4|4:4;1|2:3|3:3|4:4|5:5|6:156|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:157;p;1|2:3|3:3|4:4|5:5|6:158|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:159|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:160|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:161|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:162;p;1|2:3|3:3|4:4|5:5|6:163|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:164|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:165|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:166|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:167|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:168|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:169;p;1|2:3|3:3|4:4|5:5|6:17'
  280. ..'0|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:171;p;1|2:3|3:3|4:4|5:5|6:172|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:173;p;1|2:3|3:3|4:4|5:5|6:174|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:175|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:176;p;1|2:3|3:3|4:4|5:5|6:177|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:178;p;1|2:3|3:3|4:4|5:5|6:179|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:180|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:181|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:182|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:183|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:184|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:185|7:13|8:'
  281. ..'186|4:4|4:4;1|2:3|3:3|4:4|5:5|6:187|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:188|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:189;p;1|2:3|3:3|4:4|5:5|6:190|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:191|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:192;p;1|2:3|3:3|4:4|5:5|6:193|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:194|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:195|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:196|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:197|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:198;p;1|2:3|3:3|4:4|5:5|6:199|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:200|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:'
  282. ..'201;p;1|2:3|3:3|4:4|5:5|6:202|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:203|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:204;p;1|2:3|3:3|4:4|5:5|6:205|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:206|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:207|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:208|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:209|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:210|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:211|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:212|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:213;p;1|2:3|3:3|4:4|5:5|6:214|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:215|7:10|8:8|4:4|4:4;1|2:3|3:3'
  283. ..'|4:4|5:5|6:216|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:217|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:218;p;1|2:3|3:3|4:4|5:5|6:219|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:220|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:221;p;1|2:3|3:3|4:4|5:5|6:222|7:7|8:8|4:4|4:4;1|2:3|3:3|5:5|14:3|6:223|7:13|8:224;1|2:3|3:3|4:4|5:5|6:225|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:226|7:13|8:186|4:4|4:4;1|2:3|3:3|4:4|5:5|6:227|7:13|8:228|4:4|4:4;1|2:3|3:3|4:4|5:5|6:229|7:13|8:228|4:4|4:4;1|2:3|3:3|4:4|5:5|6:230|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:231;p;1|2:3|3:3|4:4|5:5|6:232|7:7|8:8|4:4|4:4;'
  284. ..'1|2:3|3:3|4:4|5:5|6:233|7:13|8:228|4:4|4:4;1|2:3|3:3|4:4|5:5|6:234|7:13|8:186|4:4|4:4;1|2:3|3:3|4:4|5:5|6:235|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:236;p;1|2:3|3:3|4:4|5:5|6:237|7:13|8:186|4:4|4:4;1|2:3|3:3|4:4|5:5|6:238|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:239|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:240|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:241|7:13|8:228|4:4|4:4;1|2:3|3:3|4:4|5:5|6:242|7:13|8:228|4:4|4:4;1|2:3|3:3|4:4|5:5|6:243|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:244|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:245|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:246|7:'
  285. ..'7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:247|7:13|8:248|4:4|4:4;1|2:3|3:3|4:4|5:5|6:249|7:13|8:228|4:4|4:4;1|2:3|3:3|4:4|5:5|6:250|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:251|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:252|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:253|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:254|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:255|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:256|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:257|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:258|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:259|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:260|7:13|8:19|4:4|4:4'
  286. ..';1|2:3|3:3|4:4|5:5|6:261|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:262|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:263|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:264|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:265|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:266|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:267;p;1|2:3|3:3|4:4|5:5|6:268|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:269;p;1|2:3|3:3|4:4|5:5|6:270|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:271|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:272;p;1|2:3|3:3|4:4|5:5|6:273|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:274|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:275|7:13|8:'
  287. ..'14|4:4|4:4;n;3|1:15|9:16|10:276;p;1|2:3|3:3|4:4|5:5|6:277|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:278;p;1|2:3|3:3|4:4|5:5|6:279|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:280|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:281;p;1|2:3|3:3|4:4|5:5|6:282|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:283;p;1|2:3|3:3|4:4|5:5|6:284|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:285|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:286|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:287;p;1|2:3|3:3|4:4|5:5|6:288|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:289|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:290|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5'
  288. ..'|6:291|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:292;p;1|2:3|3:3|4:4|5:5|6:293|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:294|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:295|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:296|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:297|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:298;p;1|2:3|3:3|4:4|5:5|6:299|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:300|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:301|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:302;p;1|2:3|3:3|4:4|5:5|6:303|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:304|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:305;p;1|2:3|3:3|4:4|5:5|6:306|7'
  289. ..':7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:307|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:308|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:309|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:310;p;1|2:3|3:3|4:4|5:5|6:311|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:312|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:313|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:314;p;1|2:3|3:3|4:4|5:5|6:315|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:316;p;1|2:3|3:3|4:4|5:5|6:317|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:318;p;1|2:3|3:3|4:4|5:5|6:319|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:320|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:321;p;1|2:3|3:3'
  290. ..'|4:4|5:5|6:322|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:323|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:324|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:325|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:326|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:327|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:328|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:329|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:330|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:331;p;1|2:3|3:3|4:4|5:5|6:332|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:333|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:334|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:335;p;1|2:3|3:3|4:4|5:5|6:336'
  291. ..'|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:337;p;1|2:3|3:3|4:4|5:5|6:338|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:339;p;1|2:3|3:3|4:4|5:5|6:340|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:341|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:342|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:343|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:344|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:345|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:346|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:347|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:348|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:349|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:350;p;1|2:3|3:3|4:4|'
  292. ..'5:5|6:351|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:352|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:353|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:354|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:355|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:356|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:357|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:358|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:359;p;1|2:3|3:3|4:4|5:5|6:360|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:361|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:362;p;1|2:3|3:3|4:4|5:5|6:363|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:364|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:365|7:'
  293. ..'10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:366|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:367|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:368|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:369|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:370|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:371|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:372|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:373;p;1|2:3|3:3|4:4|5:5|6:374|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:375|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:376;p;1|2:3|3:3|4:4|5:5|6:377|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:378|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:379;p;1|2:3|3:3|4:4|5:5'
  294. ..'|6:380|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:381;p;1|2:3|3:3|4:4|5:5|6:382|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:383|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:384;p;1|2:3|3:3|4:385|5:5|6:386|7:387|8:388|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:385|4:385;1|1:389|2:3|3:3|4:390|5:5|6:391|7:387|8:392|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:390|4:390;1|2:3|3:3|4:4|5:5|6:393|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:394|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:395|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:396|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:397|7:13|8:14|4:4|4:4;1|2'
  295. ..':3|3:3|4:4|5:5|6:398|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:399|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:400|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:401|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:402|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:403|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:404|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:405|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:406|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:407|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:408|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:409|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:410|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:411|'
  296. ..'7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:412|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:413|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:403|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:408|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:414|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:396|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:415|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:399|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:398|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:415|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:416|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:414|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:417|7:13|8:14|4:4'
  297. ..'|4:4;1|2:3|3:3|4:4|5:5|6:418|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:409|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:419|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:417|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:420|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:394|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:413|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:407|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:395|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:412|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:397|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:410|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:406|7:7|8:27|4:4|4:4;1|2:3|3:3|4'
  298. ..':4|5:5|6:402|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:411|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:393|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:401|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:400|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:405|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:418|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:404|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:420|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:416|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:419|7:10|8:8|4:4|4:4;1|1:421|2:3|3:3|5:5|6:422|7:423|8:224|21:86;n;5|22:424|23:425|24:426|25:427|26:428;6|4:429|14:430|8:431|27:432|28:43'
  299. ..'3|4:429|29:434|30:3|4:429|31:435|32:436|33:3|34:437|35:438;p;4|2:3|3:3|4:439|5:5|6:440|7:441|8:442|4:439|4:439;1|1:443|2:3|3:3|4:444|5:445|6:446|7:447|8:448|18:449|21:86|4:444|4:444;1|1:450|2:3|3:3|4:444|5:445|6:451|7:452|8:448|18:449|21:86|4:444|4:444;1|2:3|3:3|4:4|5:5|6:453|7:13|8:14|4:4|4:4;4|2:3|3:3|4:4|5:5|6:454|7:455|8:456|36:433|4:4|4:4;1|2:3|3:3|4:4|5:5|6:457|7:13|8:19|4:4|4:4;1|2:3|3:3|4:385|5:5|6:458|7:459|8:460|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:385|4:385;1|1:461|2:3|3:3|4:444|5:445|6:462|7:463|8:448|18:449|21:86|4:444|4:444;1|2:3'
  300. ..'|3:3|4:4|5:5|6:464|7:10|8:11|4:4|4:4;7|2:3|3:3|4:4|5:5|6:465|7:466|8:467|4:4|37:433|4:4|38:433;1|2:3|3:3|4:4|5:5|6:468|7:13|8:14|4:4|4:4;7|2:3|3:3|4:4|5:5|6:469|7:470|8:467|4:4|37:433|4:4|38:433;1|2:3|3:3|4:4|5:5|6:471|7:13|8:14|4:4|4:4;4|2:3|3:3|4:439|5:5|6:472|7:441|8:473|4:439|4:439;8|2:3|3:3|4:390|5:5|6:474|7:475|8:476|16:86|17:86|18:449|21:449|4:390|4:390;8|2:3|3:3|4:390|5:5|6:477|7:478|8:476|16:86|17:86|18:449|21:449|4:390|4:390;8|2:3|3:3|4:390|5:5|6:479|7:480|8:476|16:86|17:86|18:449|21:449|4:390|4:390;8|2:3|3:3|4:390|5:5|6:481|7:482|8:476|16:'
  301. ..'86|17:86|18:449|21:449|4:390|4:390;7|2:3|3:3|4:4|5:5|6:483|7:484|8:467|4:4|37:433|4:4|38:433;1|2:3|3:3|4:4|5:5|6:485|7:459|8:460|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;2|1:486;n;1|2:3|3:3|4:487|5:5|6:488|7:489|8:490|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:4|5:5|6:491|7:489|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|4:4|5:5|6:493|7:494|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|4:487|5:5|6:495|7:494|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4'
  302. ..':487|5:5|6:496|7:494|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:4|5:5|6:497|7:494|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|1:486|2:3|3:3|4:487|5:5|6:498|7:494|8:499|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:4|5:5|6:500|7:501|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|4:4|5:5|6:502|7:501|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|4:487|5:5|6:503|7:501|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:487|5:5|6:504|7'
  303. ..':505|8:490|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:4|5:5|6:506|7:501|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|4:487|5:5|6:507|7:501|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:4|5:5|6:508|7:509|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|4:4|5:5|6:510|7:511|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|1:512|2:3|3:3|5:5|6:513|7:514|8:515|21:86;n;5|23:516|24:426|25:427|26:428;6|4:517|14:430|8:518|27:519|28:433|4:517|29:520|30:521|4:517|31:4'
  304. ..'35|32:522|33:3|34:523|35:524;6|1:525|4:526|14:527|8:528|27:519|28:433|39:3|4:526|29:520|4:526|31:435|32:529|33:3|34:530|35:531;p;1|2:3|3:3|5:5|6:532|7:533|8:534|21:86;n;5|23:535|40:536|24:537|26:428;p;1|2:3|3:3|4:487|5:5|6:538|7:511|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:4|5:5|6:539|7:509|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|5:5|6:540|7:484|8:534|21:86;n;5|23:535|40:536|24:537|26:428;p;1|1:541|2:3|3:3|5:5|6:542|7:470|8:515|21:86;n;5|23:516|24:426|25:427|26:428;6|4:517|14:430|8:518|27:519|2'
  305. ..'8:433|4:517|29:520|30:521|4:517|31:435|32:522|33:3|34:523|35:524;6|1:525|4:526|14:527|8:528|27:519|28:433|39:3|4:526|29:520|4:526|31:435|32:529|33:3|34:530|35:531;p;1|2:3|3:3|4:487|5:5|6:543|7:511|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:4|5:5|6:544|7:511|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|4:487|5:5|6:545|7:509|8:490|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:487|5:5|6:546|7:511|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:4|5:5|6:547|7:509'
  306. ..'|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|1:486|2:3|3:3|4:487|5:5|6:548|7:387|8:499|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:487|5:5|6:549|7:459|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:4|5:5|6:550|7:387|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|4:487|5:5|6:551|7:387|8:490|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:4|5:5|6:552|7:387|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|4:487|5:5|6:553|7:387|8:492|15:86|1'
  307. ..'6:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:4|5:5|6:554|7:387|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|5:5|6:555|7:556|8:534|21:86;n;5|23:535|40:536|24:537|26:428;p;1|2:3|3:3|5:5|6:557|7:514|8:534|21:86;n;5|23:535|40:536|24:537|26:428;p;1|2:3|3:3|4:487|5:5|6:558|7:511|8:490|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:4|5:5|6:559|7:511|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|4:4|5:5|6:560|7:505|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|4:4|5'
  308. ..':5|6:561|7:505|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|4:487|5:5|6:562|7:505|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:487|5:5|6:563|7:501|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:4|5:5|6:564|7:501|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|4:487|5:5|6:565|7:505|8:490|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|1:486|2:3|3:3|4:487|5:5|6:566|7:494|8:499|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:487|5:5|6:565'
  309. ..'|7:505|8:490|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:487|5:5|6:567|7:489|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:4|5:5|6:568|7:494|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|4:4|5:5|6:569|7:489|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|4:4|5:5|6:570|7:494|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|4:487|5:5|6:571|7:494|8:490|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:487|5:5|6:572|7:494|8:492|15:86|16:'
  310. ..'86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|1:573|2:3|3:3|5:5|6:574|7:533|8:515|21:86;n;5|23:516|24:426|25:427|26:428;6|1:525|4:526|14:430|8:528|27:519|28:433|39:3|4:526|29:520|4:526|31:435|32:529|33:3|34:530|35:531;6|4:517|14:430|8:518|27:519|28:433|4:517|29:520|30:521|4:517|31:435|32:522|33:3|34:523|35:524;p;1|1:486|2:3|3:3|4:487|5:5|6:575|7:387|8:499|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:487|5:5|6:576|7:511|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|1:577|2:3|3:3|5:5|6:578|7:470|8:515|21:86;n;5|23:'
  311. ..'516|24:426|25:427|26:428;6|4:517|14:430|8:518|27:519|28:433|4:517|29:520|30:521|4:517|31:435|32:522|33:3|34:523|35:524;6|1:525|4:526|14:527|8:528|27:519|28:433|39:3|4:526|29:520|4:526|31:435|32:529|33:3|34:530|35:531;p;1|2:3|3:3|4:4|5:5|6:579|7:459|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|4:487|5:5|6:580|7:387|8:490|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:487|5:5|6:581|7:387|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:4|5:5|6:582|7:387|8:492|15:86|16:86|17:86|18:86|19:86|2'
  312. ..'0:86|21:86|4:4|4:4;1|2:3|3:3|4:487|5:5|6:583|7:387|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:4|5:5|6:584|7:387|8:492|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;p;1|2:3|3:3|4:487|5:5|6:585|7:387|8:586|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:487|5:5|6:587|7:459|8:460|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:4|5:5|6:588|7:459|8:460|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;2;n;8|2:3|3:3|4:589|5:5|6:590|7:591|8:592|16:86|17:86|18:86|19:86|20:86|21:86|4:589|4:5'
  313. ..'89;n;9;p;8|2:3|3:3|5:5|6:593|7:594|8:595|16:86|17:86|18:86|19:86|20:86|21:86;8|2:3|3:3|4:589|5:5|6:596|7:597|8:592|16:86|17:86|18:86|19:86|20:86|21:86|4:589|4:589;n;9;p;8|2:3|3:3|5:5|6:598|7:599|8:595|16:86|17:86|18:86|19:86|20:86|21:86;8|2:3|3:3|5:5|6:600|7:597|8:595|16:86|17:86|18:86|19:86|20:86|21:86;8|2:3|3:3|4:589|5:5|6:601|7:594|8:592|16:86|17:86|18:86|19:86|20:86|21:86|4:589|4:589;n;9;p;8|2:3|3:3|5:5|6:602|7:591|8:595|16:86|17:86|18:86|19:86|20:86|21:86;8|2:3|3:3|4:589|5:5|6:603|7:599|8:592|16:86|17:86|18:86|19:86|20:86|21:86|4:589|4:589;n;9;p'
  314. ..';1|1:604|2:3|3:3|4:487|5:5|6:605|7:459|8:606|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;10|1:607;p;1|2:3|3:3|4:390|5:5|6:608|7:609|8:610|18:449|4:390|4:390;1|1:611|2:3|3:3|4:487|5:5|6:612|7:459|8:613|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;n;11|41:614|42:615;12|1:616|43:3|44:617;12|1:618|44:619|45:620;12|1:621|44:622|45:623;12|1:624|43:3|46:625|44:626|45:627;12|1:628|44:629|45:3;12|1:630|43:3|44:626|45:631;p;1|2:3|3:3|4:4|5:5|6:632|7:387|8:460|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|4:487|5:5|6:633|7:387|8'
  315. ..':460|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:487|5:5|6:634|7:459|8:586|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|1:635|2:3|3:3|4:385|5:5|6:636|7:533|8:637|16:86|17:86|18:86|19:86|20:86|21:86|4:385|4:385;1|2:3|3:3|4:4|5:5|6:638|7:459|8:460|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|4:4|5:5|6:639|7:387|8:460|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|4:487|5:5|6:640|7:387|8:460|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:390|5:5|6:641|7:470|8:610|16:449|4:39'
  316. ..'0|4:390;1|1:642|2:3|3:3|5:5|6:643|7:514|8:224|21:86;n;5|22:644|23:645|24:426|25:427|26:428;6|4:429|14:430|8:646|27:432|28:433|4:429|29:647|30:3|4:429|31:435|32:648|33:3|34:437|35:438;p;1|2:3|3:3|4:649|5:5|14:650|6:651|7:470|8:652|18:449|21:86|4:649|4:649;1|2:3|3:3|4:390|5:5|6:653|7:470|8:610|18:449|4:390|4:390;1|2:3|3:3|5:5|6:654|7:655|8:656;n;3|1:657|9:658|10:659;p;1|2:3|3:3|4:390|5:5|6:660|7:655|8:652|18:449|4:390|4:390;n;3|1:15|9:661|10:662;3|1:15|9:661|10:663;3|1:657|9:661|10:664;p;1|2:3|3:3|4:390|5:5|6:665|7:470|8:652|18:449|4:390|4:390;n;3|1:15'
  317. ..'|9:661|10:666;3|1:15|9:661|10:667;3|1:15|9:661|10:668;3|1:657|9:661|10:669;p;1|2:3|3:3|4:390|5:5|6:670|7:671|8:672|16:449|21:86|4:390|4:390;1|1:673|2:3|3:3|4:674|5:445|6:675|7:655|8:676|4:674|4:674;n;13|47:677;14;10;p;1|1:678|2:3|3:3|4:385|5:5|14:3|6:679|7:655|8:680|36:433|16:449|21:86|4:385|4:385;1|2:3|3:3|5:5|6:681|7:655|8:656;n;3|1:657|9:682|10:683;p;1|2:3|3:3|4:390|5:5|6:684|7:671|8:672|18:449|21:86|4:390|4:390;1|1:685|2:3|3:3|4:385|5:5|6:686|7:484|8:637|16:86|17:86|18:86|19:86|20:86|21:86|4:385|4:385;1|2:3|3:3|4:385|5:5|6:687|7:655|8:688|4:385|4'
  318. ..':385;n;3|1:15|9:689|10:690;3|1:15|9:691|10:692;p;1|2:3|3:3|4:4|5:5|6:693|7:387|8:460|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:4|4:4;1|2:3|3:3|4:390|5:5|6:694|7:470|8:652|16:449|4:390|4:390;n;3|1:15|9:695|10:696;3|1:15|9:695|10:697;3|1:15|9:695|10:698;3|1:657|9:695|10:699;p;1|2:3|3:3|4:390|5:5|6:700|7:655|8:701|18:449|21:86|4:390|4:390;n;3|1:15|9:702|10:703;3|1:15|9:704|10:705;15|48:677|49:631;p;1|2:3|3:3|4:385|5:5|6:706|7:470|8:688|4:385|4:385;n;3|1:15|9:691|10:707;3|1:15|9:689|10:708;p;1|1:709|2:3|3:3|4:385|5:5|6:710|7:533|8:637|16:86|17:86|18:86'
  319. ..'|19:86|20:86|21:86|4:385|4:385;1|2:3|3:3|4:4|5:5|6:711|7:712|8:713|17:86|21:86|4:4|4:4;n;5|23:714|40:536|24:537|26:428;p;1|2:3|3:3|4:487|5:5|6:715|7:387|8:460|15:86|16:86|17:86|18:86|19:86|20:86|21:86|4:487|4:487;1|2:3|3:3|4:390|5:5|6:716|7:717|8:610|16:449|4:390|4:390;1|2:3|3:3|4:649|5:5|14:650|6:718|7:671|8:652|18:86|21:86|4:649|4:649;1|2:3|3:3|4:649|5:5|14:650|6:719|7:655|8:652|21:86|4:649|4:649;1|2:3|3:3|4:385|5:5|6:720|7:484|8:688|4:385|4:385;n;3|1:15|9:689|10:708;3|1:15|9:691|10:707;p;1|2:3|3:3|5:5|6:721|7:484|8:722;n;3|1:657|9:723|10:724;p;1|1'
  320. ..':725|2:3|3:3|4:385|5:5|6:726|7:484|8:637|16:86|17:86|18:86|19:86|20:86|21:86|4:385|4:385;1|2:3|3:3|5:5|6:727|7:470|8:656;n;3|1:657|9:658|10:724;p;1|2:3|3:3|5:5|6:728|7:484|8:656;n;3|1:657|9:682|10:729;p;1|2:3|3:3|5:5|6:730|7:470|8:656;n;3|1:657|9:682|10:731;p;1|2:3|3:3|4:390|5:5|6:732|7:671|8:672|18:449|21:86|4:390|4:390;1|2:3|3:3|4:390|5:5|6:733|7:655|8:701|16:449|18:449|21:86|4:390|4:390;n;3|1:15|9:702|10:703;3|1:15|9:704|10:705;p;1|2:3|3:3|4:390|5:5|6:734|7:671|8:672|16:449|21:86|4:390|4:390;1|2:3|3:3|4:4|5:5|6:735|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:'
  321. ..'5|6:736|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:737|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:738|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:739|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:740|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:741|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:742|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:743|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:744|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:745|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:746|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:747|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:748|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:749|7:13|8'
  322. ..':14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:750|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:751|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:752|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:753|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:754|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:755|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:745|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:741|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:736|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:743|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:737|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:735|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:755|7:13|8:19|4:4|4:4;1|2:3|3:'
  323. ..'3|4:4|5:5|6:740|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:742|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:738|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:739|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:748|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:752|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:749|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:753|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:750|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:747|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:746|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:754|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:751|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:744|7:'
  324. ..'13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:756|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:757|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:758|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:759|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:760|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:761|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:762|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:763|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:764|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:765|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:766|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:767|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:768|7:10|8:11|4:4|4:4;1|'
  325. ..'2:3|3:3|4:4|5:5|6:769|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:770|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:771|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:772|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:773|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:757|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:759|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:771|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:756|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:765|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:774|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:758|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:761|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6'
  326. ..':775|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:776|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:777|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:764|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:766|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:778|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:779|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:780|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:781|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:782|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:767|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:783|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:773|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:770|7:7|8:27|4:4'
  327. ..'|4:4;1|2:3|3:3|4:4|5:5|6:763|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:776|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:783|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:779|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:762|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:769|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:780|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:775|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:782|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:777|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:760|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:781|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:772|7:7|8:27|4:4|4:4;1|2:3|3:3|4:'
  328. ..'4|5:5|6:778|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:768|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:774|7:13|8:14|4:4|4:4;4|2:3|3:3|4:4|5:5|6:784|7:13|8:785|13:86|4:4|4:4;1|2:3|3:3|4:4|5:5|6:786|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:40|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:787|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:38|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:37|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:36|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:33|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:34;p;1|2:3|3:3|4:4|5:5|6:39|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:31|7:13|8:14|4:4|4:4;n;3|1:15'
  329. ..'|9:16|10:32;p;1|2:3|3:3|4:4|5:5|6:35|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:30|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:22|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:20|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:21;p;1|2:3|3:3|4:4|5:5|6:18|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:12|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:17;p;1|2:3|3:3|4:4|5:5|6:9|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:41|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:24|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:25;p;1|2:3|3:3|4:4|5:5|6:42|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:43;p;1|2:3|3:3|4:4|5:5|6:50|7:7|8:8|4:4|4:4;1|2:3|3:3|'
  330. ..'4:4|5:5|6:6|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:51|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:52|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:48|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:28|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:29;p;1|2:3|3:3|4:4|5:5|6:46|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:49|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:23|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:26|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:44|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:45;p;1|2:3|3:3|4:4|5:5|6:47|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:71|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:73|7:10|8:11|4:4|4:'
  331. ..'4;1|2:3|3:3|4:4|5:5|6:75|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:76|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:77|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:56|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:57;p;1|2:3|3:3|4:4|5:5|6:58|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:53|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:60|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:64|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:65;p;1|2:3|3:3|4:4|5:5|6:69|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:74|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:59|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:78|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:54|7'
  332. ..':13|8:14|4:4|4:4;n;3|1:15|9:16|10:55;p;1|2:3|3:3|4:4|5:5|6:61|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:62|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:66|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:63|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:70|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:72|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:68|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:67|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:96|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:82|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:83|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:87|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:89|7:7|8:27|4:'
  333. ..'4|4:4;1|2:3|3:3|4:4|5:5|6:80|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:92|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:93|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:79|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:90|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:91;p;1|2:3|3:3|4:4|5:5|6:94|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:97|7:10|8:8|4:4|4:4;16|1:788|2:3|3:3|4:789|5:790|4:789|4:789|50:791;n;17|51:792|52:793;p;1|2:3|3:3|4:4|5:5|6:98|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:88|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:99|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:100|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5'
  334. ..':5|6:81|7:13|8:14|4:4|4:4;4|2:3|3:3|4:4|5:5|6:84|7:13|8:85|13:86|4:4|4:4;1|2:3|3:3|4:4|5:5|6:101|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:102;p;1|2:3|3:3|4:4|5:5|6:95|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:107|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:110|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:111|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:131|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:108|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:109;p;1|2:3|3:3|4:4|5:5|6:112|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:123|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:124;p;1|2:3|3:3|4:4|5:5|6:116|7:7|8:27|4:4|4:4;'
  335. ..'1|2:3|3:3|4:4|5:5|6:113|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:114|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:115;p;1|2:3|3:3|4:4|5:5|6:122|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:117|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:125|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:126|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:129|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:118|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:119;p;1|2:3|3:3|4:4|5:5|6:120|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:121;p;1|2:3|3:3|4:4|5:5|6:127|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:128;p;1|2:3|3:3|4:4|5:5|6:130|7:7|8:8|4:4|4:4;1|2:3|3:3'
  336. ..'|4:4|5:5|6:105|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:106;p;1|2:3|3:3|4:4|5:5|6:103|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:104;p;1|2:3|3:3|4:4|5:5|6:143|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:144|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:145;p;1|2:3|3:3|4:4|5:5|6:146|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:147;p;1|2:3|3:3|4:4|5:5|6:133|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:135|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:137|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:138;p;1|2:3|3:3|4:4|5:5|6:148|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:149|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:150;p;1|2:3|3:3|4'
  337. ..':4|5:5|6:134|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:136|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:139|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:151|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:152|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:140|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:141|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:142;p;1|2:3|3:3|4:4|5:5|6:132|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:159|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:160|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:163|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:161|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:162;p;1|2:3|3:3|4:4|5:5|6:153'
  338. ..'|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:154;p;1|2:3|3:3|4:4|5:5|6:158|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:164|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:155|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:156|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:157;p;1|2:3|3:3|4:4|5:5|6:165|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:166|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:172|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:173;p;1|2:3|3:3|4:4|5:5|6:175|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:176;p;1|2:3|3:3|4:4|5:5|6:179|7:10|8:11|4:4|4:4;1|2:3|3:3|5:5|6:794|7:13|8:795;1|2:3|3:3|4:4|5:5|6:170|7:13|8:14|4:4|4:'
  339. ..'4;n;3|1:15|9:16|10:171;p;1|2:3|3:3|4:4|5:5|6:167|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:174|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:177|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:178;p;1|2:3|3:3|4:4|5:5|6:180|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:181|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:182|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:168|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:169;p;1|2:3|3:3|4:4|5:5|6:183|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:184|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:196|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:199|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:191|7:13|8:'
  340. ..'14|4:4|4:4;n;3|1:15|9:16|10:192;p;1|2:3|3:3|4:4|5:5|6:200|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:201;p;1|2:3|3:3|5:5|6:796|7:13|8:795|21:797;n;14;p;1|2:3|3:3|4:4|5:5|6:193|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:202|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:197|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:198;p;1|2:3|3:3|4:4|5:5|6:203|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:204;p;1|2:3|3:3|4:4|5:5|6:185|7:13|8:186|4:4|4:4;1|2:3|3:3|4:4|5:5|6:187|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:188|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:189;p;1|2:3|3:3|4:4|5:5|6:190|7:7|8:8|4:4|4:4;1|2:3|3:3|4'
  341. ..':4|5:5|6:195|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:194|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:205|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:206|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:208|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:207|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:209|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:211|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:212|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:213;p;1|2:3|3:3|4:4|5:5|6:214|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:210|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:215|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:217|7:13|8:14|4:4|4:4;n;3|1:'
  342. ..'15|9:16|10:218;p;1|2:3|3:3|4:4|5:5|6:216|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:219|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:220|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:221;p;1|2:3|3:3|4:4|5:5|6:222|7:7|8:8|4:4|4:4;1|2:3|3:3|5:5|6:798|7:13|8:799;n;3|1:15|9:800|10:801;3|1:15|9:800|10:802;3|1:15|9:800|10:803;3|1:15|9:800|10:804;3|1:15|9:800|10:801;3|1:15|9:800|10:804;3|1:15|9:800|10:805;3|1:15|9:800|10:806;3|1:15|9:800|10:803;3|1:15|9:800|10:807;3|1:15|9:800|10:808;3|1:15|9:800|10:806;3|1:15|9:800|10:808;3|1:15|9:800|10:802;3|1:15|9:800|10:807;3|1:15|9:800|10:80'
  343. ..'5;3|1:15|9:800|10:809;3|1:15|9:800|10:810;3|1:15|9:800|10:811;3|1:15|9:800|10:812;3|1:15|9:800|10:813;3|1:15|9:800|10:814;3|1:15|9:800|10:815;3|1:15|9:800|10:815;3|1:15|9:800|10:816;3|1:15|9:800|10:812;3|1:15|9:800|10:816;3|1:15|9:800|10:814;3|1:15|9:800|10:811;3|1:15|9:800|10:810;3|1:15|9:800|10:813;3|1:15|9:800|10:809;3|1:15|9:800|10:817;3|1:15|9:800|10:818;3|1:15|9:800|10:819;3|1:15|9:800|10:820;3|1:15|9:800|10:821;3|1:15|9:800|10:822;3|1:15|9:800|10:823;3|1:15|9:800|10:824;3|1:15|9:800|10:821;3|1:15|9:800|10:817;3|1:15|9:800|10:818;3|1:15|9:800|1'
  344. ..'0:822;3|1:15|9:800|10:819;3|1:15|9:800|10:820;3|1:15|9:800|10:823;3|1:15|9:800|10:824;3|1:15|9:800|10:825;3|1:15|9:800|10:826;3|1:15|9:800|10:827;3|1:15|9:800|10:828;3|1:15|9:800|10:829;3|1:15|9:800|10:830;3|1:15|9:800|10:830;3|1:15|9:800|10:828;3|1:15|9:800|10:825;3|1:15|9:800|10:826;3|1:15|9:800|10:827;3|1:15|9:800|10:829;p;1|2:3|3:3|4:4|5:5|6:226|7:13|8:186|4:4|4:4;1|2:3|3:3|5:5|14:3|6:223|7:13|8:224;1|2:3|3:3|4:4|5:5|6:225|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:227|7:13|8:228|4:4|4:4;1|2:3|3:3|4:4|5:5|6:229|7:13|8:228|4:4|4:4;1|2:3|3:3|4:4|5:5|6:2'
  345. ..'34|7:13|8:186|4:4|4:4;1|2:3|3:3|4:4|5:5|6:230|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:231;p;1|2:3|3:3|4:4|5:5|6:235|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:236;p;1|2:3|3:3|4:4|5:5|6:237|7:13|8:186|4:4|4:4;1|2:3|3:3|4:4|5:5|6:232|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:233|7:13|8:228|4:4|4:4;1|2:3|3:3|4:4|5:5|6:253|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:255|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:254|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:245|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:252|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:240|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:243|7:13|8:'
  346. ..'14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:249|7:13|8:228|4:4|4:4;1|2:3|3:3|4:4|5:5|6:244|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:247|7:13|8:248|4:4|4:4;1|2:3|3:3|4:4|5:5|6:238|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:250|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:246|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:251|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:241|7:13|8:228|4:4|4:4;1|2:3|3:3|4:4|5:5|6:239|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:242|7:13|8:228|4:4|4:4;1|2:3|3:3|4:4|5:5|6:262|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:258|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:263|7:10|8:11|4:4|4:4;'
  347. ..'1|2:3|3:3|4:4|5:5|6:257|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:256|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:264|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:266|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:267;p;1|2:3|3:3|4:4|5:5|6:268|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:269;p;1|2:3|3:3|4:4|5:5|6:261|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:270|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:271|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:272;p;1|2:3|3:3|4:4|5:5|6:273|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:265|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:274|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:275|7:13|8'
  348. ..':14|4:4|4:4;n;3|1:15|9:16|10:276;p;1|2:3|3:3|4:4|5:5|6:277|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:278;p;1|2:3|3:3|4:4|5:5|6:259|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:260|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:300|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:301|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:302;p;1|2:3|3:3|4:4|5:5|6:295|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:303|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:304|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:305;p;1|2:3|3:3|4:4|5:5|6:290|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:279|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:280|7:13|8:14|4:4|4:'
  349. ..'4;n;3|1:15|9:16|10:281;p;1|2:3|3:3|4:4|5:5|6:282|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:283;p;1|2:3|3:3|4:4|5:5|6:286|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:287;p;1|2:3|3:3|4:4|5:5|6:288|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:289|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:293|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:294|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:284|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:285|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:291|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:292;p;1|2:3|3:3|4:4|5:5|6:297|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:298;p;1|2:3|3:3|4:4|5:5|6:296|'
  350. ..'7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:299|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:320|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:321;p;1|2:3|3:3|4:4|5:5|6:322|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:324|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:311|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:325|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:326|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:312|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:323|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:319|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:327|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:328|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|'
  351. ..'6:308|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:329|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:306|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:309|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:310;p;1|2:3|3:3|4:4|5:5|6:307|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:315|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:316;p;1|2:3|3:3|4:4|5:5|6:317|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:318;p;1|2:3|3:3|4:4|5:5|6:313|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:314;p;1|2:3|3:3|4:4|5:5|6:353|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:336|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:337;p;1|2:3|3:3|4:4|5:5|6:340|7:10|8:11|4:4|4:4;1'
  352. ..'|2:3|3:3|4:4|5:5|6:352|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:354|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:342|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:349|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:350;p;1|2:3|3:3|4:4|5:5|6:334|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:335;p;1|2:3|3:3|4:4|5:5|6:351|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:332|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:343|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:338|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:339;p;1|2:3|3:3|4:4|5:5|6:330|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:331;p;1|2:3|3:3|4:4|5:5|6:341|7:7|8:27|4:4|4:4;1|2:3|3:3|'
  353. ..'4:4|5:5|6:345|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:344|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:333|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:346|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:347|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:348|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:370|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:358|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:359;p;1|2:3|3:3|4:4|5:5|6:360|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:364|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:356|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:357|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:363|7:7|8:8|4:4|4:4;1|2:3|3:'
  354. ..'3|4:4|5:5|6:366|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:355|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:367|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:368|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:369|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:361|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:362;p;1|2:3|3:3|4:4|5:5|6:365|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:371|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:378|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:379;p;1|2:3|3:3|4:4|5:5|6:377|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:380|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:381;p;1|2:3|3:3|4:4|5:5|6:382|7:10|8:8|4:4|4:4'
  355. ..';1|2:3|3:3|4:4|5:5|6:374|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:383|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:384;p;1|2:3|3:3|4:4|5:5|6:375|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:376;p;1|2:3|3:3|4:4|5:5|6:372|7:13|8:14|4:4|4:4;n;3|1:15|9:16|10:373;p;1|2:3|3:3|4:4|5:5|6:831|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:832|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:833|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:834|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:835|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:836|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:837|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:838|7:7|'
  356. ..'8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:839|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:840|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:841|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:842|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:843|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:786|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:468|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:844|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:845|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:846|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:847|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:848|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:457|7:13|8:19|4:4|4:4;1|2:3'
  357. ..'|3:3|4:4|5:5|6:849|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:850|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:453|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:851|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:471|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:848|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:847|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:834|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:852|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:839|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:831|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:842|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:846|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:8'
  358. ..'44|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:837|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:849|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:852|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:832|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:835|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:833|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:840|7:13|8:14|4:4|4:4;1|2:3|3:3|4:4|5:5|6:845|7:7|8:27|4:4|4:4;1|2:3|3:3|4:4|5:5|6:836|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:464|7:10|8:11|4:4|4:4;1|2:3|3:3|4:4|5:5|6:843|7:10|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:850|7:13|8:19|4:4|4:4;1|2:3|3:3|4:4|5:5|6:851|7:7|8:8|4:4|4:'
  359. ..'4;1|2:3|3:3|4:4|5:5|6:838|7:7|8:8|4:4|4:4;1|2:3|3:3|4:4|5:5|6:841|7:13|8:19|4:4|4:4;4|2:3|3:3|4:4|5:5|6:853|7:854|8:456|36:433|4:4|4:4;4|2:3|3:3|4:439|5:5|6:855|7:856|8:442|4:439|4:439;4|2:3|3:3|4:439|5:5|6:857|7:856|8:473|4:439|4:439;4|2:3|3:3|4:439|5:5|6:858|7:859|8:473|4:439|4:439;4|2:3|3:3|4:439|5:5|6:860|7:859|8:442|4:439|4:439;4|2:3|3:3|4:4|5:5|6:861|7:862|8:456|36:433|4:4|4:4;4|2:3|3:3|4:439|5:5|6:863|7:864|8:473|4:439|4:439;4|2:3|3:3|4:4|5:5|6:865|7:866|8:456|36:433|4:4|4:4;4|2:3|3:3|4:439|5:5|6:867|7:864|8:442|4:439|4:439;1|2:3|3:3|4:4|5:5|6'
  360. ..':787|7:10|8:8|4:4|4:4;p;')
  361. for _,Object in pairs(Objects) do
  362. Object.Parent = script and script.Parent==workspace and script or workspace
  363. end
  364. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement