Advertisement
lafur

Untitled

May 6th, 2020
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 122.11 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 119421
  3. local genv={}
  4. local Scripts = {
  5. function() model2=game.Workspace.DoorA --this is the door
  6.  
  7. function onChatted(msg, recipient, speaker)
  8.  
  9. -- convert to all lower case
  10.  
  11. local source = string.lower(speaker.Name)
  12. msg = string.lower(msg)
  13.  
  14. if (msg == "start ride") then
  15. model2.CanCollide = false
  16. model2.Transparency = 1
  17. wait(5)
  18. model2.CanCollide = true
  19. model2.Transparency = .5
  20. end
  21.  
  22. end
  23.  
  24. function onPlayerEntered(newPlayer)
  25. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  26. end
  27.  
  28. game.Players.ChildAdded:connect(onPlayerEntered)
  29. end;}local ActualScripts = {}
  30. function s(var)
  31. local func = table.remove(Scripts,1)
  32. setfenv(func,setmetatable({script=var,require=fake_require or require,global=genv},{
  33. __index = getfenv(func),
  34. }))
  35. table.insert(ActualScripts,coroutine.wrap(func))
  36. end
  37. Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  38. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  39. function(t,f)
  40. for a,b in pairs(t) do
  41. f(a,b)
  42. end
  43. end
  44. local Types = {
  45. Color3 = Color3.new,
  46. Vector3 = Vector3.new,
  47. Vector2 = Vector2.new,
  48. UDim = UDim.new,
  49. UDim2 = UDim2.new,
  50. CFrame = CFrame.new,
  51. Rect = Rect.new,
  52. NumberRange = NumberRange.new,
  53. BrickColor = BrickColor.new,
  54. PhysicalProperties = PhysicalProperties.new,
  55. NumberSequence = function(...)
  56. local a = {...}
  57. local t = {}
  58. repeat
  59. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  60. until #a==0
  61. return NumberSequence.new(t)
  62. end,
  63. ColorSequence = function(...)
  64. local a = {...}
  65. local t = {}
  66. repeat
  67. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  68. until #a==0
  69. return ColorSequence.new(t)
  70. end,
  71. number = tonumber,
  72. boolean = function(a)
  73. return a=="1"
  74. end
  75. }
  76. split = function(str,sep)
  77. if not str then return end
  78. local fields = {}
  79. local ConcatNext = false
  80. str:gsub(("([^%s]+)"):format(sep),function(c)
  81. if ConcatNext == true then
  82. fields[#fields] = fields[#fields]..sep..c
  83. ConcatNext = false
  84. else
  85. fields[#fields+1] = c
  86. end
  87. if c:sub(#c)=="\\" then
  88. c = fields[#fields]
  89. fields[#fields] = c:sub(1,#c-1)
  90. ConcatNext = true
  91. end
  92. end)
  93. return fields
  94. end
  95. RemoveAndSplit = function(t)
  96. return split(table_remove(t,1),comma)
  97. end
  98. t = split(str,";")
  99. props = RemoveAndSplit(t)
  100. classes = RemoveAndSplit(t)
  101. values = split(table_remove(t,1),'|')
  102. ICList = RemoveAndSplit(t)
  103. InstanceList = {}
  104. Model = inst"Model"
  105. CurPar = Model
  106. table_foreach(t,function(ct,c)
  107. if c=="n" or c=="p" then
  108. CurPar = c=="n" and LastIns or CurPar[parnt]
  109. else
  110. ct = split(c,"|")
  111. local class = classes[tonum(table_remove(ct,1))]
  112. if class=="UnionOperation" then
  113. LastIns = {UsePartColor="1"}
  114. else
  115. LastIns = inst(class)
  116. if LastIns:IsA"Script" then
  117. s(LastIns)
  118. elseif LastIns:IsA("ModuleScript") then
  119. ms(LastIns)
  120. end
  121. end
  122.  
  123. local function SetProperty(LastIns,p,str,s)
  124. s = Types[typeof(LastIns[p])]
  125. if p=="CustomPhysicalProperties" then
  126. s = PhysicalProperties.new
  127. end
  128. if s then
  129. LastIns[p] = s(unpack(split(str,comma)))
  130. else
  131. LastIns[p] = str
  132. end
  133. end
  134.  
  135. local UnionData
  136. table_foreach(ct,function(s,p,a,str)
  137. a = p:find":"
  138. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  139. if p=="UnionData" then
  140. UnionData = split(str," ")
  141. return
  142. end
  143. if class=="UnionOperation" then
  144. LastIns[p] = str
  145. return
  146. end
  147. SetProperty(LastIns,p,str)
  148. end)
  149.  
  150. if UnionData then
  151. local LI_Data = LastIns
  152. LastIns = DecodeUnion(UnionData)
  153. table_foreach(LI_Data,function(p,str)
  154. SetProperty(LastIns,p,str)
  155. end)
  156. end
  157. table.insert(InstanceList,LastIns)
  158. LastIns[parnt] = CurPar
  159. end
  160. end)
  161. table_remove(ICList,1)
  162. table_foreach(ICList,function(a,b)
  163. b = split(b,">")
  164. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  165. end)
  166.  
  167. return Model:GetChildren()
  168. end
  169.  
  170. local Objects = Decode('Name,PrimaryPart,Anchored,Color,Position,Orientation,Size,BottomSurface,TopSurface,Velocity,C0,C1,Part0,Part1,Transparency,Shape,LeftSurface,RightSurface,MeshType,Health,MaxHealth;Part,Model,Snap,Weld,Script,Seat,SpecialMesh,Humanoid;Part|coaster|1|0.7686,0.1568,0.1098|422.9802,21.3,48.7743|-90,71.6999,0|1,2,2|0|424.8434,21.3,49.5278|-90,67.8399,0|421.0708,21.3,48.147|-90,75.0999,0|419.1273,21.3,47.6337|-90,78.08,0|417.1599,21.3,47.2212|-90,80.68,0|415.1759,21.3,46.8983|-90,83,0|413.1804,21.3,46.6555|-90,85.0599,0|411.1776,21.3,46.4846|-90,86.8899,0|409.1705,21.3,46.3772|-90,88.5199,0|407.1611,21.3,46.3272|-90,90,0|404.7515,21.3,46.3374|-90,91.3199,0|1,2.4,2|402.7736,21.7144,46.3272|0,180,178.5|1,1.2,2|370.8237,34.8466,46.3272|0,180,-133.5|-40,0,0|370.0686,35.6669,46.3272|0,180,-132|37'
  171. ..'2.397,33.2763,46.3272|0,180,-136.5|371.6001,34.0497,46.3272|0,180,-135|367.2693,39.1279,46.3272|0,180,-126|369.335,36.5029,46.3272|0,180,-130.5|368.6235,37.3622,46.3272|0,180,-129|367.9348,38.2372,46.3272|0,180,-127.5|370.0686,35.6669,53.3272|370.824,34.8466,53.3272|369.3352,36.5029,53.3272|377.5798,29.081,46.3272|0,180,-145.5|371.6004,34.0497,53.3272|373.2141,32.5185,46.3272|0,180,-138|374.0505,31.7841,46.3272|0,180,-139.5|376.6714,29.7216,53.3272|0,180,-144|375.7798,30.3857,53.3272|0,180,-142.5|375.7798,30.3857,46.3272|376.6712,29.7216,46.3272|374.0508,31.7841,53.3272|373.2141,32.5185,53.3272|372.3972,33.2763,53.3272|374.906,31.081,53.3272|0,180,-141|374.906,31.081,46.3272|383.3552,25.745,46.3272|0,180,-154.5|378.5046,28.4638,46.3272|0,180,-147|379.4458,27.8701,46.3272|0,180,-148.5|3'
  172. ..'80.4019,27.2997,46.3272|0,180,-150|381.3726,26.7529,46.3272|0,180,-151.5|382.3574,26.2372,46.3272|0,180,-153|367.2695,39.1279,53.3272|368.6238,37.3622,53.3272|367.9351,38.2372,53.3272|378.5049,28.4638,53.3272|379.4458,27.8701,53.3272|380.4019,27.2997,53.3272|377.5798,29.081,53.3272|384.3655,25.2841,46.3272|0,180,-156|381.3731,26.7529,53.3272|383.3552,25.745,53.3272|384.3657,25.2841,53.3272|385.3877,24.839,53.3272|0,180,-157.5|382.3574,26.2372,53.3272|386.4212,24.425,53.3272|0,180,-159|386.4209,24.425,46.3272|387.4651,24.0419,53.3272|0,180,-160.5|385.3877,24.839,46.3272|388.5183,23.6906,46.3272|0,180,-162|389.582,23.3547,53.3272|0,180,-163.5|388.5186,23.6906,53.3272|387.4649,24.0419,46.3272|392.8203,22.5344,53.3272|0,180,-168|391.7349,22.7844,53.3272|0,180,-166.5|390.6565,23.05,53.3272|'
  173. ..'0,180,-165|391.7349,22.7844,46.3272|390.6565,23.05,46.3272|389.582,23.3547,46.3272|393.9116,22.3156,46.3272|0,180,-169.5|393.9116,22.3156,53.3272|395.0083,22.1281,53.3272|0,180,-171|392.8203,22.5344,46.3272|395.0078,22.1281,46.3272|397.2139,21.839,46.3272|0,180,-174|397.2139,21.839,53.3272|398.3218,21.7375,53.3272|0,180,-175.5|396.1091,21.9719,53.3272|0,180,-172.5|398.3218,21.7375,46.3272|396.1089,21.9719,46.3272|399.4321,21.6594,46.3272|0,180,-177|400.5437,21.6203,46.3272|0,180,-178.5|401.6563,21.6047,46.3272|0,180,180|399.4321,21.6594,53.3272|400.544,21.6203,53.3272|401.6563,21.6047,53.3272|402.7688,21.6203,53.3272|413.3928,21.4998,54.1853|-90,88.8799,0|414.603,21.4998,54.2392|-90,87.2799,0|410.9701,21.4998,54.174|-90,91.36,0|412.1813,21.4998,54.1654|-90,90.2399,0|409.7593,21.4998,54'
  174. ..'.2058|-90,92.2699,0|408.5493,21.4998,54.2564|-90,93,0|407.3403,21.4998,54.3219|-90,93.5699,0|406.1323,21.4998,54.3992|-90,94.04,0|404.9255,21.4998,54.4863|-90,94.3499,0|354.1668,58.1588,53.3272|0,180,-124.5|45,1.2,2|354.1668,58.1588,46.3272|315.8789,87.5496,46.3272|0,180,3|314.7671,87.5886,46.3272|0,180,1.5|321.3994,86.8933,46.3272|0,180,10.5|319.2017,87.237,46.3272|0,180,7.5|320.3029,87.0808,46.3272|0,180,9|326.7876,85.5183,46.3272|0,180,18|325.7251,85.8542,46.3272|0,180,16.5|324.6543,86.1589,46.3272|0,180,15|323.5757,86.4246,46.3272|0,180,13.5|322.4907,86.6746,46.3272|0,180,12|316.9893,87.4714,46.3272|0,180,4.5|318.0969,87.3699,46.3272|0,180,6|316.989,87.4714,53.3272|315.8787,87.5496,53.3272|314.7671,87.5886,53.3272|321.3994,86.8933,53.3272|320.3027,87.0808,53.3272|319.2017,87.237,53'
  175. ..'.3272|327.8408,85.1668,53.3272|0,180,19.5|326.7874,85.5183,53.3272|327.8411,85.1668,46.3272|325.7249,85.8542,53.3272|324.6538,86.1589,53.3272|323.5757,86.4246,53.3272|322.4905,86.6746,53.3272|328.8848,84.7839,53.3272|0,180,21|329.918,84.3698,53.3272|0,180,22.5|329.9182,84.3698,46.3272|328.8848,84.7839,46.3272|330.9404,83.9245,53.3272|0,180,24|330.9404,83.9245,46.3272|318.0967,87.3699,53.3272|331.9507,83.4636,53.3272|0,180,25.5|332.9487,82.9714,53.3272|0,180,27|333.9331,82.4558,53.3272|0,180,28.5|334.9038,81.9089,53.3272|0,180,30|333.9331,82.4558,46.3272|332.9487,82.9714,46.3272|331.9507,83.4636,46.3272|334.9041,81.9089,46.3272|336.8008,80.7448,53.3272|0,180,33|335.8599,81.3386,53.3272|0,180,31.5|335.8601,81.3386,46.3272|336.8013,80.7448,46.3272|337.7261,80.1276,53.3272|0,180,34.5|337.7'
  176. ..'261,80.1276,46.3272|338.6348,79.487,53.3272|0,180,36|338.6348,79.487,46.3272|339.5264,78.823,46.3272|0,180,37.5|339.5259,78.823,53.3272|340.3999,78.1276,53.3272|0,180,39|341.2551,77.4245,53.3272|0,180,40.5|340.3999,78.1276,46.3272|341.2554,77.4245,46.3272|421.7227,21.4998,55.5835|-90,71.61,0|422.8453,21.4998,56.0364|-90,67.6999,0|420.5711,21.4998,55.2074|-90,75.0699,0|419.3992,21.4998,54.9007|-90,78.1299,0|418.2123,21.4998,54.6568|-90,80.8799,0|417.0151,21.4998,54.4693|-90,83.29,0|415.811,21.4998,54.3318|-90,85.44,0|271.2057,56.0912,53.8272|0,0,-126|-90,0,0|51,1.2,2|271.2057,56.0912,46.8272|426.8228,21.4998,58.7406|-90,46.7099,0|423.9302,21.4998,56.5728|-90,63.34,0|424.9652,21.4998,57.1989|-90,58.43,0|427.6038,21.4998,59.6604|-90,39.75,0|425.9356,21.4998,57.9204|-90,52.9,0|426.6431,21.'
  177. ..'3,50.4218|-90,63.4199,0|433.9583,21.4998,71.7893|-90,13.51,0|434.2085,21.4998,72.97|-90,11.81,0|434.4203,21.4998,74.1582|-90,9.9399,0|434.5945,21.4998,75.3509|-90,8.13,0|433.6709,21.4998,70.6172|-90,16.8099,0|431.1115,21.4998,65.2571|-90,31.9599,0|1,9.6,2|432.9092,21.3,55.415|-90,45.9,0|434.2863,21.3,56.8794|-90,43.11,0|428.2529,21.4998,60.6758|431.4631,21.3,54.0185|-90,48.27,0|428.3572,21.3,51.47|-90,58.38,0|429.9573,21.3,52.6845|-90,52.5999,0|170.8804,34.0404,46.8272|1,1,2|171.991,33.9701,46.8272|174.2039,33.7436,46.8272|169.769,34.0873,46.8272|168.6565,34.1029,46.8272|0,180,0|173.0991,33.8686,46.8272|176.4016,33.392,46.8272|178.5781,32.9311,46.8272|177.4929,33.1733,46.8272|180.727,32.353,46.8272|179.6567,32.6498,46.8272|175.3052,33.5795,46.8272|181.79,32.0248,46.8272|184.9209,30.868'
  178. ..'6,46.8272|182.8437,31.6655,46.8272|183.8874,31.2748,46.8272|169.7688,34.0873,53.8272|178.5781,32.9311,53.8272|176.4016,33.392,53.8272|177.4929,33.1733,53.8272|173.0991,33.8686,53.8272|168.6565,34.1029,53.8272|174.2039,33.7436,53.8272|181.79,32.0248,53.8272|180.727,32.353,53.8272|170.8809,34.0404,53.8272|171.991,33.9701,53.8272|175.3052,33.5795,53.8272|179.6567,32.6498,53.8272|186.9536,29.9624,46.8272|185.9431,30.4311,46.8272|182.8437,31.6655,53.8272|183.8874,31.2748,53.8272|188.936,28.9545,53.8272|187.9514,29.4702,46.8272|188.936,28.9545,46.8272|187.9514,29.4702,53.8272|186.9536,29.9624,53.8272|184.9209,30.8686,53.8272|185.9431,30.4311,53.8272|189.907,28.4077,46.8272|190.863,27.8373,46.8272|189.907,28.4077,53.8272|191.804,27.2436,46.8272|191.804,27.2436,53.8272|190.8633,27.8373,53.8272'
  179. ..'|193.8569,25.8529,53.8272|0,180,-59.1|1,3,2|193.8569,25.8529,46.8272|192.7295,26.6263,53.8272|192.7295,26.6263,46.8272|195.21,25.056,53.8272|195.21,25.056,46.8272|197.1072,23.8997,46.8272|196.1509,24.4622,53.8272|196.1509,24.4622,46.8272|197.1069,23.8997,53.8272|198.0776,23.3528,46.8272|200.0603,22.345,46.8272|199.0625,22.8372,53.8272|198.0776,23.3528,53.8272|199.0625,22.8372,46.8272|200.0603,22.345,53.8272|201.0708,21.8763,53.8272|201.0708,21.8763,46.8272|202.0933,21.4388,46.8272|203.1265,21.0247,46.8272|202.0933,21.4388,53.8272|205.2239,20.2828,46.8272|204.1704,20.6419,46.8272|203.1265,21.0247,53.8272|204.1704,20.6419,53.8272|205.2239,20.2828,53.8272|206.2864,19.9546,46.8272|206.2864,19.9546,53.8272|208.4358,19.3765,46.8272|207.3574,19.65,46.8272|207.3572,19.65,53.8272|209.521,19.134'
  180. ..'1,46.8272|208.4355,19.3765,53.8272|209.5207,19.1341,53.8272|210.6121,18.9156,46.8272|211.709,18.7281,46.8272|210.6121,18.9156,53.8272|211.709,18.7281,53.8272|212.8101,18.5718,46.8272|212.8101,18.5718,53.8272|213.915,18.4312,46.8272|215.0229,18.3375,46.8272|213.915,18.4312,53.8272|216.1331,18.2593,46.8272|215.0227,18.3375,53.8272|217.2446,18.2125,46.8272|217.2446,18.2125,53.8272|216.1331,18.2593,53.8272|218.3572,18.2046,46.8272|218.3572,18.2046,53.8272|0.1058,0.1647,0.2078|-151.8389,16.6,59.8272|0,-90,0|2,1.2,10|-151.8389,17.8,58.8272|0,0.6,0,-1,-0,-0,0,0,1,0,1,0|1,-0.6001,0,-1,0,0,0,0,1,0,1,-0|0,-0.6001,0,1,0,0,-0,-0,-1,0,1,0|-1,0.6,0,1,0,0,0,0,-1,-0,1,0|-151.8389,19,57.8272|1,-0.6,0,-1,0,0,0,0,1,0,1,-0|-151.8389,20.2,56.8272|0.898,0.8941,0.8745|0.4|-158.8389,21.3,62.3272|0,-180,0|6,3.'
  181. ..'6,1|0,1.8,0,-1,-0,-0,0,0,1,0,1,0|0,-0.6,2.5,-1,0,-0,0,0,1,-0,1,-0|0,-1.8001,0,1,0,0,-0,-0,-1,0,1,0|0,1.8,2.5,1,0,0,-0,-0,-1,0,1,0|-259.7814,19.0327,53.8271|0,-180,-174|-30,0,0|436.1882,21.6998,93.7224|-90,-2.7201,0|436.2422,21.6998,92.5122|-90,-1.1201,0|436.2621,21.6998,91.3007|-90,0.2399,0|436.2536,21.6998,90.0896|-90,1.36,0|441.4041,21.3,71.0703|-90,14.64,0|434.7297,21.4998,76.5444|-90,6.2699,0|434.8212,21.4998,77.7416|-90,4.1599,0|435.0386,21.4998,80.7338|1,4.8,2|436.2217,21.6998,88.8788|-90,2.2699,0|436.1056,21.6998,86.4597|-90,3.5699,0|436.171,21.6998,87.6688|-90,3,0|436.0282,21.6998,85.2517|-90,4.0399,0|435.9412,21.6998,84.0451|-90,4.3499,0|440.8938,21.3,69.1323|-90,17.51,0|439.5896,21.3,65.3462|-90,23.36,0|440.2881,21.3,67.2232|-90,20.2999,0|437.8576,21.3,61.7281|-90,32.3199,0|4'
  182. ..'38.7901,21.3,63.5081|-90,27.43,0|435.5787,21.3,58.4191|-90,39.8699,0|436.7772,21.3,60.0334|-90,36.4199,0|252.4832,31.5483,46.8272|0,0,-133.5|-110,0,0|251.7068,30.7514,46.8272|0,0,-135|253.2383,32.3686,46.8272|0,0,-132|243.8613,24.5638,46.8272|0,0,-148.5|242.9053,23.9935,46.8272|0,0,-150|241.9343,23.4544,46.8272|0,0,-151.5|240.9497,22.931,46.8272|0,0,-153|244.8022,25.1576,46.8272|0,0,-147|250.9097,29.978,46.8272|0,0,-136.5|245.727,25.7747,46.8272|0,0,-145.5|246.6357,26.4154,46.8272|0,0,-144|248.4011,27.7748,46.8272|0,0,-141|249.2563,28.4858,46.8272|0,0,-139.5|250.093,29.2202,46.8272|0,0,-138|247.5273,27.0873,46.8272|0,0,-142.5|255.3723,34.931,46.8272|0,0,-127.5|253.9722,33.1967,46.8272|0,0,-130.5|254.6836,34.056,46.8272|0,0,-129|233.7261,20.0562,53.8272|0,0,-163.5|251.707,30.7514,53.827'
  183. ..'2|252.4834,31.5483,53.8272|244.8025,25.1576,53.8272|238.9414,21.9778,46.8272|0,0,-156|237.9192,21.5403,46.8272|0,0,-157.5|236.8857,21.1263,46.8272|0,0,-159|250.0933,29.2202,53.8272|249.2566,28.4858,53.8272|248.4014,27.7748,53.8272|250.9102,29.978,53.8272|239.9519,22.4466,46.8272|0,0,-154.5|246.636,26.4154,53.8272|245.7273,25.7747,53.8272|235.8423,20.7435,46.8272|0,0,-160.5|247.5273,27.0873,53.8272|235.8423,20.7435,53.8272|234.7886,20.3841,46.8272|0,0,-162|233.7261,20.0562,46.8272|238.9414,21.9778,53.8272|236.886,21.1263,53.8272|237.9194,21.5403,53.8272|243.8613,24.5638,53.8272|242.9053,23.9935,53.8272|241.9346,23.4544,53.8272|240.9497,22.931,53.8272|239.9519,22.4466,53.8272|234.7888,20.3841,53.8272|231.5771,19.4781,53.8272|0,0,-166.5|232.6553,19.7515,53.8272|0,0,-165|255.3723,34.931,53'
  184. ..'.8272|253.2388,32.3686,53.8272|253.9722,33.1967,53.8272|254.6836,34.056,53.8272|232.6553,19.7515,46.8272|230.4919,19.2278,46.8272|0,0,-168|231.5769,19.4781,46.8272|230.4919,19.2278,53.8272|229.4009,19.0171,53.8272|0,0,-169.5|229.4004,19.0171,46.8272|228.3042,18.8218,53.8272|0,0,-171|227.2031,18.6656,53.8272|0,0,-172.5|228.3042,18.8218,46.8272|226.0984,18.5406,53.8272|0,0,-174|227.2031,18.6656,46.8272|224.9902,18.4312,53.8272|0,0,-175.5|226.0981,18.5406,46.8272|224.9902,18.4312,46.8272|223.8801,18.3609,53.8272|0,0,-177|222.7686,18.3218,53.8272|0,0,-178.5|223.8799,18.3609,46.8272|221.6558,18.3062,53.8272|0,0,-180|222.7683,18.3218,46.8272|220.5435,18.3218,53.8272|0,0,178.5|221.6558,18.3062,46.8272|220.5435,18.3218,46.8272|219.4316,18.3609,46.8272|0,0,177|-11.3389,18.2007,53.8272|-99,0,0|2'
  185. ..'55,1,2|312.0137,86.8933,53.8272|0,0,1.5|-48,0,0|313.1262,86.9089,53.8272|306.478,86.3777,53.8272|0,0,9|308.6838,86.6746,53.8272|0,0,6|307.5791,86.5417,53.8272|0,0,7.5|301.0559,85.1589,53.8272|0,0,16.5|302.1267,85.4558,53.8272|0,0,15|303.2051,85.7292,53.8272|0,0,13.5|304.2901,85.9792,53.8272|0,0,12|305.3814,86.1902,53.8272|0,0,10.5|310.9019,86.8464,53.8272|0,0,3|309.7918,86.7761,53.8272|0,0,4.5|310.9021,86.8464,46.8272|312.0137,86.8933,46.8272|313.1265,86.9089,46.8272|306.478,86.3777,46.8272|307.5791,86.5417,46.8272|308.6841,86.6746,46.8272|299.9934,84.823,46.8272|0,0,18|301.0559,85.1589,46.8272|299.9934,84.823,53.8272|302.127,85.4558,46.8272|303.2051,85.7292,46.8272|304.2905,85.9714,46.8272|305.3816,86.1902,46.8272|298.94,84.4714,46.8272|0,0,19.5|297.8963,84.0808,46.8272|0,0,21|297.896'
  186. ..',84.0808,53.8272|298.94,84.4714,53.8272|296.8628,83.6745,46.8272|0,0,22.5|296.8628,83.6745,53.8272|309.792,86.7761,46.8272|295.8403,83.2292,46.8272|0,0,24|294.8301,82.7683,46.8272|0,0,25.5|293.832,82.2683,46.8272|0,0,27|292.8477,81.7526,46.8272|0,0,28.5|293.832,82.2683,53.8272|294.8301,82.7683,53.8272|295.8403,83.2292,53.8272|292.8474,81.7526,53.8272|290.9207,80.6433,46.8272|0,0,31.5|291.877,81.2136,46.8272|0,0,30|291.8767,81.2136,53.8272|290.9207,80.6433,53.8272|289.98,80.0495,46.8272|0,0,33|289.9797,80.0495,53.8272|289.0547,79.4323,46.8272|0,0,34.5|289.0547,79.4323,53.8272|288.146,78.7839,53.8272|0,0,36|288.146,78.7839,46.8272|287.2546,78.1276,46.8272|0,0,37.5|286.3809,77.4323,46.8272|0,0,39|287.2544,78.1276,53.8272|286.3809,77.4323,53.8272|-268.4722,20.88,53.8271|0,-180,-162|-291.90'
  187. ..'58,32.6199,53.8271|0,-180,18|-289.8083,31.8771,53.8271|0,-180,21|-288.7749,31.4649,53.8271|0,-180,22.5|-290.8522,32.2623,53.8271|0,-180,19.5|-284.7598,29.5497,53.8271|0,-180,28.5|-285.7444,30.0678,53.8271|0,-180,27|-286.7422,30.5598,53.8271|0,-180,25.5|-287.7527,31.0257,53.8271|0,-180,24|-279.839,26.4499,53.8271|0,-180,-59.1|-280.9666,27.2254,53.8271|0,-180,34.5|-281.8917,27.8434,53.8271|0,-180,33|-282.8328,28.4372,53.8271|0,-180,31.5|-283.789,29.006,53.8271|0,-180,30|-278.4861,25.6564,53.8271|0,-180,-147|-277.5452,25.0627,53.8271|0,-180,-148.5|-273.6357,22.9401,53.8271|0,-180,-154.5|-272.6252,22.4742,53.8271|0,-180,-156|-274.6336,23.4321,53.8271|0,-180,-153|-276.5889,24.4939,53.8271|0,-180,-150|-275.6182,23.9502,53.8271|0,-180,-151.5|-270.5696,21.6228,53.8271|0,-180,-159|-269.5257,21.'
  188. ..'2377,53.8272|0,-180,-160.5|-271.6031,22.035,53.8271|0,-180,-157.5|-267.4097,20.5501,53.8271|0,-180,-163.5|-266.3388,20.2481,53.8271|0,-180,-165|-265.2604,19.9742,53.8271|0,-180,-166.5|-264.1752,19.7287,53.8271|0,-180,-168|-263.084,19.5116,53.8271|0,-180,-169.5|-261.9874,19.3232,53.8271|0,-180,-171|-321.8696,31.6772,46.8272|-60,0,0|-260.8863,19.1635,53.8271|0,-180,-172.5|-258.6735,18.9309,53.8271|0,-180,-175.5|-256.4515,18.8144,53.8271|0,-180,-178.5|-257.5632,18.8581,53.8271|0,-180,-177|-245.8389,18.8,53.8272|0,-180,180|20,1,2|-187.8389,18.6,53.8272|-25,0,0|2,1.2,96|-144.3389,7.9,55.8272|28,15.6,41|-156.8545,20.1337,53.7925|-88.59,174.3999,-84.4001|-0.0426,0.0278,-0.0265|2,2,2|2|-1,0,0,-0,-0,-1,0,1,0,1,0,0|5,-0.8001,0.5,0,0.9999,-0.0001,0.9999,0,0,-0.0001,0,-1|1,0,0,0,0,1,0,1,0,-1,-0,-0'
  189. ..'|5,-0.8001,-0.5,-0.0001,0.9999,0,-1,0,-0.0001,0,0,0.9999|1.2999,0.4999,0.5,0.9999,0,0,-0.0001,-1,0,-0.0001,0,-1|0.2999,0,-0.5001,0.9999,0,0,0,0.9999,-0.0001,0,-0.0001,0.9999|1.2999,0.4999,-0.5,-1,0,-0.0001,0,-1,-0.0001,0,0,0.9999|0.2999,0,0.4999,-1,0,-0.0001,-0.0001,0.9999,0,-0.0001,-0.0001,-1|0.4274,0.4313,0.4235|-156.855,19.7974,52.3002|-1.39,0,89.86|-0.0343,0.023,-0.0254|1,2,1|0.5,0,0,0,0,1,0,1,0,-1,-0,-0|4.9998,-0.6,0,0,1,-0.0001,-0.0001,0,1,1,-0.0001,0|-157.3575,18.7989,52.3245|1.3899,180,90.1399|-0.0348,0.0233,-0.0251|1,1,1|-0.5,0,0,-0,-0,-1,0,1,0,1,0,0|-0.0004,0.5999,0,-0.0001,-1,0,-0.0001,-0.0001,-1,1,-0.0001,-0.0001|-0.5001,0.4999,0,0,-0.0001,1,-0.0001,-1,-0.0001,1,-0.0001,-0.0001|-156.8553,19.8702,55.2993|-0.0512,0.0326,-0.0257|4.9999,-0.6,0,0,0.9999,0,-0.0001,0,0.9999,0.9999'
  190. ..',0,-0.0001|0.5,0.5,0,0,0,-1,0,-1,-0.0001,-1,-0.0001,-0.0001|-157.3604,17.6992,52.3512|1.3899,180,0.14|-0.0354,0.0233,-0.0216|1,1.2,1|-157.3576,18.8717,55.3235|-0.0518,0.0329,-0.0253|-0.0004,0.5999,0,0,-1,0,-0.0001,-0.0001,-1,1,0,-0.0001|-157.3605,17.7721,55.3503|-0.0523,0.033,-0.0218|442.5317,21.4999,94.3678|-90,-7,0|442.7745,21.4999,92.3723|-90,-4.9401,0|442.9456,21.5,90.3695|-90,-3.11,0|442.4226,21.3,76.9872|-90,7.3699,0|442.1629,21.3,75.0019|-90,9.5399,0|442.6289,21.3,78.9779|-90,5.8499,0|442.7763,21.3,80.9738|441.8276,21.3,73.0277|-90,12.1199,0|443.053,21.5,88.3624|-90,-1.4801,0|443.103,21.5,86.3531|443.0925,21.5,83.9433|-90,1.32,0|161.5088,33.7436,53.8272|-100,0,0|162.6138,33.8686,53.8272|157.1348,32.9311,46.8272|159.311,33.392,46.8272|158.2197,33.1733,46.8272|161.5088,33.7436,46.'
  191. ..'8272|153.9226,32.0248,46.8272|154.9853,32.353,46.8272|159.311,33.392,53.8272|153.9226,32.0248,53.8272|157.1348,32.9311,53.8272|158.2197,33.1733,53.8272|154.9853,32.353,53.8272|156.0561,32.6498,53.8272|160.4077,33.5795,53.8272|160.408,33.5795,46.8272|156.0561,32.6498,46.8272|151.8252,31.2748,46.8272|146.7759,28.9467,46.8272|147.7607,29.4702,53.8272|146.7759,28.9467,53.8272|147.7607,29.4702,46.8272|148.7585,29.9624,53.8272|148.7585,29.9624,46.8272|150.7915,30.8686,46.8272|149.769,30.4311,46.8272|149.769,30.4311,53.8272|150.7915,30.8686,53.8272|152.8686,31.6655,53.8272|152.8689,31.6655,46.8272|151.8252,31.2748,53.8272|141.8547,25.8529,46.8272|0,0,-59.1|142.9824,26.6263,46.8272|143.9077,27.2436,53.8272|144.8486,27.8373,53.8272|143.9077,27.2436,46.8272|144.8486,27.8373,46.8272|145.8052,28.4'
  192. ..'077,53.8272|145.8052,28.4077,46.8272|140.5017,25.056,46.8272|139.5605,24.4622,46.8272|135.6506,22.3372,46.8272|134.6401,21.8763,46.8272|136.6487,22.8372,46.8272|138.6042,23.8997,46.8272|137.6333,23.3528,46.8272|130.4858,20.2828,46.8272|132.5842,21.0247,46.8272|131.54,20.6419,46.8272|133.6177,21.4388,46.8272|129.4233,19.9468,46.8272|128.3525,19.65,46.8272|127.2742,19.3765,46.8272|126.1892,19.1341,46.8272|125.0981,18.9156,46.8272|124.0015,18.7281,46.8272|122.9006,18.564,46.8272|121.7959,18.4312,46.8272|120.688,18.3375,46.8272|118.4663,18.2125,46.8272|119.5781,18.2593,46.8272|117.3538,18.1968,46.8272|164.832,34.0404,53.8272|163.7217,33.9701,53.8272|165.9441,34.0873,53.8272|167.0566,34.1029,53.8272|165.9438,34.0873,46.8272|162.6138,33.8686,46.8272|167.0566,34.1029,46.8272|164.832,34.0404,4'
  193. ..'6.8272|163.7217,33.9701,46.8272|141.8547,25.8529,53.8272|142.9824,26.6263,53.8272|138.6042,23.8997,53.8272|139.5605,24.4622,53.8272|140.5017,25.056,53.8272|134.6401,21.8763,53.8272|135.6506,22.3372,53.8272|133.6177,21.4388,53.8272|137.6333,23.3528,53.8272|136.6487,22.8372,53.8272|130.4858,20.2828,53.8272|131.54,20.6419,53.8272|132.5842,21.0247,53.8272|127.2742,19.3765,53.8272|126.1892,19.1341,53.8272|129.4233,19.9546,53.8272|128.3525,19.65,53.8272|125.0981,18.9156,53.8272|124.0017,18.7281,53.8272|122.9006,18.564,53.8272|121.7959,18.4312,53.8272|120.688,18.3375,53.8272|119.5776,18.2593,53.8272|118.4663,18.2125,53.8272|117.3538,18.1968,53.8272|-325.9335,29.8678,53.8272|-326.9181,29.3497,53.8272|-324.9357,30.3599,53.8272|-323.9252,30.8257,53.8272|-322.903,31.2649,53.8272|-320.8257,32.0623'
  194. ..',53.8272|-321.8696,31.6772,53.8272|-309.9734,34.3691,53.8272|-331.8389,26.25,53.8272|-330.7113,27.0255,53.8272|-329.7861,27.6435,53.8272|-328.8451,28.2372,53.8272|-327.8889,28.8061,53.8272|-335.089,24.294,53.8272|-334.1328,24.8628,53.8272|-333.1918,25.4566,53.8272|-336.0598,23.7503,53.8272|-308.8631,34.4419,53.8272|-312.1863,34.1365,53.8272|-307.7514,34.4855,53.8272|-306.6389,34.5001,53.8272|-311.0814,34.2673,53.8272|-314.384,33.7884,53.8272|-319.7721,32.4199,53.8272|-316.5604,33.3258,53.8272|-315.4753,33.5713,53.8272|-318.7096,32.7499,53.8272|-317.6387,33.0519,53.8272|-313.2874,33.9768,53.8272|-303.9264,34.6856,53.8271|0,-180,1.5|-295.1176,33.5258,53.8271|0,-180,13.5|-297.2941,33.9884,53.8271|0,-180,10.5|-296.2027,33.7712,53.8271|0,-180,12|-300.5965,34.4673,53.8271|0,-180,6|-305.039,3'
  195. ..'4.7001,53.8271|-299.4916,34.3365,53.8271|0,-180,7.5|-292.9683,32.9498,53.8271|0,-180,16.5|-302.8147,34.6418,53.8271|0,-180,3|-301.7045,34.5691,53.8271|0,-180,4.5|-298.3905,34.1768,53.8271|0,-180,9|-294.0392,33.2519,53.8271|0,-180,15|DoorA|0.1|-159.8389,24,50.3272|2,9.6,13|TalkyScript|-151.8479,22.7753,47.7268|0.14,89.9899,-1.39|-0.0073,0.0064,-0.0066|4,0.4,2|-146.8481,22.8848,52.7259|-0.0355,0.0206,0.0214|0,-0.2001,0,1,0,0,-0,-0,-1,0,1,0|4.9999,0.6,2.4999,-0.0001,0.9999,0,-0.0001,-0.0001,-1,-1,0,-0.0001|-146.8479,22.7634,47.7273|-0.0073,0.0046,0.0217|-151.3413,25.634,50.1582|-0.1401,-90.0101,1.3899|-0.02,0.014,-0.0129|1,1.2,3|-146.3413,25.6221,50.1587|-0.02,0.0122,0.0154|0.9999,1.2,0,-0.0001,0.9999,-0.0001,0,0,-1,-1,0,0|-0.0001,1.2,-0.5001,0.9999,-0.0001,-0.0001,0,0,-1,-0.0001,0.9999,-'
  196. ..'0.0001|-150.3405,26.1044,53.1477|-0.0367,0.0233,-0.0088|5,2,1|0,-1,0,1,0,0,-0,-0,-1,0,1,0|0,1.1999,-3,0,-1,-0.0001,-0.0001,-0.0001,-1,0.9999,-0.0001,0|-150.3403,25.9587,47.1494|-0.0028,0.004,-0.0083|0,1.2,3,0,-1,-0.0001,-0.0001,-0.0001,-1,0.9999,-0.0001,0|-145.3405,26.0925,53.1482|-0.0367,0.0214,0.0196|-145.3403,25.9468,47.15|-0.0028,0.0021,0.0201|-147.3602,17.5055,45.3544|0.0042,-0.0029,0.0357|-145.3456,23.8203,50.2025|-0.0209,0.0119,0.0269|1,2.4,11|0,1.2,0,-1,-0,-0,0,0,1,0,1,0|-3,-1.0001,-0.0001,-0.0001,0.9999,-0.0001,-0.0001,-0.0001,0.9999,0.9999,-0.0001,-0.0001|-151.8527,20.7881,48.2752|-0.0111,0.0082,-0.0003|12,1.2,1|-146.8552,19.6037,45.3033|0.0053,-0.0032,0.0318|0,0,0.5,1,0,0,0,1,0,0,0,1|0.9999,-0.0001,-0.5001,-0.0001,0,-1,0,0.9999,-0.0001,0.9999,0,0|-146.8551,20.1099,53.7935|-0'
  197. ..'.0426,0.024,0.0302|0.3,0.0001,0.4999,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|-146.8541,20.1399,46.7908|-88.6,174.3999,-84.4001|-0.0029,0.0016,0.0301|-5.0001,-0.6,0.5,0,1,0,1,-0.0001,-0.0001,-0.0001,0,-1|-146.8456,23.8238,50.2023|-0.0209,0.0125,0.0184|-147.3577,18.678,48.3267|-0.0122,0.0067,0.032|-0.0001,0.5999,0,0,-1,0,-0.0001,-0.0001,-1,0.9999,0,-0.0001|-151.8499,22.0363,50.2455|-1.39,0,-0.1401|-0.0218,0.0145,-0.0043|14,1.2,11|6.4999,-1.2001,0,0.9999,-0.0001,0,0,0,0.9999,0,-1,-0.0001|0,-1.2,4.9999,-0.0001,0.9999,0,0,0,0.9999,0.9999,-0.0001,0|-0.0001,-1.2,-0.0001,-0.0001,0.9999,0,0,0,0.9999,0.9999,-0.0001,0|1.4999,-1.2,0,0.9999,-0.0001,0,0,0,0.9999,0,-1,-0.0001|-2.5001,-0.2,-5.0001,0,-1,-0.0001,0,0,0.9999,-1,0,-0.0001|-2.5,-0.2,0,0,-1,-0.0001,0,0,0.9999,-1,0,-0.0001|-0.0001,0'
  198. ..'.5999,2,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-0.0001,0.5999,4.9999,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-0.0001,0.5999,-2.0001,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-0.0001,-1,5,0,-1,-0.0001,0,0,0.9999,-1,0,-0.0001|-0.0001,0.5999,-5.0001,-1,-0.0001,-0.0001,-0.0001,0,-1,-0.0001,-1,0|-146.8553,19.6765,48.3025|-0.0117,0.0064,0.0316|0,0,-0.5,-1,-0,-0,0,1,0,-0,-0,-1|-1.0001,0,-0.5001,0,0,1,-0.0001,1,-0.0001,-1,-0.0001,0|-5.0001,-0.6001,0,-0.0001,1,0,0,-0.0001,1,1,0,-0.0001|-151.8525,20.7152,45.2761|0.0059,-0.0014,0|1,-5.0001,0.5999,-0.0001,-0.0001,-1,-1,0,-0.0001,-0.0001,0.9999,0|0.9999,5,0.6,-0.0001,-0.0001,-1,-1,0,-0.0001,-0.0001,0.9999,0|0.5,5,0,0,-0.0001,-1,0.9999,0,-0.0001,-0.0001,-1,-0.0001|0.5,-5,0,0,-0.0001,-1,0.9999,0,-0.0001,-0.0001,-1,-0.0001|-147.3576,18.6'
  199. ..'052,45.3276|0.0048,-0.003,0.0322|-0.5,0.5,0,0,-0.0001,0.9999,-0.0001,-1,0,0.9999,0,0|-0.0001,0.5999,0,0,-1,-0.0001,-0.0001,-0.0001,-1,0.9999,-0.0001,0|-151.8456,23.8357,50.2018|-0.0209,0.0144,-0.01|0,-0.6,0.5,-1,-0.0001,0,-0.0001,0,0.9999,0,0.9999,0|-147.3603,17.5783,48.3535|-0.0128,0.0068,0.0355|-146.8556,19.7736,52.3013|-0.0343,0.0192,0.0313|-150.3456,23.8322,50.202|-0.0209,0.0138,-0.0015|0,-0.6,-1,0,-1,0,-0.0001,-0.0001,0.9999,-1,0,0|-151.8481,22.8967,52.7253|-0.0355,0.0225,-0.007|0,0.5999,2.4999,-0.0001,0.9999,0,-0.0001,-0.0001,-1,-1,0,-0.0001|-147.3582,18.8479,55.3246|-0.0518,0.0291,0.0314|-0.5001,0.5,0,0,-0.0001,0.9999,-0.0001,-1,0,0.9999,0,0|-1,0.4999,-1.3001,-0.0001,-0.0001,0.9999,0,-1,0,0.9999,-0.0001,-0.0001|-151.8526,20.8852,52.274|-0.0337,0.021,-0.0006|0.4999,4.9996,-0.0001'
  200. ..',0,-0.0001,-1,1,-0.0001,0,-0.0001,-1,0|1,4.9995,0.7999,-0.0001,-0.0001,-1,-1,-0.0001,0,-0.0001,1,-0.0001|-147.3579,18.7751,52.3255|-0.0348,0.0195,0.0317|-0.5,0.4999,-0.0001,0,-0.0001,1,0,-1,-0.0001,1,0,-0.0001|0.9999,0.4997,-1.3,0,-0.0001,-1,-0.0001,-1,0,-1,0,-0.0001|-147.3607,17.7483,55.3514|-0.0523,0.0292,0.0349|-146.8557,19.8464,55.3003|-0.0513,0.0289,0.0311|-1,-0.0002,-0.3,0,0,1,-0.0001,1,-0.0001,-1,-0.0001,0|-147.3606,17.6754,52.3523|-0.0354,0.0196,0.0352|4.4999,0.5999,2,-1,-0.0001,0,0,-0.0001,-1,-0.0001,-1,-0.0001|-0.5,-0.0001,0,-0.0001,-0.0001,0.9999,0.9999,-0.0001,-0.0001,-0.0001,0.9999,-0.0001|-156.8551,19.6275,45.3023|0.0053,0.0005,-0.0249|1,-0.0001,-0.5001,-0.0001,0,-1,0,0.9999,-0.0001,0.9999,0,0|0.5,0.5,0,0,0,-1,0,-1,0,-1,0,0|-156.8461,23.6477,50.2061|-0.021,0.0163,-0.0377|'
  201. ..'11,2,4|-151.8528,20.958,55.2731|-0.0507,0.0307,-0.0008|0.4999,4.9998,0,0,-0.0001,-1,1,-0.0001,0,-0.0001,-1,0|-1,4.9996,0.7999,0,0,1,1,-0.0001,-0.0001,0,1,-0.0001|0.949,0.9529,0.9529|-151.8632,16.438,50.3815|-0.0247,0.015,0.0136|12,1.2,11|4.5,-0.6,-2,0.9999,-0.0001,0,0,0,0.9999,0,-1,-0.0001|4.4999,-0.6,-5,0.9999,-0.0001,0,0,0,0.9999,0,-1,-0.0001|-5.5001,-0.6,5,0.9999,-0.0001,0,0,0,0.9999,0,-1,-0.0001|-5.5001,-0.6,2,0.9999,-0.0001,0,0,0,0.9999,0,-1,-0.0001|4.4999,-0.6001,5,0.9999,-0.0001,0,0,0,0.9999,0,-1,-0.0001|-5.5001,-0.6,-5,0.9999,-0.0001,0,0,0,0.9999,0,-1,-0.0001|-157.3575,18.6289,45.3265|0.0048,0.0008,-0.0245|0,0.5999,0,0,-1,0,-0.0001,-0.0001,-1,1,0,-0.0001|-156.8553,19.7003,48.3014|-0.0117,0.0102,-0.0251|0.5,0.4999,-0.0001,0,0,-1,0,-1,0,-1,0,0|-1.0001,-0.0001,-0.5001,0,0,1,-0.000'
  202. ..'1,1,-0.0001,-1,-0.0001,0|4.9999,-0.6,0,-0.0001,0.9999,0,0,-0.0001,0.9999,0.9999,0,-0.0001|-156.854,20.1637,46.7897|-0.0029,0.0053,-0.0266|4.9999,-0.6,0.5,0,0.9999,-0.0001,0.9999,0,0,-0.0001,0,-1|-157.36,17.5293,45.3534|0.0042,0.0009,-0.021|-157.3576,18.7018,48.3257|-0.0122,0.0104,-0.0248|-157.3602,17.6021,48.3524|-0.0127,0.0105,-0.0212|-0.5,-0.0001,-0.0001,-0.0001,-0.0001,0.9999,0.9999,-0.0001,-0.0001,-0.0001,0.9999,-0.0001|-5.5001,0.5999,-2,-1,-0.0001,0,0,-0.0001,-1,-0.0001,-1,-0.0001|-11.8389,18.4,46.8272|256,1,2|-285.7444,30.0677,46.8272|-319.7722,32.42,46.8272|-326.9182,29.3498,46.8272|-325.9336,29.8678,46.8272|-324.9357,30.3599,46.8272|-322.903,31.2649,46.8272|-323.9252,30.8257,46.8272|-320.8257,32.0623,46.8272|-331.8389,26.25,46.8272|-330.7113,27.0255,46.8272|-329.7861,27.6435,46'
  203. ..'.8272|-328.8451,28.2372,46.8272|-327.8889,28.8061,46.8272|-333.1918,25.4565,46.8272|-334.1327,24.8628,46.8272|-337.0444,23.2322,46.8272|-335.089,24.2939,46.8272|-336.0597,23.7503,46.8272|-307.7515,34.4856,46.8272|-316.5604,33.3258,46.8272|-314.384,33.7884,46.8272|-315.4753,33.5713,46.8272|-311.0814,34.2673,46.8272|-306.639,34.5001,46.8272|-312.1863,34.1366,46.8272|-318.7096,32.7499,46.8272|-308.8632,34.4419,46.8272|-309.9734,34.3691,46.8272|-313.2874,33.9769,46.8272|-317.6388,33.0519,46.8272|-302.8148,34.6418,46.8272|-301.7045,34.569,46.8272|-299.4916,34.3365,46.8272|-303.9266,34.6855,46.8272|-305.039,34.7,46.8272|-300.5965,34.4673,46.8272|-297.294,33.9883,46.8272|-295.1176,33.5257,46.8272|-296.2027,33.7712,46.8272|-298.3906,34.1768,46.8272|-280.9666,27.2254,46.8272|-291.9058,32.6199,4'
  204. ..'6.8272|-292.9684,32.9498,46.8272|-294.0392,33.2518,46.8272|-284.7598,29.5497,46.8272|-286.7423,30.5598,46.8272|-287.7527,31.0256,46.8272|-288.775,31.4648,46.8272|-290.8523,32.2622,46.8272|-289.8083,31.8771,46.8272|-279.839,26.4499,46.8272|-281.8918,27.8434,46.8272|-282.8328,28.4371,46.8272|-283.789,29.006,46.8272|-276.5889,24.4939,46.8272|-277.5452,25.0628,46.8272|-278.4861,25.6565,46.8272|-272.6252,22.4743,46.8272|-273.6357,22.9401,46.8272|-271.603,22.0351,46.8272|-275.6182,23.9502,46.8272|-274.6335,23.4322,46.8272|-268.4722,20.8801,46.8272|-269.5257,21.2377,46.8272|-270.5696,21.6228,46.8272|-265.2603,19.9742,46.8272|-264.1752,19.7287,46.8272|-267.4095,20.5501,46.8272|-266.3387,20.2481,46.8272|-263.084,19.5116,46.8272|-261.9874,19.3232,46.8272|-260.8863,19.1635,46.8272|-259.7814,19.03'
  205. ..'27,46.8272|-258.6734,18.9309,46.8272|-257.5631,18.8582,46.8272|-256.4514,18.8145,46.8272|-245.8389,18.8,46.8272|-187.8389,18.6,46.8272|412.6858,21.6998,113.9406|-90,-85.84,0|408.6963,21.6998,114.2304|1,6.4,2|419.8103,21.6998,112.7904|-90,-73.1901,0|418.6382,21.6998,113.0778|-90,-76.49,0|417.4575,21.6998,113.328|-90,-78.1901,0|416.2693,21.6998,113.5397|-90,-80.06,0|413.8831,21.6998,113.8491|-90,-83.7301,0|415.0767,21.6998,113.7139|-90,-81.8701,0|425.1704,21.6998,110.231|-90,-58.0401,0|434.3911,21.6998,101.9647|-90,-22.3,0|-151.8389,4.3,74.8272|2,8.4,10|-159.8389,1.9,74.8272|2,3.6,10|-163.8389,0.7,74.8272|-161.8389,1.3,74.8272|2,2.4,10|-157.8389,2.5,74.8272|2,4.8,10|-155.8389,3.1,74.8272|2,6,10|-153.8389,3.7,74.8272|2,7.2,10|-145.8389,6.1,74.8272|2,12,10|-149.8389,4.9,74.8272|2,9.6,10|-1'
  206. ..'47.8389,5.5,74.8272|2,10.8,10|-143.8389,6.7,74.8272|2,13.2,10|-133.3389,7.3,74.8272|19,14.4,10|0.8549,0.5215,0.2549|-158.8389,17.7,64.8272|6,3.6,6|0,-0.6001,0,1,0,0,0,0,1,0,-1,0|0,-1.8001,2.5,-1,0,-0,0,0,1,-0,1,-0|-158.8389,21.3,67.3272|-156.3389,21.3,64.8272|4,3.6,1|-2.5,1.8,0,-0,1,0,0,0,-1,-1,0,0|-158.8389,23.7,64.8272|6,1.2,6|0,1.7999,2.5,1,0,0,-0,-0,-1,0,1,0|0,1.7999,-2.5,-0,-1,-0,-0,-0,-1,1,0,0|0,1.7999,2.5,-0,-1,-0,-0,-0,-1,1,0,0|-161.3389,21.3,64.8272|2.5,1.8,0,-0,1,0,0,0,-1,-1,0,0|Say start ride|Head|-158.8389,20.1,64.8272|4,1.2,4|0|432.5507,21.4999,113.4782|-90,-46.89,0|431.011,21.4999,114.7707|-90,-50.1301,0|429.3967,21.4999,115.9691|-90,-53.5801,0|432.5071,21.6998,105.055|-90,-37.1,0|433.2285,21.6998,104.0846|-90,-31.57,0|430.7671,21.6998,106.7233|-90,-50.25,0|429.7517,21.69'
  207. ..'98,107.3723|433.8547,21.6998,103.0496|-90,-26.66,0|431.6869,21.6998,105.9423|-90,-43.2901,0|434.0151,21.4999,112.1012|-90,-44.1,0|435.4116,21.4999,110.6549|-90,-41.73,0|437.96,21.4999,107.5492|-90,-31.6201,0|435.5267,21.6998,98.5186|-90,-11.87,0|434.844,21.6998,100.8421|-90,-18.39,0|435.2201,21.6998,99.6906|-90,-14.9301,0|435.9583,21.6998,96.1345|-90,-6.7101,0|435.7708,21.6998,97.3317|-90,-9.12,0|436.0957,21.6998,94.9304|-90,-4.56,0|436.7457,21.4999,109.1492|-90,-37.4001,0|440.6558,21.4999,102.1721|-90,-18.3,0|439.0083,21.4999,105.835|-90,-26.58,0|439.9024,21.4999,104.0353|-90,-22.16,0|441.7964,21.4999,98.3192|-90,-11.9201,0|441.2832,21.4999,100.2627|-90,-14.9,0|442.209,21.4999,96.3518|-90,-9.32,0|-348.594,19.3117,53.8272|-355.2266,18.6146,53.8272|-354.1147,18.6582,53.8272|-349.6905,19'
  208. ..'.1233,53.8272|-350.7916,18.9636,53.8272|-351.8965,18.8328,53.8272|-353.0044,18.731,53.8272|-341.1083,21.4229,53.8272|-339.0527,22.2743,53.8272|-338.0423,22.7401,53.8272|-340.0749,21.8352,53.8272|-337.0444,23.2323,53.8272|-343.2057,20.6801,53.8272|-342.1521,21.0377,53.8272|-346.4176,19.7743,53.8272|-347.5027,19.5288,53.8272|-344.2684,20.3502,53.8272|-345.3392,20.0482,53.8272|-348.594,19.3116,46.8272|-349.6905,19.1232,46.8272|-350.7916,18.9635,46.8272|-353.0045,18.731,46.8272|-351.8965,18.8328,46.8272|-355.2264,18.6145,46.8272|-354.1147,18.6582,46.8272|-347.5027,19.5288,46.8272|-341.1083,21.4229,46.8272|-338.0422,22.7401,46.8272|-339.0527,22.2743,46.8272|-343.2057,20.6801,46.8272|-342.1521,21.0377,46.8272|-340.0749,21.8351,46.8272|-344.2683,20.3502,46.8272|-345.3391,20.0482,46.8272|-346.'
  209. ..'4175,19.7743,46.8272|135.1611,51.2001,115.8272|0,0,-123.75|1,30,2|160.1611,34.6001,115.8272|0.0509,0.4117,0.6745|363.1611,22.005,122.8272|0,-90,72|108,0,0|2,1.2,4|359.1611,22.005,122.8272|0,-90,79.1999|367.1611,22.005,122.8272|0,-90,64.8|375.1611,22.005,122.8272|0,-90,50.4|371.1611,22.005,122.8272|0,-90,57.5999|379.1611,22.005,122.8272|0,-90,43.2|383.1611,22.005,122.8272|0,-90,36|387.1611,22.005,122.8272|0,-90,28.7999|391.1611,22.005,122.8272|0,-90,21.6|395.1611,22.005,122.8272|0,-90,14.3999|399.1611,22.005,122.8272|0,-90,7.1999|403.1611,22.005,122.8272|355.1611,22.005,122.8273|0,-90,86.4|351.1611,22.005,122.8273|0,-90,93.5999|351.1611,22,115.8273|363.1611,22,115.8273|355.1611,22,115.8273|359.1611,22,115.8273|367.1611,22,115.8272|375.1611,22,115.8272|371.1611,22,115.8272|379.1611,22,11'
  210. ..'5.8272|383.1611,22,115.8272|387.1611,22,115.8272|391.1611,22,115.8272|395.1611,22,115.8272|399.1611,22,115.8272|403.1611,22,115.8272|347.1611,22.005,122.8272|0,-90,100.8|347.1611,22,115.8273|343.1611,22.0051,122.8272|0,-90,108|343.1611,22,115.8272|339.1611,22.0051,122.8272|0,-90,115.1999|339.1611,22,115.8272|335.1611,22.0051,122.8272|0,-90,122.4|331.1611,22.0051,122.8271|0,-90,129.6|335.1611,22,115.8272|331.1611,22,115.8272|315.1611,22.0052,122.827|0,-90,158.3999|319.1611,22.0052,122.827|0,-90,151.1999|323.1611,22.0051,122.827|0,-90,144|327.1611,22.0051,122.827|0,-90,136.8|315.1611,22.0001,115.827|319.1611,22.0001,115.827|323.1611,22.0001,115.8271|327.1611,22.0001,115.8271|311.1611,22.0052,122.8269|0,-90,165.6|307.1611,22.0052,122.8269|0,-90,172.8|311.1611,22.0001,115.827|307.1611,22.0'
  211. ..'001,115.827|303.1611,22.0052,122.8269|0,-90,180|303.1611,22,115.8272|0,-90,-180|291.1611,22,122.8272|118,0,0|295.1611,22,122.8272|299.1611,22,122.8272|291.1611,21.9001,115.8267|295.1611,21.9001,115.8267|299.1611,21.9,115.8272|279.1611,22,122.8272|283.1611,22,122.8272|287.1611,22,122.8272|279.1611,21.9,115.8268|283.1611,21.9,115.8267|287.1611,21.9001,115.8267|275.1611,22,122.8272|275.1611,21.9,115.8268|271.1611,22,122.8272|271.1611,21.9,115.8269|259.1611,22,122.8273|263.1611,22,122.8272|267.1611,22,122.8272|259.1611,21.9,115.827|263.1611,21.9,115.827|267.1611,21.9,115.8269|251.1611,22,122.8273|255.1611,22,122.8273|251.1611,21.9,115.8271|255.1611,21.9,115.827|243.1611,22,122.8273|247.1611,22,122.8273|243.1611,21.8999,115.8272|247.1611,21.8999,115.8272|239.1611,22,122.8272|239.1611,21.899'
  212. ..'9,115.8272|215.1611,22.0001,122.827|235.1611,22,122.8272|219.1611,22.0001,122.8271|231.1611,22,122.8272|227.1611,22.0001,122.8272|223.1611,22.0001,122.8271|215.1611,21.8999,115.8272|235.1611,21.8999,115.8272|219.1611,21.8999,115.8272|231.1611,21.8999,115.8272|227.1611,21.8999,115.8272|223.1611,21.8999,115.8272|207.1611,22.0001,122.827|211.1611,22.0001,122.827|203.1611,22.0001,122.827|207.1611,21.8999,115.8272|211.1611,21.8999,115.8272|203.1611,21.8999,115.8272|199.1611,22,122.8272|199.1611,21.9,115.8272|174.3968,25.1352,115.8272|136,0,0|173.3748,25.5744,115.8272|177.5278,23.9801,115.8272|175.4304,24.7229,115.8272|176.4742,24.3378,115.8272|173.3748,25.5743,122.8272|177.5278,23.9801,122.8272|178.5906,23.6502,115.8272|176.4742,24.3378,122.8272|179.6614,23.3482,115.8272|174.3968,25.1352,12'
  213. ..'2.8272|175.4304,24.7229,122.8272|178.5906,23.6501,122.8272|180.7395,23.0743,122.8272|180.7395,23.0743,115.8272|179.6613,23.3482,122.8272|181.8248,22.8288,115.8272|181.8248,22.8288,122.8272|182.9161,22.6117,115.8272|182.9161,22.6117,122.8272|184.0124,22.4233,122.8272|184.0127,22.4233,115.8272|186.2187,22.1329,115.8272|185.1136,22.2637,115.8272|185.1135,22.2636,122.8272|187.3264,22.0311,115.8272|186.2187,22.1328,122.8272|187.3264,22.0311,122.8272|188.4365,21.9583,115.8272|189.5486,21.9146,115.8272|188.4365,21.9583,122.8272|189.5483,21.9146,122.8272|190.6611,21.9,115.8272|190.6611,21.9,122.8272|191.7737,21.9145,115.8272|192.8855,21.9582,115.8272|0,180,177|191.7737,21.9145,122.8272|192.8852,21.9582,122.8272|193.9957,22.031,115.8272|0,180,175.5|195.1036,22.1328,115.8272|0,180,174|193.9956,2'
  214. ..'2.031,122.8272|196.2085,22.2636,115.8272|0,180,172.5|195.1036,22.1328,122.8272|196.2085,22.2635,122.8272|410.4522,21.4999,121.8208|-90,-84.1501,0|407.6585,21.4999,122.0261|1,3.2,2|420.2979,21.4999,120.0858|-90,-72.49,0|418.3599,21.4999,120.5959|-90,-75.3601,0|416.4024,21.4999,121.0196|-90,-77.88,0|414.4282,21.4999,121.3548|-90,-80.46,0|412.4429,21.4999,121.6145|-90,-82.63,0|424.0839,21.4999,118.7815|-90,-66.64,0|422.2069,21.4999,119.48|-90,-69.7,0|425.9219,21.4999,117.982|-90,-62.57,0|427.7019,21.4999,117.0495|-90,-57.6801,0|-367.3389,18.6,53.8272|23,1,2|-367.3389,18.6,46.8272|116.5923,61.9664,115.8272|58,0,0|117.636,61.5814,115.8272|115.5386,62.3242,115.8272|114.4761,62.654,115.8272|113.4053,62.9561,115.8272|111.2417,63.4755,115.8272|112.3269,63.2299,115.8272|121.7002,59.7721,115.8272'
  215. ..'|120.702,60.2641,115.8272|119.6916,60.7299,115.8272|118.6694,61.1691,115.8272|110.1504,63.6925,115.8272|117.636,61.5814,122.8272|116.5923,61.9665,122.8272|109.054,63.881,115.8272|106.8479,64.1714,122.8272|105.74,64.2732,115.8272|102.4053,64.4043,115.8272|110.1506,63.6926,122.8272|104.6296,64.346,115.8272|112.3269,63.2299,122.8272|115.5386,62.3242,122.8272|105.74,64.2732,122.8272|106.8479,64.1714,115.8272|102.4054,64.4043,122.8272|107.9526,64.0406,115.8272|103.5181,64.3897,115.8272|104.6298,64.346,122.8272|109.0537,63.881,122.8272|107.9529,64.0407,122.8272|103.5181,64.3897,122.8272|113.4053,62.9561,122.8272|114.4761,62.654,122.8272|111.2417,63.4755,122.8272|121.7002,59.7721,122.8272|120.702,60.2641,122.8272|119.6916,60.7299,122.8272|118.6694,61.1691,122.8272|134.7167,50.8315,122.8272|15'
  216. ..'9.7167,34.2315,122.8272|90.3613,63.0519,122.8272|24,0,0|96.9187,64.2674,122.8272|98.0266,64.3692,122.8272|101.3611,64.5002,122.8272|95.8137,64.1366,122.8272|93.6161,63.7885,122.8272|100.2487,64.4856,122.8272|94.7126,63.9769,122.8272|92.5249,63.5714,122.8272|91.4397,63.3259,122.8272|99.137,64.442,122.8272|87.1743,62.0624,122.8272|94.7126,63.977,115.8272|93.6161,63.7885,115.8272|88.2279,62.42,122.8272|95.8137,64.1367,115.8272|98.0266,64.3692,115.8272|90.3613,63.052,115.8272|88.2278,62.42,115.8272|87.1743,62.0624,115.8272|89.2905,62.75,115.8272|99.1368,64.442,115.8272|89.2905,62.7499,122.8272|101.3611,64.5002,115.8272|96.9187,64.2674,115.8272|100.2485,64.4857,115.8272|92.5249,63.5714,115.8272|91.4397,63.3259,115.8272|82.0665,59.8679,122.8272|86.1304,61.6773,122.8272|86.1304,61.6773,115.82'
  217. ..'72|84.0748,60.8258,122.8272|85.097,61.265,122.8272|84.0748,60.8259,115.8272|85.097,61.265,115.8272|83.0644,60.36,122.8272|83.0644,60.36,115.8272|81.0819,59.3499,122.8272|82.0664,59.868,115.8272|79.1549,58.2373,115.8272|80.1111,58.8062,115.8272|79.1549,58.2373,122.8272|80.1111,58.8062,122.8272|81.0818,59.3499,115.8272|78.214,57.6436,122.8272|78.2139,57.6436,115.8272|77.2888,57.0256,122.8272|77.2888,57.0256,115.8272|63.7451,49.3829,122.8272|42,0,0|63.745,49.0829,115.8272|37.745,33.4829,115.8272|82,0,0|22.8672,24.7628,122.8272|102,0,0|21.9111,24.1939,122.8272|20.9403,23.6503,122.8272|19.9557,23.1323,122.8272|17.9473,22.1743,122.8272|22.8673,24.7628,115.8272|18.9578,22.6401,122.8272|19.9557,23.1322,115.8272|18.9578,22.6401,115.8272|21.9111,24.1939,115.8272|17.9474,22.1743,115.8272|20.9403,'
  218. ..'23.6503,115.8272|16.9252,21.7351,115.8272|16.9251,21.7351,122.8272|15.8917,21.3229,122.8272|15.8917,21.3228,115.8272|14.8479,20.9377,122.8272|14.8479,20.9377,115.8272|13.7943,20.5801,122.8272|12.7317,20.2502,122.8272|13.7943,20.5801,115.8272|12.7317,20.2502,115.8272|11.6609,19.9482,122.8272|11.6609,19.9482,115.8272|23.8082,25.3565,115.8272|23.8082,25.3565,122.8272|10.5825,19.6743,122.8272|10.5825,19.6742,115.8272|37.7451,33.5829,122.8272|8.4061,19.2116,122.8272|115,0,0|7.3096,19.0232,122.8272|6.2084,18.8636,122.8272|9.4974,19.4287,122.8272|9.4974,19.4287,115.8272|7.3096,19.0232,115.8272|8.4061,19.2116,115.8272|5.1036,18.7327,122.8272|6.2085,18.8635,115.8272|5.1036,18.7327,115.8272|3.9956,18.631,122.8272|3.9956,18.631,115.8272|2.8853,18.5582,122.8272|2.8854,18.5582,115.8272|1.7736,18.51'
  219. ..'45,122.8272|1.7736,18.5145,115.8272|0.6611,18.5,122.8272|0.6611,18.5,115.8272|-16.8389,18.2,122.8272|140,0,0|2,1.2,34|-73.9883,19.0231,115.8272|0,0,171|145,0,0|-50.2389,18.5,115.8272|0,0,90|1,31.2,2|-67.3389,18.5,115.8272|-72.8872,18.8635,115.8272|0,0,172.5|-69.5639,18.5582,115.8272|-68.4522,18.5145,115.8272|-71.7822,18.7328,115.8272|0,0,174|-70.6741,18.6311,115.8272|0,0,175.5|-72.8872,18.8635,122.8272|-73.9883,19.0231,122.8272|-70.6742,18.631,122.827|-69.5639,18.5582,122.827|-68.4522,18.5146,122.827|-67.3389,18.5,122.8272|-71.7822,18.7328,122.8272|-50.4389,18.9,122.8272|-16.8389,18.2,115.8272|-134.0354,44.361,122.8271|0,0,-22.5|129,1.2,2|-134.0354,44.361,115.8271|-197.7636,70.3678,122.827|0,0,-16.5|-198.8344,70.6697,122.827|0,0,-15|-202.0894,71.4063,122.827|0,0,-10.5|-203.1859,71.5948'
  220. ..',122.8271|0,0,-9|-200.9981,71.1894,122.827|0,0,-12|-204.2871,71.7544,122.827|0,0,-7.5|-196.7009,70.0379,115.8271|0,0,-18|-198.8344,70.6699,115.8271|-202.0893,71.4063,115.8271|-199.9129,70.9437,115.8271|0,0,-13.5|-207.6101,72.0597,115.8271|0,0,-3|-203.1859,71.5948,115.8271|-204.2871,71.7544,115.8271|-194.6034,69.2952,115.8271|0,0,-21|-195.6474,69.6803,115.8271|0,0,-19.5|-195.6473,69.6803,122.827|-200.9981,71.1893,115.8271|-206.5,71.9869,115.8271|0,0,-4.5|-199.9129,70.9437,122.827|-205.392,71.8852,115.8271|0,0,-6|-196.7009,70.0379,122.827|-194.6035,69.2951,122.827|-197.7635,70.3679,115.8271|-206.5,71.9868,122.827|-207.6101,72.0597,122.827|-205.392,71.8852,122.8271|-282.6444,44.2602,115.8272|0,-180,-22.5|49,0,0|-366.2389,18.8,115.8272|0,-180,90|70,0,0|-344.8964,18.6328,115.8274|0,-180,174'
  221. ..'|50,0,0|-349.3389,18.4,115.8272|-348.2264,18.4146,115.8274|0,-180,178.5|-347.1146,18.4582,115.8274|0,-180,177|-346.0043,18.531,115.8274|0,-180,175.5|-342.6905,18.9231,115.8272|0,-180,171|-343.7916,18.7635,115.8272|0,-180,172.5|-346.0045,18.531,122.8272|-344.8965,18.6327,122.8272|-348.2264,18.4145,122.8272|-347.1146,18.4582,122.8272|-342.6905,18.9231,122.8272|-343.7916,18.7635,122.8272|-349.3389,18.4,122.8272|-365.8389,18.4,122.8272|-282.6443,44.2602,122.8272|-212.3944,71.6529,115.8274|0,-180,-7.5|-215.6832,71.0878,115.8274|0,-180,-12|-213.4954,71.4933,115.8272|0,-180,-9|-214.592,71.3049,115.8274|0,-180,-10.5|-211.2894,71.7838,115.8272|0,-180,-6|-209.0714,71.9583,115.8274|0,-180,-3|-210.1815,71.8854,115.8274|0,-180,-4.5|-217.8468,70.5683,115.8274|0,-180,-15|-218.9177,70.2664,115.8274|0,'
  222. ..'-180,-16.5|-219.9802,69.9365,115.8274|0,-180,-18|-222.0777,69.1937,115.8274|0,-180,-21|-221.0338,69.5789,115.8274|0,-180,-19.5|-216.7684,70.8423,115.8273|0,-180,-13.5|-211.2894,71.7838,122.8272|-218.9177,70.2664,122.8272|-216.7684,70.8423,122.8272|-217.8469,70.5685,122.8272|-214.592,71.3049,122.8272|-219.9802,69.9365,122.8272|-212.3943,71.6529,122.8272|-213.4954,71.4933,122.8272|-215.6832,71.0878,122.8272|-209.0714,71.9583,122.8272|-210.1814,71.8855,122.8272|-222.0776,69.1938,122.8272|-221.0338,69.5788,122.8272|-406.0851,18.3,53.7492|-90,128.96,0|-50,0,50|-407.6454,18.3,55.0164|-90,131.75,0|-404.4558,18.3,52.5716|-90,125.72,0|-402.7589,18.3,51.4932|-90,122.2699,0|-409.1431,18.3,56.3576|-90,134.11,0|-410.5828,18.3,57.7628|-90,138.4499,0|-408.1413,18.4999,64.0558|-90,149.1799,0|0,0,50|-4'
  223. ..'14.988,18.3,64.4382|-90,157.55,0|-405.7695,18.4999,61.3278|-90,132.55,0|-413.0793,18.3,60.9044|-90,149.27,0|-414.1016,18.3,62.6346|-90,153.6799,0|-399.1474,18.3,49.7374|-90,113.2699,0|-50,0,0|-406.6518,18.4999,62.1533|-90,138.74,0|-407.4418,18.4999,63.0688|-90,144.27,0|-408.7547,18.4999,65.0989|-90,153.5399,0|-411.9098,18.3,59.2706|-90,144.22,0|-404.7955,18.4999,60.6155|-90,125.5999,0|-403.7358,18.4999,60.0417|-90,117.8099,0|-400.9903,18.3,50.5385|-90,118.1699,0|-410.1372,18.4999,68.4537|-90,163.9799,0|-416.4048,18.3,68.1983|-90,163.9199,0|-409.2878,18.4999,66.1858|-90,157.4499,0|-398.9595,18.4999,57.5226|-409.7463,18.4999,67.307|-90,160.9199,0|-397.2562,18.3,49.0732|-90,109.2099,0|-415.7521,18.3,66.2971|-90,160.94,0|-395.3335,18.3,48.5125|-90,106.15,0|-393.3856,18.3,48.0467|-90,103.34'
  224. ..'99,0|-393.428,18.4999,55.3582|-90,102.65,0|-410.7402,18.4999,70.8003|-90,169.1399,0|-410.4665,18.4999,69.6198|-90,166.7299,0|-416.9587,18.3,70.1306|-90,166.5299,0|-417.4245,18.3,72.0861|-90,168.8399,0|-417.8113,18.3,74.0587|-90,170.91,0|-411.1446,18.4999,73.1894|-90,173.13,0|-411.2859,18.4999,74.3925|-90,174.7299,0|-410.9646,18.4999,71.9912|-90,171.2899,0|-411.3935,18.4999,75.5993|-90,176.0899,0|-411.4728,18.4999,76.8079|-90,177.1999,0|-418.1269,18.3,76.0439|-90,172.74,0|-418.5749,18.1,89.4289|-90,-176.78,0|-418.4597,18.1,91.4279|-90,-174.62,0|-418.6365,18.1,87.4285|-90,-178.31,0|-418.6389,18.1,85.4272|-90,-180,0|-418.2685,18.1,93.4211|-90,-172.04,0|-417.9878,18.1,95.4041|-90,-169.51,0|-410.5095,18.2999,95.2265|-90,-170.64,0|-410.6736,18.2999,94.0307|-90,-172.3501,0|-410.7986,18.2999,9'
  225. ..'2.8303|-90,-174.2201,0|-410.886,18.2999,91.6281|-90,-176.0201,0|-410.9343,18.2999,90.4279|-90,-177.89,0|-410.9388,18.2999,89.2272|-410.9388,18.2999,86.2272|-392.2381,18.4999,55.1565|-90,99.36,0|-411.5288,18.4999,78.0178|-90,178.1199,0|-418.3794,18.3,78.0379|-90,174.3699,0|-411.5882,18.4999,80.439|-90,179.4199,0|-411.5659,18.4999,79.2283|-90,178.8399,0|-411.5986,18.4999,81.6494|-90,179.8899,0|-418.5749,18.3,80.0384|-90,175.8399,0|-418.7392,18.3,82.4425|-90,177.1699,0|-411.5992,18.4999,82.8592|-90,-179.81,0|-417.6194,18.1,97.3739|-90,-166.65,0|-410.3079,18.2999,96.4163|-90,-167.3501,0|-416.5928,18.1,101.2445|-90,-160.79,0|-417.1536,18.1,99.3219|-90,-163.8501,0|-408.1435,18.2999,101.9477|-90,-152.1901,0|50,0,50|-391.4158,18.3,47.6783|-90,100.4899,0|-389.842,18.4999,54.8674|-90,95.7799,0|-'
  226. ..'391.0423,18.4999,54.9925|-90,97.65,0|-387.4396,18.4999,54.7317|-90,92.11,0|-387.4396,18.3,47.2063|-90,95.3799,0|-388.6398,18.4999,54.7801|-90,93.98,0|-389.4328,18.3,47.3976|-90,97.9599,0|-386.2389,18.4999,54.7272|-385.4405,18.3,47.0911|-90,93.22,0|-415.1276,18.1,104.9787|-90,-151.8301,0|-415.9287,18.1,103.1357|-90,-156.73,0|-410.6496,18.1,111.6337|-90,-138.25,0|-411.9169,18.1,110.0733|-90,-141.04,0|-413.0945,18.1,108.4441|-90,-144.28,0|-414.1729,18.1,106.7472|-90,-147.73,0|-399.4802,18.2999,112.2761|-90,-112.5501,0|-400.5671,18.2999,111.7431|-90,-116.46,0|-405.6243,18.2999,106.7241|-404.3382,18.2999,108.7578|-90,-137.45,0|-401.6102,18.2999,111.1295|-90,-120.82,0|-402.5972,18.2999,110.4301|-90,-125.7301,0|-405.0505,18.2999,107.7838|-90,-144.4,0|-403.5127,18.2999,109.6401|-90,-131.26,0|-'
  227. ..'401.2278,18.1,118.9763|-90,-112.45,0|-404.7617,18.1,117.0678|-90,-120.7301,0|-403.0315,18.1,118.0899|-90,-116.32,0|-409.3085,18.1,113.1314|-90,-135.89,0|-406.3956,18.1,115.8981|-90,-125.78,0|-407.9033,18.1,114.5709|-90,-131.5501,0|-387.6482,18.2999,114.517|-90,-91.88,0|-388.8581,18.2999,114.4611|-90,-92.8001,0|-398.359,18.2999,112.7347|-90,-109.0801,0|-391.2735,18.2999,114.2742|-90,-95.27,0|-396.0463,18.2999,113.4549|-90,-103.27,0|-394.8657,18.2999,113.7285|-90,-100.8601,0|-390.0667,18.2999,114.3819|-90,-93.9101,0|-392.4767,18.2999,114.1328|-90,-96.8701,0|-397.2124,18.2999,113.1255|-90,-106.02,0|-393.6748,18.2999,113.9529|-90,-98.71,0|-399.3689,18.1,119.7404|-90,-109.06,0|-391.6073,18.1,121.7996|-90,-99.09,0|-397.4678,18.1,120.3931|-90,-106.0801,0|-393.5799,18.1,121.4129|-90,-101.1601,'
  228. ..'0|-395.5354,18.1,120.947|-90,-103.4701,0|-386.4377,18.2999,114.5542|-90,-91.1601,0|-389.6222,18.1,122.1151|-90,-97.2601,0|-387.6281,18.1,122.3677|-90,-95.63,0|-385.6277,18.1,122.5633|-90,-94.1601,0|-383.4402,18.3,47.0296|-90,91.69,0|-384.0167,18.2999,114.5869|-90,-90.1101,0|-385.227,18.2999,114.5766|-90,-90.5801,0|-382.2389,18.4999,54.7272|-380.6388,18.3,47.0272|-383.2235,18.1,122.7276|-90,-92.8301,0|-382.8068,18.2999,114.5876|-90,-89.81,0;0,1>2>484,14>2>20,99>2>100,102>2>154,184>2>231,281>2>283,282>2>283,285>13>284,285>14>288,286>13>284,286>14>283,287>2>288,289>13>288,289>14>290,292>13>291,292>14>872,293>13>291,293>14>866,315>2>332,392>2>444,486>13>485,486>14>741,487>13>485,487>14>724,488>13>485,488>14>501,489>13>485,489>14>497,490>13>485,490>14>494,491>13>485,491>14>492,493>13>492,49'
  229. ..'3>14>724,495>13>494,495>14>500,496>13>494,496>14>492,498>13>497,498>14>741,499>13>497,499>14>501,502>13>501,502>14>503,515>2>547,655>2>689,658>13>657,658>14>689,662>13>661,662>14>676,663>13>661,663>14>685,666>13>664,666>14>716,669>13>667,669>14>716,672>13>670,672>14>676,677>13>676,677>14>673,680>13>679,680>14>683,682>13>681,682>14>715,684>13>683,684>14>678,687>13>686,687>14>714,688>13>686,688>14>701,690>13>689,690>14>676,691>13>689,691>14>685,692>13>689,692>14>712,693>13>689,693>14>716,694>13>689,694>14>659,695>13>689,695>14>656,696>13>689,696>14>724,697>13>689,697>14>741,698>13>689,698>14>678,699>13>689,699>14>739,700>13>689,700>14>704,702>13>701,702>14>683,703>13>701,703>14>678,705>13>704,705>14>757,706>13>704,706>14>683,707>13>704,707>14>679,708>13>704,708>14>736,710>13>709,710>14>6'
  230. ..'79,711>13>709,711>14>675,713>13>712,713>14>660,717>13>716,717>14>660,719>13>718,719>14>689,721>13>720,721>14>731,722>13>720,722>14>730,723>13>720,723>14>681,725>13>724,725>14>715,726>13>724,726>14>681,728>13>727,728>14>715,729>13>727,729>14>681,732>13>731,732>14>681,734>13>733,734>14>744,735>13>733,735>14>727,737>13>736,737>14>757,738>13>736,738>14>751,742>13>741,742>14>731,743>13>741,743>14>681,745>13>744,745>14>714,746>13>744,746>14>675,747>13>744,747>14>503,748>13>744,748>14>500,749>13>744,749>14>730,750>13>744,750>14>759,752>13>751,752>14>759,754>13>753,754>14>760,755>13>753,755>14>757,756>13>753,756>14>678,758>13>757,758>14>678,762>13>761,762>14>760,763>13>761,763>14>744,853>2>865,867>13>866,867>14>879,868>13>866,868>14>869,871>13>870,871>14>866,873>13>872,873>14>869,874>13>872,87'
  231. ..'4>14>876,875>13>872,875>14>870,877>13>876,877>14>866,878>2>879,943>2>983,1048>2>1050,1106>2>1114,1147>2>1198,1148>2>1196,1197>2>1198,1201>2>1226,1231>2>1235,1296>2>1297,1315>2>1326,1342>2>1409;2|1:2;n;1|3:3|4:4|5:5|6:6|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:9|6:10|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:11|6:12|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:13|6:14|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:15|6:16|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:17|6:18|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:19|6:20|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:21|6:22|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:23|6:24|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:25|6:26|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:27|6:28|7:29|8:8|9:8|4:4|4:4;1|3:3|4:4|5:30|6:31|7:32|8:8|9:8|4:4|4:4;2;n;1|3:3|4:4|5:33|6:34|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:36|6:37|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:38|6:3'
  232. ..'9|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:40|6:41|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:42|6:43|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:44|6:45|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:46|6:47|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:48|6:49|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:50|6:37|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:51|6:34|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:52|6:45|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:53|6:54|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:55|6:41|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:56|6:57|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:58|6:59|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:60|6:61|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:62|6:63|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:64|6:63|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:65|6:61|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:66|'
  233. ..'6:59|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:67|6:57|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:68|6:39|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:69|6:70|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:71|6:70|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:72|6:73|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:74|6:75|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:76|6:77|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:78|6:79|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:80|6:81|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:82|6:83|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:84|6:43|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:85|6:47|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:86|6:49|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:87|6:75|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:88|6:77|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:89|6:79|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:'
  234. ..'90|6:54|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:91|6:92|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:93|6:81|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:94|6:73|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:95|6:92|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:96|6:97|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:98|6:83|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:99|6:100|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:101|6:100|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:102|6:103|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:104|6:97|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:105|6:106|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:107|6:108|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:109|6:106|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:110|6:103|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:111|6:112|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:113|6:114|10:35|7:32|8:8|9:8'
  235. ..'|4:4|4:4;1|3:3|4:4|5:115|6:116|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:117|6:114|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:118|6:116|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:119|6:108|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:120|6:121|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:122|6:121|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:123|6:124|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:125|6:112|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:126|6:124|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:127|6:128|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:129|6:128|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:130|6:131|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:132|6:133|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:134|6:131|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:135|6:133|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:136|6:137|10:35|7:32|8:8|9:8|4:4|4:4;1|3'
  236. ..':3|4:4|5:138|6:139|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:140|6:141|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:142|6:137|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:143|6:139|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:144|6:141|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:145|6:31|10:35|7:32|8:8|9:8|4:4|4:4;p;1|3:3|4:4|5:146|6:147|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:148|6:149|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:150|6:151|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:152|6:153|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:154|6:155|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:156|6:157|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:158|6:159|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:160|6:161|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:162|6:163|7:32|8:8|9:8|4:4|4:4;2;n;1|3:3|4:4|5:164|6:165|10:35|7:166|8:8|9:8|4:4|4:4;1|3:3|4:4|5:167|6:165|10:35|7:166|8:8|9:8|4:4|4:4;p;2;n;1|3:3|4'
  237. ..':4|5:168|6:169|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:170|6:171|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:172|6:173|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:174|6:175|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:176|6:177|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:178|6:179|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:180|6:181|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:182|6:183|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:184|6:185|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:186|6:187|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:188|6:189|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:190|6:191|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:192|6:189|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:193|6:169|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:194|6:171|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:195|6:173|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:196|6:1'
  238. ..'77|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:197|6:175|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:198|6:199|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:200|6:179|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:201|6:199|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:202|6:181|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:203|6:183|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:204|6:185|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:205|6:187|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:206|6:207|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:208|6:209|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:210|6:209|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:211|6:207|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:212|6:213|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:214|6:213|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:215|6:191|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:216|6:217|10:35|7:3'
  239. ..'2|8:8|9:8|4:4|4:4;1|3:3|4:4|5:218|6:219|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:220|6:221|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:222|6:223|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:224|6:221|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:225|6:219|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:226|6:217|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:227|6:223|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:228|6:229|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:230|6:231|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:232|6:231|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:233|6:229|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:234|6:235|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:236|6:235|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:237|6:238|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:239|6:238|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:240|6:241|10:35|7:32|8:8|9:8|4:'
  240. ..'4|4:4;1|3:3|4:4|5:242|6:241|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:243|6:244|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:245|6:246|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:247|6:244|10:35|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:248|6:246|10:35|7:32|8:8|9:8|4:4|4:4;p;1|3:3|4:4|5:249|6:250|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:251|6:252|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:253|6:254|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:255|6:256|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:257|6:258|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:259|6:260|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:261|6:262|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:263|6:264|10:265|7:266|8:8|9:8|4:4|4:4;1|3:3|4:4|5:267|6:264|10:265|7:266|8:8|9:8|4:4|4:4;1|3:3|4:4|5:268|6:269|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:270|6:271|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:272|6:273|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5'
  241. ..':274|6:275|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:276|6:277|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:278|6:279|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:280|6:281|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:282|6:283|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:284|6:285|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:286|6:287|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:288|6:289|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:290|6:291|7:292|8:8|9:8|4:4|4:4;1|3:3|4:4|5:293|6:294|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:295|6:296|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:297|6:291|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:298|6:299|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:300|6:301|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:302|6:303|7:7|8:8|9:8|4:4|4:4;2;n;1|3:3|4:4|5:304|6:169|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:306|6:189|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:307|6:175|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:308|6:171|7:305|8:8'
  242. ..'|9:8|4:4|4:4;1|3:3|4:4|5:309|6:310|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:311|6:191|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:312|6:173|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:313|6:185|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:314|6:187|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:315|6:181|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:316|6:183|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:317|6:177|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:318|6:179|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:319|6:209|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:320|6:199|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:321|6:207|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:322|6:171|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:323|6:185|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:324|6:173|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:325|6:187|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:326|6:191|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:327|6:310|7:305|8:8|9:8'
  243. ..'|4:4|4:4;1|3:3|4:4|5:328|6:175|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:329|6:179|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:330|6:181|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:331|6:169|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:332|6:189|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:333|6:177|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:334|6:183|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:335|6:217|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:336|6:213|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:337|6:199|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:338|6:207|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:339|6:221|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:340|6:219|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:341|6:221|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:342|6:219|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:343|6:217|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:344|6:209|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:345|6:213|7:305|8:8|9:8|4:4'
  244. ..'|4:4;1|3:3|4:4|5:346|6:223|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:347|6:231|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:348|6:223|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:349|6:229|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:350|6:229|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:351|6:231|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:352|6:353|7:354|8:8|9:8|4:4|4:4;1|3:3|4:4|5:355|6:353|7:354|8:8|9:8|4:4|4:4;1|3:3|4:4|5:356|6:235|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:357|6:235|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:358|6:75|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:359|6:75|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:360|6:79|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:361|6:77|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:362|6:77|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:363|6:79|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:364|6:81|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:365|6:73|7:305|8:8|9:8|4:4|4:4;1|3:3|4'
  245. ..':4|5:366|6:83|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:367|6:81|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:368|6:83|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:369|6:73|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:370|6:92|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:371|6:92|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:372|6:97|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:373|6:100|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:374|6:97|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:375|6:106|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:376|6:103|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:377|6:100|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:378|6:103|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:379|6:106|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:380|6:108|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:381|6:108|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:382|6:114|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:383|6:116|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:384|6:1'
  246. ..'16|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:385|6:112|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:386|6:114|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:387|6:112|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:388|6:121|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:389|6:124|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:390|6:121|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:391|6:124|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:392|6:133|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:393|6:133|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:394|6:128|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:395|6:131|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:396|6:128|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:397|6:137|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:398|6:131|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:399|6:139|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:400|6:139|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:401|6:137|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:402|6:141|7'
  247. ..':305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:403|6:141|7:305|8:8|9:8|4:4|4:4;p;2;n;2;n;1|3:3|4:404|5:405|6:406|7:407|4:404|4:404;1|3:3|4:404|5:408|6:406|7:407|4:404|4:404;n;3|11:409|12:410;3|11:411|12:412;p;p;2;n;1|3:3|4:404|5:413|6:406|7:407|4:404|4:404;n;3|11:409|12:414;p;1|3:3|4:404|5:415|6:406|7:407|4:404|4:404;p;p;1|3:3|4:416|15:417|5:418|6:419|7:420|4:416|4:416;n;3|11:421|12:422;3|11:423|12:424;p;1|3:3|4:4|5:425|6:426|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:428|6:429|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:430|6:431|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:432|6:433|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:434|6:435|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:436|6:437|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:438|6:439|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:440|6:441|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:442|6:441|7:443|8:8|9:8|4:4|4:4;1|3:3|4'
  248. ..':4|5:444|6:445|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:446|6:447|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:448|6:449|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:450|6:451|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:452|6:453|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:454|6:455|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:456|6:457|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:458|6:459|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:460|6:461|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:462|6:463|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:464|6:465|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:466|6:467|7:7|8:8|9:8|4:4|4:4;2;n;1|3:3|4:4|5:468|6:469|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:471|6:472|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:473|6:474|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:475|6:476|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:477|6:478|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:479|6:480|10:470|7:32|8:8|9:'
  249. ..'8|4:4|4:4;1|3:3|4:4|5:481|6:482|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:483|6:484|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:485|6:486|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:487|6:488|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:489|6:490|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:491|6:492|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:493|6:494|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:495|6:496|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:497|6:498|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:499|6:500|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:501|6:502|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:503|6:504|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:505|6:506|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:507|6:472|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:508|6:469|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:509|6:484|10:470|7:32|8:'
  250. ..'8|9:8|4:4|4:4;1|3:3|4:4|5:510|6:511|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:512|6:513|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:514|6:515|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:516|6:496|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:517|6:494|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:518|6:492|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:519|6:486|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:520|6:521|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:522|6:490|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:523|6:488|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:524|6:525|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:526|6:498|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:527|6:525|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:528|6:529|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:530|6:506|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:531|6:511|10:470|7:3'
  251. ..'2|8:8|9:8|4:4|4:4;1|3:3|4:4|5:532|6:515|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:533|6:513|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:534|6:476|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:535|6:478|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:536|6:480|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:537|6:482|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:538|6:521|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:539|6:529|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:540|6:541|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:542|6:543|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:544|6:500|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:545|6:474|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:546|6:502|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:547|6:504|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:548|6:543|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:549|6:550|10:470'
  252. ..'|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:551|6:541|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:552|6:550|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:553|6:554|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:555|6:554|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:556|6:557|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:558|6:559|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:560|6:557|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:561|6:562|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:563|6:559|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:564|6:565|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:566|6:562|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:567|6:565|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:568|6:569|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:570|6:571|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:572|6:569|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:573|6:574|10'
  253. ..':470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:575|6:571|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:576|6:577|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:578|6:574|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:579|6:577|10:470|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:580|6:581|10:470|7:32|8:8|9:8|4:4|4:4;p;1|3:3|4:4|5:582|10:583|7:584|8:8|9:8|4:4|4:4;2;n;1|3:3|4:4|5:585|6:586|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:588|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:589|6:590|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:591|6:592|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:593|6:594|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:595|6:596|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:597|6:598|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:599|6:600|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:601|6:602|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:603|6:604|10:'
  254. ..'587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:605|6:606|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:607|6:608|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:609|6:606|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:610|6:586|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:611|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:612|6:590|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:613|6:594|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:614|6:592|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:615|6:616|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:617|6:596|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:618|6:616|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:619|6:598|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:620|6:600|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:621|6:602|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:622|6:604|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:623|6:624|10:58'
  255. ..'7|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:625|6:626|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:627|6:626|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:628|6:624|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:629|6:630|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:631|6:630|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:632|6:608|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:633|6:634|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:635|6:636|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:637|6:638|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:639|6:640|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:641|6:638|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:642|6:636|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:643|6:634|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:644|6:640|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:645|6:646|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:647|6:648|1'
  256. ..'0:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:649|6:648|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:650|6:646|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:651|6:652|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:653|6:652|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:654|6:655|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:656|6:655|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:657|6:658|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:659|6:658|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:660|6:661|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:662|6:663|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:664|6:661|10:587|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:665|6:663|10:587|7:32|8:8|9:8|4:4|4:4;p;1|3:3|4:4|5:666|6:667|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:668|6:669|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:670|6:671|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:67'
  257. ..'2|6:673|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:674|6:675|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:676|6:677|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:678|6:679|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:680|6:681|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:682|6:683|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:684|6:685|10:427|7:354|8:8|9:8|4:4|4:4;1|3:3|4:4|5:686|6:687|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:688|6:689|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:690|6:691|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:692|6:693|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:694|6:695|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:696|6:697|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:698|6:699|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:700|6:701|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:702|6:703|10:427|7:305|8:8|9:8|4:'
  258. ..'4|4:4;1|3:3|4:4|5:704|6:705|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:706|6:707|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:708|6:709|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:710|6:711|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:712|6:713|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:714|6:715|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:716|6:717|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:718|6:719|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:720|6:721|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:722|6:723|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:724|6:725|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:726|6:626|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:728|6:729|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:730|6:731|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:732|6:733|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:734|6:735|10:'
  259. ..'427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:736|6:737|10:427|7:738|8:8|9:8|4:4|4:4;1|3:3|4:4|5:739|6:406|10:740|7:741|8:8|9:8|4:4|4:4;1|3:3|4:404|5:742|6:406|7:743|4:404|4:404;1|4:404|5:744|6:745|10:746|7:747|16:748|8:8|17:748|18:748|9:8|4:404|4:404;n;4|11:749|12:750;4|11:751|12:752;4|11:749|12:753;4|11:749|12:754;4|11:751|12:755;4|11:751|12:756;p;1|4:757|5:758|6:759|10:760|7:761|8:8|18:748|9:8|4:757|4:757;n;4|11:762|12:763;p;1|4:404|5:764|6:765|10:766|7:767|16:748|8:8|17:748|18:748|9:8|4:404|4:404;n;4|11:768|12:769;4|11:762|12:770;p;1|4:757|5:771|6:759|10:772|7:761|8:8|18:748|9:8|4:757|4:757;n;4|11:762|12:773;4|11:768|12:774;p;1|4:757|5:775|6:776|10:777|7:778|8:748|9:8|4:757|4:757;1|4:404|5:779|6:765|10:780|7:767|16:748|8:8|17:748|18:748|9:8|4:404|4:404;n;4|11:768|12:781;p;1|4:757|5:782|6:7'
  260. ..'76|10:783|7:778|8:748|9:8|4:757|4:757;1|3:3|4:4|5:784|6:785|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:786|6:787|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:788|6:789|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:790|6:791|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:792|6:793|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:794|6:795|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:796|6:441|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:797|6:798|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:799|6:800|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:801|6:265|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:802|6:803|7:29|8:8|9:8|4:4|4:4;2;n;1|3:3|4:4|5:804|6:594|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:806|6:592|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:807|6:600|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:808|6:604|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:809|6:602|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:810|6:594|10:805|7:305|8'
  261. ..':8|9:8|4:4|4:4;1|3:3|4:4|5:811|6:616|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:812|6:596|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:813|6:604|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:814|6:616|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:815|6:600|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:816|6:602|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:817|6:596|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:818|6:598|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:819|6:590|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:820|6:590|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:821|6:598|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:822|6:626|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:823|6:640|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:824|6:638|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:825|6:640|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:826|'
  262. ..'6:638|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:827|6:636|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:828|6:636|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:829|6:630|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:830|6:634|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:831|6:634|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:832|6:630|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:833|6:624|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:834|6:624|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:835|6:626|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:836|6:837|10:805|7:354|8:8|9:8|4:4|4:4;1|3:3|4:4|5:838|6:655|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:839|6:652|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:840|6:646|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:841|6:652|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:842|6:646|10:805|7:305|8:8|9:8|4:4|'
  263. ..'4:4;1|3:3|4:4|5:843|6:648|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:844|6:648|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:845|6:484|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:846|6:476|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:847|6:521|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:848|6:511|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:849|6:482|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:850|6:478|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:851|6:480|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:852|6:529|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:853|6:515|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:854|6:525|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:855|6:513|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:856|6:506|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:857|6:543|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:858|6:541|10:80'
  264. ..'5|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:859|6:550|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:860|6:554|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:861|6:557|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:862|6:559|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:863|6:562|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:864|6:565|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:865|6:571|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:866|6:569|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:867|6:574|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:868|6:606|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:869|6:608|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:870|6:586|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:871|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:872|6:586|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:873|6:592|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:8'
  265. ..'74|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:875|6:606|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:876|6:608|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:877|6:837|10:805|7:354|8:8|9:8|4:4|4:4;1|3:3|4:4|5:878|6:655|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:879|6:478|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:880|6:476|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:881|6:484|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:882|6:511|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:883|6:521|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:884|6:513|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:885|6:480|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:886|6:482|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:887|6:529|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:888|6:525|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:889|6:515|10:805|7:305|8:8|9:8|4:4|4:4'
  266. ..';1|3:3|4:4|5:890|6:541|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:891|6:550|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:892|6:506|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:893|6:543|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:894|6:554|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:895|6:557|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:896|6:559|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:897|6:562|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:898|6:565|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:899|6:569|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:900|6:571|10:805|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:901|6:574|10:805|7:305|8:8|9:8|4:4|4:4;p;1|3:3|4:4|5:902|6:638|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:903|6:640|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:904|6:636|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:905|6:634|10:727'
  267. ..'|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:906|6:630|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:907|6:624|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:908|6:626|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:909|6:608|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:910|6:837|10:727|7:354|8:8|9:8|4:4|4:4;1|3:3|4:4|5:911|6:655|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:912|6:652|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:913|6:646|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:914|6:648|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:915|6:478|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:916|6:476|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:917|6:484|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:918|6:480|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:919|6:606|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:920|6:594|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:'
  268. ..'4|5:921|6:586|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:922|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:923|6:592|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:924|6:604|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:925|6:616|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:926|6:600|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:927|6:602|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:928|6:596|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:929|6:598|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:930|6:590|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:931|6:932|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:933|6:934|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:935|6:936|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:937|6:938|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:939|6:940|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:941|6:419|10:427|7:305|8:8|9:8|4:'
  269. ..'4|4:4;1|3:3|4:4|5:942|6:943|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:944|6:945|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:946|6:947|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:948|6:949|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:950|6:951|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:952|6:953|10:427|7:305|8:8|9:8|4:4|4:4;1|1:954|3:3|15:955|5:956|7:957|9:8;n;5|1:958;p;2;n;6|4:404|5:959|6:960|10:961|7:962|8:748|9:8|4:404|4:404;6|4:404|5:963|6:960|10:964|7:962|8:748|9:8|4:404|4:404;n;4|11:965|12:966;p;6|4:404|5:967|6:960|10:968|7:962|8:748|9:8|4:404|4:404;1|4:4|5:969|6:970|10:971|7:972|4:4|4:4;1|4:4|5:973|6:970|10:974|7:972|4:4|4:4;n;3|11:411|12:975;3|11:411|12:976;p;1|4:4|5:977|6:960|10:978|7:979|8:748|9:8|4:4|4:4;n;7|19:748;4|11:980|12:981;p;1|4:4|5:982|6:960|10:983|7:979|8:748|9:8|4:4|4:4;n;7|19:'
  270. ..'748;4|11:980|12:984;p;1|4:4|5:985|6:960|10:986|7:979|8:748|9:8|4:4|4:4;n;7|19:748;4|11:980|12:981;p;1|4:4|5:987|6:960|10:988|7:979|8:748|9:8|4:4|4:4;n;7|19:748;p;1|4:757|5:989|6:776|10:990|7:778|8:748|9:8|4:757|4:757;1|4:4|5:991|6:776|10:992|7:993|4:4|4:4;n;4|11:994|12:995;p;1|4:404|5:996|6:776|10:997|7:998|4:404|4:404;1|4:757|5:999|6:759|10:1000|7:761|8:8|18:748|9:8|4:757|4:757;n;4|11:1001|12:1002;p;1|4:404|5:1003|6:745|10:1004|7:747|16:748|8:8|17:748|18:748|9:8|4:404|4:404;n;4|11:751|12:1005;p;1|4:404|5:1006|6:1007|10:1008|7:747|16:748|8:8|17:748|18:748|9:8|4:404|4:404;n;4|11:749|12:1009;p;1|4:4|5:1010|6:970|10:1011|7:29|4:4|4:4;1|4:404|5:1012|6:765|10:1013|7:767|16:748|8:8|17:748|18:748|9:8|4:404|4:404;n;4|11:768|12:1014;4|11:762|12:770;p;1|4:4|5:1015|6:1016|10:1017|7:1018|4:4|4:4;n'
  271. ..';3|11:409|12:1019;3|11:409|12:1020;3|11:409|12:1021;3|11:409|12:1022;4|11:409|12:1023;4|11:409|12:1024;3|11:411|12:1025;3|11:411|12:1026;3|11:411|12:1027;4|11:409|12:1028;3|11:411|12:1029;p;1|4:757|5:1030|6:759|10:1031|7:761|8:8|18:748|9:8|4:757|4:757;n;4|11:1032|12:1033;4|11:762|12:1034;p;1|4:404|5:1035|6:776|10:1036|7:998|4:404|4:404;n;4|11:1032|12:1037;4|11:1032|12:1038;4|11:411|12:1039;4|11:411|12:1040;p;1|4:404|5:1041|6:765|10:1042|7:767|16:748|8:8|17:748|18:748|9:8|4:404|4:404;n;4|11:762|12:1043;4|11:768|12:1044;p;1|4:4|5:1045|6:970|10:1046|7:29|4:4|4:4;n;3|11:994|12:1047;p;1|4:757|5:1048|6:776|10:1049|7:778|8:748|9:8|4:757|4:757;1|4:757|5:1050|6:759|10:1051|7:761|8:8|18:748|9:8|4:757|4:757;1|4:4|5:1052|6:776|10:1053|7:993|4:4|4:4;n;3|11:994|12:1054;p;6|4:404|5:1055|6:960|10:1056'
  272. ..'|7:962|8:748|9:8|4:404|4:404;n;4|11:965|12:1057;p;1|4:404|5:1058|6:765|10:1059|7:767|16:748|8:8|17:748|18:748|9:8|4:404|4:404;n;4|11:762|12:1060;4|11:768|12:1044;4|11:1001|12:1061;p;1|4:404|5:1062|6:776|10:1063|7:998|4:404|4:404;n;4|11:411|12:1064;4|11:1032|12:1065;p;1|4:404|5:1066|6:765|10:1067|7:767|16:748|8:8|17:748|18:748|9:8|4:404|4:404;n;4|11:762|12:1068;4|11:1032|12:1069;p;1|4:757|5:1070|6:776|10:1071|7:778|8:748|9:8|4:757|4:757;1|4:757|5:1072|6:759|10:1073|7:761|8:8|18:748|9:8|4:757|4:757;n;4|11:1032|12:1074;p;1|4:757|5:1075|6:776|10:1076|7:778|8:748|9:8|4:757|4:757;n;4|11:411|12:1077;4|11:409|12:1078;p;1|4:757|5:1079|6:759|10:1080|7:761|8:8|18:748|9:8|4:757|4:757;n;4|11:1001|12:1081;4|11:768|12:1082;p;1|4:4|5:1083|6:960|10:1084|7:1085|8:748|9:8|4:4|4:4;n;7|19:748;p;1|4:404|5:1'
  273. ..'086|6:776|10:1087|7:998|4:404|4:404;n;4|11:411|12:1088;4|11:1001|12:1089;p;1|4:1090|15:3|5:1091|6:1016|10:1092|7:1093|8:8|9:8|4:1090|4:1090;n;4|11:409|12:1094;4|11:409|12:1095;4|11:409|12:1096;4|11:409|12:1097;4|11:409|12:1098;4|11:409|12:1099;p;1|4:404|5:1100|6:765|10:1101|7:767|16:748|8:8|17:748|18:748|9:8|4:404|4:404;n;4|11:768|12:1102;p;1|4:757|5:1103|6:759|10:1104|7:761|8:8|18:748|9:8|4:757|4:757;n;4|11:768|12:1105;4|11:1032|12:1106;4|11:762|12:1107;p;1|4:404|5:1108|6:745|10:1109|7:747|16:748|8:8|17:748|18:748|9:8|4:404|4:404;n;4|11:749|12:1110;p;1|4:757|5:1111|6:776|10:1112|7:778|8:748|9:8|4:757|4:757;1|4:404|5:1113|6:765|10:1114|7:767|16:748|8:8|17:748|18:748|9:8|4:404|4:404;1|4:757|5:1115|6:776|10:1116|7:778|8:748|9:8|4:757|4:757;n;4|11:409|12:1117;4|11:411|12:1118;p;p;1|3:3|4:'
  274. ..'4|5:1119|6:574|10:583|7:1120|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1121|6:679|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1122|6:616|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1123|6:640|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1124|6:638|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1125|6:636|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1126|6:630|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1127|6:634|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1128|6:624|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1129|6:837|10:727|7:354|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1130|6:655|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1131|6:652|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1132|6:646|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1133|6:648|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1134|6:484|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1135|6:476|'
  275. ..'10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1136|6:482|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1137|6:478|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1138|6:480|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1139|6:586|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1140|6:600|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1141|6:604|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1142|6:602|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1143|6:592|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1144|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1145|6:594|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1146|6:596|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1147|6:606|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1148|6:608|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1149|6:590|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1150|6:598|10:727|7:305|8:8|9:8|4'
  276. ..':4|4:4;1|3:3|4:4|5:1151|6:947|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1152|6:949|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1153|6:943|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1154|6:932|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1155|6:419|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1156|6:940|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1157|6:936|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1158|6:934|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1159|6:938|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1160|6:951|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1161|6:687|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1162|6:669|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1163|6:945|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1164|6:953|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1165|6:677|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4'
  277. ..'|5:1166|6:681|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1167|6:683|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1168|6:673|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1169|6:675|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1170|6:671|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1171|6:685|7:354|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1172|6:689|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1173|6:691|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1174|6:693|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1175|6:705|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1176|6:697|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1177|6:695|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1178|6:701|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1179|6:699|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1180|6:713|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1181|6:707|10:427|7:'
  278. ..'305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1182|6:703|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1183|6:667|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1184|6:711|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1185|6:709|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1186|6:719|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1187|6:721|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1188|6:715|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1189|6:717|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1190|6:723|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1191|6:725|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1192|6:729|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1193|6:426|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1194|6:731|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1195|6:735|10:427|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1196|6:733|10:427|7:305|8:8|9:8|4:4|'
  279. ..'4:4;1|3:3|4:4|5:1197|6:737|10:427|7:738|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1198|6:406|10:740|7:741|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1199|6:1200|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1201|6:1200|7:1202|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1203|6:1204|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1205|6:1206|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1207|6:1208|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1209|6:1210|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1211|6:1212|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1213|6:1214|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1215|6:1216|7:292|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1217|6:1218|7:32|8:8|9:8|4:4|4:4;2;n;1|3:3|4:404|5:1219|7:1220|4:404|4:404;1|3:3|4:404|5:1221|7:1222|4:404|4:404;1|3:3|4:404|5:1223|7:407|4:404|4:404;1|3:3|4:404|5:1224|7:1225|4:404|4:404;1|3:3|4:404|5:1226|7:1227|4:404|4:404;1|3:3|4:404|5:1228|7:1229|4:404|4:404;1|3:'
  280. ..'3|4:404|5:1230|7:1231|4:404|4:404;1|3:3|4:404|5:1232|7:1233|4:404|4:404;1|3:3|4:404|5:1234|7:1235|4:404|4:404;1|3:3|4:404|5:1236|7:1237|4:404|4:404;1|3:3|4:404|5:1238|7:1239|4:404|4:404;1|3:3|4:404|5:1240|7:1241|4:404|4:404;p;1|3:3|4:1242|5:1243|6:419|7:1244|4:1242|4:1242;n;3|11:421|12:1245;3|11:421|12:1246;p;1|3:3|4:416|15:417|5:1247|6:419|7:420|4:416|4:416;1|3:3|4:416|15:417|5:1248|6:406|7:1249|4:416|4:416;n;3|11:423|12:1250;p;1|3:3|4:1242|5:1251|6:419|7:1252|4:1242|4:1242;n;3|11:411|12:1253;3|11:411|12:1254;3|11:411|12:1255;p;1|3:3|4:416|15:417|5:1256|6:406|7:1249|4:416|4:416;n;3|11:423|12:1257;p;2|1:1258;n;1|1:1259|3:3|4:1090|5:1260|7:1261|4:1090|4:1090;8|20:1262|21:1262;p;1|3:3|4:4|5:1263|6:1264|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1265|6:1266|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1267|6:126'
  281. ..'8|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1269|6:1270|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1271|6:1272|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1273|6:1274|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1275|6:1216|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1276|6:1277|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1278|6:1279|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1280|6:1281|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1282|6:1283|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1284|6:1285|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1286|6:1287|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1288|6:1289|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1290|6:1291|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1292|6:1293|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1294|6:1295|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1296|6:1297|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1298|6:1299|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1300|6:1301|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:13'
  282. ..'02|6:1303|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1304|6:1305|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1306|6:1307|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1308|6:1309|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1310|6:1311|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1312|6:554|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1313|6:571|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1314|6:569|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1315|6:557|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1316|6:559|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1317|6:562|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1318|6:565|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1319|6:515|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1320|6:511|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1321|6:521|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1322|6:513|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1323|6'
  283. ..':482|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1324|6:529|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1325|6:525|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1326|6:541|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1327|6:550|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1328|6:506|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1329|6:543|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1330|6:554|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1331|6:557|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1332|6:559|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1333|6:565|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1334|6:562|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1335|6:571|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1336|6:569|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1337|6:550|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1338|6:515|10:727|7:30'
  284. ..'5|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1339|6:521|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1340|6:511|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1341|6:529|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1342|6:525|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1343|6:513|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1344|6:506|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1345|6:543|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1346|6:541|10:727|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1347|6:1348|7:1349|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1350|6:1348|7:1349|8:8|9:8|4:4|4:4;2;n;1|3:3|4:1351|5:1352|6:1353|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1356|6:1357|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1358|6:1359|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1360|6:1361|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:'
  285. ..'1351|5:1362|6:1363|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1364|6:1365|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1366|6:1367|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1368|6:1369|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1370|6:1371|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1372|6:1373|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1374|6:1375|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1376|6:406|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1377|6:1378|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1379|6:1380|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1381|6:1380|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1382|6:1353|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1383|6:1378|10:1354|7:'
  286. ..'1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1384|6:1357|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1385|6:1359|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1386|6:1361|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1387|6:1363|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1388|6:1365|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1389|6:1367|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1390|6:1369|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1391|6:1371|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1392|6:1373|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1393|6:1375|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1394|6:406|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1395|6:1396|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|'
  287. ..'3:3|4:1351|5:1397|6:1396|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1398|6:1399|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1400|6:1399|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1401|6:1402|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1403|6:1402|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1404|6:1405|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1406|6:1407|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1408|6:1405|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1409|6:1407|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1410|6:1411|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1412|6:1413|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1414|6:1415|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1416|6:1417|10:'
  288. ..'1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1418|6:1411|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1419|6:1413|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1420|6:1415|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1421|6:1417|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1422|6:1423|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1424|6:1425|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1426|6:1423|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1427|6:1425|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1428|6:1429|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1430|6:1431|10:1354|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1432|6:1373|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1434|6:1375|10:1433|7:1355|8:8|9:8|4:1351|4'
  289. ..':1351;1|3:3|4:1351|5:1435|6:406|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1436|6:1373|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1437|6:1375|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1438|6:406|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1439|6:1367|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1440|6:1369|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1441|6:1371|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1442|6:1367|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1443|6:1369|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1444|6:1371|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1445|6:1365|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1446|6:1365|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1447|6:13'
  290. ..'61|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1448|6:1361|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1449|6:1353|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1450|6:1359|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1451|6:1363|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1452|6:1353|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1453|6:1359|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1454|6:1363|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1455|6:1378|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1456|6:1357|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1457|6:1378|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1458|6:1357|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1459|6:1396|10:1433|7:1355|8:8|9:8|4:'
  291. ..'1351|4:1351;1|3:3|4:1351|5:1460|6:1380|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1461|6:1396|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1462|6:1380|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1463|6:1399|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1464|6:1399|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1465|6:1413|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1466|6:1402|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1467|6:1415|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1468|6:1405|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1469|6:1407|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1470|6:1417|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1471|6:1413|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1'
  292. ..'472|6:1402|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1473|6:1415|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1474|6:1405|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1475|6:1407|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1476|6:1417|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1477|6:1423|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1478|6:1411|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1479|6:1425|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1480|6:1423|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1481|6:1411|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1482|6:1425|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1483|6:1431|10:1433|7:1355|8:8|9:8|4:1351|4:1351;1|3:3|4:1351|5:1484|6:1431|10:1433|7:1355|8:'
  293. ..'8|9:8|4:1351|4:1351;p;2;n;1|3:3|4:4|5:1485|6:97|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1487|6:92|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1488|6:106|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1489|6:100|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1490|6:103|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1491|6:92|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1492|6:106|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1493|6:108|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1494|6:103|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1495|6:116|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1496|6:97|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1497|6:100|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1498|6:108|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1499|6:114|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1500|6:114|10:1486|7'
  294. ..':305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1501|6:116|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1502|6:112|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1503|6:112|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1504|6:121|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1505|6:121|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1506|6:124|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1507|6:124|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1508|6:128|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1509|6:133|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1510|6:133|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1511|6:131|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1512|6:128|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1513|6:131|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1514|6:137|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1515|6:139|10:1486|7:'
  295. ..'305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1516|6:137|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1517|6:139|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1518|6:737|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1519|6:737|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1520|6:31|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1521|6:1522|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1523|6:31|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1524|6:1522|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1525|6:1526|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1527|6:1528|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1529|6:1526|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1530|6:1531|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1532|6:1528|10:1486|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1533|6:1531|10:1486|7:305|8:8|9:8|4:4|4:4;p;1|3:3|4:4|5:1534|6:1535|7:'
  296. ..'7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1536|6:1200|7:1537|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1538|6:1539|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1540|6:1541|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1542|6:1543|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1544|6:1545|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1546|6:1547|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1548|6:1549|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1550|6:1551|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1552|6:1553|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1554|6:1555|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1556|6:574|10:727|7:1557|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1558|6:574|10:727|7:1557|8:8|9:8|4:4|4:4;2;n;1|3:3|4:4|5:1559|6:199|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1561|6:207|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1562|6:179|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1563|6:181|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1'
  297. ..'564|6:183|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1565|6:187|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1566|6:185|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1567|6:219|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1568|6:217|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1569|6:213|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1570|6:209|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1571|6:173|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1572|6:207|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1573|6:199|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1574|6:177|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1575|6:191|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1576|6:189|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1577|6:310|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1578|6:173|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:15'
  298. ..'79|6:169|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1580|6:185|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1581|6:179|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1582|6:189|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1583|6:191|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1584|6:310|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1585|6:175|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1586|6:171|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1587|6:169|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1588|6:177|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1589|6:175|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1590|6:171|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1591|6:183|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1592|6:181|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1593|6:187|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:159'
  299. ..'4|6:219|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1595|6:217|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1596|6:213|10:1560|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1597|6:209|10:1560|7:305|8:8|9:8|4:4|4:4;p;1|3:3|4:4|5:1598|6:1348|7:1349|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1599|6:1348|7:1349|8:8|9:8|4:4|4:4;2;n;2;n;1|3:3|4:4|5:1600|6:598|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1602|6:592|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1603|6:608|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1604|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1605|6:594|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1606|6:604|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1607|6:586|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1608|6:590|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1609|6:602|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1610|6:600|1'
  300. ..'0:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1611|6:606|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1612|6:624|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1613|6:590|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1614|6:604|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1615|6:616|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1616|6:594|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1617|6:608|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1618|6:598|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1619|6:616|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1620|6:624|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1621|6:596|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1622|6:606|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1623|6:596|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1624|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1625|6:592|10:1601|'
  301. ..'7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1626|6:586|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1627|6:602|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1628|6:600|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1629|6:638|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1630|6:626|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1631|6:626|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1632|6:634|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1633|6:630|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1634|6:634|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1635|6:630|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1636|6:636|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1637|6:636|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1638|6:640|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1639|6:638|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1640|6:646|10:1601|7'
  302. ..':305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1641|6:648|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1642|6:646|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1643|6:648|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1644|6:640|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1645|6:652|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1646|6:652|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1647|6:655|10:1601|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1648|6:655|10:1601|7:305|8:8|9:8|4:4|4:4;p;2;n;1|3:3|4:4|5:1649|6:837|10:1650|7:1349|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1651|6:837|10:1650|7:1349|8:8|9:8|4:4|4:4;p;1|3:3|4:4|5:1652|6:837|10:1653|7:1349|8:8|9:8|4:4|4:4;2;n;1|3:3|4:4|5:1654|6:476|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1656|6:478|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1657|6:480|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1658|6'
  303. ..':482|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1659|6:511|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1660|6:476|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1661|6:521|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1662|6:482|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1663|6:521|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1664|6:478|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1665|6:511|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1666|6:480|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1667|6:513|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1668|6:513|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1669|6:515|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1670|6:515|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1671|6:525|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1672|6:525|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1673|6:'
  304. ..'529|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1674|6:506|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1675|6:529|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1676|6:506|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1677|6:543|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1678|6:543|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1679|6:484|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1680|6:484|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1681|6:541|10:1655|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1682|6:541|10:1655|7:305|8:8|9:8|4:4|4:4;p;1|3:3|4:4|5:1683|6:837|10:1653|7:1349|8:8|9:8|4:4|4:4;2;n;1|3:3|4:4|5:1684|6:554|10:1685|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1686|6:557|10:1685|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1687|6:559|10:1685|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1688|6:550|10:1685|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1'
  305. ..'689|6:550|10:1685|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1690|6:557|10:1685|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1691|6:554|10:1685|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1692|6:562|10:1685|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1693|6:559|10:1685|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1694|6:562|10:1685|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1695|6:565|10:1685|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1696|6:565|10:1685|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1697|6:569|10:1685|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1698|6:569|10:1685|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1699|6:571|10:1685|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1700|6:571|10:1685|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1701|6:574|10:1685|7:305|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1702|6:574|10:1685|7:305|8:8|9:8|4:4|4:4;p;p;1|3:3|4:1351|5:1703|6:406|10:1704|7:1705|8:8|9:8|4:1351|4:1351;'
  306. ..'1|3:3|4:4|5:1706|6:1707|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1709|6:1710|10:1708|7:1711|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1712|6:574|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1713|6:1714|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1715|6:581|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1716|6:577|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1717|6:1718|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1719|6:1720|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1721|6:1714|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1722|6:1707|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1723|6:1720|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1724|6:581|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1725|6:577|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1726|6:574|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1727|6:1718|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3'
  307. ..'|4:4|5:1728|6:1710|10:1708|7:1711|8:8|9:8|4:4|4:4;1|3:3|4:1351|5:1729|6:406|10:1704|7:1705|8:8|9:8|4:1351|4:1351;1|3:3|4:4|5:1730|6:1731|10:1708|7:1732|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1733|6:1731|10:1708|7:1732|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1734|6:1735|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1736|6:1737|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1738|6:1739|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1740|6:1741|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1742|6:1743|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1744|6:1745|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1746|6:1747|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1748|6:1737|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1749|6:1739|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1750|6:1751|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1752|6:1753|10:1708|7:32|8:8|9:'
  308. ..'8|4:4|4:4;1|3:3|4:4|5:1754|6:1741|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1755|6:1745|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1756|6:1757|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1758|6:1759|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1760|6:1759|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1761|6:1743|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1762|6:1763|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1764|6:1751|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1765|6:1766|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1767|6:1747|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1768|6:1757|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1769|6:1735|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1770|6:1763|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1771|6:1753|10:1708|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1772|6:1766|10:1708|7:32|8:8|9:8'
  309. ..'|4:4|4:4;2;n;1|3:3|4:4|5:1773|6:1774|10:1775|7:1732|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1776|6:1777|10:1778|7:1711|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1779|6:1780|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1782|6:737|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1783|6:1784|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1785|6:1786|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1787|6:1788|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1789|6:1790|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1791|6:1792|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1793|6:1788|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1794|6:1780|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1795|6:1784|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1796|6:1786|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1797|6:1790|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1798|6:1792|10:1781|7:32|8'
  310. ..':8|9:8|4:4|4:4;1|3:3|4:4|5:1799|6:737|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1800|6:1777|10:1778|7:1349|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1801|6:1774|10:1775|7:1732|8:8|9:8|4:4|4:4;2;n;1|3:3|4:4|5:1802|6:1803|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1804|6:1805|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1806|6:1807|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1808|6:1809|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1810|6:1811|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1812|6:1813|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1814|6:1815|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1816|6:1817|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1818|6:1819|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1820|6:1821|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1822|6:1823|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1824|6:1825|10:1781|'
  311. ..'7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1826|6:1827|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1828|6:1811|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1829|6:1819|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1830|6:1827|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1831|6:1817|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1832|6:1809|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1833|6:1821|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1834|6:1803|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1835|6:1807|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1836|6:1805|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1837|6:1813|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1838|6:1815|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1839|6:1823|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1840|6:1825|10:1781|7:32|8:8|9:8|4:4|4:4;p;p;2;n;1|3:3|4:4|5:1841|6:1842|1'
  312. ..'0:1843|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1844|6:1845|10:1843|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1846|6:1847|10:1843|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1848|6:1849|10:1843|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1850|6:1851|10:1843|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1852|6:1853|10:1843|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1854|6:1855|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1857|6:1858|10:1856|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1859|6:1860|10:1843|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1861|6:1862|10:1856|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1863|6:1864|10:1856|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1865|6:1866|10:1867|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1868|6:1869|10:1843|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1870|6:1871|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1872|6:1873|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1874|6:1875|10:1843|7:7|'
  313. ..'8:8|9:8|4:4|4:4;1|3:3|4:4|5:1876|6:1877|10:1843|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1878|6:1879|10:1843|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1880|6:1881|10:1843|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1882|6:1883|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1884|6:1885|10:1856|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1886|6:1887|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1888|6:1879|10:1843|7:292|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1889|6:1890|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1891|6:1892|10:1867|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1893|6:1894|10:1856|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1895|6:1896|10:1867|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1897|6:1898|10:1867|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1899|6:1900|10:1867|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1901|6:1902|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1903|6:1904|10:1856|7:32|8:8|9:'
  314. ..'8|4:4|4:4;1|3:3|4:4|5:1905|6:1906|10:1856|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1907|6:1908|10:1856|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1909|6:1910|10:1856|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1911|6:1912|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1913|6:1914|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1915|6:1916|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1917|6:1918|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1919|6:1920|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1921|6:1922|10:1856|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1923|6:1924|10:1856|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1925|6:1926|10:1856|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1927|6:1928|10:1856|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1929|6:1930|10:1856|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1931|6:1932|10:1856|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1933|6:1934|10:1856|7:7|8:8|9:8|4:4|4:4;1'
  315. ..'|3:3|4:4|5:1935|6:1936|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1937|6:1938|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1939|6:1940|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1941|6:1942|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1943|6:1944|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1945|6:1930|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1946|6:1930|10:1856|7:443|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1947|6:1948|10:1867|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1949|6:1950|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1951|6:1952|10:1856|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1953|6:1954|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1955|6:1956|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1957|6:1958|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1959|6:1960|10:1856|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1961|6:1962|10:1856|7:29|8:8|9:8|4:4|4:4;1|3'
  316. ..':3|4:4|5:1963|6:1964|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1965|6:1966|10:1856|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1967|6:1968|10:1856|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1969|6:1970|10:1856|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1971|6:1972|10:1856|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1973|6:1974|10:1975|7:292|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1976|6:1977|10:1867|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1978|6:1979|10:1867|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1980|6:1981|10:1867|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1982|6:1983|10:1867|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1984|6:1985|10:1867|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1986|6:1987|10:1867|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1988|6:1989|10:1867|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1990|6:26|10:1867|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1991|6:1992|10:1867|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:'
  317. ..'1993|6:1994|10:1856|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1995|6:1996|10:1856|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1997|6:1998|10:1975|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:1999|6:2000|10:1975|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2001|6:2002|10:1975|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2003|6:2004|10:1975|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2005|6:2006|10:1975|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2007|6:2008|10:1975|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2009|6:1974|10:1975|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2010|6:2011|10:1975|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2012|6:2013|10:1975|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2014|6:2015|10:1975|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2016|6:2017|10:1975|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2018|6:2019|10:1975|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2020|6:2021|10:1975|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2022|6:2'
  318. ..'023|10:1975|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2024|6:2025|10:1975|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2026|6:2027|10:1975|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2028|6:2029|10:1975|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2030|6:2031|10:1975|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2032|6:2033|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2034|6:2035|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2036|6:2037|10:1975|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2038|6:2039|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2040|6:2041|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2042|6:2043|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2044|6:2045|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2046|6:2047|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2048|6:2049|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2050|6:2051|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2052|6:2053|10'
  319. ..':1781|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2054|6:2055|10:1781|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2056|6:2057|10:1781|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2058|6:2059|10:1781|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2060|6:2061|10:1781|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2062|6:2063|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2064|6:2065|10:1781|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2066|6:2067|10:1781|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2068|6:2069|10:1781|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2070|6:2071|10:1867|7:7|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2072|6:2073|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2074|6:2075|10:1781|7:32|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2076|6:26|10:1867|7:1202|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2077|6:26|10:1867|7:1537|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2078|6:2079|10:1781|7:29|8:8|9:8|4:4|4:4;1|3:3|4:4|5:2080|6:2081|10:1781|7:32'
  320. ..'|8:8|9:8|4:4|4:4;p;p;')
  321. for _,Object in pairs(Objects) do
  322. Object.Parent = script and script.Parent==workspace and script or workspace
  323. end
  324. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement