Advertisement
lafur

Untitled

May 7th, 2020
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 296.13 KB | None | 0 0
  1. --___!!IMPORTANT!!___
  2. --Your model was too big, and the plugin couldn't put it all in 1 script.
  3. --Concatencate all scripts following volumes order.
  4.  
  5. -- Converted using Mokiros's Model to Script plugin
  6. -- Converted string size: 284659
  7. local genv={}
  8. local Scripts = {
  9. function() local box = script.Parent
  10.  
  11.  
  12. local debounce = false
  13.  
  14.  
  15. local everything = {}
  16. local names = {}
  17.  
  18. local children = game.Workspace:children()
  19. for i=1,#children do
  20. if (children[i].Name == "CorckScrewCart") then -- Change "MyObject" to the name of what you want to be regenerated P.S there can't be spaces in the name or it won't work
  21. table.insert(everything, children[i]:clone())
  22. table.insert(names, children[i].Name)
  23. end
  24. end
  25.  
  26.  
  27. function regen()
  28. for i=1,#everything do
  29. game.Workspace:findFirstChild(names[i]):remove()
  30. new_thing = everything[i]:clone()
  31. new_thing.Parent = game.Workspace
  32. new_thing:makeJoints()
  33. end
  34. end
  35.  
  36. function onTouched(hit)
  37. local humanoid = hit.Parent:findFirstChild("Humanoid")
  38. if humanoid~=nil and debounce == false then
  39. debounce = true
  40.  
  41. script.Parent.BrickColor = BrickColor.new(21)
  42.  
  43. regen()
  44. wait(240) -- change "3" to how ever long you want it to take before you can use it again like "5" makes it wait 5 seconds before you can use it again but don't put in the ""s
  45.  
  46.  
  47. script.Parent.BrickColor = BrickColor.new(28)
  48.  
  49.  
  50. debounce = false
  51. end
  52. end
  53.  
  54.  
  55. script.Parent.Touched:connect(onTouched)
  56.  
  57. -- Script Enhanced by Seth1054
  58. end;
  59. function() --Jacob6441443--
  60.  
  61. function DeVelocitize()
  62.  
  63. local Engine = script.Parent
  64. local Front = Engine.Parent.Front
  65. local Bottom = Engine.Parent.Bottom
  66.  
  67. Engine.Velocity = Vector3.new(0, 0, 0)
  68. Engine.RotVelocity = Vector3.new(0, 0, 0)
  69.  
  70. Front.Velocity = Vector3.new(0, 0, 0)
  71. Front.RotVelocity = Vector3.new(0, 0, 0)
  72.  
  73. Bottom.Velocity = Vector3.new(0, 0, 0)
  74. Bottom.RotVelocity = Vector3.new(0, 0, 0)
  75.  
  76. local c = Engine.Parent.BodyKit:GetChildren()
  77. for i = 1, # c do
  78. if c[i].className == "Part" then
  79. c[i].Velocity = Vector3.new(0, 0, 0)
  80. c[i].RotVelocity = Vector3.new(0, 0, 0)
  81. end
  82. end
  83. end
  84.  
  85.  
  86.  
  87. function onTouched(hit)
  88.  
  89. local Go = script.Parent.Going
  90. local Cart = script.Parent.Parent
  91. ------------------------------------------
  92. local R1 = Cart["Restrant #1"]
  93. local R2 = Cart["Restrant #2"]
  94. local R3 = Cart["Restrant #3"]
  95. local R4 = Cart["Restrant #4"]
  96. ------------------------------------------
  97.  
  98. if hit.Name == "Transport" then
  99.  
  100. Go.Value = "Going"
  101. R1.Seat.Script.On.Value = 1
  102. R2.Seat.Script.On.Value = 1
  103. R3.Seat.Script.On.Value = 1
  104. R4.Seat.Script.On.Value = 1
  105.  
  106. elseif hit.Name == "Stop" and Go.Value == "Going" then
  107. script.Parent.Anchored = true
  108. wait(2)
  109.  
  110. R1.Seat.Script.On.Value = 0
  111. R2.Seat.Script.On.Value = 0
  112. R3.Seat.Script.On.Value = 0
  113. R4.Seat.Script.On.Value = 0
  114.  
  115. Go.Value = "Waiting"
  116.  
  117. DeVelocitize()
  118.  
  119. end
  120. end
  121.  
  122. script.Parent.Touched:connect(onTouched)
  123.  
  124. end;
  125. function() --Jacob6441443--
  126.  
  127. local Up = script.Parent.Parent.Up
  128. local Down = script.Parent.Parent.Down
  129.  
  130. function LetOut()
  131.  
  132. local SeatJoint = script.Parent:findFirstChild("SeatWeld")
  133.  
  134. if SeatJoint ~= nil then
  135. SeatJoint:remove()
  136. print("Joint Broken")
  137. end
  138. end
  139.  
  140. function down()
  141.  
  142. local D = Down:GetChildren()
  143. local On = script.On
  144. if On.Value ~= 1 then return end
  145.  
  146. for i = 1, # D do
  147. D[i].Transparency = 0
  148. end
  149.  
  150. local U = Up:GetChildren()
  151. for i = 1, # U do
  152. U[i].Transparency = 1
  153. end
  154. end
  155.  
  156.  
  157. function up()
  158.  
  159. local D = Down:GetChildren()
  160. local On = script.On
  161. if On.Value ~= 0 then return end
  162.  
  163. for i = 1, # D do
  164. D[i].Transparency = 1
  165. end
  166.  
  167. local U = Up:GetChildren()
  168. for i = 1, # U do
  169. U[i].Transparency = 0
  170. end
  171. LetOut()
  172. end
  173.  
  174.  
  175. function onTouched(hit)
  176.  
  177. local h = hit.Parent:findFirstChild("Humanoid")
  178. local On = script.On
  179.  
  180. if h ~= nil and On.Value == 0 then
  181. On.Value = 1
  182. wait(0.2)
  183. down()
  184. end
  185. end
  186.  
  187. script.Parent.Touched:connect(onTouched)
  188.  
  189. script.On.Changed:connect(up)
  190.  
  191. script.On.Changed:connect(down) end;
  192. function() --Jacob6441443--
  193.  
  194. local Up = script.Parent.Parent.Up
  195. local Down = script.Parent.Parent.Down
  196.  
  197. function LetOut()
  198.  
  199. local SeatJoint = script.Parent:findFirstChild("SeatWeld")
  200.  
  201. if SeatJoint ~= nil then
  202. SeatJoint:remove()
  203. print("Joint Broken")
  204. end
  205. end
  206.  
  207. function down()
  208.  
  209. local D = Down:GetChildren()
  210. local On = script.On
  211. if On.Value ~= 1 then return end
  212.  
  213. for i = 1, # D do
  214. D[i].Transparency = 0
  215. end
  216.  
  217. local U = Up:GetChildren()
  218. for i = 1, # U do
  219. U[i].Transparency = 1
  220. end
  221. end
  222.  
  223.  
  224. function up()
  225.  
  226. local D = Down:GetChildren()
  227. local On = script.On
  228. if On.Value ~= 0 then return end
  229.  
  230. for i = 1, # D do
  231. D[i].Transparency = 1
  232. end
  233.  
  234. local U = Up:GetChildren()
  235. for i = 1, # U do
  236. U[i].Transparency = 0
  237. end
  238. LetOut()
  239. end
  240.  
  241.  
  242. function onTouched(hit)
  243.  
  244. local h = hit.Parent:findFirstChild("Humanoid")
  245. local On = script.On
  246.  
  247. if h ~= nil and On.Value == 0 then
  248. On.Value = 1
  249. wait(0.2)
  250. down()
  251. end
  252. end
  253.  
  254. script.Parent.Touched:connect(onTouched)
  255.  
  256. script.On.Changed:connect(up)
  257.  
  258. script.On.Changed:connect(down) end;
  259. function() --Jacob6441443--
  260.  
  261. local Up = script.Parent.Parent.Up
  262. local Down = script.Parent.Parent.Down
  263.  
  264. function LetOut()
  265.  
  266. local SeatJoint = script.Parent:findFirstChild("SeatWeld")
  267.  
  268. if SeatJoint ~= nil then
  269. SeatJoint:remove()
  270. print("Joint Broken")
  271. end
  272. end
  273.  
  274. function down()
  275.  
  276. local D = Down:GetChildren()
  277. local On = script.On
  278. if On.Value ~= 1 then return end
  279.  
  280. for i = 1, # D do
  281. D[i].Transparency = 0
  282. end
  283.  
  284. local U = Up:GetChildren()
  285. for i = 1, # U do
  286. U[i].Transparency = 1
  287. end
  288. end
  289.  
  290.  
  291. function up()
  292.  
  293. local D = Down:GetChildren()
  294. local On = script.On
  295. if On.Value ~= 0 then return end
  296.  
  297. for i = 1, # D do
  298. D[i].Transparency = 1
  299. end
  300.  
  301. local U = Up:GetChildren()
  302. for i = 1, # U do
  303. U[i].Transparency = 0
  304. end
  305. LetOut()
  306. end
  307.  
  308.  
  309. function onTouched(hit)
  310.  
  311. local h = hit.Parent:findFirstChild("Humanoid")
  312. local On = script.On
  313.  
  314. if h ~= nil and On.Value == 0 then
  315. On.Value = 1
  316. wait(0.2)
  317. down()
  318. end
  319. end
  320.  
  321. script.Parent.Touched:connect(onTouched)
  322.  
  323. script.On.Changed:connect(up)
  324.  
  325. script.On.Changed:connect(down) end;
  326. function() --Jacob6441443--
  327.  
  328. local Up = script.Parent.Parent.Up
  329. local Down = script.Parent.Parent.Down
  330.  
  331. function LetOut()
  332.  
  333. local SeatJoint = script.Parent:findFirstChild("SeatWeld")
  334.  
  335. if SeatJoint ~= nil then
  336. SeatJoint:remove()
  337. print("Joint Broken")
  338. end
  339. end
  340.  
  341. function down()
  342.  
  343. local D = Down:GetChildren()
  344. local On = script.On
  345. if On.Value ~= 1 then return end
  346.  
  347. for i = 1, # D do
  348. D[i].Transparency = 0
  349. end
  350.  
  351. local U = Up:GetChildren()
  352. for i = 1, # U do
  353. U[i].Transparency = 1
  354. end
  355. end
  356.  
  357.  
  358. function up()
  359.  
  360. local D = Down:GetChildren()
  361. local On = script.On
  362. if On.Value ~= 0 then return end
  363.  
  364. for i = 1, # D do
  365. D[i].Transparency = 1
  366. end
  367.  
  368. local U = Up:GetChildren()
  369. for i = 1, # U do
  370. U[i].Transparency = 0
  371. end
  372. LetOut()
  373. end
  374.  
  375.  
  376. function onTouched(hit)
  377.  
  378. local h = hit.Parent:findFirstChild("Humanoid")
  379. local On = script.On
  380.  
  381. if h ~= nil and On.Value == 0 then
  382. On.Value = 1
  383. wait(0.2)
  384. down()
  385. end
  386. end
  387.  
  388. script.Parent.Touched:connect(onTouched)
  389.  
  390. script.On.Changed:connect(up)
  391.  
  392. script.On.Changed:connect(down) end;
  393. function() function onClicked()
  394.  
  395. script.Parent.BrickColor = BrickColor.new(23)
  396. wait(5)
  397. game.Workspace.CorckScrewCart.Engine.Anchored = false
  398. script.Parent.BrickColor = BrickColor.new(37)
  399. end
  400.  
  401. script.Parent.Click.MouseClick:connect(onClicked)
  402. end;
  403. function() local v = script.Parent:GetChildren()
  404. for i = 1, # v do
  405. if v[i].className == "Part" then
  406. v[i].Velocity = v[i].CFrame.lookVector * -200
  407. end
  408. end
  409. --end
  410. end;
  411. function() local v = script.Parent:GetChildren()
  412. for i = 1, # v do
  413. if v[i].className == "Part" then
  414. v[i].Velocity = v[i].CFrame.lookVector * 150
  415. end
  416. end
  417. --end
  418. end;
  419. function() local v = script.Parent:GetChildren()
  420. for i = 1, # v do
  421. if v[i].className == "Part" then
  422. v[i].Velocity = v[i].CFrame.lookVector * -180
  423. end
  424. end
  425. --end
  426. end;
  427. function() local v = script.Parent:GetChildren()
  428. for i = 1, # v do
  429. if v[i].className == "Part" then
  430. v[i].Velocity = v[i].CFrame.lookVector * 100
  431. end
  432. end
  433. --end
  434. end;
  435. function() local Ex = script.Parent:findFirstChild("Exit")
  436. local En = script.Parent:findFirstChild("Enter")
  437. local Se = script.Parent:findFirstChild("SideExit")
  438. local Es = script.Parent:findFirstChild("SideEnter")
  439.  
  440.  
  441. function R1()
  442.  
  443. if Ex == nil then return end
  444.  
  445. local C = Ex:GetChildren()
  446. for i = 1, # C do
  447.  
  448. if C[i].className == "Part" then
  449. C[i].Velocity = C[i].CFrame.lookVector * 100
  450. end
  451. end
  452. end
  453.  
  454. function R2()
  455. if Se == nil then return end
  456.  
  457. local c = Se:GetChildren()
  458. for i = 1, # c do
  459.  
  460. if c[i].className == "Part" then
  461. c[i].Velocity = c[i].CFrame.lookVector * 100
  462. end
  463. end
  464. end
  465.  
  466. function Vel1()
  467. if En == nil then return end
  468.  
  469. local V = En:GetChildren()
  470. for i = 1, # V do
  471.  
  472. if V[i].className == "Part" then
  473. V[i].Velocity = V[i].CFrame.lookVector * -100
  474. end
  475. end
  476. end
  477.  
  478. function Vel2()
  479. if Es == nil then return end
  480.  
  481. local v = Es:GetChildren()
  482. for i = 1, # v do
  483.  
  484. if v[i].className == "Part" then
  485. v[i].Velocity = v[i].CFrame.lookVector * -100
  486. end
  487. end
  488. end
  489.  
  490. ----------------
  491. R1()
  492. R2()
  493. Vel1()
  494. Vel2()
  495. ----------------
  496. end;
  497. function() local Ex = script.Parent:findFirstChild("Exit")
  498. local En = script.Parent:findFirstChild("Enter")
  499. local Se = script.Parent:findFirstChild("SideExit")
  500. local Es = script.Parent:findFirstChild("SideEnter")
  501.  
  502.  
  503. function R1()
  504.  
  505. if Ex == nil then return end
  506.  
  507. local C = Ex:GetChildren()
  508. for i = 1, # C do
  509.  
  510. if C[i].className == "Part" then
  511. C[i].Velocity = C[i].CFrame.lookVector * 100
  512. end
  513. end
  514. end
  515.  
  516. function R2()
  517. if Se == nil then return end
  518.  
  519. local c = Se:GetChildren()
  520. for i = 1, # c do
  521.  
  522. if c[i].className == "Part" then
  523. c[i].Velocity = c[i].CFrame.lookVector * 100
  524. end
  525. end
  526. end
  527.  
  528. function Vel1()
  529. if En == nil then return end
  530.  
  531. local V = En:GetChildren()
  532. for i = 1, # V do
  533.  
  534. if V[i].className == "Part" then
  535. V[i].Velocity = V[i].CFrame.lookVector * -100
  536. end
  537. end
  538. end
  539.  
  540. function Vel2()
  541. if Es == nil then return end
  542.  
  543. local v = Es:GetChildren()
  544. for i = 1, # v do
  545.  
  546. if v[i].className == "Part" then
  547. v[i].Velocity = v[i].CFrame.lookVector * -100
  548. end
  549. end
  550. end
  551.  
  552. ----------------
  553. R1()
  554. R2()
  555. Vel1()
  556. Vel2()
  557. ----------------
  558. end;
  559. function() local v = script.Parent:GetChildren()
  560. for i = 1, # v do
  561. if v[i].className == "Part" then
  562. v[i].Velocity = v[i].CFrame.lookVector * 200
  563. v[i].CanCollide = true
  564. end
  565. end
  566. --end
  567. end;
  568. function() local v = script.Parent:GetChildren()
  569. for i = 1, # v do
  570. if v[i].className == "Part" then
  571. v[i].Velocity = v[i].CFrame.lookVector * -200
  572. end
  573. end
  574. --end
  575. end;
  576. function() local v = script.Parent:GetChildren()
  577. for i = 1, # v do
  578. if v[i].className == "Part" then
  579. v[i].Velocity = v[i].CFrame.lookVector * 200
  580. end
  581. end
  582. --end
  583. end;
  584. function() local v = script.Parent:GetChildren()
  585. for i = 1, # v do
  586. if v[i].className == "Part" then
  587. v[i].Velocity = v[i].CFrame.lookVector * 200
  588. end
  589. end
  590. --end
  591. end;
  592. function() local v = script.Parent:GetChildren()
  593. for i = 1, # v do
  594. if v[i].className == "Part" then
  595. v[i].Velocity = v[i].CFrame.lookVector * -200
  596. end
  597. end
  598. --end
  599. end;
  600. function() local v = script.Parent:GetChildren()
  601. for i = 1, # v do
  602. if v[i].className == "Part" then
  603. v[i].Velocity = v[i].CFrame.lookVector * -200
  604. end
  605. end
  606. --end
  607. end;
  608. function() local v = script.Parent:GetChildren()
  609. for i = 1, # v do
  610. if v[i].className == "Part" then
  611. v[i].Velocity = v[i].CFrame.lookVector * 150
  612. end
  613. end
  614. --end
  615. end;
  616. function() local v = script.Parent:GetChildren()
  617. for i = 1, # v do
  618. if v[i].className == "Part" then
  619. v[i].Velocity = v[i].CFrame.lookVector * -180
  620. end
  621. end
  622. --end
  623. end;
  624. function() local v = script.Parent:GetChildren()
  625. for i = 1, # v do
  626. if v[i].className == "Part" then
  627. v[i].Velocity = v[i].CFrame.lookVector * 100
  628. end
  629. end
  630. --end
  631. end;
  632. function() local v = script.Parent:GetChildren()
  633. for i = 1, # v do
  634. if v[i].className == "Part" then
  635. v[i].Velocity = v[i].CFrame.lookVector * -100
  636. end
  637. end
  638. --end
  639. end;
  640. function() print("Chain Lift Running")
  641. Debounce = false
  642.  
  643. function onTouched(hit)
  644.  
  645. local c = hit.Parent.Parent
  646. local h = hit.Parent:findFirstChild("Humanoid")
  647. if h == nil and c ~= nil and Debounce == false then
  648. local Sound = script.Parent.Sound:clone()
  649. if c:findFirstChild("Sound") == nil then
  650. Debounce = true
  651. Sound.Parent = c
  652. Sound.Looped = true
  653. Sound:Play()
  654. wait(3)
  655. Debounce = false
  656. end
  657. end
  658. end
  659. --end
  660.  
  661. script.Parent.Touched:connect(onTouched)
  662.  
  663. end;
  664. function() print("Sound Delete Running")
  665.  
  666. function onTouched(hit)
  667.  
  668. local S = hit.Parent.Parent:findFirstChild("Sound")
  669. local h = hit.Parent:findFirstChild("Humanoid")
  670. if h == nil and S ~= nil then
  671. S.Volume = 0
  672. S:remove()
  673. end
  674. end
  675.  
  676. script.Parent.Touched:connect(onTouched)
  677.  
  678. end;
  679. function() local v = script.Parent:GetChildren()
  680. for i = 1, # v do
  681. if v[i].className == "Part" then
  682. v[i].Velocity = v[i].CFrame.lookVector * -200
  683. end
  684. end
  685. --end
  686. end;
  687. function() local v = script.Parent:GetChildren()
  688. for i = 1, # v do
  689. if v[i].className == "Part" then
  690. v[i].Velocity = v[i].CFrame.lookVector * -200
  691. end
  692. end
  693. --end
  694. end;}local ActualScripts = {}
  695. function s(var)
  696. local func = table.remove(Scripts,1)
  697. setfenv(func,setmetatable({script=var,require=fake_require or require,global=genv},{
  698. __index = getfenv(func),
  699. }))
  700. table.insert(ActualScripts,coroutine.wrap(func))
  701. end
  702. Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  703. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  704. function(t,f)
  705. for a,b in pairs(t) do
  706. f(a,b)
  707. end
  708. end
  709. local Types = {
  710. Color3 = Color3.new,
  711. Vector3 = Vector3.new,
  712. Vector2 = Vector2.new,
  713. UDim = UDim.new,
  714. UDim2 = UDim2.new,
  715. CFrame = CFrame.new,
  716. Rect = Rect.new,
  717. NumberRange = NumberRange.new,
  718. BrickColor = BrickColor.new,
  719. PhysicalProperties = PhysicalProperties.new,
  720. NumberSequence = function(...)
  721. local a = {...}
  722. local t = {}
  723. repeat
  724. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  725. until #a==0
  726. return NumberSequence.new(t)
  727. end,
  728. ColorSequence = function(...)
  729. local a = {...}
  730. local t = {}
  731. repeat
  732. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  733. until #a==0
  734. return ColorSequence.new(t)
  735. end,
  736. number = tonumber,
  737. boolean = function(a)
  738. return a=="1"
  739. end
  740. }
  741. split = function(str,sep)
  742. if not str then return end
  743. local fields = {}
  744. local ConcatNext = false
  745. str:gsub(("([^%s]+)"):format(sep),function(c)
  746. if ConcatNext == true then
  747. fields[#fields] = fields[#fields]..sep..c
  748. ConcatNext = false
  749. else
  750. fields[#fields+1] = c
  751. end
  752. if c:sub(#c)=="\\" then
  753. c = fields[#fields]
  754. fields[#fields] = c:sub(1,#c-1)
  755. ConcatNext = true
  756. end
  757. end)
  758. return fields
  759. end
  760. RemoveAndSplit = function(t)
  761. return split(table_remove(t,1),comma)
  762. end
  763. t = split(str,";")
  764. props = RemoveAndSplit(t)
  765. classes = RemoveAndSplit(t)
  766. values = split(table_remove(t,1),'|')
  767. ICList = RemoveAndSplit(t)
  768. InstanceList = {}
  769. Model = inst"Model"
  770. CurPar = Model
  771. table_foreach(t,function(ct,c)
  772. if c=="n" or c=="p" then
  773. CurPar = c=="n" and LastIns or CurPar[parnt]
  774. else
  775. ct = split(c,"|")
  776. local class = classes[tonum(table_remove(ct,1))]
  777. if class=="UnionOperation" then
  778. LastIns = {UsePartColor="1"}
  779. else
  780. LastIns = inst(class)
  781. if LastIns:IsA"Script" then
  782. s(LastIns)
  783. elseif LastIns:IsA("ModuleScript") then
  784. ms(LastIns)
  785. end
  786. end
  787.  
  788. local function SetProperty(LastIns,p,str,s)
  789. s = Types[typeof(LastIns[p])]
  790. if p=="CustomPhysicalProperties" then
  791. s = PhysicalProperties.new
  792. end
  793. if s then
  794. LastIns[p] = s(unpack(split(str,comma)))
  795. else
  796. LastIns[p] = str
  797. end
  798. end
  799.  
  800. local UnionData
  801. table_foreach(ct,function(s,p,a,str)
  802. a = p:find":"
  803. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  804. if p=="UnionData" then
  805. UnionData = split(str," ")
  806. return
  807. end
  808. if class=="UnionOperation" then
  809. LastIns[p] = str
  810. return
  811. end
  812. SetProperty(LastIns,p,str)
  813. end)
  814.  
  815. if UnionData then
  816. local LI_Data = LastIns
  817. LastIns = DecodeUnion(UnionData)
  818. table_foreach(LI_Data,function(p,str)
  819. SetProperty(LastIns,p,str)
  820. end)
  821. end
  822. table.insert(InstanceList,LastIns)
  823. LastIns[parnt] = CurPar
  824. end
  825. end)
  826. table_remove(ICList,1)
  827. table_foreach(ICList,function(a,b)
  828. b = split(b,">")
  829. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  830. end)
  831.  
  832. return Model:GetChildren()
  833. end
  834.  
  835. local Objects = Decode('Name,PrimaryPart,Anchored,Color,Position,Orientation,Size,TopSurface,BottomSurface,Texture,Face,C0,C1,Part0,Part1,F0,F1,F2,F3,BackSurface,Scale,MeshType,CanCollide,CustomPhysicalProperties,Transparency,Shape,LeftSurface,RightSurface,MaxTorque,Volume,Looped,SoundId,FrontSurface,MaxActivationDistance,Velocity;Part,Model,Script,SpawnLocation,Decal,Weld,Glue,SpecialMesh,Snap,BodyGyro,StringValue,ObjectValue,Sound,Seat,NumberValue,ClickDetector;Part|ShockWave RollerCoaster|Regen|1|0.1568,0.498,0.2784|-56.7824,40.2004,52.2808|0,-180,0|2,2.4,2|0|RegenMaster|-27.3824,39.6004,-19.7193|6,1.2,6|2|rbxasset://Textures/SpawnLocation.png|1|CorckScrewCart|BodyKit|0.7686,0.1568,0.1098|-36.3824,42.3004,-1.2193|0,180,0|2,1.2,3|0,-0.6001,0,1,0,0,-0,-0,-1,0,1,0|5,-0.6001,2.5,-1,0,0,0,0,1,0,1,0|0,0.6,0,-1,-0,-0,0,0,1,0,1,0|0,-0.6001,-1,1,0,0,0,0,1,0,-1,0|0,-0.6001,-1,-1,0,0,0,0,1,0,1,0|1,0,0,0,0,1,0,1,0,-1,-0,-0|1.5,0.2,-0.5,0,0,-1,0,1,0,1,0,0|-38.8824,41.9004,-2.2193|0,-90,180|1,0.4,3|0,0.2,0,-1,-0,-0,0,0,1,0,1,0|2.5,-0.6001,3.5,0,-1,0,0,0,1,-1,-0,0|-0.5,0,0,-0,-0,-1,0,1,0,1,0,0|0,-0.2,-1,-1,0,0,0,-1,0,0,0,1|-41.3824,42.9004,0.7807|0,90,0|1,2.4,12|0,-0.6,0.5,-1,0,0,0,1,0,0,0,-1|-0.5,1,-2.5,0,-0,1,0,-1,0,1,-0,0|1,0.7999,0|1,1.2,0|4,1.2,0|4,0.7999,0|5,-0.6,0.5,-1,0,0,0,1,0,0,0,-1|0.5,0,0,0,0,1,0,1,0,-1,-0,-0|-5,-0.6,0.5,-1,0,0,0,1,0,0,0,-1|0,1.2,0,-1,-0,-0,0,0,1,0,1,0|0,-0.6,-0.5,1,0,0,0,0,1,0,-1,0|-0.5,1,2.5,0,-0,1,0,-1,0,1,-0,0|-4,0.7999,0|-4,1.2,0|-1,1.2,0|-1,0.7999,0|0,-0.6,-0.5,-1,0,0,0,0,1,0,1,0|0,-0.6,4.5,1,0,0,0,0,1,0,-1,0|0,-1.2001,0,1,0,0,-0,-0,-1,0,1,0|0,-0.6001,0.5,0,1,0,0,0,1,1,0,0|0,-0.6,4.5,-1,0,0,0,0,1,0,1,0|0,-0.6,-2.5,1,0,0,0,0,1,0,-1,0|-41.3824,42.3004,-1.2193|0,-0.6001,2.5,-1,0,0,0,0,1,0,1,0|-1,0,0,-0,-0,-1,0,1,0,1,0,0|-1.5,0.2,-0.5,0,0,1,0,1,0,-1,0,0|HeadRest|-36.8824,44.7004,0.7807|0,-90,0|1,1.2,1|1,3,1|-38.8824,44.7004,0.7807|1,1.2,3|6|0,1.1999,2.5,-1,0,0,0,0,-1,0,'
  836. ..'-1,0|0,0,-1.5,-1,-0,-0,0,1,0,-0,-0,-1|0,0,0.5,-1,0,0,0,1,0,0,0,-1|0,0.6,1,-1,0,0,0,0,-1,0,-1,0|0,0.6,-1,-1,0,0,0,0,-1,0,-1,0|0,0,1.5,1,0,0,0,1,0,0,0,1|-40.8824,44.7004,0.7807|-46.3824,42.3004,-1.2193|-5,-0.6001,2.5,-1,0,0,0,0,1,0,1,0|-43.8824,41.9004,-2.2193|-41.8824,44.7004,0.7807|0,0,0.5,1,0,0,0,1,0,0,0,1|0,0,-1.5,1,0,0,0,1,0,0,0,1|-43.8824,44.7004,0.7807|-45.8824,44.7004,0.7807|-36.8824,44.7004,4.7807|-38.8824,44.7004,4.7807|-40.8824,44.7004,4.7807|0,0,1.5,-1,0,0,0,1,0,0,0,-1|-38.8824,41.9004,1.7807|-43.8824,41.9004,1.7807|-41.3824,42.3004,2.7807|0,-0.6001,-1.5,-1,0,0,0,0,1,0,1,0|-36.3824,42.3004,2.7807|-46.3824,42.3004,2.7807|-5,-0.6001,-1.5,-1,0,0,0,0,1,0,1,0|-41.3824,42.9004,4.7807|0,-0.6,2.5,1,0,0,0,0,1,0,-1,0|0,-0.6001,-3.5,0,1,0,0,0,1,1,0,0|0.2,-0.2,0,0,1,0,0,0,1,1,0,0|Back|-41.3824,42.7004,5.4807|0,90,90|2,0.4,12|-41.8824,44.7004,4.7807|-43.8824,44.7004,4.7807|-45.8824,44.7004,4.7807|Edge|-46.3824,43.5004,1.7807|2,1.2,1|0|-46.3824,43.5004,3.7807|-36.3824,43.5004,-2.2193|5,0.5999,2,-1,0,0,0,1,0,0,0,-1|-36.3824,43.5004,-0.2193|-41.3824,43.5004,-2.2193|0,0.5999,2,-1,0,0,0,1,0,0,0,-1|0,0.4,1.5,1,0,0,0,-1,0,0,0,-1|0,0.4,-1.5,-1,0,0,0,-1,0,0,0,1|0,0.6,1,1,0,0,0,0,-1,0,1,0|-41.3824,43.5004,-0.2193|-41.3824,43.5004,1.7807|-41.3824,43.5004,3.7807|-36.3824,43.5004,1.7807|-36.3824,43.5004,3.7807|-46.3824,43.5004,-2.2193|-5,0.5999,2,-1,0,0,0,1,0,0,0,-1|-46.3824,43.5004,-0.2193|Motor|0.6999,0.8999,0.5,1,1|-46.8824,35.9004,2.7807|1,0.8,1|Wheel|0.3882,0.3725,0.3843|-44.8824,39.0004,2.7807|-90,0,0|3,3,3|1.5,0,0,0,0,1,0,1,0,-1,-0,-0|0,-1.3,0.5,0,1,0,1,0,0,0,0,-1|-1.5,0,0,-0,-0,-1,0,1,0,1,0,0|-2,2.2999,0.5,0,1,0,1,0,0,0,0,-1|0,-1.3,-0.5,0,1,0,-1,0,0,0,0,1|-46.8824,39.3004,2.7807|0,180,180|1,2.4,3|-5.5,0.5999,-1.5,1,0,0,0,0,-1,0,1,0|-1.5,0,0.2999,0,0,1,-1,0,0,0,-1,0|0,-0.4,0,0,1,0,0,0,1,1,0,0|-46.8824,37.7004,2.7807|-46.8824,36.8004,2.7807|0,0,90|1,1,1|0,0.3999,0,-1,0,0,0,0'
  837. ..',-1,0,-1,0|0,0.4,0,1,0,0,0,0,-1,0,1,-0|-42.8824,36.8004,2.7807|-42.8824,37.7004,2.7807|-44.8824,34.6004,2.7807|90,180,0|0,-1.3001,-0.5,0,1,0,-1,0,0,0,0,1|0,-1.3001,0.5,0,1,0,1,0,0,0,0,-1|-2,-2.1001,0.5,0,1,0,1,0,0,0,0,-1|-42.8824,35.9004,2.7807|-39.8824,35.9004,2.7807|0,0.4,0,-1,-0,-0,0,0,1,0,1,0|-0.5,0,0,0,0,1,0,-1,0,1,0,0|1.5,0,-1.3001,0,0,-1,1,0,0,0,-1,0|-42.8824,39.3004,2.7807|-1.5,0.5999,-1.5,1,0,0,0,0,-1,0,1,0|1.5,0,0.2999,0,0,-1,1,0,0,0,-1,0|-39.8824,39.3004,2.7807|1.5,0.5999,-1.5,1,0,0,0,0,-1,0,1,0|-39.8824,37.7004,2.7807|0,-0.4001,0,1,0,0,-0,-0,-1,0,1,0|0,1.1999,0,0,-1,0,0,-0,-1,1,0,0|0,0,-0.5,-1,-0,-0,0,1,0,-0,-0,-1|-1.5,0,-1.3,0,0,1,-1,0,0,0,-1,0|0.5,0,0,0,0,-1,0,1,0,1,0,0|-39.8824,36.8004,2.7807|-37.8824,34.6004,2.7807|-37.8824,39.0004,2.7807|-0.5,0.2999,0,0,0,1,1,0,0,0,1,0|-35.8824,36.8004,2.7807|-35.8824,37.7004,2.7807|1.5,0,-1.3,0,0,-1,1,0,0,0,-1,0|0,1.1999,0,0,-1,0,0,0,-1,1,0,0|-35.8824,35.9004,2.7807|-1.5,0,-1.3001,0,0,1,-1,0,0,0,-1,0|-35.8824,39.3004,2.7807|-39.8824,34.3004,0.7807|1,2.4,7|2,-0.4001,0,0,1,0,0,0,1,1,0,0|-2,-0.4001,0,0,1,0,0,0,1,1,0,0|1.5,2,0.2999,0,0,-1,1,0,0,0,-1,-0|1.5,-2,0.2999,0,0,-1,1,0,0,0,-1,-0|0.4313,0.6,0.7921|-35.8824,34.3004,0.7807|-1.5,2,0.2999,0,0,1,-1,0,0,0,-1,0|0.1058,0.1647,0.2078|-46.8824,34.3004,0.7807|1.5,2,0.2999,0,0,-1,1,0,0,0,-1,0|0,-1.2001,0,0,1,0,0,0,1,1,0,0|-42.8824,34.3004,0.7807|-1.5,2,0.2999,0,0,1,-1,0,0,-0,-1,0|-1.5,-2,0.2999,0,0,1,-1,0,0,-0,-1,0|0.6313,0.647,0.6352|-35.8824,36.7004,0.7807|3,2.4,1|1.5,2,-2.3,0,0,-1,-1,0,0,0,1,0|1.5,-2,-2.3,0,0,-1,-1,0,0,0,1,0|-1.5,2,-2.1001,0,0,1,-1,0,0,0,-1,0|-1.5,-2,-2.1001,0,0,1,-1,0,0,0,-1,0|0,1.2,0,0,-1,0,0,0,-1,1,0,0|-39.8824,36.8004,-1.2193|-35.8824,36.8004,-1.2193|-37.8824,34.6004,-1.2193|0.5,0.2999,2,0,0,-1,-1,0,0,0,1,0|-35.8824,35.9004,-1.2193|0,1.2,2,0,-1,0,0,0,-1,1,0,0|-39.8824,35.9004,-1.2193|-44.8824,34.6004,-1.2193|2,-2.1001,0.5,0,1,0,1,0,0,0,0,-1|-0.5,0.2'
  838. ..'999,2,0,0,1,1,0,0,0,1,0|-42.8824,35.9004,-1.2193|-46.8824,36.7004,0.7807|MainWheel2|-37.8824,39.0004,-1.2193|-35.8824,39.3004,-1.2193|5.5,0.5999,2.5,1,0,0,0,0,-1,0,1,0|-39.8824,39.3004,-1.2193|1.5,0.5999,2.5,1,0,0,0,0,-1,0,1,0|-39.8824,37.7004,-1.2193|-35.8824,37.7004,-1.2193|MainWheel1|-44.8824,39.0004,-1.2193|2,2.2999,0.5,0,1,0,1,0,0,0,0,-1|-42.8824,39.3004,-1.2193|-46.8824,39.3004,-1.2193|-46.8824,37.7004,-1.2193|-46.8824,36.8004,-1.2193|-42.8824,36.8004,-1.2193|-42.8824,37.7004,-1.2193|-46.8824,35.9004,-1.2193|Engine|-41.3824,41.1004,1.2807|12,1.2,8|CartGyro|0,0,0|Going|Cart Script|Sounds|Screams|Male|Female|Wind|rbxasset://sounds/Rocket whoosh 01.wav|Brake|http://www.roblox.com/asset/?id=1616554|Lift Hill Sound|rbxasset://sounds//paintball.wav|5,-0.6001,1.5,-1,0,0,0,0,1,0,1,0|0.5,0.2,2.5,0,1,0,0,0,-1,-1,0,0|1.5,-1.2001,-2.5,-1,0,0,0,0,1,0,1,0|-2.5,-0.4001,2,1,0,0,0,0,1,0,-1,0|-5.5,-1.2001,1.5,-1,0,0,0,0,1,0,1,0|0.5,0.2,-2.5,0,1,0,0,0,-1,-1,0,-0|2.5,-0.4001,-2,1,0,0,0,0,1,0,-1,0|5.5,-1.2001,-2.5,-1,0,0,0,0,1,0,1,0|-3.5,0.2,-2.5,0,1,0,0,0,-1,-1,0,0|Restrant #1|Down|Restrant|0.8549,0.5215,0.2549|-38.8824,43.9004,-2.2193|0,90,180|2.5,1,2,1,-0,-0,0,-1,-0,0,-0,-1|-1.5,-0.2001,-0|-1.5,0.2,0|1.5,0.2,0|1.5,-0.2001,0|1,0.4,0,0,0,-1,0,-1,0,-1,0,0|0,-0.2001,0,1,0,0,-0,-0,-1,0,1,0|1,-0.6,0,0,1,0,0,0,1,1,0,0|-39.8824,44.7004,-2.2193|-39.8824,45.7004,-1.2193|-39.8824,44.7004,-1.2193|0,0,0.5,1,0,0,0,-1,0,0,0,-1|0,-0.4001,0,1,0,0,0,0,1,0,-1,0|-39.8824,45.7004,-0.2193|-0.5,0.2,0,0,0,1,0,1,0,-1,0,0|0,-0.2,0,0,1,0,0,0,1,1,0,0|-39.8824,46.3004,-0.2193|1,0.4,1|-0.5,-0.4,0,0,0,1,0,-1,0,1,0,0|-37.8824,44.7004,-2.2193|0,-0.2,1,0,1,0,0,0,1,1,0,0|-37.8824,45.7004,-1.2193|0,-0.6,0,1,0,0,0,0,1,0,-1,0|-37.8824,44.7004,-1.2193|-37.8824,45.7004,-0.2193|-37.8824,46.3004,-0.2193|Latch|-37.8824,45.9004,0.7807|-39.8824,45.9004,0.7807|0.4999,0.0999,0,0,0,-1,-1,0,0,0,1,0|Up|-38.8824,49.0004,-0.919'
  839. ..'3|0,90,-90|-1,-0.6001,0,0,1,0,0,0,1,1,0,0|-37.8824,49.0004,-0.1193|90,0,0|-37.8824,48.0004,0.8807|-37.8824,48.0004,-0.1193|-37.8824,47.0004,0.8807|0.0999,-0.6,0,0,-1,0,0,0,1,-1,0,0|-39.8824,49.0004,-0.1193|0,-0.2001,-1,0,1,0,0,0,1,1,0,0|-39.8824,48.0004,0.8807|-39.8824,48.0004,-0.1193|-39.8824,47.0004,0.8807|-38.8824,42.1004,-0.7193|3,0.8,2|On|Restrant #2|-43.8824,43.9004,-2.2193|-2.5,1,2,1,-0,-0,0,-1,-0,0,-0,-1|-44.8824,44.7004,-2.2193|0,-0.2,-1,0,1,0,0,0,1,1,0,0|-44.8824,45.7004,-1.2193|-44.8824,44.7004,-1.2193|-44.8824,45.7004,-0.2193|-44.8824,46.3004,-0.2193|-42.8824,44.7004,-2.2193|-42.8824,45.7004,-1.2193|-42.8824,44.7004,-1.2193|-42.8824,45.7004,-0.2193|-42.8824,46.3004,-0.2193|-42.8824,45.9004,0.7807|0,-0.4,0.5,1,0,0,0,-1,0,0,0,-1|0.5,-0.2001,0,0,0,-1,0,1,0,1,0,0|-44.8824,45.9004,0.7807|-43.8824,49.0004,-0.9193|-42.8824,49.0004,-0.1193|0,-0.2001,1,0,1,0,0,0,1,1,0,0|-42.8824,48.0004,0.8807|-42.8824,48.0004,-0.1193|-42.8824,47.0004,0.8807|-44.8824,49.0004,-0.1193|-44.8824,48.0004,0.8807|-44.8824,48.0004,-0.1193|-44.8824,47.0004,0.8807|-43.8824,42.1004,-0.7193|1,-0.2001,-0.5,0,0,-1,0,1,0,1,0,0|-2.5,-0.6,2,1,0,0,0,0,1,0,-1,0|-1,-0.2001,-0.5,0,0,1,0,1,0,-1,0,0|0,0,-1,-1,-0,-0,0,1,0,-0,-0,-1|-0.5,-0.2,0,0,0,1,-0,-1,0,1,0,0|Restrant #3|-43.8824,43.9004,1.7807|-1,0.4,0,-0,0,1,0,-1,0,1,0,-0|-44.8824,44.7004,1.7807|-44.8824,45.7004,2.7807|-44.8824,44.7004,2.7807|-44.8824,45.7004,3.7807|-44.8824,46.3004,3.7807|-42.8824,44.7004,1.7807|-42.8824,45.7004,2.7807|-42.8824,44.7004,2.7807|-42.8824,45.7004,3.7807|-42.8824,46.3004,3.7807|-42.8824,45.9004,4.7807|-44.8824,45.9004,4.7807|-43.8824,49.0004,3.0807|-42.8824,49.0004,3.8807|-42.8824,48.0004,4.8807|-42.8824,48.0004,3.8807|-42.8824,47.0004,4.8807|-44.8824,49.0004,3.8807|-44.8824,48.0004,4.8807|-44.8824,48.0004,3.8807|-44.8824,47.0004,4.8807|-43.8824,42.1004,3.2807|Restrant #4|-38.8824,43.9004,1.7807|-1,-0.6,0,0,1,0,0,0,1,'
  840. ..'1,0,0|-39.8824,44.7004,1.7807|-39.8824,45.7004,2.7807|-39.8824,44.7004,2.7807|-39.8824,45.7004,3.7807|-39.8824,46.3004,3.7807|-37.8824,44.7004,1.7807|-37.8824,45.7004,2.7807|-37.8824,44.7004,2.7807|-37.8824,45.7004,3.7807|-37.8824,46.3004,3.7807|-37.8824,45.9004,4.7807|-39.8824,45.9004,4.7807|-38.8824,49.0004,3.0807|1,-0.6001,0,0,1,0,0,0,1,1,0,0|-37.8824,49.0004,3.8807|-37.8824,48.0004,4.8807|-37.8824,48.0004,3.8807|-37.8824,47.0004,4.8807|-39.8824,49.0004,3.8807|-39.8824,48.0004,4.8807|-39.8824,48.0004,3.8807|-39.8824,47.0004,4.8807|-38.8824,42.1004,3.2807|2.5,-0.6,-2,1,0,0,0,0,1,0,-1,0|Front|-41.3824,42.9004,-4.7193|12,2.4,4|Wedge|Bottom|-41.3824,40.7004,-4.7193|0,0,180|12,2,4|0,-1,0,1,0,0,-0,-0,-1,0,1,0|0,-1.2001,0,-1,0,0,0,0,1,0,1,0|GO!|0.4196,0.196,0.4862|-50.1824,39.2004,-2.2193|2,0.4,3|Click|20|Loop|Enter|0.0509,0.4117,0.6745|-58.8103,36.9796,-236.7193|-11.25,-90.0401,-179.5501|-75.4061,43.5355,-236.7193|-39.37,-90.45,-178.7401|-61.7527,37.5648,-229.7193|-16.8701,-90.14,-179.09|-70.2659,40.4545,-236.7193|-28.1201,-90.25,-178.9901|-70.2659,40.4545,-229.7193|-67.4943,39.3065,-229.7193|-22.5,-90.1801,-179.1001|-58.8103,36.9796,-229.7193|-61.7527,37.5648,-236.7193|-64.6235,38.4357,-229.7193|-72.9117,41.8687,-229.7193|-33.75,-90.1201,-179.59|-64.6235,38.4357,-236.7193|-72.9117,41.8687,-236.7193|-67.4943,39.3065,-236.7192|-55.8679,36.3943,-229.7193|-55.8679,36.3943,-236.7193|-52.8824,36.1003,-229.7193|-5.62,-90.0101,-179.81|-52.8824,36.1003,-236.7193|-49.8824,36.1004,-236.7193|-49.8824,36.1004,-229.7193|-77.7251,45.4387,-236.7193|-45,-90.24,-179.43|-75.406,43.5355,-229.7193|-39.37,-90.3301,-179.09|-77.7251,45.4387,-229.7193|-79.8464,47.5601,-236.7193|-50.62,-90.6201,-178.6901|-87.7287,66.5904,-229.7192|-88.7601,-174.7701,-95.1501|-86.8494,60.6619,-229.7192|-78.74,-92.46,-177|-85.9785,57.7911,-229.7193|-73.1201,-91.2,-178.3801|-84.8305,55.0195,-229.7193|-67.49,-90.'
  841. ..'9301,-178.6101|-87.4346,63.6046,-229.7193|-84.3601,-93.31,-176.34|-87.7399,75.5894,-229.834|-88.88,-174.34,-67.57|-87.7343,69.5898,-229.7766|-88.8701,-174.39,-84.39|-87.7343,72.5899,-229.7766|-88.88,-174.23,-73.32|-81.7496,49.8791,-229.7193|-56.2401,-90.67,-178.7401|-79.8464,47.56,-229.7193|-83.4163,52.3736,-229.7193|-61.87,-90.53,-179.12|-85.9786,57.7911,-236.7193|-87.7456,75.5888,-236.8913|-86.8494,60.6619,-236.7193|-87.7343,69.5899,-236.7766|-87.4347,63.6046,-236.7193|-84.8305,55.0195,-236.7193|-81.7496,49.8791,-236.7193|-83.4163,52.3736,-236.7193|-87.74,72.5894,-236.834|-87.7287,66.5904,-236.7192|-88.84,-174.3801,-89.99|Velocitize|EnterTop|-65.7688,88.6463,-248.8855|-34.17,-62.6101,1.24|-67.9727,90.3312,-247.7437|-22.9201,-62.3401,1.12|-66.0206,88.8776,-241.6955|-64.1449,86.7409,-242.653|-45.41,-62.9501,1.46|-68.2245,90.5624,-240.5537|-70.4203,91.4996,-246.4613|-11.6701,-62.12,1.0499|-70.672,91.7309,-239.2714|-73.0174,92.1065,-245.0878|-0.4301,-61.91,1.0299|-73.2691,92.3371,-237.8978|-63.8932,86.5096,-249.843|-62.4179,84.0032,-250.5792|-56.66,-63.46,1.86|-61.1295,78.5087,-244.0946|-79.13,-67.27,5.4499|-62.6697,84.2345,-243.3893|-56.66,-63.4701,1.87|-61.6515,81.4548,-243.876|-67.9001,-64.4401,2.73|-61.3998,81.2235,-251.066|-61.1346,78.2363,-251.1467|-84.7,-73,11.14|ExitTop|-82.8998,88.875,-239.7479|-33.32,118.7699,-1.2301|-84.7673,86.7699,-238.7084|-44.5601,119.11,-1.4501|-80.7022,90.5229,-240.9542|-22.07,118.51,-1.1101|-78.5104,91.6961,-235.0874|-10.82,118.29,-1.05|-78.2591,91.6502,-242.2809|-75.9156,92.2594,-236.4836|0.43,118.0899,-1.03|-75.6642,92.2135,-243.6771|-87.7456,78.5888,-229.8919|-83.8601,127.7699,-9.73|-87.4919,81.5716,-230.0881|-67.0501,120.5299,-2.6501|-87.2406,81.5257,-237.2817|-86.233,84.2882,-237.8757|-55.8101,119.61,-1.8301|-87.7513,78.5883,-236.9493|-78.28,123.0699,-5.08|-86.4844,84.3343,-230.6821|-55.8101,119.62,-1.8401|-85.0187,86.8158,-231'
  842. ..'.5148|-83.1511,88.9211,-232.5543|-80.9536,90.5689,-233.7606|Exit|-89.9112,36.8115,-242.7133|-11.4601,90.4,178.19|-73.3406,43.4258,-242.968|-39.57,91.3799,178.3899|-86.9705,37.1369,-249.7309|-17.08,90.54,178.6|-78.4689,40.3276,-242.8485|-28.33,90.94,178.49|-78.4684,40.0569,-249.8432|-81.2356,38.8991,-249.7986|-22.71,90.75,178.49|-89.9107,36.5408,-249.708|-86.9711,37.4076,-242.7361|-84.1031,38.018,-249.7647|-75.8281,41.4801,-249.8981|-33.94,91.36,177.74|-84.1036,38.2887,-242.77|-75.8286,41.7507,-242.9034|-81.2361,39.1698,-242.8039|-92.8508,35.9448,-249.6852|-92.8512,36.2154,-242.6904|-95.8352,35.6395,-249.6736|-5.8401,90.2099,177.96|-95.8357,35.9102,-242.6788|-98.8357,35.8988,-242.6786|-0.22,90,177.7799|-98.8351,35.6281,-249.6734|-71.0289,45.3364,-243.0418|-45.1801,91.9899,177.4199|-73.3401,43.1551,-249.9628|-39.57,91.5,178.0399|-71.0283,45.0657,-250.0365|-68.9157,47.4642,-243.124|-50.8101,92.0899,177.8|-61.1057,66.2401,-250.8553|-89.02,-173.8301,83.9199|-61.9623,60.3123,-250.626|-78.8301,98.7799,171.5399|-62.8222,57.4403,-250.5148|-73.24,96.16,173.9299|-63.9596,54.6664,-250.4076|-67.6501,94.4599,175.5599|-61.3883,63.2551,-250.7397|-84.27,109.1999,161.0299|-61.1289,75.2368,-251.0887|-88.89,-174.3601,112.4499|-61.1116,69.2395,-250.914|-88.9001,-174.3201,95.54|-61.123,72.2373,-251.0299|-88.89,-174.48,106.94|-67.0209,49.5181,-250.2085|-56.42,92.66,177.25|-68.9152,47.1935,-250.1187|-65.3637,52.0171,-250.3051|-62.03,93.6399,176.1499|-62.8227,57.711,-243.5201|-61.1238,75.5092,-244.0365|-61.9628,60.5831,-243.6311|-61.1121,69.5102,-243.9192|-61.3888,63.5258,-243.745|-63.9601,54.9371,-243.4128|-67.0213,49.7888,-243.2138|-65.3642,52.2878,-243.3104|-61.1179,72.5098,-243.9779|-61.1062,66.5109,-243.8605|-88.9401,-174.3201,89.9499|Rail|-38.3824,36.9004,53.2807|0,0,-10|2,1.2,238|-45.3824,36.9004,53.2807|Support|-102.8824,36.0004,-249.7193|2,1.2,5|-102.8824,36.0004,-242.7193|5,1.2,2'
  843. ..'|-158.8402,35.7903,-255.7248|0.2199,-90,-177.78|-158.8402,35.5903,-262.7248|Turn|-57.7828,11.4019,-121.2166|0,-4.6501,0.0199|-30,0,-30|-56.5798,11.3966,-121.1188|-0.01,-9.79,0.07|-55.344,11.3969,-120.8929|-0.01,-15.11,0.07|-56.2189,11.4027,-128.1126|3,1.2,1|-52.5556,11.3963,-127.3758|-47.5047,11.3968,-125.0997|-0.01,-32.0401,0.0199|-49.335,11.3961,-126.1107|-0.01,-26.1801,0.0299|-45.6893,11.3976,-123.8077|-0.01,-38.26,0.0199|-43.9007,11.3983,-122.2358|-0.01,-44.94,0.0199|-44.88,11.4004,-109.2255|-45.5916,11.4002,-112.0424|0,-71.3001,0.0099|-54.1145,11.3967,-120.5422|-0.01,-20.5401,0.07|-52.873,11.3973,-120.0493|-51.6455,11.3978,-119.4322|-50.4138,11.3983,-118.6266|-49.2011,11.3988,-117.6345|-47.6587,11.3994,-115.9258|0,-52.57,0.0099|-46.4963,11.3999,-114.1225|0,-61.67,0.0099|-37.8824,11.4004,-108.7193|4,1.2,1|-38.6391,11.4002,-113.3427|-40.096,11.3997,-117.0197|-41.7949,11.3991,-119.7915|-72.8824,11.4004,-103.2193|-30,0,30|9,1.2,1|-72.8824,11.3945,-108.4263|-0.02,84.86,0.0399|-72.7574,11.3943,-109.6763|-0.02,79.5299,0.0399|-79.8824,11.4004,-103.7193|12,1.2,1|-79.4449,11.3925,-111.9302|-77.5855,11.391,-117.149|-0.02,62.5999,0|-78.4449,11.391,-115.2427|-0.02,68.47,0.0099|-76.4449,11.391,-119.063|-0.02,56.38,0|-75.023,11.391,-120.9732|-0.02,49.7099,0|-60.9794,11.3939,-121.1323|-0.02,4.65,0|5,1.2,1|-64.7261,11.3939,-120.1138|-0.02,23.34,0|-72.5074,11.3937,-110.9302|-0.02,74.11,0.05|-72.1167,11.3937,-112.2076|-71.6011,11.3938,-113.481|-70.898,11.3938,-114.774|-70.0074,11.3939,-116.063|-68.4292,11.3939,-117.7388|-0.02,42.08,0|-66.7261,11.3939,-119.0435|-0.02,32.9799,0|-61.0419,11.391,-128.148|6,1.2,1|-66.5855,11.391,-126.938|-70.1324,11.391,-125.188|-72.7574,11.391,-123.2701|Left 1/8|0.6999,2,0.5,1,1|-72.381,10.8336,-94.3223|4.1999,-179.95,0|0,5,30|2,1.2,2|-72.3824,10.8193,-96.7966|-79.3824,10.7004,-96.7193|-79.3811,10.7383,-94.3422|-79.3797,10.8973,-92.0391|12.1199,-179'
  844. ..'.9601,0.0399|-72.3797,10.8954,-92.0429|-79.3785,11.2009,-89.9065|17.7399,-179.9401,0.0599|-72.3785,11.199,-89.9103|-79.3819,18.3728,-75.7604|28.2199,179.9799,0.1|2,1.2,29|-72.382,18.2738,-75.7879|Drop Part1|-70.3825,125.6351,126.4365|11.25,180,0|0,10,10|-70.3825,124.4871,123.6649|22.5,180,0|-77.3825,125.6351,126.4365|-77.3825,124.4871,123.6649|-70.3825,123.339,120.8932|-77.3825,123.339,120.8932|CorckScrew|-203.749,69.7463,58.9175|-4.4401,-67.95,-179.4101|-92.4052,7.7434,37.4343|-200.9882,69.2285,57.8644|-9.95,-69.1201,-168.01|-92.0271,17.2707,35.1105|-198.2653,68.4297,56.891|-15.44,-70.3301,-156.4901|-90.7629,26.6309,32.4485|-188.0236,62.8297,54.4319|-36.19,-78.39,-175.95|-79.0555,59.0455,16.2474|-190.3952,64.6012,54.9193|-30.58,-77.9301,-164.9601|-84.19,50.8698,18.009|-185.8395,60.8314,53.9454|-41.7701,-77.4401,172.1999|-72.8033,66.6092,16.2175|-192.9208,66.1274,55.4594|-25.14,-76.32,-154.4601|-87.9612,42.4754,21.417|-195.5597,67.4018,56.1018|-20.0401,-73.74,-144.2|-90.1877,34.2645,26.3084|-183.8664,58.6435,53.3802|-46.8301,-74.0101,158.55|-65.7724,72.9317,18.8435|-182.1201,56.2966,52.7147|-51.4701,-69.14,143.61|-58.2143,78.2233,22.1866|-179.3488,51.2644,51.0069|-58.57,-53.8601,119.76|-42.1052,85.3316,30.7521|-180.6119,53.8247,51.9294|-55.4701,-62.4901,132.6399|-50.2744,82.3834,26.1816|-178.3086,48.682,49.889|-59.4001,-42.94,99.1999|-34.6783,86.0731,37.2673|-176.0036,34.9004,38.9393|-39.5401,-0.4001,19.7299|-0.5416,63.6558,77.1209|-176.0198,36.8102,41.2527|-44.57,-3.78,27.62|-4.6961,70.1802,71.0822|-176.1606,38.9157,43.3851|-49.4901,-7.79,41.7999|-8.8054,76.0295,64.3582|-176.4247,41.197,45.3156|-53.5201,-14.1001,52.3699|-14.4835,80.4101,57.658|-176.8592,43.6097,47.0451|-56.7001,-22.23,64.6699|-20.7705,83.5805,50.8221|-177.4822,46.1174,48.5697|-58.7401,-32.0601,78.61|-27.5454,85.4804,43.9814|-177.3002,27.0357,16.8467|-0.6601,3.64,-5.14|6.3412,1.1481,99.7913|-177.10'
  845. ..'99,27.0704,19.8403|-6.2601,4.1399,0.4499|7.1804,10.904,99.1433|-176.8944,27.3975,22.8145|-11.86,4.6599,5.9899|7.9511,20.5547,97.5404|-176.6558,28.0141,25.7406|-17.4501,4.05,6.15|6.7299,29.9948,95.1578|-176.454,28.914,28.5952|-23.05,3.39,6.38|5.444,39.1464,91.8581|-176.2906,30.0884,31.3508|-28.63,2.68,6.69|4.1057,47.9212,87.6738|-176.1673,31.5262,33.9809|-34.2201,1.8899,12.72|2.7279,56.2339,82.6456|-176.0854,33.2133,36.4601|-34.2201,1.8899,18.35|2.7279,56.2337,82.6458|-184.6372,28.7328,26.2396|-17.48,3.47,6.2399|5.7787,30.0313,95.2088|-184.8031,43.0808,48.7148|-47.9001,-12.6401,44.47|-14.6667,74.1958,65.4206|-185.2431,45.3069,50.6773|-47.9001,-12.6401,50.09|-14.6665,74.196,65.4205|-185.6831,47.533,52.6397|-50.35,-20.38,67.1999|-22.2255,76.9906,59.8204|-186.3499,49.8429,54.4342|-50.35,-20.38,78.4499|-22.2255,76.9909,59.82|-187.0167,52.1529,56.2286|-51.14,-29.1901,96.5299|-30.5945,77.8724,54.771|-185.2526,27.753,17.3437|-185.0623,27.7877,20.3373|7.1802,10.9035,99.1441|-184.8469,28.1149,23.3115|-11.8801,4.0999,6.0799|6.9917,20.5938,97.6056|-187.9345,54.4894,57.8716|-50.17,-37.9301,103.29|-39.3721,76.7986,50.5155|-189.1157,56.7938,59.387|-46.4301,-53.92,120.9|-55.7082,72.4497,40.5913|-190.787,58.9674,60.6047|-46.4301,-53.92,126.5199|-55.7077,72.4499,40.5915|-192.4583,61.1408,61.8223|-46.4301,-53.92,132.1499|-55.7076,72.4499,40.5918|-194.1295,63.3144,63.04|-46.4301,-53.92,137.77|-55.7079,72.4501,40.591|-195.8007,65.4881,64.2576|-44,-64.6801,156.3899|-65.0216,69.4666,30.7668|-184.4639,29.6338,29.0957|-23.07,2.8099,6.4699|4.5102,39.1801,91.8943|-184.2611,38.9314,44.4147|-43.75,-7.18,34.93|-9.032,69.1485,71.6722|-184.5321,41.006,46.5648|-43.75,-7.18,40.5499|-184.3287,30.8093,31.8525|-28.65,2.0899,6.7899|3.1982,47.9514,87.695|-184.1376,37.041,42.0886|-39.0601,-3.04,26.5599|-4.1158,63.01,77.5421|-184.1372,35.3639,39.6012|-33.9901,-0.01,24.75|-0.0127,55.8987,82.9176|-184.1368,'
  846. ..'33.6867,37.1139|-33.9901,-0.01,19.1299|-184.2327,32.2481,34.4831|-28.65,2.0899,12.4099|3.1983,47.9509,87.6953|-197.7515,67.5723,65.1806|-33.2701,-68.78,170.27|-77.942,54.8583,30.2594|-200.0897,69.2182,66.0883|-22.1701,-70.82,176.85|-87.4711,37.7276,30.4221|-202.7139,70.3501,67.0009|-10.9301,-71.45,177.0299|-93.0831,18.9626,31.2406|-206.0043,70.1638,68.4276|10.75,115.8799,-176.06|-88.3954,18.6521,42.8761|-208.7246,70.4422,69.6612|5.32,114.4,-165.01|-90.6784,9.2689,41.1282|-211.4872,70.4362,70.8306|-0.12,112.94,-153.8301|-92.088,-0.2028,38.9841|-222.6389,67.8591,74.1917|-20.64,104.9899,-175.4|-90.3971,-35.2559,24.1965|-219.927,68.917,73.4659|-15.04,105.4499,-164.3001|-93.0856,-25.9429,25.7299|-225.2294,66.5331,74.9203|-26.23,105.7099,173.0599|-86.3527,-44.1965,24.2896|-217.1344,69.6953,72.6941|-9.62,106.9899,-153.37|-94.29,-16.7054,28.8153|-214.3057,70.1966,71.8297|-4.58,109.5199,-142.4401|-93.9521,-7.986,33.3052|-227.6608,64.9724,75.7275|-31.3501,108.37,160.5299|-81.0501,-52.0272,26.9099|-229.9085,63.2029,76.6319|-36.14,111.9199,147.3|-74.9211,-58.9718,30.1521|-233.7712,59.1646,78.7975|-44.1801,122.22,129.35|-60.6703,-69.691,38.2398|-231.9511,61.2556,77.6504|-40.46,116.51,138.83|-68.0843,-64.8978,33.953|-235.369,57.0021,80.1284|-46.12,129.8,112.7799|-53.2605,-72.0743,44.3692|-240.4238,44.8285,92.0192|-35.2401,171.71,38.58|-11.7764,-57.702,80.8196|-240.0706,46.5597,89.5948|-39.17,166.6499,47.27|-17.898,-63.1619,75.4337|-239.5336,48.4546,87.332|-42.85,161.02,62.22|-23.8475,-68.0144,69.3206|-238.8182,50.4955,85.2525|-45.26,153.94,72.7699|-30.9227,-71.0361,63.2271|-237.8905,52.6269,83.3558|-46.67,146.1,84.04|-38.2779,-72.7373,56.957|-236.7421,54.8094,81.6473|-46.96,137.8899,95.66|-45.7717,-73.0856,50.6305|-239.6935,37.906,114.4506|0.99,-172.68,10.3199|12.733,1.7207,99.1711|-240.0757,37.8544,111.4756|-4.5501,-173.6901,15.9799|10.9505,-7.9287,99.0819|-240.4042,38.0923,108'
  847. ..'.5032|-10.08,-174.7201,21.7299|9.0637,-17.5024,98.0376|-240.6763,38.6174,105.5622|-15.3001,-176.87,22.2099|5.2594,-26.3822,96.313|-240.834,39.4089,102.673|-20.49,-179.14,22.9099|1.4044,-35.0072,93.6618|-240.8762,40.4592,99.8632|-25.66,178.4299,23.86|-2.464,-43.2957,90.1078|-240.8023,41.7582,97.1602|-30.7701,175.7899,30.7299|-6.3084,-51.1667,85.6865|-240.6131,43.2932,94.5897|-30.7701,175.7899,36.36|-6.3084,-51.1665,85.6867|-232.8384,37.1778,104.5807|-15.1701,-177.42,22.27|4.3375,-26.1637,96.4185|-230.4955,49.9424,81.287|-40.28,157.71,63.4399|-28.939,-64.6507,70.5891|-229.6272,51.8821,79.1694|-40.28,157.71,69.0599|-28.9388,-64.6509,70.589|-228.759,53.822,77.0519|-40.9901,150.35,85.11|-37.335,-65.598,65.5974|-227.6389,55.79,75.0841|-40.9901,150.35,96.36|-37.3351,-65.5983,65.5969|-226.5188,57.7582,73.1164|-40.14,143.0299,112.37|-45.9737,-64.4634,61.081|-231.8839,36.4729,113.4728|-232.2659,36.4213,110.4977|10.9506,-7.9285,99.0819|-232.5944,36.6592,107.5253|-9.95,-175.26,21.7999|8.1342,-17.2836,98.1579|-225.1394,59.6925,71.2841|-37.8101,136.44,116.5199|-54.4406,-61.3011,57.2574|-223.5061,61.5317,69.5664|-32.17,124.54,128.99|-69.7243,-53.2414,47.9987|-221.4143,63.1294,68.1265|-32.17,124.54,134.6199|-69.7239,-53.2418,47.9989|-219.3225,64.7264,66.6866|-32.17,124.54,140.24|-69.7237,-53.2418,47.9991|-217.2308,66.3239,65.2468|-32.17,124.54,145.8699|-69.724,-53.2419,47.9985|-215.139,67.9213,63.8069|-28.91,116.12,161.13|-78.5954,-48.3494,38.5368|-232.9685,37.9627,101.6883|-20.3601,-179.7,22.9699|0.499,-34.7911,93.7515|-231.8014,46.2823,85.8585|-37.5901,164.0599,53.8199|-21.7627,-60.9954,76.1968|-231.1485,48.1123,83.5727|-37.5901,164.0599,59.4399|-232.9834,39.0066,98.8759|-25.5201,177.88,23.9099|-3.3441,-43.084,90.1809|-232.252,44.5987,88.3002|-34.14,169.5399,44.9799|-15.0201,-56.1162,81.3964|-232.5174,43.0953,90.8827|-30.07,174.1399,42.5299|-8.8409,-50.1072,86.0878|-232.7827,41.'
  848. ..'5918,93.4652|-30.07,174.1399,36.9099|-8.8409,-50.1072,86.0879|-232.883,40.2993,96.1706|-25.5201,177.88,29.54|-3.3439,-43.0835,90.1811|-212.781,69.372,62.6508|-17.99,113.44,173.5|-87.2599,-30.884,37.8404|-210.1632,70.2985,61.5157|-6.81,112.1699,179.3999|-91.9538,-11.8544,37.4697|-207.4045,70.6543,60.3916|4.44,112.05,179.41|-149.1169,63.5689,-38.4225|0.6499,-71.59,-178.4|-94.8739,-1.1307,31.5858|-146.2607,63.3162,-39.3044|-4.8401,-72.84,-167.1101|-95.208,8.4309,29.4001|-143.422,62.7791,-40.1122|-10.32,-74.1101,-155.6901|-94.6252,17.9105,26.9313|-132.5864,58.1532,-41.9812|-31,-82.03,-175.8801|-84.8872,51.5081,11.8788|-135.133,59.6986,-41.6249|-25.39,-81.59,-164.84|-89.3678,42.8805,13.2169|-130.206,56.3653,-42.3511|-36.5801,-81.17,172.3899|-79.3488,59.5962,12.3323|-137.814,60.9851,-41.2284|-19.9501,-80.02,-154.1901|-92.5755,34.1275,16.2823|-140.5913,62.009,-40.74|-14.87,-77.49,-143.7|-94.3564,25.6689,20.9281|-128.0134,54.3712,-42.8151|-41.66,-78.0501,159.1699|-73.0902,66.4725,15.471|-126.0257,52.2002,-43.3955|-46.35,-73.7201,144.91|-66.2593,72.3562,19.3472|-122.7137,47.4639,-44.9818|-53.82,-60.5801,123.51|-51.4159,80.7188,28.9981|-124.2561,49.8857,-44.1119|-50.48,-67.96,134.96|-58.9881,77.1358,23.8852|-121.3786,45.0035,-46.0611|-55.0901,-51.05,104.55|-44.5046,82.0051,35.9793|-117.1713,31.6702,-57.0001|-38.3401,-8.0901,26.2199|-11.0377,62.0282,77.6574|-117.5024,33.5312,-54.6706|-43.05,-12.15,34.49|-15.3772,68.2604,71.4427|-117.9637,35.5791,-52.5274|-47.5901,-16.8701,49.0999|-19.5687,73.836,64.5392|-118.5507,37.7946,-50.5914|-51.0901,-23.64,59.8699|-25.1894,77.8092,57.5432|-119.3063,40.1293,-48.8654|-53.6301,-31.8601,72.01|-31.2985,80.5255,50.3593|-120.2453,42.5453,-47.3547|-55.0201,-41.2201,85.2399|-37.7783,81.9332,43.125|-116.3824,24.1004,-79.2193|0,0,100|-116.3822,24.1006,-76.2194|-5.62,0,5.63|-0.0002,9.8012,99.5185|-116.3821,24.3946,-73.234|-11.25,0,11.25|0.0002,19.5'
  849. ..'08,98.0787|-116.3821,24.9799,-70.2918|-16.7601,-1.14,11.5299|-1.912,28.8421,95.7312|-116.4394,25.8452,-67.42|-22.2701,-2.36,11.93|-3.8058,37.8985,92.4619|-116.5536,26.9822,-64.6462|-27.7701,-3.6701,12.4899|-5.6629,46.5901,88.3022|-116.7235,28.38,-61.9973|-33.25,-5.12,18.85|-7.4655,54.8324,83.2926|-116.9474,30.025,-59.4987|-33.25,-5.12,24.4799|-7.4654,54.8322,83.2928|-124.4113,24.9786,-70.2916|-16.73,-1.7101,11.6099|-2.864,28.7932,95.7222|-127.2592,38.8688,-47.709|-45.62,-21.2001,51.27|-25.2967,71.4714,65.2068|-128.0181,41.0132,-45.7529|-45.62,-21.2001,56.8899|-25.2964,71.4715,65.2067|-128.7771,43.1575,-43.7969|-47.46,-28.9401,73.76|-32.7129,73.6795,59.1709|-129.7585,45.3681,-42.022|-47.46,-28.9401,85.01|-32.7129,73.6799,59.1705|-130.7399,47.5787,-40.247|-47.6501,-37.2701,102.4199|-40.7974,73.9012,53.6115|-124.3824,24.1004,-79.2193|-124.3824,24.1006,-76.2194|-0.0002,9.8009,99.5185|-124.3824,24.3947,-73.234|-11.2201,-0.5601,11.3299|-0.961,19.4606,98.0834|-131.9639,49.7961,-38.6388|-46.16,-45.21,108.22|-49.1619,72.1255,48.7958|-133.4388,51.9603,-37.175|-41.69,-59.5801,123.8499|-64.394,66.514,37.8063|-135.3706,53.956,-36.0408|-41.69,-59.5801,129.47|-64.3935,66.5143,37.8065|-137.3024,55.9512,-34.9067|-41.69,-59.5801,135.1|-64.3934,66.5142,37.8069|-139.2343,57.9467,-33.7726|-41.69,-59.5801,140.72|-64.3937,66.5144,37.8061|-141.1661,59.9424,-32.6385|-38.96,-69.38,158.05|-72.7739,62.8845,27.3773|-124.4972,25.8425,-67.42|-22.24,-2.9301,12.02|-4.7393,37.8485,92.4393|-126.0812,34.8581,-52.0133|-41.94,-15.3001,41.56|-19.6314,66.838,71.7446|-126.6702,36.8634,-49.8612|-41.94,-15.3001,47.18|-19.6313,66.838,71.7446|-124.6395,26.978,-64.647|-27.74,-4.2601,12.5799|-6.569,46.5393,88.2662|-125.6444,33.0261,-54.3485|-37.6301,-10.5901,32.9199|-14.5588,61.0606,77.8436|-125.339,31.3984,-56.8499|-32.85,-6.9601,30.8199|-10.1765,54.2507,83.3864|-125.0337,29.7707,-59.3513|-32.85,-6.9601,25.19|'
  850. ..'-124.8366,28.3744,-61.9992|-27.74,-4.2601,18.2|-6.5689,46.5388,88.2665|-143.3494,61.829,-31.8172|-28.16,-72.9301,171.33|-84.2758,47.1978,25.8839|-145.8777,63.245,-31.0407|-17.0301,-74.6901,177.63|-92.2217,29.2883,25.246|-148.6444,64.1238,-30.2834|-5.79,-75.1501,177.72|-96.1689,10.0883,25.4907|-151.9871,63.6219,-29.0705|5.7399,112.08,-177.4|-92.2043,9.9962,37.3958|-154.7927,63.6365,-28.0088|0.27,110.73,-166.2201|-93.5237,0.4786,35.399|-157.611,63.3653,-27.017|-5.1901,109.3899,-154.9101|-93.9425,-9.0427,33.0612|-168.6739,59.7514,-24.3997|-25.82,101.54,-175.81|-88.1999,-43.5494,18.0091|-166.028,61.0581,-24.9399|-20.21,101.98,-164.73|-91.8026,-34.5394,19.4757|-171.1754,58.1884,-23.8521|-31.4,102.3499,172.55|-83.3833,-52.0954,18.2562|-163.2739,62.0943,-25.5241|-14.7701,103.51,-153.9401|-94.0198,-25.4994,22.5844|-160.4533,62.8594,-26.2015|-9.7101,106.01,-143.2201|-94.7447,-16.8624,27.1865|-173.5026,56.4044,-23.2187|-36.4901,105.23,159.69|-77.5731,-59.4682,21.1174|-175.6344,54.4271,-22.4789|-41.2201,109.1399,145.9799|-71.0597,-65.8964,24.6613|-179.2464,50.0255,-20.6092|-48.98,120.6999,126.48|-56.4353,-75.445,33.5128|-177.5534,52.2891,-21.6145|-45.44,114.25,136.8399|-63.9684,-71.2563,28.8198|-180.7236,47.7074,-19.4071|-50.5901,129.1399,108.8399|-49.2367,-77.2657,40.072|-185.3955,34.9315,-8.0015|-36.7901,171.6999,32.4599|-11.5536,-59.8929,79.2425|-185.049,36.7284,-10.3786|-41.1301,167.1,40.99|-16.8143,-65.7818,73.4169|-184.5446,38.7019,-12.5809|-45.2701,161.86,55.83|-21.9135,-71.038,66.8835|-183.8871,40.8335,-14.5872|-48.2201,154.8699,66.55|-28.297,-74.5713,60.3193|-183.0382,43.071,-16.3966|-50.1801,146.7899,78.29|-35.0662,-76.8112,53.5763|-181.9863,45.3757,-18.0038|-51,138.02,90.6999|-42.091,-77.7151,46.7837|-185.4428,27.7186,14.35|0.66,-176.3601,5.1399|-185.6331,27.6842,11.3564|-4.9401,-176.87,10.7899|5.44,-8.6184,99.4793|-185.7963,27.9428,8.3721|-10.5501,-177.3801,16.479'
  851. ..'9|4.4876,-18.302,98.2084|-185.931,28.4919,5.426|-15.9301,-179.04,16.86|1.6094,-27.4535,96.1443|-185.9794,29.3155,2.5419|-21.31,179.21,17.42|-1.2842,-36.3405,93.1543|-185.9408,30.4058,-0.2526|-26.6701,177.33,18.19|-4.1656,-44.8778,89.2672|-185.8159,31.7523,-2.9305|-31.99,175.2599,24.8299|-7.0066,-52.9822,84.521|-185.6058,33.3418,-5.466|-31.99,175.2599,30.45|-7.0065,-52.982,84.5211|-177.9499,27.7706,4.927|-15.8501,-179.6001,16.94|0.6669,-27.3195,96.1936|-175.3181,41.0893,-18.0231|-42.9701,158.05,57.5|-27.3551,-68.1618,67.8652|-174.4973,43.1344,-20.0589|-42.9701,158.05,63.13|-27.3549,-68.162,67.8651|-173.6767,45.1795,-22.0947|-44.2401,150.4799,79.5999|-35.3058,-69.7651,62.3405|-172.6174,47.2727,-23.9647|-44.2401,150.4799,90.8499|-35.3059,-69.7655,62.34|-171.5582,49.3659,-25.8347|-43.89,142.66,107.54|-43.7142,-69.3249,57.2987|-177.4905,27.0012,13.8529|-177.6806,26.9668,10.8593|5.4401,-8.6182,99.4793|-177.8438,27.2254,7.875|-10.4701,-177.9401,16.5599|3.5366,-18.1686,98.272|-170.2467,51.446,-27.5536|-41.96,135.44,112.47|-52.1765,-66.8616,52.9824|-168.6813,53.452,-29.143|-36.89,122.41,126.3899|-67.5165,-60.0334,42.8663|-166.6558,55.2535,-30.4289|-36.89,122.41,132.02|-67.5161,-60.0337,42.8665|-164.6302,57.0542,-31.7148|-36.89,122.41,137.6399|-67.5159,-60.0336,42.8668|-162.6047,58.8554,-33.0007|-36.89,122.41,143.27|-67.5162,-60.0338,42.8661|-160.5792,60.6566,-34.2866|-33.91,113.37,159.49|-76.1855,-55.787,32.9176|-177.9699,28.5903,2.0413|-21.23,178.6399,17.5|-2.2092,-36.2073,93.1888|-176.5721,37.2501,-13.5859|-39.78,164.22,47.79|-20.8977,-63.9803,73.9582|-175.9451,39.1696,-15.8045|-39.78,164.22,53.4199|-177.9035,29.6766,-0.7541|-26.58,176.75,18.26|-5.0639,-44.7464,89.2868|-177.0208,35.4916,-11.1972|-35.8801,169.36,39.0099|-14.9559,-58.6115,79.6306|-177.3102,33.9267,-8.6541|-31.4401,173.5099,36.7099|-9.6439,-52.1587,84.7731|-177.5996,32.3617,-6.1111|-31.4401,173.5099,31.09|-1'
  852. ..'77.7515,31.0192,-3.4326|-26.58,176.75,23.8899|-5.0638,-44.7458,89.2871|-158.2935,62.3304,-35.274|-23.05,110.2699,172.2799|-86.3211,-39.1502,31.8737|-155.7039,63.505,-36.2302|-11.8901,108.73,178.3699|-92.6702,-20.6088,31.4246|-152.9237,64.1234,-37.1729|-0.65,108.41,178.3999|Banking Turn|-58.0983,104.3196,156.2996|-17.14,-92.6,50.1199|50,-50,50|-60.0504,111.2172,160.6551|-14.86,-93.5501,64.5199|50,50,50|-43.9234,106.0393,156.1083|-17.0901,-60.0201,66.8899|100,-50,10|-62.6753,112.3158,159.7048|-21.48,-109.9001,69.66|-69.3669,114.9214,154.4106|-10.3401,-132.6901,66.04|-67.1975,114.3828,156.4114|-15.4701,-130.3201,76.76|-64.9929,113.5824,158.2821|-24.97,-121.5501,74.2699|-54.2274,109.804,160.7499|-19.72,-77.7301,60.9|-51.468,108.7917,160.1494|-19.23,-65.5,68.5999|-57.1564,110.4476,160.8344|-12.3901,-88.35,63.29|-52.391,102.5228,156.1442|-17.91,-75.9401,45.0699|-49.622,101.6001,155.4504|-21.8401,-71.6601,54.86|-46.407,106.9214,157.5414|-55.2346,103.4351,156.4291|-17.7001,-84.28,47.9|-60.8825,105.38,155.9478|-20.7001,-97.2,51.6199|-48.8906,107.8036,158.9744|-71.5364,115.4601,152.4098|-63.092,107.0265,154.7615|-33.28,-118.2301,61.2999|-64.9267,108.657,153.0366|-32.92,-133.2401,68.98|-46.979,100.4839,154.574|-21.8401,-71.6601,66.11|-38.9562,104.2751,153.2421|100,-50,-30|-41.4398,105.1572,154.6752|-44.3359,99.3677,153.6976|-16.9501,-60.91,62.5299|-33.9891,102.5109,150.3759|-12.4201,-49.4301,75.43|-29.8126,94.7881,144.1234|-14.29,-55.76,72.3899|2,1.2,9|-66.7207,110.0849,151.102|-28.4201,-137.1601,54.11|-22.6032,92.5652,139.2159|-10.65,-44.8601,70.0299|-19.5258,98.3131,137.9888|2,1.2,30|-25.006,93.3065,140.852|-41.8284,98.4928,152.3023|-14.29,-55.76,61.1399|-39.4252,97.7519,150.6666|-34.6188,96.2701,147.3951|-37.022,97.011,149.0308|-36.4727,103.393,151.809|-31.7638,101.8653,148.4703|-70.0941,117.3851,142.2793|-36.2901,-166.68,26.1299|50,0,50|-69.5367,115.6093,144.6322|-39.57,-'
  853. ..'160.87,33.81|-76.2965,116.3344,144.9736|-10.29,-158.59,35.5499|-68.7791,113.6982,146.817|-39.57,-160.8801,50.6899|-75.2189,115.7982,147.7216|-6.43,-146.51,44.4799|-73.5737,115.4622,150.2077|-0.04,-137.23,55.2|-68.0215,111.7871,149.0019|-34.57,-148.23,59.9099|-7.2856,94.7636,127.5089|-77.3826,119.0915,139.8288|-34.66,-173.29,18.7199|-70.3825,119.0915,139.8288|-77.0943,117.3851,142.2793|-20.5,-163.51,25.61|-5.0603,94.118,125.6033|-10.95,-43.89,74.3099|-70.3825,120.7582,137.3344|-33.75,180,11.25|-77.3826,120.7582,137.3344|-1.1133,86.8337,117.6212|2,1.2,59|-70.3825,122.4248,134.84|-33.75,180,0|-77.3825,122.4249,134.84|8.8923,90.2236,111.0979|2,1.2,38|-70.3825,124.0916,132.3456|-77.3825,124.0915,132.3456|-70.3825,125.2396,129.574|-22.5,180,0|-77.3825,125.2396,129.574|49.2216,62.9035,31.824|-31.9,-6.1,-131.01|30,-50,-100|44.2687,61.3632,38.8602|-27.7701,-2.59,30.0799|48.8314,67.3166,39.647|-28.1201,-1.29,-133.4101|48.891,65.9028,37.0017|48.9507,64.4889,34.3565|44.3888,59.9654,36.2084|44.6287,57.17,30.9049|-27.7701,-2.59,7.5799|44.5087,58.5677,33.5566|-27.7701,-2.59,18.8299|49.7632,59.7329,26.7591|-31.9,-6.1,-147.8801|44.7488,55.7723,28.2531|-27.7701,-2.59,-3.6701|45.1088,51.579,20.2977|44.8688,54.3745,25.6013|44.9888,52.9768,22.9495|49.4924,61.3182,29.2915|-31.9,-6.1,-142.26|51.12,48.6745,12.7195|-33.2201,-2.4601,-173.2101|50.985,50.5546,15.0534|-38.8101,-3.31,-172.7101|50.663,54.7513,19.3293|-44.3801,-4.31,-160.8001|50.8241,52.6529,17.1914|50.034,58.1476,24.2266|-31.9,-6.1,-153.51|50.3048,56.5622,21.6941|-37.1301,-8.61,-157.7101|46.2919,37.4246,-6.1276|-27.7701,-2.59,170.6999|51.4429,43.7432,5.1977|-33.2201,-2.4601,175.5399|45.9319,41.6179,1.8277|46.0519,40.2202,-0.824|46.1719,38.8224,-3.4758|51.6582,40.4557,0.1832|51.5506,42.0994,2.6905|51.9811,35.5244,-7.3387|-33.2201,-2.4601,-178.84|51.7658,38.8119,-2.3241|51.8735,37.1682,-4.8314|52.0888,33.8807,-9.846|32.7036,77.258'
  854. ..'6,78.6399|-15.7101,-30.4501,62.7999|35.4719,75.386,73.6656|-20.7001,-27.7001,61.9399|41.6787,77.2118,66.8027|-22.2701,-27.6001,-113.25|34.1672,76.4462,76.1503|42.9648,76.0749,64.3424|-19.96,-22.1001,-115.2301|36.7765,74.3258,71.1809|-25.63,-24.7701,60.79|40.3926,78.3487,69.263|37.9098,73.0279,68.7251|39.0432,71.7301,66.2693|-25.63,-24.7701,60.7799|36.246,81.2486,76.6943|-17.0901,-29.9201,-112.4701|40.1765,70.4322,63.8134|-22.7901,-19.4501,58.5999|39.1064,79.4857,71.7234|44.0257,75.0509,61.7297|-17.48,-16.7701,-116.95|41.0973,69.27,61.2055|-19.7801,-14.3501,56.75|37.6762,80.3672,74.2088|34.8158,82.1301,79.1797|41.7968,68.2547,58.4706|-16.63,-9.44,55.2099|42.7397,66.5372,52.7995|-16.63,-9.44,49.59|43.2111,65.6784,49.964|-16.63,-9.44,38.34|45.6765,73.2483,56.2502|46.502,72.347,53.5105|-17.48,-16.7701,-122.57|43.6825,64.8196,47.1284|-20.07,-4.74,31.2299|47.3274,71.4457,50.7707|-14.4,-11.87,-123.92|48.3473,69.7209,45.1229|-23.6201,-5.0501,-126.1501|47.9253,70.6997,47.9271|-19.0401,-8.5601,-124.8701|43.9156,63.7903,44.3202|44.1487,62.7609,41.512|48.5893,68.5187,42.3849|45.2118,50.0046,17.7383|-27.7701,-2.59,176.33|51.3353,45.387,7.705|45.3318,48.6069,15.0865|45.4519,47.2091,12.4348|51.2276,47.0307,10.2122|45.5719,45.8113,9.783|45.6919,44.4135,7.1312|45.8119,43.0157,4.4795|42.2683,67.3959,55.6351|44.8511,74.1496,58.99|46.4119,36.0268,-8.7794|31.2401,78.071,81.1295|33.2552,82.7475,81.6664|-11.8801,-32.1101,-111.92|52.1964,32.2369,-12.3533|-27.6001,-2.33,-178.9|52.3045,30.847,-15.0097|52.4125,29.4571,-17.6661|52.5206,28.0671,-20.3225|-21.98,-2.2101,-178.95|46.1537,34.0873,-12.0306|46.2613,32.4435,-14.5379|46.3694,31.0536,-17.1943|31.6946,83.365,84.153|23.2729,86.1149,96.1427|-10.65,-44.8601,-109.9701|20.5682,81.0411,95.2133|-10.4301,-45.85,-114.25|22.6853,80.4979,93.1583|-8.08,-40.67,-115.0801|25.3526,85.5604,94.0529|-8.69,-39.51,-110.8701|27.2395,85.1071,91.765|28.8,84.489'
  855. ..'6,89.2784|-9.73,-26.82,-112.9101|24.6211,80.0761,90.9056|-5.6701,-35.55,-115.7|26.357,79.7798,88.4768|-13.1701,-38.23,-115.5401|29.6319,78.6277,83.6001|-10.69,-33.0601,63.4|28.1644,79.0964,86.1821|-10.69,-33.0601,-116.6|30.134,83.9825,86.6396|52.628,26.9445,-23.1024|46.4775,29.6637,-19.8507|46.5855,28.2737,-22.5071|52.7355,25.8218,-25.8823|-16.3501,-2.11,-178.9901|52.8413,24.9771,-28.759|46.693,27.1511,-25.287|46.8005,26.0284,-28.067|46.9063,25.1837,-30.9436|47.0121,24.3391,-33.8203|52.9472,24.1325,-31.6357|53.0529,23.2879,-34.5124|53.2646,21.5986,-40.2658|53.1588,22.4432,-37.3891|47.1179,23.4945,-36.697|53.3704,20.754,-43.1425|53.4763,19.9093,-46.0192|53.5821,19.0647,-48.8959|0.5199,-1.81,-179.03|47.2238,22.6498,-39.5737|47.3295,21.8052,-42.4504|47.4354,20.9606,-45.3271|47.5413,20.1159,-48.2038|47.6471,19.2713,-51.0805|50.4527,89.3218,-137.488|-33.32,28.77,-1.2301|51.6591,90.9696,-135.2905|-22.07,28.51,-1.1101|57.6463,89.2758,-137.2367|56.6068,87.1706,-139.1042|-44.5601,29.11,-1.4501|58.8526,90.9237,-135.0391|52.9858,92.097,-132.8474|-10.82,28.29,-1.05|60.1793,92.051,-132.596|54.382,92.6603,-130.2525|0.43,28.09,-1.03|61.5755,92.6136,-130.0011|49.4132,87.2165,-139.3556|48.5805,84.7349,-140.8213|-55.8101,29.62,-1.8401|54.8477,78.9888,-142.0882|-78.28,33.0699,-5.08|55.774,84.689,-140.5699|-55.8101,29.61,-1.8301|55.1801,81.9263,-141.5775|-67.0501,30.53,-2.6501|47.9865,81.9722,-141.8288|47.7904,78.9893,-142.0826|-83.8601,37.77,-9.73|59.5937,89.2625,-120.3574|-34.17,-152.6101,1.24|60.5511,87.1259,-118.4818|-45.41,-152.95,1.46|58.4518,90.9474,-122.5614|-22.9201,-152.34,1.12|64.3595,91.8844,-124.7572|-11.6701,-152.12,1.0499|57.1695,92.1158,-125.0089|62.9859,92.4913,-127.3543|-0.4301,-151.9101,1.0299|55.796,92.7228,-127.606|69.0448,78.6214,-115.4715|-84.7,-163,11.14|68.9641,81.6086,-115.7366|-67.9001,-154.4401,2.73|61.7741,81.8399,-115.9883|61.2873,84.6195,-117.0065|-56.66'
  856. ..',-153.4701,1.87|61.9927,78.8938,-115.4663|-79.13,-157.2701,5.4499|68.4774,84.3882,-116.7548|-56.66,-153.4601,1.86|67.7411,86.8945,-118.2301|66.7836,89.0312,-120.1057|65.6418,90.7161,-122.3096|60.6114,37.1969,-144.248|-11.4601,0.4,178.19|60.8661,43.8113,-127.6775|-39.57,1.3799,178.3899|67.629,37.5223,-141.3074|-17.08,0.54,178.6|60.7466,40.7131,-132.8058|-28.33,0.9399,178.49|67.7413,40.4424,-132.8052|67.6967,39.2846,-135.5725|-22.71,0.75,178.49|67.6061,36.9262,-144.2475|60.6342,37.793,-141.3079|67.6628,38.4035,-138.44|67.7962,41.8656,-130.1649|-33.94,1.36,177.74|60.6681,38.6742,-138.4405|60.8014,42.1363,-130.1655|60.702,39.5553,-135.573|67.5832,36.3302,-147.1877|60.5885,36.6009,-147.1881|67.5717,36.025,-150.172|-5.8401,0.2099,177.96|60.5769,36.2956,-150.1726|60.5767,36.2842,-153.1726|-0.22,0,177.7799|67.5714,36.0135,-153.172|60.9399,45.722,-125.3657|-45.1801,1.99,177.4199|67.8609,43.5406,-127.677|-39.57,1.5,178.0399|67.9346,45.4512,-125.3652|61.0221,47.8498,-123.2525|-50.8101,2.0899,177.8|68.7534,66.6253,-115.4426|-89.02,96.1699,83.9199|68.5241,60.6979,-116.2992|-78.8301,8.7799,171.5399|68.4129,57.8259,-117.1591|-73.24,6.1599,173.9299|68.3057,55.0519,-118.2965|-67.6501,4.46,175.5599|68.6378,63.6407,-115.7252|-84.27,19.2,161.0299|68.9868,75.622,-115.4658|-88.89,95.6399,112.4499|68.8121,69.6247,-115.4484|-88.9001,95.68,95.54|68.9281,72.6225,-115.4599|-88.89,95.5199,106.94|68.1067,49.9038,-121.3577|-56.42,2.66,177.25|68.0168,47.5791,-123.252|68.2032,52.4027,-119.7006|-62.03,3.64,176.1499|61.4181,58.0966,-117.1596|61.9346,75.8944,-115.4606|61.5292,60.9687,-116.2997|61.8173,69.8955,-115.4489|61.6431,63.9113,-115.7257|61.3109,55.3227,-118.297|61.1119,50.1744,-121.3582|61.2085,52.6734,-119.7011|61.8759,72.8949,-115.4548|61.7586,66.896,-115.4431|-88.9401,95.68,89.9499|54.6176,64.0046,-141.7716|-84.3601,176.69,-176.34|54.675,69.9903,-142.0712|-88.8701,95.61,-84.39|54.6176,61.'
  857. ..'0619,-141.1863|-78.74,177.5399,-177|54.7323,72.9898,-142.0768|-88.88,95.7699,-73.32|54.6176,66.9909,-142.0656|-88.84,95.62,-89.99|47.6176,66.9908,-142.0655|-88.7601,95.23,-95.1501|47.6177,64.0047,-141.7715|54.6176,47.96,-134.1833|-50.62,179.38,-178.6901|47.6176,61.0619,-141.1863|47.6176,58.1911,-140.3154|-73.1201,178.8,-178.3801|47.6176,55.4194,-139.1674|-67.49,179.07,-178.6101|47.6176,50.279,-136.0865|-56.2401,179.33,-178.7401|47.6176,47.96,-134.1833|47.6176,52.7735,-137.7532|-61.87,179.47,-179.12|54.6176,58.1911,-140.3155|54.6176,55.4194,-139.1674|54.6176,50.279,-136.0865|54.6176,52.7735,-137.7532|47.675,72.9904,-142.0712|47.675,69.9903,-142.0712|54.7897,75.9893,-142.0825|-88.88,95.66,-67.57|47.7323,75.9899,-142.0768|54.5315,38.0383,-125.7813|-50.62,179.38,1.3099|2,1.2,23|47.5306,38.0522,-125.9221|39.3699,-178.93,1.07|2,22.8,1|Track|47.6176,18.8004,-70.3193|0,0,-200|2,34.8,1|54.6176,19.0004,-69.1193|2,37.2,1|Slant|47.6176,24.5687,-112.2486|-33.75,179.88,-179.59|0,100,-200|47.6176,26.2355,-114.743|-39.37,179.6699,-179.09|47.6176,28.1387,-117.062|-45,179.7599,-179.43|47.6176,23.1546,-109.6028|-28.1201,179.75,-178.9901|47.6177,22.0066,-106.8312|-22.5,179.82,-179.1001|54.6176,26.2355,-114.743|-39.37,179.55,-178.7401|47.6176,20.2649,-101.0896|-16.8701,179.86,-179.09|54.6176,23.1546,-109.6028|54.6176,20.2649,-101.0896|47.6177,21.1358,-103.9604|54.6176,21.1358,-103.9604|54.6176,24.5687,-112.2486|54.6176,22.0066,-106.8312|54.6176,28.1387,-117.062|54.6176,19.6797,-98.1472|-11.25,179.96,-179.5501|47.6176,19.6797,-98.1472|47.6177,19.0944,-95.2048|54.6176,19.0944,-95.2049|47.6177,18.8004,-92.2193|-5.62,179.99,-179.81|54.6176,18.8004,-92.2193|54.6176,18.8004,-89.2193|47.6176,18.8004,-89.2193|90% Banking Track|67.1525,35.9005,-207.6906|0,5.6199,90|0,0,-150|67.1528,35.9005,-201.6906|0,0,84.37|67.1531,35.9005,-195.6906|0,0,73.12|67.1526,35.9005,-204.6906|67.1529,35.9005,-198.690'
  858. ..'6|0,0,78.75|67.1533,35.9005,-192.6906|0,0,67.5|67.1534,35.9005,-189.6906|0,0,61.8699|67.1536,35.9005,-186.6906|0,0,56.25|67.1537,35.9005,-183.6906|0,0,50.6199|67.1539,35.9005,-180.6906|0,0,45|67.154,35.9005,-177.6906|0,0,39.3699|62.3456,30.8093,-180.6903|7.5599,172.16,134.5|61.743,31.4597,-177.6903|-8.6701,-7.18,39.9199|61.3339,32.0115,-174.6903|-9.33,-6.3001,34.2599|67.1542,35.9005,-174.6906|0,0,33.75|65.3127,29.1438,-195.6902|-4.8401,-16.1801,-106.1801|66.2695,28.8535,-198.6903|3.4,169.11,106.5299|66.666,28.9146,-201.6905|1.1299,168.7799,95.51|67.4809,28.8153,-204.6848|-1.4801,-11.5501,84.5599|64.4745,29.4333,-192.6905|-4.2801,-10.41,67.8899|67.4996,28.7945,-207.6847|-0.4001,-0.3601,84.3799|64.0959,29.5246,-189.6904|-6.22,-9.3801,56.75|63.4309,29.9691,-186.6904|5.55,170.99,123.3499|62.8676,30.3625,-183.6904|6.3099,171.66,128.9499|60.9809,32.6007,-171.6903|-9.91,-5.35,28.59|67.1544,35.9005,-171.6906|0,0,28.12|60.6874,33.2217,-168.6903|-10.3801,-4.35,22.8899|67.1545,35.9005,-168.6906|0,0,22.5|60.4561,33.8685,-165.6902|-10.7601,-3.3,17.18|60.2894,34.5349,-162.6902|-11.03,-2.2201,11.46|67.1547,35.9005,-165.6906|0,0,16.87|67.1549,35.9005,-162.6906|0,0,11.25|60.1887,35.2144,-159.6902|-11.19,-1.1101,5.73|67.155,35.9005,-159.6906|0,0,5.6199|60.1552,35.9005,-156.6902|-11.25,0,0|67.1552,35.9005,-156.6906|-9.8824,35.9004,-236.7193|-150,0,0|-6.8824,35.9004,-236.7194|0,90,5.6199|-3.8824,35.9005,-236.7196|0,90,11.25|-0.8824,35.9005,-236.7197|0,90,16.87|2.1176,35.9005,-236.7199|0,90,22.5|5.1176,35.9005,-236.7201|0,90,28.12|8.1176,35.9005,-236.7203|0,90,33.75|-9.882,35.9004,-229.7193|11.25,90,0|-6.882,35.2143,-229.7531|11.1899,91.12,5.73|-3.882,34.5348,-229.8541|11.0299,92.22,11.46|11.1176,35.9005,-236.7205|0,90,39.3699|-0.882,33.8685,-230.0211|10.76,93.3,17.18|2.118,33.2217,-230.2528|10.38,94.3499,22.8899|5.118,32.6008,-230.5466|9.9099,95.3499,28.59|8.118,32.0115,-230.9|9.34,96'
  859. ..'.3,34.2599|14.1176,35.9005,-236.7206|0,90,45|11.118,31.4598,-231.3094|8.68,97.19,39.9199|14.1179,30.9507,-231.7709|7.94,98,45.5499|17.1176,35.9005,-236.7208|0,90,50.6199|17.1179,30.4894,-232.28|7.11,98.7399,51.1599|20.1176,35.9005,-236.721|0,90,56.25|20.1179,30.1984,-232.5393|5.28,99.9499,62.33|23.1178,29.727,-233.4214|26.1178,29.4341,-233.9238|-3.26,-79.21,106.55|26.1176,35.9005,-236.7214|0,90,67.5|23.1176,35.9005,-236.7212|0,90,61.8699|29.1172,29.1439,-234.8807|-3.26,-79.2201,106.5699|29.1176,35.9005,-236.7215|0,90,73.12|32.1176,35.9005,-236.7217|0,90,78.75|32.1177,29.0126,-235.2395|-2.1601,-67.59,95.19|90% Banked Turn|49.6882,35.9005,-233.8245|0,67.5,90|-150,0,-150|46.9165,35.9005,-234.9724|0,73.12,89.9899|59.2691,35.9005,-226.7196|0,45,90|62.8393,35.9005,-221.9065|0,33.75,89.9899|61.1724,35.9005,-224.4007|0,39.3699,90|52.334,35.9005,-232.4105|0,61.8699,90|44.0456,35.9005,-235.8431|0,78.75,90|35.1176,35.9005,-236.7219|0,90,84.37|38.1176,35.9005,-236.7221|41.1032,35.9005,-236.4282|0,84.37,89.9899|54.8285,35.9005,-230.7439|0,56.25,90|57.1476,35.9005,-228.8409|0,50.63,90|47.1021,28.9011,-235.0495|-0.01,-106.8701,89.9899|44.2313,28.9012,-235.9203|0,-101.25,90|35.1177,28.9146,-236.2348|-1.64,-73.1901,95.37|38.3033,28.9012,-236.7995|0,-90,90|41.2889,28.9012,-236.5055|-0.01,-95.6201,89.9899|49.8737,28.9011,-233.9015|-0.01,-112.5,89.9899|52.5195,28.901,-232.4873|-0.01,-118.1201,89.9899|55.0139,28.9009,-230.8206|0,-123.75,90|63.0243,28.9006,-221.9829|-0.02,-146.2401,89.9899|57.333,28.9009,-228.9175|0,-129.37,90|59.4543,28.9008,-226.7962|-0.01,-134.9901,89.9899|61.3575,28.9007,-224.4772|-0.01,-140.6101,90|64.2536,35.9005,-219.2608|0,28.1299,90|64.4385,28.9006,-219.3372|-0.01,-151.87,90|65.5866,28.9005,-216.5656|0,-157.5,90|65.4018,35.9005,-216.4892|0,22.5,90|66.8582,35.9005,-210.6761|0,11.25,89.9899|66.2728,35.9005,-213.6184|0,16.87,90|66.6616,28.8393,-213.6184|1.25,16.43'
  860. ..',84.5|67.2257,28.8025,-210.6721|0.6999,10.8299,84.41|-115.8103,36.9796,-249.7193|-132.4061,43.5355,-249.7193|-118.7527,37.5649,-242.7193|-127.2659,40.4546,-249.7193|-127.2659,40.4546,-242.7193|-124.4943,39.3066,-242.7193|-115.8103,36.9796,-242.7193|-118.7527,37.5649,-249.7193|-121.6235,38.4358,-242.7193|-129.9117,41.8688,-242.7193|-121.6235,38.4357,-249.7193|-129.9117,41.8688,-249.7193|-124.4943,39.3066,-249.7192|-112.8679,36.3944,-242.7193|-112.8679,36.3944,-249.7193|-109.8824,36.1003,-242.7193|-109.8824,36.1003,-249.7193|-106.8824,36.1004,-249.7193|-106.8824,36.1004,-242.7193|-134.7251,45.4387,-249.7193|-132.4061,43.5355,-242.7193|-134.7251,45.4387,-242.7193|-136.8465,47.5601,-249.7193|-144.7287,66.5905,-242.7192|-143.8494,60.662,-242.7192|-142.9785,57.7912,-242.7193|-141.8305,55.0195,-242.7193|-144.4347,63.6047,-242.7193|-144.7399,75.5895,-242.834|-144.7343,69.59,-242.7766|-144.7343,72.59,-242.7766|-138.7496,49.8792,-242.7193|-136.8464,47.5601,-242.7193|-140.4163,52.3737,-242.7193|-142.9786,57.7912,-249.7193|-144.7456,75.5889,-249.8913|-143.8494,60.662,-249.7193|-144.7343,69.59,-249.7766|-144.4347,63.6047,-249.7193|-141.8305,55.0195,-249.7193|-138.7496,49.8792,-249.7193|-140.4163,52.3737,-249.7193|-144.74,72.5895,-249.834|-144.7287,66.5905,-249.7192|-122.7688,88.6464,-261.8855|-124.9727,90.3313,-260.7437|-123.0206,88.8777,-254.6955|-121.1449,86.7411,-255.653|-125.2245,90.5626,-253.5537|-127.4203,91.4998,-259.4614|-127.672,91.7311,-252.2714|-130.0174,92.1067,-258.0878|-130.2691,92.3373,-250.8978|-120.8932,86.5097,-262.843|-119.4179,84.0034,-263.5792|-118.1295,78.5088,-257.0946|-119.6697,84.2347,-256.3893|-118.6515,81.455,-256.876|-118.3998,81.2237,-264.066|-118.1346,78.2364,-264.1467|-139.8998,88.8752,-252.7479|-141.7673,86.77,-251.7084|-137.7022,90.5231,-253.9542|-135.5104,91.6963,-248.0874|-135.2591,91.6503,-255.2809|-132.9156,92.2596,-249.4836|-132.6642,92.213'
  861. ..'7,-256.6771|-144.7456,78.5889,-242.8919|-144.4919,81.5718,-243.0881|-144.2406,81.5259,-250.2817|-143.233,84.2885,-250.8757|-144.7513,78.5884,-249.9493|-143.4844,84.3343,-243.6821|-142.0187,86.816,-244.5148|-140.1511,88.9211,-245.5543|-137.9536,90.5691,-246.7606|-146.9112,36.8115,-255.7133|-130.3406,43.4258,-255.968|-143.9705,37.1369,-262.7309|-135.4689,40.3276,-255.8485|-135.4684,40.0569,-262.8433|-138.2356,38.8992,-262.7986|-146.9107,36.5408,-262.708|-143.9711,37.4076,-255.7361|-141.1031,38.0181,-262.7648|-132.8281,41.4801,-262.8981|-141.1036,38.2887,-255.77|-132.8286,41.7508,-255.9034|-138.2361,39.1699,-255.8039|-149.8508,35.9448,-262.6852|-149.8512,36.2155,-255.6904|-152.8352,35.6395,-262.6736|-152.8357,35.9102,-255.6788|-155.8357,35.8988,-255.6786|-155.8351,35.6281,-262.6734|-128.0289,45.3365,-256.0418|-130.3401,43.1552,-262.9628|-128.0283,45.0658,-263.0365|-125.9157,47.4643,-256.124|-118.1057,66.2402,-263.8553|-118.9623,60.3124,-263.626|-119.8222,57.4404,-263.5148|-120.9596,54.6664,-263.4076|-118.3883,63.2552,-263.7397|-118.1289,75.2369,-264.0887|-118.1116,69.2396,-263.914|-118.123,72.2374,-264.03|-124.0209,49.5182,-263.2085|-125.9152,47.1936,-263.1188|-122.3637,52.0172,-263.3052|-119.8227,57.7112,-256.5201|-118.1238,75.5093,-257.0365|-118.9628,60.5831,-256.6312|-118.1121,69.5103,-256.9192|-118.3888,63.5258,-256.745|-120.9601,54.9372,-256.4128|-124.0213,49.7889,-256.2138|-122.3642,52.2879,-256.3104|-118.1179,72.5099,-256.9779|-118.1062,66.5109,-256.8605|-239.3824,58.8004,-159.7193|0,0,10|2,1.2,48|-232.3824,58.6004,-159.2193|2,1.2,49|UnBanking 90% Turn|-116.8468,23.8993,-125.0884|0,0,5.63|70,10,70|-116.8467,23.8992,-122.0885|-116.8468,23.8994,-128.0884|-116.8469,23.8995,-131.0883|-123.813,23.213,-125.0882|-123.7123,22.5335,-128.0881|-123.5454,21.8672,-131.0881|-123.3141,21.2205,-134.0881|-10.3801,-4.35,22.8999|-123.8466,23.899,-122.0882|-116.847,23.8996,-134.08'
  862. ..'83|-122.6673,20.0104,-140.0881|-116.8472,23.8996,-137.0882|-123.0205,20.5996,-137.0881|-116.8472,23.8997,-140.0882|-116.8473,23.8998,-143.0882|0,0,39.38|-122.2583,19.4587,-143.0881|-8.6701,-7.1901,39.9199|-116.8475,23.8999,-146.0881|-121.6555,18.8084,-146.0881|7.5599,172.16,134.49|-121.1335,18.3617,-149.0881|-116.8475,23.9,-149.0881|-116.8476,23.9,-152.0881|-116.8477,23.9001,-155.088|0,0,61.88|-116.8478,23.9002,-158.088|-116.8479,23.9003,-161.0879|-116.848,23.9003,-164.0879|-116.848,23.9004,-167.0879|0,0,84.3799|-120.5701,17.9684,-152.0881|-119.905,17.524,-155.0881|-6.22,-9.3801,56.7599|-119.5264,17.4328,-158.0882|-118.688,17.1433,-161.0878|-4.83,-16.1801,-106.17|-117.7312,16.8531,-164.0878|-117.3346,16.9143,-167.088|1.12,168.7799,95.51|-116.8482,23.9005,-170.0878|-116.5196,16.8151,-170.0823|-116.5009,16.7944,-173.0821|-116.8483,23.9006,-173.0878|-117.1424,23.9006,-176.0733|0,11.25,90|-117.7278,23.9007,-179.0156|-116.7747,16.8024,-176.0696|-117.3387,16.8393,-179.0158|-118.4136,16.9005,-181.963|-118.5987,23.9007,-181.8863|-119.7468,23.9007,-184.6579|0,28.12,90|-119.5617,16.9007,-184.7345|-120.9758,16.9008,-187.3802|-122.6425,16.9009,-189.8745|-0.01,-140.6101,89.9899|-121.1611,23.9008,-187.3036|0,33.75,90|-122.8279,23.9008,-189.7978|-124.5457,16.9009,-192.1935|-126.667,16.9009,-194.3148|-136.8977,16.9011,-200.4468|-124.7312,23.9008,-192.1167|-126.8525,23.9008,-194.2379|-129.1716,23.9007,-196.1409|-128.986,16.901,-196.218|0,-123.75,89.9899|-131.4804,16.901,-197.8846|-134.1261,16.9011,-199.2988|-142.8968,23.9004,-201.8254|0,84.37,90|-142.7109,16.901,-201.9029|-145.6964,16.9009,-202.197|0,-90,89.9899|-137.0836,23.9006,-200.3695|0,73.12,90|-139.9544,23.9005,-201.2401|-139.7685,16.901,-201.3177|0,-101.25,89.9899|-131.6661,23.9007,-197.8075|-134.3119,23.9007,-199.2215|-145.8824,23.9004,-202.1193|-123.3824,23.9004,-100.2193|0,0,70|2,1.2,39|-116.8458,24.0986,-101.0885|0,0,-1'
  863. ..'80|1/2 hill|-238.9247,37.0898,117.0632|0,-179.76,-0.1001|0,50,100|3,1.2,2|-231.925,37.202,117.0339|-231.9157,37.6021,119.4339|13.71,-179.8201,-0.13|-238.915,37.4899,119.5632|-231.9067,38.2021,121.8339|17.9099,-179.78,-0.11|-238.9065,38.0899,121.8632|-231.8985,38.8021,124.0339|25.8199,-179.8001,-0.0901|-238.8985,38.7899,124.0632|-238.8916,39.5899,126.0631|31.44,-179.8001,-0.06|-231.8916,39.6021,126.0339|-238.8855,40.8899,128.0631|41.9199,-179.93,-0.0701|-231.8853,40.8021,128.0339|-238.8824,46.6004,141.2807|-231.8824,46.5004,141.2807|-231.8824,46.1003,138.8807|-13.7101,0.0299,179.9799|-238.8824,46.2003,138.7807|-231.8824,45.5003,136.4807|-17.91,-0.02,179.99|-238.8824,45.6003,136.4807|-231.8824,44.9004,134.2807|-25.82,-0.01,-179.98|-238.8824,44.9004,134.2807|-238.8824,44.1003,132.2807|-31.4401,-0.02,-179.95|-231.8824,44.1003,132.2807|-238.8824,42.8003,130.2807|-41.92,0.07,-179.93|-231.8824,42.9004,130.2807|90% Banked Track|-138.3824,36.8004,250.8807|0,-90,-90|100,0,0|2,1.2,138|-138.8824,29.8004,250.8807|2,1.2,139|-67.2299,29.4926,251.2869|-0.4001,-90.3601,84.37|100,10,-100|-64.2425,29.5006,251.0132|0.6999,-79.17,84.4|-61.2961,29.5373,250.4493|1.25,-73.57,84.5|-67.2237,36.5988,250.9404|0,-84.38,89.9899|-64.2383,36.5988,250.6464|0,-78.75,89.9899|-58.349,29.5985,249.3745|0,112.5,90.01|-61.2959,36.5987,250.0612|0,-73.13,89.9899|-55.5774,29.5986,248.2266|-0.01,118.1299,90|-52.9317,29.5988,246.8125|-0.02,123.76,90|-58.4252,36.5987,249.1903|0,-67.5,89.9899|-55.6536,36.5988,248.0423|0,-61.8801,89.9899|-53.0079,36.5988,246.6281|0,-56.26,89.9899|-50.5136,36.5989,244.9614|0,-50.6301,89.9899|-50.4373,29.599,245.1459|-0.01,129.38,90|-48.1182,29.5991,243.2428|-0.01,135.0099,90|-45.9969,29.5994,241.1216|-0.01,140.6199,90|-44.0936,29.5996,238.8027|-0.01,146.25,90|-42.4269,29.5998,236.3084|-0.01,151.88,90|-39.8645,29.6005,230.8911|-0.01,163.13,90|-48.1946,36.5991,243.0582|0,-45,89.989'
  864. ..'9|-46.0733,36.5992,240.937|0,-39.3801,89.9899|-44.1702,36.5994,238.6179|0,-33.75,89.9899|-41.0126,29.6002,233.6627|-0.01,157.5,90|-38.4082,29.6011,225.078|-0.01,174.38,90|-38.114,29.6014,222.0925|-0.01,-180,90|-38.6785,29.6151,218.9067|-1.64,-163.2,95.37|-39.6737,29.7134,215.9067|-2.1601,-157.59,95.19|-38.9935,29.6008,228.0204|-0.01,168.75,90|-40.989,30.1356,209.9067|-3.26,-169.2101,106.55|-40.0323,29.8451,212.9062|-3.26,-169.2201,106.5699|-39.9413,36.6001,230.7061|0.0099,-16.88,89.9899|-42.5035,36.5996,236.1235|0.0099,-28.13,89.9899|-41.0894,36.5998,233.4778|0.0099,-22.5,89.9899|-41.4913,30.4289,206.9068|5.2899,9.9399,62.33|-42.3732,30.9006,203.9068|-42.6323,31.1919,200.9068|7.1199,8.7399,51.1599|-43.1412,31.6536,197.9069|7.94,8,45.5499|-43.6026,32.163,194.9069|8.68,7.1799,39.9199|-44.0118,32.715,191.907|9.34,6.3,34.2599|-44.365,33.3047,188.907|9.9099,5.3499,28.5799|-38.4853,36.6006,224.893|0.0099,-5.6301,89.9899|-38.1912,36.6009,221.9074|0.0099,0,90|-39.0706,36.6003,227.8354|0.0099,-11.25,90|-38.1914,36.6024,206.9074|0.0099,-0.01,61.8699|-38.1914,36.6028,203.9074|0.0099,0,56.25|-44.6587,33.9259,185.9071|10.39,4.34,22.8899|-38.1913,36.6012,218.9074|0.0099,-0.01,84.37|-38.1913,36.6015,215.9074|0.0099,0,78.75|-38.1913,36.6018,212.9074|0.0099,-0.01,73.12|-38.1913,36.6021,209.9074|0.0099,0,67.5|-38.1914,36.603,200.9074|0.0099,0,50.6199|-38.1914,36.6033,197.9074|0.0099,-0.01,45|-38.1914,36.6037,194.9074|0.0099,0,39.3699|-38.1915,36.604,191.9074|0.0099,-0.01,33.74|-38.1916,36.6043,188.9074|0.0099,-0.01,28.12|-38.1916,36.6046,185.9074|0.0099,0,22.5|-44.8901,34.573,182.9071|10.77,3.2999,17.18|-38.1916,36.6049,182.9074|0.0099,-0.01,16.87|-38.1916,36.6052,179.9073|-45.057,35.2397,179.9072|11.0299,2.21,11.46|-38.1916,36.6054,176.9073|-45.1578,35.9195,176.9072|11.1999,1.11,5.73|-38.1916,36.6057,173.9073|0.0099,0,0|-45.1915,36.6059,173.9072|11.26,-0.01,0|-238.7273,36.708,173.7'
  865. ..'696|0,180,5.63|100,-10,100|-238.7273,36.7082,170.7697|-238.7275,36.7077,176.7696|0,180,11.25|-238.7276,36.7075,179.7696|0,180,16.8799|-231.7611,36.0214,173.7697|-11.2,178.88,5.7399|-231.862,35.3416,176.7696|-11.03,177.7799,11.47|-232.0291,34.675,179.7695|-10.7601,176.6999,17.18|-232.2607,34.028,182.7695|-10.3901,175.6499,22.8999|-231.7273,36.7077,170.7698|-11.25,180,0|-238.7276,36.7073,182.7695|0,180,22.5|-232.9078,32.8173,188.7694|-9.3401,173.6999,34.27|-238.7277,36.707,185.7694|0,180,28.1299|-232.5545,33.4067,185.7694|-9.91,174.6399,28.59|-238.7278,36.7068,188.7695|0,180,33.75|-238.7279,36.7066,191.7695|0,180,39.38|-233.3171,32.2653,191.7693|-8.6801,172.8099,39.9199|-238.728,36.7063,194.7694|0,180,45|-233.92,31.6146,194.7692|7.57,-7.85,134.49|-234.4423,31.1677,197.7691|6.3099,-8.3501,128.9499|-238.7281,36.7061,197.7694|0,180,50.63|-238.7282,36.7059,200.7694|0,180,56.25|-238.7283,36.7056,203.7694|0,180,61.88|-238.7284,36.7054,206.7693|0,180,67.5|-238.7285,36.7051,209.7692|0,180,73.1299|-238.7286,36.7049,212.7692|0,180,78.75|-238.7287,36.7047,215.7692|0,180,84.3799|-235.0059,30.774,200.7691|5.55,-9.0101,123.3499|-235.6711,30.3293,203.769|-6.2301,170.61,56.7599|-236.05,30.2378,206.769|-4.29,169.5899,67.8899|-236.8885,29.948,209.7685|-4.8401,163.82,-106.17|-237.8456,29.6575,212.7685|3.4,-10.8901,106.5299|-238.2423,29.7184,215.7687|1.1299,-11.2201,95.51|-238.7287,36.7044,218.7691|0,180,90|-239.0575,29.619,218.763|-1.4901,168.44,84.5699|-239.0765,29.5979,221.7628|-0.4001,179.6399,84.3799|-238.7288,36.7042,221.7692|0,-174.3801,90|-238.4349,36.7039,224.7546|0,-168.75,90|-237.8497,36.7036,227.697|0,-163.1301,90|-238.8028,29.6056,224.7502|0.6999,-169.17,84.41|-238.2389,29.6422,227.6965|1.24,-163.5701,84.5|-237.1642,29.7031,230.6437|-236.9789,36.7034,230.5678|0,-157.51,90|-235.831,36.7031,233.3394|0,-151.8801,90|-236.0163,29.7029,233.4154|-234.6023,29.7027,236.0612|-0.01,33'
  866. ..'.7599,89.9899|-232.9357,29.7024,238.5556|-0.01,39.38,90|-234.4168,36.7028,235.9852|0,-146.26,90|-232.7502,36.7025,238.4796|0,-140.6301,90|-231.0328,29.7022,240.8748|-0.01,45.0099,89.9899|-228.9116,29.702,242.9961|0,50.6199,90|-218.6812,29.7011,249.1289|0,73.1299,90|-230.8471,36.7022,240.7985|0,-135,90|-228.7258,36.7019,242.9199|0,-129.3801,90|-226.4068,36.7016,244.8231|-226.5927,29.7017,244.8994|-224.0984,29.7015,246.5663|0,61.88,90|-221.4528,29.7013,247.9806|-212.682,36.7003,250.5084|0,-95.63,89.9899|-212.8681,29.7007,250.5853|0,84.3799,90|-209.8824,29.7004,250.8807|-218.4952,36.7008,249.0522|0,-106.88,89.9899|-215.6244,36.7005,249.923|-215.8105,29.7009,249.9998|-223.9125,36.7013,246.4898|0,-118.13,89.9899|-221.2668,36.701,247.9041|0,-112.5101,90|-209.6964,36.7001,250.8025|-231.84,37.0898,167.4983|0,0.2399,-0.1001|0,-50,100|-238.8398,37.202,167.5275|-238.8491,37.6021,165.1275|13.71,0.18,-0.13|-231.8497,37.4899,164.9983|-238.8581,38.2021,162.7276|17.9099,0.2199,-0.11|-231.8582,38.0899,162.6983|-238.8662,38.8021,160.5275|25.8199,0.2,-0.0901|-231.8662,38.7899,160.4983|-231.8732,39.5899,158.4983|31.44,0.2,-0.06|-238.8732,39.6021,158.5275|-231.8792,40.8899,156.4983|41.9199,0.07,-0.0701|-238.8794,40.8021,156.5275|-231.8824,46.6004,143.2807|-238.8824,46.5004,143.2807|-238.8824,46.1003,145.6807|-13.7101,-179.9701,179.9799|-231.8823,46.2003,145.7808|-238.8824,45.5003,148.0807|-17.91,179.9799,179.99|-231.8823,45.6003,148.0808|-238.8824,44.9004,150.2808|-25.82,179.99,-179.98|-231.8823,44.9004,150.2808|-231.8823,44.1003,152.2808|-31.4401,179.9799,-179.95|-238.8824,44.1003,152.2808|-231.8823,42.8003,154.2808|-41.92,-179.93,-179.93|-238.8824,42.9004,154.2808|-220.3854,24.2006,-170.2192|0,180,84.37|80,0,-80|-219.5067,24.2007,-179.1472|0,168.75,90|-220.3857,24.2006,-173.2192|0,-180,90|-220.0918,24.2006,-176.2047|0,174.3699,89.9899|-218.6361,24.2007,-182.018|0,163.1199,89.9899|-22'
  867. ..'0.1691,17.2013,-176.3905|-0.01,-5.62,89.9899|-218.7132,17.2012,-182.2036|-0.01,-16.8701,89.9899|-216.1511,17.2011,-187.621|-0.01,-28.1201,89.9899|-214.4845,17.201,-190.1155|0,-33.75,90|-217.5652,17.2011,-184.9753|-0.01,-22.5,89.9899|-217.4882,24.2007,-184.7898|0,157.5,90|-216.0743,24.2007,-187.4356|0,151.8699,89.9899|-219.584,17.2012,-179.3329|0,-11.25,90|-220.4631,17.2013,-173.405|-210.4602,17.2009,-194.5559|-0.01,-44.9901,89.9899|-214.4077,24.2007,-189.93|0,146.25,90|-212.5814,17.201,-192.4345|0,-39.37,90|-212.5047,24.2007,-192.2492|0,140.63,90|-208.1412,17.2009,-196.4591|-0.01,-50.6101,90|-205.6469,17.2008,-198.1258|-0.02,-56.2401,89.9899|-210.3836,24.2007,-194.3706|0,135,90|-202.9249,24.2007,-199.3551|0,118.1299,90|-200.2298,17.2006,-200.6882|0,-67.5,90|-203.0013,17.2007,-199.54|-0.01,-61.87,90|-208.0648,24.2007,-196.2739|0,129.3699,90|-200.1534,24.2007,-200.5033|0,112.5,90|-197.2827,17.1395,-201.7631|1.25,106.43,84.5|-205.5706,24.2007,-197.9407|0,123.75,89.9899|-194.3364,17.1027,-202.3272|0.6999,100.83,84.41|-191.349,17.0946,-202.6011|-0.4001,89.6399,84.3799|-194.3404,24.2007,-201.9598|0,101.25,89.9899|-197.2827,24.2007,-201.3743|0,106.87,90|-191.355,24.2007,-202.2539|0,95.62,90|Banking 90% Track|-220.3824,24.2004,-125.2193|0,0,-80|-220.3825,24.2004,-128.2192|0,180,5.6199|-220.3827,24.2005,-131.2192|0,-180,11.25|-220.3829,24.2005,-134.2192|0,180,16.87|-220.383,24.2006,-137.2193|0,-180,22.5|-220.3833,24.2006,-140.2192|0,180,28.12|-220.3835,24.2006,-143.2193|-220.3838,24.2006,-146.2192|0,180,39.3699|-220.384,24.2006,-149.2192|-220.3842,24.2005,-152.2192|0,-180,50.6199|-213.3825,24.2004,-125.2197|-213.4164,23.5143,-128.2197|11.1899,-178.8801,5.73|-213.5174,22.8348,-131.2196|11.0299,-177.78,11.46|-213.6844,22.1685,-134.2197|10.76,-176.7,17.18|-213.9161,21.5217,-137.2196|10.38,-175.65,22.8899|-220.3844,24.2006,-155.2192|0,-180,56.25|-214.2099,20.9008,-140.2196|9.90'
  868. ..'99,-174.65,28.59|-214.5634,20.3115,-143.2196|9.34,-173.7,34.2599|-214.9728,19.7598,-146.2196|8.68,-172.81,39.9199|-215.4344,19.2508,-149.2195|7.94,-172,45.5499|-215.9435,18.7894,-152.2195|7.11,-171.26,51.1599|-216.2028,18.4985,-155.2195|5.28,-170.0501,62.33|-220.3846,24.2006,-158.2193|0,180,61.8699|-217.0849,18.0271,-158.2194|-220.3848,24.2006,-161.2192|0,-180,67.5|-217.5873,17.7341,-161.2194|-3.26,10.7899,106.55|-218.5442,17.4439,-164.2188|-3.26,10.7799,106.5699|-220.385,24.2006,-164.2192|0,180,73.12|-218.903,17.3126,-167.2193|-2.1601,22.4099,95.19|-220.3852,24.2006,-167.2192|0,-180,78.75|-219.8984,17.2147,-170.2192|-1.64,16.8099,95.37|-220.3837,27.6256,-109.4879|11.25,180,180|0,0,-100|-213.3837,27.2231,-108.9977|Support Pole|0.949,0.9529,0.9529|51.1176,7.8004,-90.7193|3,15.6,2|2.7999,1.5,2.7999|51.1176,7.8004,-62.7193|-243.8824,23.4004,-118.7193|3,46.8,2|-239.8824,16.8004,-100.7193|3,33.6,2|-250.8824,3.0004,-53.7193|3,6,2|-218.8824,3.0004,-53.7193|-216.8824,10.8004,-114.7193|3,21.6,2|-185.8824,9.6004,-204.7193|3,19.2,2|-128.8824,9.6004,-199.7193|-219.8824,7.2004,-164.7193|3,14.4,2|-117.8824,7.8004,-147.7193|-119.8824,9.8004,-98.7193|3,18,2|-126.8824,22.2004,-40.7193|3,44.4,2|-179.8824,18.6004,-18.7193|3,37.2,2|-181.3824,11.4004,20.2807|6,22.8,2|-182.3824,22.8004,56.2807|6,45.6,2|-233.3824,22.8004,77.2807|-235.3824,18.6004,141.2807|6,37.2,2|-240.3824,14.4004,193.2807|6,28.8,2|-182.3824,14.4004,252.2807|-104.3824,14.4004,253.2807|-39.3824,14.4004,197.2807|-76.8824,4.8004,-106.7193|5,9.6,2|-57.8824,4.8004,-124.7193|-41.8824,4.8004,-97.7193|-69.8824,4.3004,-85.2193|1,8.4,1|-81.8824,8.9004,-68.2193|1,15.6,1|-69.8824,8.9004,-68.2193|-81.8824,12.5004,-49.2193|1,24,1|-69.8824,12.5004,-49.2193|-79.8824,32.3004,42.7807|1,63.6,1|-67.8824,32.3004,42.7807|-81.8824,19.0004,-21.2193|1,36,1|-69.8824,20.2004,-21.2193|1,33.6,1|-80.8824,22.1004,-4.2193|1,43.2,1|-69.8824,22.1004,-4.'
  869. ..'2193|-81.8824,26.3004,14.7807|1,50.4,1|-69.8824,26.3004,14.7807|-79.8824,36.5004,59.7807|1,68.4,1|-67.8824,35.9004,59.7807|1,69.6,1|-79.8824,39.3004,78.7807|1,78,1|-67.8824,39.9004,78.7807|1,79.2,1|-79.8824,43.6004,95.7807|1,85.2,1|-67.8824,43.6004,95.7807|-79.8824,46.8004,111.7807|1,93.6,1|-67.8824,46.2004,111.7807|1,92.4,1|-79.8824,48.4004,132.7807|1,96,1|-67.8824,48.4004,132.7807|-71.8824,44.3004,152.7807|1,81.6,1|-62.8824,44.3004,151.7807|-30.8824,38.1004,150.7807|1,72,1|-30.8824,37.5004,137.7807|1,73.2,1|-14.8824,35.7004,137.7807|-14.8824,35.7004,125.7807|0.1176,34.1004,121.7807|1,67.2,1|0.1176,34.1004,109.7807|19.1176,31.8004,103.7807|17.1176,32.6004,91.7807|35.1176,30.6004,83.7807|1,61.2,1|23.1176,30.6004,83.7807|47.1176,27.1004,61.7807|1,54,1|35.1176,27.7004,61.7807|1,52.8,1|51.1176,25.1004,42.7807|1,48,1|38.1176,25.1004,42.7807|52.1176,21.9004,25.7807|1,39.6,1|40.1176,21.3004,25.7807|1,40.8,1|52.1176,16.2004,5.7807|1,32.4,1|40.1176,17.0004,5.7807|52.1176,10.2004,-20.2193|1,20.4,1|40.1176,10.8004,-20.2193|1,21.6,1|70.1176,11.0004,-191.2193|58.1176,11.0004,-191.2193|70.1176,11.3004,-218.2193|58.1176,11.9004,-218.2193|50.1176,11.9004,-240.2193|50.1176,11.3004,-228.2193|15.1176,11.6004,-239.2193|1,22.8,1|15.1176,11.6004,-227.2193|-13.8824,14.1004,-239.2193|1,27.6,1|-13.8824,14.1004,-227.2193|-241.8824,22.8004,-141.2193|1,45.6,1|-229.8824,22.8004,-141.2193|-241.8824,22.8004,-169.2193|-229.8824,22.8004,-169.2193|-242.8824,21.7004,-192.2193|1,42,1|-230.8824,21.7004,-192.2193|-170.8824,14.0004,-266.2193|-170.8824,14.0004,-254.2193|-204.8824,14.5004,-266.2193|-204.8824,14.5004,-254.2193|-242.8824,17.5004,-241.2193|1,34.8,1|-230.8824,17.5004,-241.2193|-47.8824,15.5004,82.7807|1,28.8,1|-35.8824,14.9004,82.7807|-47.8824,14.9004,108.7807|-35.8824,14.9004,108.7807|-47.8824,16.1004,134.7807|1,25.2,1|-35.8824,14.9004,134.7807|-47.8824,14.9004,157.7807|-35.8824,14.9004,157'
  870. ..'.7807|-75.8824,30.1004,-49.2193|1,0.8,15|-186.8824,18.0004,-253.2193|1,0.8,35|-68.8824,9.3004,-67.7193|1,0.8,38|-68.8824,18.7004,-59.2193|1,0.8,21|-75.8824,9.3004,-67.2193|1,0.8,13|-75.8824,18.9004,-48.2193|Loop Box Support|-131.8824,26.7004,-241.2193|1,0.8,19|-131.8824,11.9004,-241.2193|-131.8824,11.5004,-264.2193|-130.8824,35.7004,-241.2193|1,0.8,17|-130.8824,35.5004,-264.2193|-134.8824,39.8004,-242.2193|1,8.8,1|-127.8824,37.6004,-242.2193|1,4.4,1|-131.8824,25.9004,-264.2193|-122.8824,12.1004,-252.7193|1,0.8,20|-122.8824,17.6004,-263.2193|2.7999,1.8999,2.7999|-122.8824,26.1004,-252.7193|-122.8824,18.0004,-242.2193|-122.8824,36.3004,-252.7193|3,0.4,24|-122.8824,37.5004,-252.7193|-122.8824,36.9004,-252.7193|1,0.8,24|-140.8824,11.3004,-252.7193|-140.8824,16.8004,-263.2193|-140.8824,25.3004,-252.7193|-140.8824,17.2004,-242.2193|-140.8824,35.5004,-252.7193|-140.8824,36.7004,-252.7193|-140.8824,36.1004,-252.7193|-140.8824,43.9004,-242.2193|1,14,1|-133.8824,37.7004,-263.2193|-127.8824,39.4004,-263.2193|-121.8824,44.1004,-263.2193|1,12.8,1|-74.8824,26.7004,-229.2193|-74.8824,11.9004,-229.2193|-74.8824,11.5004,-252.2193|-73.8824,35.7004,-229.2193|-73.8824,35.5004,-252.2193|-77.8824,39.8004,-230.2193|-70.8824,37.6004,-230.2193|-74.8824,25.9004,-252.2193|-65.8824,12.1004,-240.7193|-65.8824,17.6004,-251.2193|-65.8824,26.1004,-240.7193|-65.8824,18.0004,-230.2193|-65.8824,36.3004,-240.7193|-65.8824,37.5004,-240.7193|-65.8824,36.9004,-240.7193|-83.8824,11.3004,-240.7193|-83.8824,16.8004,-251.2193|-83.8824,25.3004,-240.7193|-83.8824,17.2004,-230.2193|-83.8824,35.5004,-240.7193|-83.8824,36.7004,-240.7193|-83.8824,36.1004,-240.7193|-83.8824,43.9004,-230.2193|-76.8824,37.7004,-251.2193|-70.8824,39.4004,-251.2193|-64.8824,44.1004,-251.2193|Box Support|57.6176,6.3004,-141.7193|68.1176,11.8004,-141.7193|57.6176,20.3004,-141.7193|47.1176,12.2004,-141.7193|57.6176,30.5004,-141.7193|57.6'
  871. ..'176,31.7005,-141.7193|57.6176,31.1005,-141.7193|46.1176,21.7004,-132.7193|46.1176,6.9004,-132.7193|69.1176,6.5004,-132.7193|46.1176,30.7004,-131.7193|69.1176,30.5004,-131.7193|47.1176,39.2005,-135.7193|1,17.6,1|47.1176,35.2005,-128.7193|1,9.6,1|69.1176,20.9004,-132.7193|47.1176,45.5004,-141.7193|1,27.2,1|68.1176,34.5005,-134.7193|1,8,1|68.1176,35.8005,-128.7193|1,11.6,1|68.1176,39.5003,-122.7193|1,13.6,1|-230.3824,5.9004,-61.2193|1,0.8,28|-230.3824,20.3004,-61.2193|-231.3824,29.9004,-61.2193|1,0.8,26|BatWing Boomerrang Box Support|-216.8824,5.7004,-72.7193|-216.8824,11.2004,-62.2193|-216.8824,19.7004,-72.7193|-216.8824,11.6004,-83.2193|-216.8824,29.9004,-72.7193|-216.8824,31.1004,-72.7193|-216.8824,30.5004,-72.7193|-230.3824,6.3004,-84.2193|BatWing Boomrang Box Support|-243.8824,7.2004,-72.7193|-243.8824,12.7004,-62.2193|-243.8824,21.2004,-72.7193|-243.8824,13.1004,-83.2193|-243.8824,31.4004,-72.7193|-243.8824,32.6004,-72.7193|-243.8824,32.0004,-72.7193|-230.3824,21.1004,-84.2193|-231.3824,30.1004,-84.2193|-189.8824,4.8004,-53.7193|3,9.6,2|-283.8824,5.4004,-53.7193|3,10.8,2|-76.3824,9.9004,-48.2193|1,0.8,12|-82.8824,9.6004,-3.7193|-81.8824,52.8004,4.7807|-68.8824,52.9004,4.7807|-68.8824,43.8004,-3.7193|1,0.8,36|-68.8824,29.0004,-4.2193|1,0.8,37|-68.8824,9.4004,-3.2193|1,0.8,39|-75.8824,9.6004,-22.2193|-75.8824,29.0004,-22.2193|-75.8824,29.0004,15.7807|-75.8824,43.8004,15.7807|-75.8824,53.0004,15.7807|-75.8824,9.4004,15.7807|-73.8824,10.2004,41.7807|-73.8824,28.6004,41.7807|-73.8824,43.8004,41.7807|-73.8824,59.4004,41.7807|-73.8824,71.0003,41.7807|-80.8824,71.0003,87.7807|1,0.8,93|-80.8824,59.4004,87.7807|-80.8824,45.0004,87.7807|-80.8824,29.0004,87.7807|-80.8824,10.2004,87.7807|-66.8824,10.2004,87.7807|-66.8824,29.0004,87.7807|-66.8824,43.8004,87.7807|-66.8824,59.4004,88.2807|1,0.8,94|-66.8824,71.0003,88.2807|-66.8824,79.4003,89.2807|1,0.8,90|-66.8824,88.3002,97.78'
  872. ..'07|1,0.8,75|-66.8824,98.3002,106.7807|1,0.8,55|-66.8824,107.4001,119.7807|1,0.8,47|-66.8824,116.0001,123.2807|1,0.8,22|-80.8824,116.0001,123.2807|-80.8824,107.2001,118.7807|1,0.8,43|-80.8824,98.4001,106.7807|1,0.8,53|-80.8824,88.4003,97.2807|1,0.8,72|-80.8824,79.6003,89.7807|1,0.8,91|-76.6006,96.4891,143.7196|10.2899,21.4099,-35.55|-77.6006,70.3892,142.7196|-77.2414,44.2105,143.6356|-65.1393,74.9572,142.3456|-64.8331,95.0973,142.4756|1,0.8,18|-64.3834,43.0698,142.6778|3.3439,70.8271,121.6211|10.6599,135.1399,19.9699|1,0.8,50|3.6666,58.9418,121.3846|1,0.8,49|3.6029,37.0265,121.5413|-7.0944,71.1778,115.1151|1,0.8,67|-6.7876,54.7627,114.8118|1,0.8,65|-6.7876,35.2627,114.8118|-45.8824,53.9004,151.7807|1,0.8,33|-45.8824,68.7004,151.7807|-45.8824,84.7002,151.7807|-22.0824,65.8742,145.0592|-22.0824,40.7742,145.0592|-48.3824,70.7003,135.7807|-48.3824,87.9003,135.7807|-48.3824,59.1004,135.7807|-77.2414,25.9105,143.6356|-77.2414,56.3106,143.6356|-77.6006,85.5891,142.7196|39.1176,24.8004,11.2807|1,0.8,64|39.1176,40.0004,23.7807|39.1176,50.9004,34.2807|36.941,28.5821,52.6752|20.0699,175.2599,-31.23|36.941,43.8821,52.6752|36.941,55.2821,52.6752|48.8633,56.6252,52.6112|48.7856,42.5684,52.5473|48.7856,24.1683,52.5473|53.1176,24.8004,10.2807|53.1176,40.0004,23.2807|52.1176,50.8004,34.2807|29.7663,35.891,73.8765|25.6299,155.2299,29.2099|29.7663,53.091,73.8765|29.333,64.3421,72.6486|1,0.8,29|41.7663,32.091,73.8765|41.7663,51.191,73.8765|41.7663,66.691,73.8765|26.0779,31.1488,94.3441|26.0779,50.0488,94.3441|26.0779,66.1487,94.3441|20.4643,28.079,87.9509|1,0.8,8|20.4643,42.579,87.9509|20.4643,60.279,87.9509|57.1176,15.2004,-204.7193|1,0.8,30|71.1176,16.0004,-205.2193|1,0.8,31|64.1176,15.2004,-220.2193|64.1176,15.6004,-189.2193|51.1176,14.3004,-234.2193|18.1176,13.5004,-241.2193|18.1176,14.3004,-226.2193|-14.8824,14.3004,-234.2193|-186.8824,18.0004,-267.2193|-170.3824,18.8004,-260.2193'
  873. ..'|11,0.8,2|-205.8824,19.0004,-261.2193|11,0.8,1|-236.3824,30.5004,-240.2193|14,0.8,1|-235.8824,30.5004,-193.2193|13,0.8,1|-243.8824,30.1004,-216.2193|49,0.8,1|-228.8824,30.5004,-216.7193|48,0.8,1|-235.8824,32.5004,-141.2193|-228.8824,56.0004,-155.2193|31,0.8,1|-228.8824,32.2004,-155.2193|29,0.8,1|-242.8824,43.1004,-155.2193|27,0.8,1|-242.8824,56.0004,-155.2193|-186.8824,33.4004,-253.2193|-187.8824,33.4004,-267.2193|17.6176,27.1004,-241.2193|16.6176,27.4004,-226.2193|57.1176,25.9004,-204.7193|71.1176,25.9004,-205.2193|Waving-Turn|-38.3824,12.2002,-94.3195|13.71,179.97,-0.02|0,-30,-30|-38.3824,14.2008,-87.7193|31.44,-179.98,0.05|-38.3824,13.4005,-89.7193|25.8199,-179.9901,0.0199|-38.3824,12.8003,-91.9191|17.9099,-179.98,-0.01|-38.3824,25.3004,-81.7193|-89.9701,0.2099,-0.21|-38.3824,27.3995,-81.7195|-77.45,-0.4601,-179.56|-38.3824,29.3004,-80.7188|-62.8401,0.07,179.9799|-38.3824,31.1999,-79.7194|-54.51,-0.0701,-179.93|-38.3824,17.2008,-83.7191|54.5099,-179.93,0.07|-38.3824,15.4008,-85.7203|41.9199,179.9299,0.07|-38.3824,23.1004,-81.7193|89.97,179.7899,179.7899|-38.3824,19.1003,-82.7198|62.84,179.9299,-0.02|-38.3824,33,-77.7182|-45.3824,23.2004,-81.7193|89.98,179.7899,179.8|-45.3824,21.1012,-81.7191|77.4499,-179.54,0.4399|-38.3824,21.0012,-81.7191|-45.3824,19.2003,-82.7198|-45.3824,17.3008,-83.7191|-45.3824,15.5008,-85.7203|-45.3824,14.2008,-87.7193|-45.3824,13.4005,-89.7193|-45.3824,12.7003,-91.9191|-45.3824,12.1002,-94.2195|-45.3824,25.2004,-81.7193|-89.9801,0.2099,-0.2001|-45.3824,27.2995,-81.7195|-45.3824,29.2004,-80.7188|-38.3824,34.2,-75.7192|-45.3824,31.0999,-79.7194|-45.3824,32.8999,-77.7182|-45.3824,34.2,-75.7192|-45.3824,35.0002,-73.7193|-38.3824,35.0002,-73.7193|-45.3824,35.7005,-71.5194|-38.3824,35.6005,-71.5194|-38.3824,36.2006,-69.119|-45.3824,36.3006,-69.219|-38.3824,36.6004,-66.7193|-45.3824,36.7004,-66.7193|Lift hill 5/8|-77.9909,57.2061,-3.1287|-28.120'
  874. ..'1,1.0099,-0.25|0,5,5|2,1.2,135|-71.994,57.1121,-3.004|2,1.2,136|Lift Hill 1/8|-77.3824,105.8975,88.2622|-28.1201,-1.01,0.25|0,5,10|2,1.2,71|-70.3824,105.8975,88.2621|-229.8824,42.9004,-217.2193|51,0.8,1|-243.7824,42.8004,-217.2193|90,-90,0|-228.8824,43.2004,-156.2193|-242.8824,31.4004,-156.2193|-235.8824,31.4004,-170.2193|-235.8824,43.3004,-141.2193|-235.8824,43.5004,-169.2193|Upper Band & Unbanking 90% Turn|-165.0823,36.4006,-262.7192|-150,50,150|-168.0246,36.9857,-262.7193|11.25,90,5.63|-170.9669,37.5708,-262.7193|11.25,90,11.25|-165.0824,36.4004,-255.7193|-168.1585,36.3125,-255.753|0.05,88.91,5.5199|-171.2333,36.2311,-255.8539|0.2099,87.8199,11.0299|-174.3057,36.1626,-256.0209|0.4699,86.75,16.54|-162.14,35.8155,-262.7192|11.25,90,-5.62|-162.0062,36.4882,-255.753|0.05,91.0999,-5.5101|-179.794,39.326,-262.7194|11.25,90,28.1299|-180.4376,36.0894,-256.5461|1.2899,84.73,27.5499|-173.9093,38.1559,-262.7193|11.25,90,16.8799|-176.8516,38.7409,-262.7193|11.25,90,22.5|-177.3741,36.1134,-256.2523|0.8299,85.72,22.0499|-182.7364,39.9111,-262.7194|11.25,90,33.75|-183.4949,36.0966,-256.8993|1.85,83.7799,33.04|-185.6787,40.4962,-262.7194|11.25,90,39.38|-188.6211,41.0813,-262.7195|11.25,90,45|-191.5634,41.6663,-262.7195|11.25,90,50.6199|-194.5057,42.2514,-262.7196|11.25,90,56.25|-197.4481,42.8365,-262.7195|11.25,90,61.8699|-200.3904,43.4216,-262.7196|11.25,90,67.5|-203.3327,44.0067,-262.7196|11.25,90,73.12|-206.2751,44.5917,-262.7197|11.25,90,78.75|-209.2174,45.1768,-262.7197|11.25,90,84.37|-186.575,35.9889,-257.4355|-2.87,-97,141.5|-189.614,36.0877,-257.9114|-4.0501,-97.6501,136.0599|-192.6435,36.2346,-258.4335|-4.72,-98.4001,130.5899|-195.6848,36.3219,-259.052|4.01,81.3099,49.4599|-198.6521,36.7815,-259.42|5.8,80.04,60.3899|-201.6663,37.0033,-260.2261|4.4499,74.4,-114.63|-204.6834,37.213,-261.15|-6.6101,-100.5501,114.12|-207.6216,37.8197,-261.5507|-8.82,-101.1901,103.1999|-210'
  875. ..'.5932,38.2285,-262.3522|8.42,78.5299,76.8199|-213.5398,38.7913,-262.3689|10.8199,89.6699,78.69|-236.7413,49.5628,-215.3544|8.6599,-168.0201,74.5199|-239.9693,46.1925,-242.0818|-8.5501,-15.62,80.76|-212.1598,45.7619,-262.7197|11.7399,95.7099,85.51|-215.0823,46.3724,-262.4271|12.1199,101.4499,86.6999|-217.957,47.0025,-261.8447|12.39,107.1999,87.9199|-220.7559,47.646,-260.978|12.5299,112.9599,89.1699|-223.4524,48.2969,-259.8356|12.55,118.72,90.4199|-226.0203,48.9488,-258.4282|12.4499,124.48,91.66|-228.4348,49.5955,-256.7695|12.2299,130.2299,92.8899|-230.6729,50.2306,-254.8755|11.88,135.9799,94.0899|-232.7128,50.8482,-252.7644|11.42,141.6999,95.26|-234.5351,51.4422,-250.4566|10.85,147.41,96.36|-216.4631,39.4081,-262.0973|12.8,100.98,81.01|-219.3349,40.0728,-261.5397|13.6199,106.6999,82.3199|-222.193,40.8106,-260.4761|-12.53,-67.0401,90.83|-224.8895,41.4616,-259.3337|-12.5601,-61.2701,89.58|-227.4573,42.1135,-257.9264|-12.4601,-55.5,88.3199|-229.872,42.7603,-256.2679|-12.24,-49.75,87.0899|-232.1101,43.3955,-254.374|-11.8901,-44.01,85.8899|-234.1502,44.0131,-252.263|-11.4301,-38.2901,84.7399|-235.9725,44.6072,-249.9553|-10.8501,-32.5901,83.6399|-237.5596,45.1721,-247.4729|-10.1801,-26.91,82.5999|-238.8962,45.7022,-244.84|-9.41,-21.2601,81.6399|-237.7551,48.9863,-218.2938|-239.7932,55.6557,-218.8988|5.5199,-178.9,73.1699|-239.7358,55.944,-215.9132|5.5199,-178.9,67.55|-236.3734,50.0846,-212.3974|10.6999,-168.8201,63.3499|-235.7274,50.7239,-209.457|11.6599,-169.37,57.7299|-235.1187,51.4191,-206.5213|12.56,-170.01,52.0699|-234.5529,52.1661,-203.5898|13.39,-170.75,46.3899|-234.0347,52.9607,-200.662|14.14,-171.5701,40.68|-233.5688,53.7978,-197.7373|14.81,-172.4601,34.93|-233.159,54.6723,-194.8151|15.3999,-173.42,29.17|-232.8086,55.5785,-191.8948|15.88,-174.45,23.3799|-232.5206,56.5103,-188.9759|16.26,-175.51,17.5599|-232.297,57.4617,-186.0575|16.54,-176.62,11.7399|-239.8486,53'
  876. ..'.8699,-236.7977|6.5999,175.5399,100.7099|-240.08,54.2142,-233.8265|5.5199,-178.9,101.3|-240.0226,54.5025,-230.841|5.5199,-178.9,95.6699|-239.9653,54.7908,-227.8554|5.5199,-178.9,90.05|-239.9079,55.0792,-224.8698|5.5199,-178.9,84.4199|-239.8506,55.3674,-221.8843|5.5199,-178.9,78.8|-241.2865,47.0353,-236.2967|-6.6,-4.45,79.2799|-241.518,47.3796,-233.3256|-5.52,1.1,78.6999|-240.9008,47.5887,-230.1565|-3.6401,17.93,82.9599|-239.8484,47.7786,-227.1805|-2.9301,23.52,82.6399|-238.3619,48.5101,-221.2507|-6.5,12.38,94.3799|-239.4139,48.1251,-224.2073|-6.5101,12.3699,94.3899|-238.5316,53.0273,-242.5829|8.55,164.36,99.23|-239.3308,53.4731,-239.7259|7.5999,169.97,100.0199|-240.7687,46.6383,-239.2249|-7.6101,-10.03,79.97|-236.1222,52.007,-247.9742|10.18,153.08,97.3899|-237.4586,52.537,-245.3412|9.4099,158.74,98.3499|-239.6785,56.2323,-212.9276|5.5199,-178.9,61.9199|-239.6212,56.5206,-209.9421|5.5199,-178.9,56.2999|-239.5638,56.8089,-206.9565|5.5199,-178.9,50.6699|-239.5065,57.0972,-203.971|5.5199,-178.9101,45.04|-239.4491,57.3855,-200.9854|5.5199,-178.9101,39.4199|-239.3917,57.6738,-197.9999|5.5199,-178.9,33.7999|-239.3344,57.9621,-195.0142|5.5199,-178.9,28.17|-239.2771,58.2504,-192.0287|5.51,-178.9,22.5499|-239.2198,58.5386,-189.0431|5.51,-178.9,16.92|-239.1625,58.8269,-186.0576|5.5199,-178.9,11.3|Zig-Zaging Turn|-238.4323,47.1642,-104.5283|43.72,38.5699,66.3|-10,-30,80|-245.3462,44.9295,-104.2474|42.8699,27.3999,61.9599|-243.9971,42.2084,-101.6444|-237.2466,45.1861,-102.6096|41.25,31.7099,61.6599|-239.7839,49.2376,-106.2235|-242.7573,38.6084,-97.0072|36.8699,14.97,53.9599|-235.6128,41.7403,-98.0149|31.8299,14.21,51.1599|-236.2386,43.3224,-100.4858|38.4,25.3899,57.61|-243.3772,40.4084,-99.3258|-241.1356,51.3111,-107.9186|48.24,33.7299,51.5699|-247.5006,47.4991,-107.2884|40.59,36.22,37.9|-234.5625,38.7404,-92.9345|28.2,9.2399,48.6699|-234.9871,40.1582,-95.544|-242.1375,36.8085,'
  877. ..'-94.6886|-242.2452,53.5487,-109.5804|40.5999,22.12,32.1599|-248.3101,49.6865,-109.1753|46.81,23.2199,28.8799|-234.5439,37.3836,-90.2589|26.8899,0.4,33.5999|-241.9216,35.0383,-92.2762|36.1599,5.11,37.11|-243.103,55.5011,-111.6905|35.58,2.95,21.37|-249.1195,51.8738,-111.0622|-243.2287,57.2467,-114.1271|28.2,-13.62,2.41|-249.7267,53.4451,-113.5446|31.5799,13.7399,22.84|-242.6062,58.6646,-116.6966|17.0599,-25.88,-1.2301|-248.6692,56.0685,-118.7623|27.42,-20.82,5.9699|-249.6157,54.6869,-116.2733|24.45,-2.33,14.1199|-241.3545,59.5447,-119.277|5.67,-31.2901,-1.75|-239.8042,59.841,-121.8282|5.4699,-36.9301,-2.3|-247.2068,57.4776,-120.9703|28.02,-33.5201,0.05|-237.7828,60.1138,-124.0281|-6.02,-42.0201,-2.83|-245.4372,58.6151,-123.1092|22.28,-39.6,-2.27|-243.5706,59.2004,-125.3837|11.25,-39.37,0|-235.7856,59.7993,-126.2444|-5.7101,-36.3801,-3.4101|-241.6674,59.2004,-127.7027|0,-39.37,0|-234.0151,59.5006,-128.6478|-5.35,-30.74,-3.9501|-240.2532,59.2004,-130.3485|0,-28.1201,0|-232.4884,59.2209,-131.2151|-3.9801,-13.86,-5.33|-239.3824,59.2004,-133.2193|0,-16.88,0|-232.0104,59.0822,-133.1521|-19.64,-0.8001,-6.37|Chain Lift|-75.1687,66.9611,14.8158|1,1.2,237|4|3|ChainLift Script|Anti-Sound|100|-73.8825,125.3427,134.8474|33.75,0,0|Remove Sound Script|-82.8824,18.7004,-59.2193|-81.8824,4.3004,-85.2193|-82.8824,9.3004,-67.2193|-82.8824,28.8004,-3.7193|-82.8824,43.8004,-3.7193|Railing|-86.8824,13.8004,-91.2193|1,3.6,1|1,1.2999,1|-87.0667,125.0708,131.1805|-62.9841,125.8119,131.9736|-62.9841,125.8119,116.9736|1,3.6,3|-87.0667,125.0708,116.1804|-87.0667,127.3708,123.8804|89.9199,0.7699,0.7599|-62.9841,128.1119,124.6736|89.9,0.1899,0.1899|-62.8824,14.5004,-91.2193|-62.911,72.0665,12.9752|-61.7901,179.7599,-179.81|1,216,1|1,1.1,1|-86.9108,71.383,12.4465|1,214.8,1|-30.8824,35.9004,-64.7193|2,0.8,39|-30.8824,35.4004,-49.7193|-31.3824,35.4004,-30.7193|2,0.8,38|-11.5824,18.0004,-30.7193|2,1.'
  878. ..'6,36|-10.5824,18.0004,-49.7193|-10.5824,18.0004,-64.7193|-51.1824,18.0004,-64.7193|-51.1824,18.0004,-49.7193|-51.1824,18.0004,-30.7193|-23.1824,34.5004,-47.7193|0,-180,-90|1,1.6,36|-23.1824,17.0004,-31.7193|2,1.2,34|-22.9824,17.0004,-64.7193|-22.9824,17.0004,-49.7193|-242.5824,58.6004,-156.2193|33,1.6,1|-242.5823,58.6004,-178.2193|11,1.6,1|-249.5824,58.6004,-160.2193|41,4.4,1|-247.5823,58.5004,-182.2193|3,8.4,1|-249.3824,3.0004,-168.7193|4,1.2,4|-249.3824,1.8004,-171.7193|-249.3824,0.6004,-173.7193|-245.3824,5.8004,-173.7193|-245.3824,7.0004,-175.7193|-245.3824,4.6004,-171.7193|-245.3824,8.2004,-177.7193|-245.3824,3.4004,-168.7193|-245.3824,9.4004,-180.7193|-249.3824,11.8004,-175.7193|-249.3824,13.0004,-173.7193|-249.3824,10.6004,-177.7193|-249.3824,14.2004,-171.7193|-249.3824,9.4004,-180.7193|-249.3824,15.4004,-168.7193|-245.3824,17.8004,-173.7193|-245.3824,19.0004,-175.7193|-245.3824,16.6004,-171.7193|-245.3824,20.2004,-177.7193|-245.3824,15.4004,-168.7193|-245.3824,21.4004,-180.7193|-249.3824,23.8004,-175.7193|-249.3824,25.0004,-173.7193|-249.3824,22.6004,-177.7193|-249.3824,26.2004,-171.7193|-249.3824,21.4004,-180.7193|-249.3824,27.4004,-168.7193|-249.3824,35.8004,-175.7193|-249.3824,37.0004,-173.7193|-249.3824,34.6004,-177.7193|-249.3824,38.2004,-171.7193|-249.3824,33.4004,-180.7193|-249.3824,39.4004,-168.7193|-245.3824,29.8004,-173.7193|-245.3824,31.0004,-175.7193|-245.3824,28.6004,-171.7193|-245.3824,32.2004,-177.7193|-245.3824,27.4004,-168.7193|-245.3824,33.4004,-180.7193|-245.3824,42.0004,-173.7193|-245.3824,43.2004,-175.7193|-245.3824,40.8004,-171.7193|-245.3824,44.4004,-177.7193|-245.3824,39.6004,-168.7193|-245.3824,45.6004,-180.7193|-249.3824,48.0004,-175.7193|-249.3824,49.2004,-173.7193|-249.3824,46.8004,-177.7193|-249.3824,50.4004,-171.7193|-249.3824,45.6004,-180.7193|-249.3824,51.6004,-168.7193|-245.3824,54.0004,-173.7193|-245.3824,55.2004,-175.7193|'
  879. ..'-245.3824,52.8004,-171.7193|-245.3824,56.4004,-177.7193|-245.3824,51.6004,-168.7193|-245.3824,57.6004,-179.7193|-251.8824,23.4004,-166.2193|1,46.8,1|1.5,1.5,1.5|-251.8824,23.4004,-183.2193|-242.8824,27.4004,-182.2193|-243.8824,27.0004,-166.2193|-251.2824,60.8004,-183.2193|-242.2824,61.2004,-183.2193|-242.2824,60.8004,-140.2193|1,3.2,1|-251.2824,61.0004,-140.2193|-251.2824,62.7004,-161.7193|-246.3824,62.5004,-140.2193|1,7.2,1|-247.1823,62.5004,-183.2193|Station Brake CatWalk|-53.8824,39.1004,133.7807|-53.8824,40.8004,95.4807|1,75.6,1|-53.8824,38.7004,58.7807|1,2.7999,1|-51.3824,41.0004,58.7807|90,90,0|1,4,1|-51.3824,40.8004,133.7807|-51.1824,36.8004,96.2807|-90,90,0|76,5.5999,1|-48.8824,39.1004,58.7807|-48.8824,39.1004,133.7807|-29.8824,39.1004,57.7807|-29.8824,40.8004,96.0807|-90,-180,0|-29.8824,38.7004,132.7807|-32.3824,41.0004,132.7807|-32.3824,40.8004,57.7807|-32.5824,36.8004,95.2807|-90,-90,0|-34.8824,39.1004,132.7807|-34.8824,39.1004,57.7807|-72.9824,108.3001,138.2807|8,14,1|-66.4824,110.6001,134.7807|-66.4824,110.6001,141.7807|-79.4824,110.6,141.7807|-79.4824,110.6,134.7807|-72.8824,112.9,134.7807|1,10.8,1|-72.8824,112.7,141.7807|-66.4824,112.9001,138.4807|1,6,1|-79.4824,112.9,140.2807|1,2.4,1|-41.1824,16.0004,14.7807|32,16,81|-25.7824,19.5004,14.7807|39,14.8,81|-19.5,0,0,-0,-0,-1,0,1,0,1,0,0|-1.6,-0.6001,-34.5,0,1,-0.0001,0,-0.0001,1,1,0,0|-53.3824,19.5004,14.2807|39,8.4,82|3.2,-0.2001,-16.5,0,1,-0.0001,0,-0.0001,1,1,0,0|0.6274,0.3725,0.2078|-19.3824,49.0004,54.2807|20,2,2|-56.7824,49.0004,54.2808|0,180,-90|-19.3823,49.0004,-24.7193|-56.7823,49.0004,-25.7192|-37.5824,59.5004,13.2807|1,40.4,88|Transport|-42.4824,41.2004,-9.7193|2,1.2,13|Stop|-42.4824,41.2004,11.2807|-65.3837,15.0308,-84.0285|4,0.4,2|-65.3824,13.7004,-86.7193|-65.3811,12.3704,-89.4101|-65.3841,18.3136,-78.5268|-65.3841,16.7135,-81.5268|-65.3841,21.5136,-72.5268|-65.3841,23.5135,-69.5268|-65.38'
  880. ..'41,19.9136,-75.5268|-65.3841,30.2136,-56.5269|-65.3841,28.6136,-59.5269|-65.3841,27.0135,-62.5267|-65.3841,25.4137,-65.5269|-65.3841,37.0134,-44.5267|-65.3841,35.4136,-47.5269|-65.3841,33.8136,-50.5269|-65.3841,32.2136,-53.5269|-65.4841,44.9133,-29.5265|-65.3841,39.7134,-38.5267|-65.4841,41.3133,-35.5265|-65.4841,42.9134,-32.5265|-65.3841,38.1134,-41.5267|-65.4841,60.0132,-1.5265|-65.4841,58.4133,-4.5265|-65.4841,61.6132,1.4735|-65.4841,56.4133,-7.5265|-65.4841,54.8133,-10.5265|-65.4841,53.2133,-13.5265|-65.4841,51.6133,-16.5265|-65.4841,46.5133,-26.5265|-65.4841,48.1133,-23.5265|-65.4841,49.7133,-20.5265|-65.4841,63.2132,4.4735|-65.4841,64.1132,7.4735|Lift Hill CatWalk Guard|-62.9841,122.8119,124.9736|1,2.4,13|1,1,1.2|-62.914,66.8492,12.8093|1,2.4,237|-68.0143,66.4447,12.4567|1,2.4,236|-65.4841,65.7131,10.4735|-65.4841,67.3131,13.4735|-65.4841,86.0125,47.4735|-65.4841,84.4127,44.4735|-65.4841,87.6124,50.4735|-65.4841,89.2124,53.4735|-65.4841,82.4128,41.4735|-65.4841,80.813,38.4735|-65.4841,79.213,35.4735|-65.4841,77.613,32.4735|-65.4841,70.913,19.4735|-65.4841,68.913,16.4735|-65.4841,72.513,22.4735|-65.4841,74.113,25.4735|-65.4841,75.713,28.4735|-65.4841,92.6121,59.4735|-65.4841,94.212,62.4735|-65.4841,95.8118,65.4735|-65.4841,91.0123,56.4735|-65.4841,104.5118,81.4736|-65.4841,97.8118,68.4735|-65.4841,99.4119,71.4735|-65.4841,101.0118,74.4736|-65.4841,102.6118,77.4736|-65.4841,112.9118,96.4736|-65.4841,111.3117,93.4736|-65.4841,114.5117,99.4736|-65.4841,116.1117,102.4736|-65.4841,109.3118,90.4736|-65.4841,107.7118,87.4736|-65.4841,106.1118,84.4736|-65.4841,119.0118,108.4736|-65.4841,117.4118,105.4736|-68.0667,122.3704,124.1804|1,2.7999,13|-65.4841,120.6118,111.4736|-65.4841,122.2119,122.9736|4,0.4,19|-84.3837,14.531,-84.0285|-84.3824,13.2004,-86.7193|-84.3811,11.8705,-89.4101|-84.3841,17.8138,-78.5268|-84.3841,16.2137,-81.5268|-84.3841,21.0137,-72.5268|-84.3841,23'
  881. ..'.0137,-69.5268|-84.3841,19.4138,-75.5268|-84.3841,29.7137,-56.5269|-84.3841,28.1138,-59.5269|-84.3841,26.5136,-62.5267|-84.3841,24.9139,-65.5269|-84.3841,36.5135,-44.5267|-84.3841,34.9137,-47.5269|-84.3841,33.3137,-50.5269|-84.3841,31.7137,-53.5269|-84.4841,44.4135,-29.5265|-84.3841,39.2136,-38.5267|-84.4841,40.8134,-35.5265|-84.4841,42.4135,-32.5265|-84.3841,37.6136,-41.5267|-84.4841,59.5134,-1.5265|-84.4841,57.9134,-4.5265|-84.4841,61.1134,1.4735|-84.4841,55.9134,-7.5265|-84.4841,54.3134,-10.5265|-84.4841,52.7134,-13.5265|-84.4841,51.1134,-16.5265|-84.4841,46.0135,-26.5265|-84.4841,47.6135,-23.5265|-84.4841,49.2135,-20.5265|-84.4841,62.7134,4.4735|-84.4841,63.6134,7.4735|-87.0143,65.945,12.4567|-84.4841,65.2133,10.4735|-84.4841,66.8133,13.4735|-84.4841,85.5127,47.4735|-84.4841,83.9129,44.4735|-84.4841,87.1126,50.4735|-84.4841,88.7126,53.4735|-84.4841,81.9131,41.4735|-84.4841,80.3132,38.4735|-84.4841,78.7133,35.4735|-84.4841,77.1133,32.4735|-84.4841,70.4133,19.4735|-84.4841,68.4133,16.4735|-84.4841,72.0133,22.4735|-84.4841,73.6133,25.4735|-84.4841,75.2133,28.4735|-84.4841,92.1124,59.4735|-84.4841,93.7123,62.4735|-84.4841,95.3121,65.4735|-84.4841,90.5125,56.4735|-84.4841,104.012,81.4736|-84.4841,97.3121,68.4735|-84.4841,98.9121,71.4735|-84.4841,100.5121,74.4736|-84.4841,102.1121,77.4736|-84.4841,112.4119,96.4736|-84.4841,110.812,93.4736|-84.4841,114.0119,99.4736|-84.4841,115.6119,102.4736|-84.4841,108.812,90.4736|-84.4841,107.212,87.4736|-84.4841,105.6121,84.4736|-84.4841,118.512,108.4736|-84.4841,116.9119,105.4736|-87.0667,121.8708,124.1804|-84.4841,120.1121,111.4736|-84.4841,121.7124,122.9736|-81.9841,122.3123,124.9736|-81.914,66.3494,12.8093|-245.3824,58.6004,-156.2193|33,4,1|-235.8824,57.2004,-141.2193|-235.8824,56.6004,-141.2193|3,0.4,15|-235.8824,57.8004,-141.2193|-235.8824,57.2004,-169.2193|-235.8824,57.8004,-169.2193|-235.8824,56.6004,-169.2193|-236.8824,53'
  882. ..'.1004,-192.2193|-236.8824,53.7004,-192.2193|-236.8824,52.5004,-192.2193|-75.8824,10.5004,-85.2193|-80.8824,11.1004,-85.2193|3,0.4,5|-75.8824,11.1004,-85.2193|-70.8824,11.1004,-85.2193|-80.8824,9.9004,-85.2193|-75.8824,9.9004,-85.2193|-70.8824,9.9004,-85.2193|-75.8824,19.9004,-68.2193|Steel Support|-80.8824,30.7004,-49.2193|-75.8824,30.7004,-49.2193|-70.8824,30.7004,-49.2193|-75.8824,45.0004,-21.2193|-80.8824,45.6004,-21.2193|-75.8824,45.6004,-21.2193|-70.8824,45.6004,-21.2193|-80.8824,44.4004,-21.2193|-75.8824,44.4004,-21.2193|-70.8824,44.4004,-21.2193|-74.8824,54.1004,-4.2193|-79.8824,54.7004,-4.2193|-74.8824,54.7004,-4.2193|-69.8824,54.7004,-4.2193|-79.8824,53.5004,-4.2193|-74.8824,53.5004,-4.2193|-69.8824,53.5004,-4.2193|-75.8824,64.3004,14.7807|-80.8824,64.9004,14.7807|-75.8824,64.9004,14.7807|-70.8824,64.9004,14.7807|-80.8824,63.7004,14.7807|-75.8824,63.7004,14.7807|-70.8824,63.7004,14.7807|-73.8824,79.3003,42.7807|-78.8824,79.9003,42.7807|-73.8824,79.9003,42.7807|-68.8824,79.9003,42.7807|-78.8824,78.7003,42.7807|-73.8824,78.7003,42.7807|-68.8824,78.7003,42.7807|-73.8824,88.3002,59.7807|-78.8824,88.9003,59.7807|-73.8824,88.9003,59.7807|-68.8824,88.9003,59.7807|-78.8824,87.7002,59.7807|-73.8824,87.7002,59.7807|-68.8824,87.7002,59.7807|-73.8824,98.3002,78.7807|-78.8824,98.9001,78.7807|-73.8824,98.9001,78.7807|-68.8824,98.9001,78.7807|-78.8824,97.7001,78.7807|-73.8824,97.7001,78.7807|-68.8824,97.7001,78.7807|-73.8824,107.4001,95.7807|-78.8824,108.0001,95.7807|-73.8824,108.0001,95.7807|-68.8824,108.0001,95.7807|-78.8824,106.8001,95.7807|-73.8824,106.8001,95.7807|-68.8824,106.8001,95.7807|-73.8824,116.0001,111.7807|-78.8824,116.6001,111.7807|-73.8824,116.6001,111.7807|-68.8824,116.6001,111.7807|-78.8824,115.4001,111.7807|-73.8824,115.4001,111.7807|-68.8824,115.4001,111.7807|-73.8824,121.2,132.7807|-73.8824,121.8001,132.7807|-73.8824,120.6001,132.7807|-67.8824,104.9'
  883. ..'001,152.7807|-67.8824,105.5001,152.7807|-67.8824,104.3001,152.7807|-30.8824,91.7002,143.7807|-30.8824,92.3002,143.7807|-30.8824,91.1002,143.7807|-14.8824,88.1002,131.7807|-14.8824,88.7002,131.7807|-14.8824,87.5003,131.7807|0.1176,84.1003,115.7807|0.1176,84.7002,115.7807|0.1176,83.5003,115.7807|17.1176,79.6003,97.7807|17.1176,80.2003,97.7807|17.1176,79.0003,97.7807|29.1176,76.4004,83.7807|29.1176,77.0003,83.7807|29.1176,75.8003,83.7807|41.1176,66.9004,61.7807|41.1176,67.5004,61.7807|41.1176,66.3004,61.7807|44.1176,60.7004,42.7807|44.6176,61.3004,42.7807|3,0.4,16|44.6176,60.1004,42.7807|46.1176,52.1004,25.7807|46.1176,52.7004,25.7807|46.1176,51.5004,25.7807|46.1176,41.2004,5.7807|46.1176,41.8004,5.7807|46.1176,40.6004,5.7807|46.1176,26.0004,-20.2193|51.1176,26.6004,-20.2193|46.1176,26.6004,-20.2193|41.1176,26.6004,-20.2193|51.1176,25.4004,-20.2193|46.1176,25.4004,-20.2193|41.1176,25.4004,-20.2193|57.6176,7.1004,-123.7193|68.1176,12.6004,-123.7193|57.6176,21.1004,-123.7193|47.1176,13.0004,-123.7193|57.6176,31.3004,-123.7193|57.6176,32.5005,-123.7193|57.6176,31.9005,-123.7193|64.1176,27.4004,-191.2193|69.1176,28.0004,-191.2193|64.1176,28.0004,-191.2193|59.1176,28.0004,-191.2193|69.1176,26.8004,-191.2193|64.1176,26.8004,-191.2193|59.1176,26.8004,-191.2193|64.1176,27.1004,-218.2193|69.1176,27.7004,-218.2193|64.1176,27.7004,-218.2193|59.1176,27.7004,-218.2193|69.1176,26.5004,-218.2193|64.1176,26.5004,-218.2193|59.1176,26.5004,-218.2193|50.1176,27.1004,-234.2193|50.1176,27.7004,-239.2193|50.1176,27.7004,-234.2193|50.1176,27.7004,-229.2193|50.1176,26.5004,-239.2193|50.1176,26.5004,-234.2193|50.1176,26.5004,-229.2193|15.1176,28.6004,-233.2193|15.1176,29.2004,-238.2193|15.1176,29.2004,-233.2193|15.1176,29.2004,-228.2193|15.1176,28.0004,-238.2193|15.1176,28.0004,-233.2193|15.1176,28.0004,-228.2193|-13.8824,34.7004,-233.2193|-13.8824,35.3004,-238.2193|-13.8824,35.3004,-233.2193'
  884. ..'|-13.8824,35.3004,-228.2193|-13.8824,34.1004,-238.2193|-13.8824,34.1004,-233.2193|-13.8824,34.1004,-228.2193|-170.8824,34.6004,-260.2193|-170.8824,35.2004,-265.2193|-170.8824,35.2004,-260.2193|-170.8824,35.2004,-255.2193|-170.8824,34.0004,-265.2193|-170.8824,34.0004,-260.2193|-170.8824,34.0004,-255.2193|-204.8824,35.1004,-260.2193|-204.8824,35.7004,-265.2193|-204.8824,35.7004,-260.2193|-204.8824,35.7004,-255.2193|-204.8824,34.5004,-265.2193|-204.8824,34.5004,-260.2193|-204.8824,34.5004,-255.2193|-236.8824,44.1004,-241.2193|-241.8824,44.7004,-241.2193|-236.8824,44.7004,-241.2193|-231.8824,44.7004,-241.2193|-241.8824,43.5004,-241.2193|-236.8824,43.5004,-241.2193|-231.8824,43.5004,-241.2193|-41.8824,35.5004,108.7807|-46.8824,36.1004,108.7807|-41.8824,36.1004,108.7807|-36.8824,36.1004,108.7807|-46.8824,34.9004,108.7807|-41.8824,34.9004,108.7807|-36.8824,34.9004,108.7807|-41.8824,35.5004,82.7807|-46.8824,36.1004,82.7807|-41.8824,36.1004,82.7807|-36.8824,36.1004,82.7807|-46.8824,34.9004,82.7807|-41.8824,34.9004,82.7807|-36.8824,34.9004,82.7807|-41.8824,35.5004,134.7807|-46.8824,36.1004,134.7807|-41.8824,36.1004,134.7807|-36.8824,36.1004,134.7807|-46.8824,34.9004,134.7807|-41.8824,34.9004,134.7807|-36.8824,34.9004,134.7807|-41.8824,35.5004,157.7807|-46.8824,36.1004,157.7807|-41.8824,36.1004,157.7807|-36.8824,36.1004,157.7807|-46.8824,34.9004,157.7807|-41.8824,34.9004,157.7807|-36.8824,34.9004,157.7807|-65.3841,24.3135,-67.0268|4,0.4,3|-65.4841,50.3133,-18.0265|4,0.8,3|-65.4841,76.313,30.9735|-65.4841,103.2118,79.9736|-84.4841,102.712,79.9736|-84.4841,75.8133,29.9735|2,0.8,3|-84.4841,49.8135,-19.0265|-84.3841,23.6137,-68.0268|Ladder|-85.8824,5.8004,-91.2193|-84.3824,9.4004,-92.2193|4,0.4,1|-84.3824,7.0004,-92.2193|-84.3824,4.2004,-92.2193|-84.3824,1.4004,-92.2193|-82.8824,5.8004,-91.2193|-84.3824,11.4004,-92.2193|-66.8824,5.8004,-92.2193|-65.3824,9.4004,-93.2193|-65.3824,7'
  885. ..'.0004,-93.2193|-65.3824,4.2004,-93.2193|-65.3824,1.4004,-93.2193|-63.8824,5.8004,-92.2193|-65.3824,11.4004,-93.2193|-82.8824,115.4,132.9807|1,13.1999,1|-84.3824,111.0001,133.9807|-84.3824,113.2,133.9807|-84.3824,115.6001,133.9807|-84.3824,118,133.9807|-85.8824,115.4001,132.9807|-83.1824,108.3001,135.7807|7,6.4,1|-79.4824,110.6001,138.7807|-85.8824,110.6001,138.7807|-85.8824,112.5001,135.8807|1,1.5,1|-82.5824,112.5001,138.7807|0,0,-90|1,1.7,1|-84.3824,120.3999,133.9807|-67.9841,124.8119,131.9736|1,4.8,1|-65.8842,128.1119,131.9736|BatWing Boomerang Support|-319.0428,21.312,-52.2193|-11.25,-90,0|3,42,3|-311.8824,21.0004,-54.2193|-319.0276,21.3884,-57.8071|-11.25,-90,-5.62|BatWingBoomerrang Support|-147.7219,21.3116,-56.2193|-11.25,90,0|-154.8824,21.0004,-54.2193|-147.7371,21.3881,-50.6314|-11.25,90,-5.62|-155.4263,38.8022,-237.5471|-11.25,-90,11.25|3,78,3|-155.4374,38.7461,-248.2193|3,76.8,3|-107.3385,38.1039,-268.8913|-11.25,90,11.25|-107.3274,38.0476,-258.2193|-50.3385,38.1035,-255.8914|-50.3274,38.0472,-245.2193|-98.5411,40.5252,-224.43|3,79.2,3|-98.6715,39.8694,-235.2193|81.435,38.8675,-105.9469|-11.25,0,22.5|63.1176,38.0348,-105.7813|3,75.6,3|34.5706,38.1237,-152.5998|-11.25,180,22.5|3,80.4,3|53.1176,37.8346,-152.6573|68.1055,12.5531,-103.2193|0,0,-168.75|2,25.2,3|72.6176,12.8004,-103.2193|81.2468,13.1416,-103.2193|0,180,-168.75|2,26.4,3|76.6176,12.8004,-103.2193|73.4176,26.4004,-102.7193|2,16.8,2|1,1.3999,1|40.4176,26.4004,-152.7193|2,15.6,2|34.1055,12.5529,-153.2193|38.6176,12.8004,-153.2193|47.2468,13.1414,-153.2193|42.6176,12.8004,-153.2193|-75.8824,29.5004,-49.2193|-80.8824,20.5004,-68.2193|-75.8824,20.5004,-68.2193|-70.8824,20.5004,-68.2193|-75.8824,19.3004,-68.2193|-38.3824,11.8004,-101.2193|0,0,-50|2,1.2,11|-45.3824,11.7004,-101.7193|2,1.2,12|-29.8824,36.1004,-236.7193|-100,0,0|2,1.2,37|-30.3824,36.1004,-229.7193|2,1.2,36|BatWing Boomerang|EnterSlant|-311'
  886. ..'.8684,47.615,-57.7213|-78.75,90,0|-100,-100,0|-312.8492,47.42,-49.7215|-310.7204,50.3869,-57.7213|-67.5,90,0|-308.8873,52.7703,-57.7212|56.25,-90,180|-307.7468,54.6966,-49.7212|45,-90,180|-309.8682,52.5752,-49.7214|-311.7012,50.1918,-49.7214|-304.4468,56.7949,-57.7209|39.3699,-90,180|-306.7659,54.8917,-57.7211|-302.9332,58.2665,-49.721|33.75,-90,180|-305.4277,56.5998,-49.7211|-301.9523,58.4617,-57.7208|-299.3064,59.8759,-57.7206|28.12,-90,180|-300.2873,59.6808,-49.7209|-296.5347,61.024,-57.7205|22.5,-90,180|-297.5156,60.8289,-49.7207|-294.6447,61.6997,-49.7206|16.87,-90,180|-293.6638,61.8949,-57.7203|-290.7214,62.4802,-57.7202|11.25,-90,180|-291.7023,62.2851,-49.7204|LowerEnter|-298.2945,19.8774,-49.7212|-33.75,-90,180|100,-100,0|-297.3136,20.072,-57.721|-294.8191,18.4052,-57.7209|-299.8081,21.7387,-57.7211|-302.9104,23.6655,-49.7214|-45,-90,180|-300.789,21.544,-49.7213|-295.8,18.2106,-49.7212|-303.8328,26.1793,-57.7212|-50.62,-90,180|-301.9296,23.8601,-57.7211|-306.7169,28.3037,-49.7214|-304.8136,25.9846,-49.7214|-293.3056,16.5438,-49.7211|-28.1201,-90,180|-290.6597,15.1295,-49.721|-22.5,-90,-180|-287.888,13.9814,-49.721|-16.8701,-90,-180|-285.0171,13.1105,-49.7209|-16.8701,-90,180|-289.6788,15.3241,-57.7207|-284.0362,13.3051,-57.7206|-286.9071,14.176,-57.7206|-292.3246,16.7384,-57.7209|-305.736,28.4985,-57.7213|-275.4235,10.6925,-57.7203|-310.2869,33.1174,-49.7215|-56.25,-90,180|-308.6201,30.6229,-49.7215|-282.1462,12.2397,-49.7208|-279.2754,11.3688,-49.7207|-276.4045,10.498,-49.7207|-278.2944,11.5634,-57.7204|-310.7203,35.9582,-57.7214|-61.87,-90,180|-281.1653,12.4342,-57.7205|-309.3061,33.3122,-57.7214|-307.6393,30.8177,-57.7214|-272.5526,9.8216,-57.7202|-311.7011,35.7634,-49.7216|-273.5336,9.6271,-49.7206|-270.6627,8.7562,-49.7205|-269.6816,8.9507,-57.7202|-267.7918,7.8853,-49.7204|-11.25,-90,180|-311.8685,38.7299,-57.7214|-67.5,-90,180|-266.8108,8.0798,-57.72'
  887. ..'|-263.8683,7.4945,-57.72|-5.62,-90,180|-264.8494,7.3,-49.7204|-261.8636,7.0059,-49.72|-260.8824,7.2004,-57.7193|-258.8636,7.0059,-49.72|-257.8824,7.2004,-57.7193|-255.8636,7.0059,-49.7199|-312.8492,38.535,-49.7217|-312.4537,41.6724,-57.7215|-78.75,-90,180|-313.4345,41.4775,-49.7216|-254.8824,7.2004,-57.7193|-312.4537,44.6725,-57.7214|-313.4345,44.4776,-49.7216|-252.8636,7.0059,-49.72|-251.8824,7.2004,-57.7193|-244.8824,39.0004,-61.2193|1,12.4,1|-235.0596,38.0675,-61.2857|0.6999,-179.75,-50.62|1,23.2,1|-216.3427,46.8435,-63.242|45.06,-133.95,83.3499|-80,-35,-100|-213.2967,41.4512,-62.0304|38.3199,-146.8601,72.6999|-221.2524,35.7074,-76.1608|30.4099,-172.48,47.0299|-220.9474,37.2422,-73.6012|34.0099,-167.34,55.3899|-220.4431,38.9422,-71.1815|37.49,-162.2401,58.63|-219.7243,40.7726,-68.9158|40.33,-156.0501,62.5699|-218.798,42.7155,-66.826|42.7099,-149.2201,67.0899|-217.6732,44.7523,-64.9322|44.1199,-141.7201,77.87|-214.8194,48.9689,-61.7715|45.47,-126,89.0299|-213.1179,51.1081,-60.535|45.25,-117.9801,100.3399|-211.2546,53.2405,-59.5444|43.97,-110.28,117|-209.2313,55.3254,-58.7963|41.18,-103.6201,127.12|-207.0398,57.3042,-58.2652|37.8499,-97.9401,142.1699|-204.6897,59.1398,-57.9368|33.25,-93.81,155.7299|-214.5743,34.7861,-75.2264|21.9099,178.6199,37.7599|-214.6353,35.9031,-72.4429|21.9099,178.6499,49.02|-214.6964,37.0201,-69.6593|25.6599,-176.89,50.8499|-214.5335,38.3108,-66.956|29.2399,-172.03,58.7299|-214.1483,39.7624,-64.359|34.1699,-159.8001,64.9899|-212.0112,43.3123,-60.0595|39.79,-139.8801,77.11|-210.5265,45.233,-58.2969|40.83,-132.6301,81.8099|-208.8567,47.1948,-56.7596|41.4,-125.2,86.6999|-207.0179,49.1788,-55.4624|41.4599,-117.6901,102.9199|-205.0279,51.166,-54.4177|-203.0379,53.1531,-53.3731|38.9199,-111.0801,118.41|-221.3433,33.2587,-81.6297|21.4699,-179.92,32.4099|-221.3769,34.3702,-78.8434|26.09,-176.43,39.4599|-202.1854,60.7832,-57.7695|28.0699,-91.2,168.'
  888. ..'3|-199.5387,62.1945,-57.7139|22.5599,-89.96,-179.93|-214.4523,32.5519,-80.7936|21.6299,179.5,26.7099|-214.5133,33.669,-78.01|-200.8621,55.0405,-52.5338|35.9099,-104.96,133.25|-198.5216,56.8098,-51.9082|36.34,-104.96,139.2299|-221.1769,32.3966,-84.4983|16.8999,175.99,25.62|-214.2581,31.6844,-83.6588|16.9099,175.7599,25.6|-196.181,58.5792,-51.2826|28.4699,-95.6801,150.05|-220.2885,30.8988,-93.3183|5.9499,173.3399,8.1899|-220.6345,31.2098,-90.3546|11.31,175.1999,14.09|-220.9057,31.8032,-87.4264|11.1899,175.61,19.77|-196.768,63.345,-57.7155|11.3199,-89.9701,-179.9101|-193.8261,63.9328,-57.7165|5.7199,-89.9701,-179.89|-190.8408,64.2293,-57.7173|0.14,-89.9801,-179.8301|-213.4186,29.9071,-92.412|-213.7646,30.218,-89.4484|11.64,173.6399,19.4799|-214.0638,30.8168,-86.5241|-193.5465,59.9897,-51.0182|18.19,-89.77,151.94|-190.6968,60.9274,-51.0298|10.5799,-92.14,151.63|-187.7802,61.614,-51.1799|13.21,-87.0501,158.3|-187.8408,64.2319,-57.7179|-5.62,-90,-180|-184.855,63.9404,-57.7181|-180.3979,63.3563,-57.7183|-11.25,-90,-180|2,1.2,4|-184.8424,62.0771,-50.7865|3.5199,-95.88,162.1|-181.9045,62.5401,-50.3931|-7.64,-94,167.5599|Lower Exit|-170.4509,19.8721,-57.7169|-33.75,90,180|100,100,0|-171.4318,20.0668,-49.7173|-33.75,90,-180|-173.9264,18.4,-49.7174|-168.9373,21.7335,-49.7171|-165.8349,23.6603,-57.7166|-45,90,180|-167.9564,21.5389,-57.7167|-172.9454,18.2053,-57.717|-164.9126,26.1743,-49.7169|-50.62,90,180|-166.8158,23.855,-49.717|-162.0284,28.2987,-57.7165|-163.9317,25.9795,-57.7166|-175.4399,16.5385,-57.7172|-28.1201,90,180|-178.0858,15.1242,-57.7173|-22.5,90,-180|-180.8575,13.9761,-57.7174|-16.8701,90,-180|-183.7284,13.1051,-57.7176|-16.8701,90,180|-179.0667,15.3188,-49.7177|-184.7094,13.2997,-49.7181|-181.8385,14.1707,-49.7179|-176.4208,16.7331,-49.7175|-28.1201,90,-180|-163.0093,28.4935,-49.7168|-193.3222,10.687,-49.7185|-158.4584,33.1127,-57.7163|-56.25,90,180|-160.1251,30'
  889. ..'.618,-57.7164|-186.5993,12.2342,-57.7177|-189.4703,11.3634,-57.7179|-192.3412,10.4925,-57.718|-190.4513,11.5579,-49.7183|-158.025,35.9536,-49.7166|-61.87,90,180|-187.5804,12.4288,-49.7182|-159.4392,33.3075,-49.7166|-161.106,30.8128,-49.7167|-196.1932,9.8162,-49.7187|-157.0441,35.7587,-57.7162|-195.2121,9.6216,-57.7182|-198.083,8.7507,-57.7183|-199.0641,8.9452,-49.7188|-200.954,7.8798,-57.7184|-11.25,90,180|-156.8768,38.7253,-49.7165|-67.5,90,180|-201.935,8.0743,-49.719|-204.8775,7.489,-49.7191|-5.62,90,180|-203.8964,7.2945,-57.7186|-206.8824,7.0004,-57.7193|-207.8636,7.1949,-49.72|0,90,-180|-209.8824,7.0004,-57.7193|-210.8636,7.1949,-49.72|-212.8824,7.0004,-57.7193|-155.896,38.5305,-57.7161|-156.2915,41.6679,-49.7165|-78.75,90,180|-155.3107,41.473,-57.7162|-213.8636,7.1949,-49.7201|-156.2915,44.6682,-49.7165|-155.3107,44.4732,-57.7162|-232.3824,7.0004,-57.7193|0,90,-174.3801|-233.3636,7.1949,-49.7202|ExitSlant|-156.8768,47.6107,-49.7166|-78.75,-90,0|-100,100,100|-155.896,47.4158,-57.7163|-158.0249,50.3826,-49.7167|-67.5,-90,0|-159.858,52.7661,-49.7168|56.25,90,180|-160.9986,54.6925,-57.7167|45,90,180|-158.8771,52.5711,-57.7165|-157.044,50.1876,-57.7164|-164.2985,56.7909,-49.7172|39.3699,90,180|-161.9794,54.8876,-49.717|-165.8122,58.2626,-57.717|33.75,90,180|-163.3177,56.5958,-57.7169|-166.793,58.4577,-49.7174|-169.4389,59.872,-49.7176|28.12,90,180|-168.458,59.6768,-57.7172|-172.2107,61.0201,-49.7178|22.5,90,180|-171.2298,60.825,-57.7175|-174.1008,61.6959,-57.7177|16.87,90,180|-175.0817,61.891,-49.7181|-178.0241,62.4763,-49.7183|11.25,90,180|-177.0432,62.2812,-57.7179|-287.0563,62.8984,-57.687|17.5,-85.99,-174.9701|-284.1256,63.5275,-57.8095|12.1,-87.6101,-164.1301|-281.1464,63.8767,-57.8536|6.6799,-89.1501,-153.14|-269.327,62.7039,-56.7455|-13.8101,-97.07,-175.67|-272.2181,63.4205,-57.1042|-8.2101,-96.64,-164.5|-266.5147,61.7074,-56.4323|-19.4,-96.35,172.88|-275.16'
  890. ..'74,63.8487,-57.4478|-2.78,-95.14,-153.39|-278.1518,63.9944,-57.7163|2.25,-92.6201,-142.1601|-263.7914,60.4625,-56.2493|-24.5201,-93.84,160.6799|-261.176,58.993,-56.2234|-29.33,-90.57,147.9499|-256.334,55.4989,-56.7348|-37.5601,-81.38,131.5899|-258.6854,57.3277,-56.3785|-33.71,-86.4401,140.16|-254.1097,53.5803,-57.3445|-39.75,-74.67,116.1999|-243.5629,42.485,-66.3335|-32.0801,-34.4701,45.8699|-245.0014,44.0787,-64.2381|-35.4701,-39.87,54.5|-246.5677,45.8198,-62.3633|-38.6,-45.73,69.2799|-248.2467,47.6918,-60.7269|-40.39,-52.6501,79.3099|-250.0631,49.6361,-59.3408|-41.2001,-60,89.7399|-252.018,51.6124,-58.2124|-40.98,-67.46,100.2799|-235.0085,36.316,-87.3188|2.14,-14.6301,17.0599|-235.7658,36.204,-84.4182|-3.2301,-16.2901,22.7|-236.6057,36.3733,-81.5433|-8.61,-17.9501,28.5|-237.5199,36.8224,-78.7216|-13.54,-20.71,29.03|-238.5513,37.5248,-75.9936|-18.4401,-23.58,29.8199|-239.6898,38.4737,-73.3855|-23.2901,-26.63,30.8999|-240.9245,39.6601,-70.9224|-28.0901,-29.9,37.95|-242.2437,41.0725,-68.6279|-28.0901,-29.9,43.5699|-244.9242,34.4672,-80.746|-13.3501,-21.24,29.0699|-257.3202,46.0573,-60.1783|-35.75,-48.44,69.94|-259.142,47.8102,-58.5631|-35.75,-48.44,75.5599|-260.9638,49.5631,-56.948|-35.8601,-55.37,90.87|-262.9644,51.3208,-55.5667|-35.8601,-55.37,102.12|-264.965,53.0786,-54.1853|-34.5,-62.05,117.22|-242.3862,33.9707,-89.336|-243.1438,33.8587,-86.4356|-243.9837,34.0279,-83.5606|-8.4201,-18.48,28.5499|-267.1492,54.7778,-53.0266|-31.7801,-67.9401,120.44|-269.5127,56.3578,-52.0687|-25.63,-78.6901,131.25|-272.165,57.6555,-51.5381|-25.63,-78.6901,136.88|-274.8174,58.953,-51.0076|-25.63,-78.6901,142.5|-277.4697,60.2508,-50.477|-25.63,-78.6901,148.13|-280.1221,61.5484,-49.9464|-22.16,-86.5101,162.2799|-245.9815,35.16,-78.0254|-18.25,-24.1101,29.85|-253.9724,42.732,-63.8846|-33.6501,-42.0901,60.7|-255.6463,44.3946,-62.0314|-33.6501,-42.0901,66.3199|-247.1453,36.0994,-75.425|-'
  891. ..'23.1001,-27.15,30.93|-252.4435,41.1972,-65.9599|-30.7701,-36.3801,52.02|-251.0536,39.8254,-68.2372|-27.21,-31.39,49.61|-249.6638,38.4534,-70.5144|-27.21,-31.39,43.9799|-248.4046,37.2765,-72.9697|-23.1001,-27.15,36.5499|-282.8954,62.68,-49.7774|-11.2,-88.88,174.2599|-285.8378,63.2626,-49.7202|-288.8379,63.2626,-49.7202|-168.6964,24.0011,-202.1966|0,90,-89.99|70,0,0|2,1.2,41|-167.6964,17.0011,-202.1967|Spiral Staircase!|-165.4003,25.7927,-279.804|0,-157.5,0|2,1.2,6|-168.3824,31.8003,-270.7193|0,-45,0|-169.4672,30.5927,-272.7013|0,-67.5,0|-167.3824,27.0004,-278.7192|0,-135,0|-168.3824,28.2004,-276.7192|0,-112.5,0|-169.3824,29.4004,-274.7193|-166.3823,33.0003,-269.7193|0,-22.5,0|-164.3824,34.2004,-268.7193|-163.3824,24.6004,-279.7193|-161.3824,23.4004,-278.7192|0,157.5,0|-159.3823,22.2004,-277.7192|0,135,0|-158.2976,20.9927,-275.7372|0,112.5,0|-159.3823,18.6002,-271.7192|0,67.5,0|-158.3824,19.8004,-273.7193|-162.3644,16.1926,-268.6345|0,22.5,0|-160.3823,17.4004,-269.7193|0,45,0|-164.3824,15.0004,-268.7193|-166.3823,13.8004,-269.7193|-163.3824,5.4004,-279.7193|-161.3824,4.2005,-278.7192|-165.4003,6.5928,-279.804|-159.3823,3.0006,-277.7192|-168.3823,12.6005,-270.7192|-158.3824,0.6004,-273.7193|-158.2976,1.7928,-275.7372|-169.4672,11.3928,-272.7013|-167.3824,7.8005,-278.7192|-168.3824,9.0004,-276.7192|-169.3824,10.2004,-274.7193|-153.5824,35.3004,-270.2193|9,20.3999,1|-163.7824,15.0004,-274.2193|3,27.6,2|-163.8824,37.6004,-274.2193|-143.8824,37.6004,-274.2193|-143.8824,37.6004,-266.2193|-163.8824,37.0004,-271.2193|1,1.7999,1|-153.9824,39.5004,-274.2193|-143.8824,39.5004,-269.9193|-163.8824,39.5004,-272.5193;0,1>2>2671,6>2>271,7>2>16,9>14>8,9>15>271,10>14>8,10>15>119,11>14>8,11>15>116,12>14>8,12>15>356,14>14>13,14>15>271,15>14>13,15>15>356,17>14>16,17>15>129,18>14>16,18>15>500,19>14>16,19>15>133,20>14>16,20>15>119,21>14>16,21>15>52,22>14>16,22>15>127,23>14>16,23>15>432,24>'
  892. ..'14>16,24>15>45,25>14>16,25>15>36,26>14>16,26>15>271,27>14>16,27>15>112,28>14>16,28>15>143,29>14>16,29>15>60,30>14>16,30>15>55,32>14>31,32>15>271,33>14>31,33>15>127,34>14>31,34>15>356,35>2>38,40>14>38,40>15>16,41>14>38,41>15>36,42>14>38,42>15>329,43>14>38,43>15>328,44>14>38,44>15>45,48>14>47,48>15>143,49>14>47,49>15>271,51>2>55,54>14>52,54>15>55,57>14>55,57>15>393,58>14>55,58>15>60,59>14>55,59>15>397,62>2>66,65>14>63,65>15>66,68>14>66,68>15>537,71>14>69,71>15>66,74>14>73,74>15>495,76>14>75,76>15>131,77>14>75,77>15>129,78>14>75,78>15>495,79>14>75,79>15>564,80>14>75,80>15>271,82>14>81,82>15>133,84>14>83,84>15>114,85>14>83,85>15>112,86>14>83,86>15>271,87>14>83,87>15>495,89>14>88,89>15>69,90>14>88,90>15>131,91>14>88,91>15>63,92>14>88,92>15>66,93>14>88,93>15>135,94>14>88,94>15>271,95>14>88,95>15>100,96>14>88,96>15>110,97>14>88,97>15>114,98>14>88,98>15>105,99>14>88,99>15>102,101>2>105,104>14>102,104>15>105,107>14>105,107>15>467,108>14>105,108>15>110,109>14>105,109>15>468,118>14>116,118>15>570,123>14>121,123>15>570,124>14>121,124>15>361,125>14>121,125>15>293,126>14>121,126>15>31,137>14>135,137>15>81,140>14>138,140>15>47,141>14>138,141>15>570,142>14>138,142>15>361,145>2>147,148>14>147,148>15>162,149>14>147,149>15>235,150>14>147,150>15>155,152>14>151,152>15>271,153>14>151,153>15>147,154>14>151,154>15>155,157>14>156,157>15>146,158>14>156,158>15>155,160>14>159,160>15>167,161>14>159,161>15>162,164>14>163,164>15>167,165>14>163,165>15>146,166>14>163,166>15>235,169>14>168,169>15>182,170>14>168,170>15>183,172>14>171,172>15>271,173>14>171,173>15>147,174>14>171,174>15>162,176>14>175,176>15>271,177>14>175,177>15>184,179>14>178,179>15>175,180>14>178,180>15>184,181>14>178,181>15>182,185>14>184,185>15>194,187>14>186,187>15>192,189>14>188,189>15>184,190>14>188,190>15>186,191>14>188,191>15>194,193>14>192,193>15>183,196>14>195,196>15>168,197>14>195,197>15>228,198>14>195,198>15>183,199>14>19'
  893. ..'5,199>15>221,201>14>200,201>15>192,202>14>200,202>15>183,204>14>203,204>15>146,205>14>203,205>15>163,206>14>203,206>15>235,208>14>207,208>15>167,209>14>207,209>15>163,210>14>207,210>15>234,211>14>207,211>15>229,213>14>212,213>15>184,214>14>212,214>15>236,215>14>212,215>15>183,216>14>212,216>15>221,217>14>212,217>15>200,219>14>218,219>15>228,222>14>221,222>15>200,223>14>221,223>15>228,225>14>224,225>15>221,226>14>224,226>15>220,227>14>224,227>15>200,230>14>229,230>15>268,231>14>229,231>15>234,232>14>229,232>15>235,233>14>229,233>15>203,238>14>237,238>15>271,239>14>237,239>15>236,240>14>237,240>15>248,242>14>241,242>15>271,243>14>241,243>15>245,244>14>241,244>15>236,246>14>245,246>15>218,247>14>245,247>15>236,249>14>248,249>15>236,250>14>248,250>15>220,252>14>251,252>15>254,253>14>251,253>15>235,256>14>255,256>15>251,258>14>257,258>15>251,259>14>257,259>15>261,260>14>257,260>15>255,263>14>262,263>15>234,265>14>264,265>15>251,266>14>264,266>15>254,267>14>264,267>15>262,269>14>268,269>15>261,270>14>268,270>15>203,282>14>271,282>15>81,283>14>271,283>15>72,284>14>271,284>15>254,285>14>271,285>15>356,286>14>271,286>15>194,287>14>271,287>15>73,288>14>271,288>15>495,289>14>271,289>15>255,290>14>271,290>15>50,291>2>356,292>2>293,294>14>293,294>15>570,295>14>293,295>15>116,296>14>293,296>15>297,303>14>301,303>15>297,304>14>301,304>15>299,306>14>305,306>15>329,307>14>305,307>15>309,308>14>305,308>15>299,311>14>309,311>15>329,314>14>312,314>15>293,315>14>312,315>15>319,318>14>316,318>15>319,322>14>321,322>15>328,323>14>321,323>15>325,324>14>321,324>15>316,327>14>325,327>15>328,330>14>329,330>15>354,331>2>334,333>14>332,333>15>334,338>14>336,338>15>343,341>14>339,341>15>334,342>14>339,342>15>336,344>14>343,344>15>328,347>14>345,347>15>351,348>14>345,348>15>332,353>14>351,353>15>349,355>14>354,355>15>349,359>2>423,360>2>361,362>14>361,362>15>570,365>14>363,365>15>361,366>14>363,3'
  894. ..'66>15>369,371>14>369,371>15>367,373>14>372,373>15>397,374>14>372,374>15>367,377>14>375,377>15>397,378>14>375,378>15>372,381>14>379,381>15>361,382>14>379,382>15>387,385>14>383,385>15>387,386>14>383,386>15>389,390>14>389,390>15>391,394>14>393,394>15>391,395>14>393,395>15>389,396>14>393,396>15>410,398>2>400,402>14>400,402>15>399,405>14>403,405>15>410,406>14>403,406>15>407,409>14>407,409>15>400,413>14>411,413>15>417,414>14>411,414>15>399,419>14>417,419>15>415,421>14>420,421>15>397,422>14>420,422>15>415,426>14>423,426>15>31,427>14>423,427>15>271,428>14>423,428>15>47,429>14>423,429>15>50,430>2>495,431>2>432,433>14>432,433>15>129,434>14>432,434>15>112,435>14>432,435>15>436,438>14>436,438>15>443,441>14>439,441>15>443,442>14>439,442>15>445,446>14>445,446>15>468,447>14>445,447>15>448,450>14>448,450>15>468,453>14>451,453>15>457,454>14>451,454>15>432,459>14>457,459>15>455,461>14>460,461>15>464,462>14>460,462>15>467,463>14>460,463>15>455,466>14>464,466>15>467,469>2>471,473>14>471,473>15>470,476>14>474,476>15>481,479>14>477,479>15>471,480>14>477,480>15>474,482>14>481,482>15>467,485>14>483,485>15>470,488>14>486,488>15>493,491>14>489,491>15>483,492>14>489,492>15>486,494>14>493,494>15>468,498>2>564,499>2>500,501>14>500,501>15>129,502>14>500,502>15>520,503>14>500,503>15>133,506>14>504,506>15>510,507>14>504,507>15>500,512>14>510,512>15>508,514>14>513,514>15>537,515>14>513,515>15>517,516>14>513,516>15>508,519>14>517,519>15>537,522>14>520,522>15>527,525>14>523,525>15>527,526>14>523,526>15>529,530>14>529,530>15>531,534>14>533,534>15>66,535>14>533,535>15>531,536>14>533,536>15>529,538>2>542,540>14>539,540>15>553,541>14>539,541>15>542,548>14>546,548>15>542,549>14>546,549>15>544,551>14>550,551>15>533,552>14>550,552>15>544,559>14>557,559>15>553,560>14>557,560>15>555,562>14>561,562>15>537,563>14>561,563>15>555,567>14>564,567>15>81,568>14>564,568>15>271,569>14>564,569>15>72,574>14>572,574>15>5'
  895. ..'70,578>2>646,579>2>585,625>2>627,643>2>646,661>2>667,713>2>733,736>2>740,759>2>769,770>2>776,777>2>835,778>2>781,832>2>835,887>2>945,888>2>891,942>2>945,997>2>1047,1169>2>1275,1170>2>1175,1188>2>1191,1206>2>1219,1252>2>1275,1278>2>1280,1281>2>1286,1304>2>1317,1341>2>1358,1372>2>1395,1405>2>1473,1406>2>1412,1452>2>1457,1470>2>1473,1488>2>1501,1534>2>1536,1537>2>1586,1604>2>1606,1607>2>1616,1632>2>1634,1635>2>1650,1700>2>1749,1767>2>1776,1792>2>1807,1826>2>1845,1858>2>1860,2067>2>2083,2076>2>2083,2086>2>2093,2100>2>2116,2109>2>2116,2119>2>2126,2133>2>2140,2158>2>2165,2169>2>2176,2296>2>2326,2335>2>2337,2338>2>2339,2348>2>2402,2447>2>2449,2614>2>2625,2664>14>2663,2664>15>4,2666>14>2665,2666>15>575,2707>2>2710,2820>2>2823,2842>2>2843,2854>2>2855,2869>2>2870,2877>2>2878,2945>2>2952,3047>2>3049,3055>2>3057,3083>2>3088,3090>2>3095,3146>2>3148,3149>2>3150,3152>2>3339,3153>2>3169,3174>2>3190,3231>2>3251,3286>2>3339,3341>2>3357,3362>2>3408,3417>2>3419,3420>2>3442;2|1:2;n;1|1:3|3:4|4:5|5:6|6:7|7:8|8:9|4:5|4:5;n;3|1:10;p;4|3:4|5:11|6:7|7:12|9:13|8:9;n;5|10:14|11:15;p;2|1:16;n;2|1:17;n;1|4:18|5:19|6:20|7:21|8:9|4:18|4:18;n;6|12:22|13:23;6|12:24|13:25;6|12:24|13:26;6|12:27|13:28;p;1|5:29|6:30|7:31|9:9|8:9;n;6|12:32|13:33;6|12:34|13:35;p;1|4:18|5:36|6:37|7:38|8:9|4:18|4:18;n;6|12:34|13:39;7|12:34|13:40|16:41|17:42|18:43|19:44;6|12:34|13:45;6|12:46|13:47;6|12:48|13:49;6|12:46|13:39;7|12:34|13:50|16:51|17:52|18:53|19:54;6|12:48|13:55;6|12:48|13:56;6|12:57|13:58;6|12:34|13:47;6|12:46|13:45;6|12:48|13:59;6|12:48|13:60;p;1|4:18|5:61|6:20|7:21|8:9|4:18|4:18;n;6|12:22|13:62;6|12:24|13:25;6|12:63|13:64;p;2|1:65;n;1|4:18|5:66|6:67|7:68|20:13|9:13|8:9|4:18|4:18;n;8|21:69|22:13;p;1|4:18|5:70|6:67|7:71|9:13|8:9|4:18|4:18;n;8|21:69|22:72;6|12:22|13:73;6|12:74|13:75;6|12:24|13:76;6|12:24|13:77;6|12:78|13:75;p;1|4:18|5:79|6:37|7:68|20:13|9:13|8:9|4:18|4:18;n;8|21:69|22:13;p;p;1|4:18|5:80|6:20|7'
  896. ..':21|8:9|4:18|4:18;n;6|12:24|13:25;6|12:22|13:81;p;1|5:82|6:30|7:31|9:9|8:9;2|1:65;n;1|4:18|5:83|6:67|7:68|20:13|9:13|8:9|4:18|4:18;n;8|21:69|22:13;6|12:84|13:85;p;1|4:18|5:86|6:67|7:71|9:13|8:9|4:18|4:18;n;8|21:69|22:72;6|12:24|13:77;6|12:78|13:75;6|12:24|13:76;p;1|4:18|5:87|6:37|7:68|20:13|9:13|8:9|4:18|4:18;n;8|21:69|22:13;p;p;2|1:65;n;1|4:18|5:88|6:67|7:68|20:13|9:13|8:9|4:18|4:18;n;8|21:69|22:13;6|12:84|13:85;p;1|4:18|5:89|6:67|7:71|9:13|8:9|4:18|4:18;n;8|21:69|22:72;6|12:24|13:76;p;1|4:18|5:90|6:37|7:68|20:13|9:13|8:9|4:18|4:18;n;8|21:69|22:13;6|12:84|13:91;p;p;1|5:92|6:30|7:31|9:9|8:9;1|5:93|6:30|7:31|9:9|8:9;n;6|12:34|13:35;p;1|4:18|5:94|6:20|7:21|8:9|4:18|4:18;n;6|12:24|13:25;6|12:24|13:26;6|12:27|13:28;6|12:63|13:64;6|12:22|13:95;p;1|4:18|5:96|6:20|7:21|8:9|4:18|4:18;n;6|12:24|13:26;p;1|4:18|5:97|6:20|7:21|8:9|4:18|4:18;n;6|12:24|13:25;6|12:24|13:26;6|12:22|13:98;6|12:63|13:64;p;1|4:18|5:99|6:37|7:38|9:9|8:9|4:18|4:18;n;6|12:48|13:55;6|12:46|13:39;6|12:48|13:56;6|12:48|13:100;6|12:46|13:47;6|12:57|13:101;6|12:34|13:102;6|12:48|13:59;6|12:46|13:45;6|12:48|13:60;6|12:48|13:49;p;1|1:103|4:18|5:104|6:105|7:106|9:13|8:9|4:18|4:18;2|1:65;n;1|4:18|5:107|6:67|7:68|20:13|9:13|8:9|4:18|4:18;n;8|21:69|22:13;6|12:84|13:85;p;1|4:18|5:108|6:67|7:71|9:13|8:9|4:18|4:18;n;8|21:69|22:72;6|12:24|13:77;6|12:78|13:75;6|12:24|13:76;p;1|4:18|5:109|6:37|7:68|20:13|9:13|8:9|4:18|4:18;n;8|21:69|22:13;p;p;1|1:110|4:18|5:111|6:20|7:112|23:113|20:13|9:13|8:9|4:18|4:18;n;8|22:13;p;1|1:110|4:18|5:114|7:112|23:113|20:13|9:13|8:9|4:18|4:18;n;8|22:13;p;1|1:110|4:18|5:115|6:20|7:112|23:113|20:13|9:13|8:9|4:18|4:18;n;8|22:13;6|12:84|13:116;p;1|1:110|4:18|5:117|7:112|23:113|20:13|9:13|8:9|4:18|4:18;n;8|22:13;p;1|1:110|4:18|5:118|6:20|7:112|23:113|20:13|9:13|8:9|4:18|4:18;n;8|22:13;6|12:84|13:119;6|12:27|13:120;6|12:63|13:121;6|12:22|13:122;p;1|1:110|4:18|5:123|7:112|23:113|20:13|9:13|8:9|4:18'
  897. ..'|4:18;n;8|22:13;p;1|1:110|4:18|5:124|6:20|7:112|23:113|20:13|9:13|8:9|4:18|4:18;n;8|22:13;p;1|1:110|4:18|5:125|7:112|23:113|20:13|9:13|8:9|4:18|4:18;n;8|22:13;p;1|1:110|4:18|5:126|6:20|7:112|23:113|20:13|9:13|8:9|4:18|4:18;n;8|22:13;p;1|1:110|4:18|5:127|7:112|23:113|20:13|9:13|8:9|4:18|4:18;n;8|22:13;6|12:22|13:77;p;1|1:110|4:18|5:128|6:20|7:112|23:113|20:13|9:13|8:9|4:18|4:18;n;8|22:13;6|12:22|13:122;6|12:84|13:129;6|12:63|13:121;p;1|1:110|4:18|5:130|7:112|23:113|20:13|9:13|8:9|4:18|4:18;n;8|22:13;p;p;2|1:131;n;1|24:132|25:4|5:133|6:37|7:134|8:9;1|1:135|24:132|4:136|5:137|6:138|7:139|26:13|9:9|27:13|28:13|8:9|4:136|4:136;n;6|12:140|13:141;6|12:142|13:143;6|12:142|13:144;p;1|24:132|5:145|6:146|7:147;n;9|12:57|13:148;6|12:46|13:149;9|12:48|13:150;p;1|24:132|25:4|5:151|6:30|7:134|8:9;1|1:135|24:132|4:136|25:4|5:152|6:153|7:154|26:13|9:9|27:13|28:13|8:9|4:136|4:136;n;6|12:34|13:155;6|12:46|13:156;p;1|1:135|24:132|4:136|5:157|6:153|7:154|26:13|9:9|27:13|28:13|8:9|4:136|4:136;n;6|12:34|13:155;6|12:46|13:156;p;1|24:132|5:158|6:30|7:134|8:9;1|1:135|24:132|4:136|5:159|6:160|7:139|26:13|9:9|27:13|28:13|8:9|4:136|4:136;n;6|12:142|13:161;6|12:140|13:162;6|12:140|13:163;p;1|24:132|5:164|6:37|7:134|8:9;1|24:132|5:165|6:37|7:134|8:9;n;6|12:166|13:167;6|12:84|13:168;p;1|24:132|5:169|6:146|7:147;n;9|12:57|13:170;6|12:34|13:171;9|12:48|13:150;p;1|24:132|5:172|6:146|7:147;n;9|12:57|13:173;6|12:46|13:149;p;1|24:132|5:174|6:30|7:134|8:9;n;9|12:175|13:176;6|12:177|13:178;6|12:166|13:179;p;1|1:135|24:132|4:136|5:180|6:153|7:154|26:13|9:9|27:13|28:13|8:9|4:136|4:136;1|1:135|24:132|4:136|5:181|6:160|7:139|26:13|9:9|27:13|28:13|8:9|4:136|4:136;1|1:135|24:132|4:136|5:182|6:138|7:139|26:13|9:9|27:13|28:13|8:9|4:136|4:136;n;6|12:140|13:183;p;1|1:135|24:132|4:136|25:4|5:184|6:153|7:154|26:13|9:9|27:13|28:13|8:9|4:136|4:136;n;6|12:34|13:155;p;1|24:132|25:4|5:185|6:30|7:134|8:9;n;6|12:84|13:186;'
  898. ..'6|12:166|13:179;9|12:175|13:187;p;1|24:132|25:4|5:188|6:37|7:134|8:9;n;6|12:177|13:189;p;1|24:132|5:190|6:146|7:147;1|24:132|5:191|6:20|7:192|9:9;n;9|12:48|13:193;9|12:48|13:194;6|12:34|13:195;6|12:34|13:196;p;1|24:132|4:197|25:4|5:198|6:20|7:192|9:9|4:197|4:197;n;9|12:48|13:193;6|12:46|13:199;p;1|24:132|4:200|25:4|5:201|6:20|7:192|9:9|4:200|4:200;n;9|12:48|13:193;6|12:34|13:202;9|12:48|13:203;p;1|24:132|5:204|6:20|7:192|9:9;n;9|12:48|13:193;6|12:46|13:205;9|12:48|13:194;6|12:46|13:206;p;1|4:207|25:4|5:208|6:37|7:209|4:207|4:207;n;6|12:177|13:210;6|12:177|13:211;6|12:177|13:212;6|12:177|13:213;9|12:57|13:214;p;1|1:135|24:132|4:136|5:215|6:153|7:154|26:13|9:9|27:13|28:13|8:9|4:136|4:136;n;6|12:34|13:155;p;1|1:135|24:132|4:136|25:4|5:216|6:153|7:154|26:13|9:9|27:13|28:13|8:9|4:136|4:136;1|1:135|24:132|4:136|5:217|6:160|7:139|26:13|9:9|27:13|28:13|8:9|4:136|4:136;n;6|12:142|13:218;6|12:140|13:162;p;1|24:132|25:4|5:219|6:37|7:134|8:9;n;6|12:177|13:189;6|12:166|13:167;9|12:175|13:220;p;1|24:132|5:221|6:37|7:134|8:9;1|1:135|24:132|4:136|5:222|6:160|7:139|26:13|9:9|27:13|28:13|8:9|4:136|4:136;n;6|12:140|13:162;6|12:142|13:161;6|12:140|13:223;6|12:140|13:224;p;1|24:132|5:225|6:37|7:134|8:9;1|4:207|25:4|5:226|6:37|7:209|4:207|4:207;1|1:227|24:132|4:136|5:228|6:138|7:139|26:13|9:9|27:13|28:13|8:9|4:136|4:136;1|24:132|5:229|6:146|7:147;n;9|12:57|13:230;6|12:34|13:171;9|12:48|13:150;p;1|24:132|5:231|6:146|7:147;n;9|12:57|13:232;9|12:48|13:150;6|12:46|13:149;p;1|24:132|5:233|6:30|7:134|8:9;n;6|12:166|13:179;6|12:177|13:178;p;1|24:132|25:4|5:234|6:30|7:134|8:9;n;6|12:84|13:186;6|12:166|13:179;p;1|1:235|24:132|4:136|5:236|6:138|7:139|26:13|9:9|27:13|28:13|8:9|4:136|4:136;n;6|12:140|13:183;6|12:142|13:237;p;1|24:132|5:238|6:146|7:147;1|24:132|5:239|6:146|7:147;n;6|12:46|13:149;p;1|24:132|25:4|5:240|6:30|7:134|8:9;n;6|12:177|13:178;6|12:166|13:179;9|12:175|13:187;p;1|1:135|24:132|4'
  899. ..':136|25:4|5:241|6:153|7:154|26:13|9:9|27:13|28:13|8:9|4:136|4:136;1|1:135|24:132|4:136|5:242|6:153|7:154|26:13|9:9|27:13|28:13|8:9|4:136|4:136;n;6|12:34|13:155;p;1|24:132|5:243|6:30|7:134|8:9;n;6|12:84|13:186;9|12:175|13:187;6|12:166|13:179;p;1|24:132|25:4|5:244|6:37|7:134|8:9;n;6|12:166|13:167;9|12:175|13:220;p;p;1|1:245|3:4|5:246|6:146|7:247|9:13;n;10|1:248|29:249;11|1:250;3|1:251;12|1:252;n;12|1:253;n;13|1:254|30:113;13|1:255|30:113;p;13|1:256|31:4|32:257|30:113;13|1:258|32:259|30:113;13|1:260|32:261|30:113;p;6|12:22|13:262;6|12:22|13:263;9|12:24|13:264;6|12:22|13:265;9|12:24|13:266;6|12:22|13:267;6|12:22|13:268;9|12:24|13:269;6|12:22|13:270;p;2|1:271;n;2|1:272;n;1|1:273|4:274|25:4|5:275|6:276|7:31|23:113|20:13|9:13|33:13|27:15|28:13|8:13|4:274|4:274;n;7|12:34|13:277|16:278|17:279|18:280|19:281;6|12:78|13:282;6|12:283|13:284;p;1|1:273|4:274|25:4|5:285|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;p;1|1:273|4:274|25:4|5:286|7:134|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;p;1|1:273|4:274|25:4|5:287|6:146|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:288;6|12:22|13:289;p;1|1:273|4:274|25:4|5:290|6:276|7:134|23:113|9:13|8:9|4:274|4:274;n;6|12:46|13:291;6|12:175|13:292;6|12:34|13:288;p;1|1:273|4:274|25:4|5:293|7:294|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:295;p;1|1:273|4:274|25:4|5:296|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:22|13:297;6|12:84|13:288;p;1|1:273|4:274|25:4|5:298|7:134|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:175|13:299;p;1|1:273|4:274|25:4|5:300|6:146|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;p;1|1:273|4:274|25:4|5:301|6:276|7:134|23:113|9:13|8:9|4:274|4:274;n;6|12:46|13:291;6|12:175|13:292;6|12:34|13:288;p;1|1:273|4:274|25:4|5:302|7:294|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:295;p;p;1|1:303|4:18|25:4|5:304|6:276|7:68|20:13|9:13|33:13|27:13|28:13|8:13|4:18|4:18;1|1:303|4:18|2'
  900. ..'5:4|5:305|6:276|7:68|20:13|9:13|33:13|27:13|28:13|8:13|4:18|4:18;n;6|12:22|13:306;p;2|1:307;n;1|1:273|4:274|5:308|6:309|7:31|23:113|9:9|8:9|4:274|4:274;n;6|12:283|13:310;p;1|1:273|4:274|5:311|6:312|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;p;1|1:273|4:274|5:313|6:312|7:134|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:167;p;1|1:273|4:274|5:314|6:138|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:288;6|12:22|13:289;p;1|1:273|4:274|5:315|6:309|7:134|23:113|9:9|8:9|4:274|4:274;n;6|12:46|13:316;p;1|1:273|4:274|5:317|6:312|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:288;6|12:22|13:318;p;1|1:273|4:274|5:319|6:312|7:134|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;p;1|1:273|4:274|5:320|6:138|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:22|13:289;p;1|1:273|4:274|5:321|6:309|7:134|23:113|9:9|8:9|4:274|4:274;n;6|12:34|13:288;p;p;14|4:200|5:322|7:323|9:13|33:13|27:13|28:13|8:9|4:200|4:200;n;3;n;15|1:324;p;p;p;2|1:325;n;2|1:272;n;1|1:273|4:274|25:4|5:326|6:276|7:31|23:113|20:13|9:13|33:13|27:15|28:13|8:13|4:274|4:274;n;7|12:34|13:327|16:278|17:279|18:280|19:281;p;1|1:273|4:274|25:4|5:328|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:22|13:329;6|12:84|13:288;p;1|1:273|4:274|25:4|5:330|7:134|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;p;1|1:273|4:274|25:4|5:331|6:146|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:22|13:289;p;1|1:273|4:274|25:4|5:332|6:276|7:134|23:113|9:13|8:9|4:274|4:274;n;6|12:46|13:291;6|12:34|13:288;p;1|1:273|4:274|25:4|5:333|7:294|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:295;6|12:283|13:150;p;1|1:273|4:274|25:4|5:334|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:22|13:297;6|12:84|13:288;p;1|1:273|4:274|25:4|5:335|7:134|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:175|13:299;6|12:84|13:167;p;1|1:273|4:274|25:4|5:336|6:146|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|2'
  901. ..'2:13;p;1|1:273|4:274|25:4|5:337|6:276|7:134|23:113|9:13|8:9|4:274|4:274;n;6|12:175|13:292;p;1|1:273|4:274|25:4|5:338|7:294|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;p;p;1|1:303|4:18|25:4|5:339|6:276|7:68|20:13|9:13|33:13|27:13|28:13|8:13|4:18|4:18;n;6|12:34|13:340;6|12:34|13:341;6|12:22|13:306;p;1|1:303|4:18|25:4|5:342|6:276|7:68|20:13|9:13|33:13|27:13|28:13|8:13|4:18|4:18;2|1:307;n;1|1:273|4:274|5:343|6:309|7:31|23:113|9:9|8:9|4:274|4:274;1|1:273|4:274|5:344|6:312|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:22|13:345;p;1|1:273|4:274|5:346|6:312|7:134|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:167;6|12:175|13:299;p;1|1:273|4:274|5:347|6:138|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:288;p;1|1:273|4:274|5:348|6:309|7:134|23:113|9:9|8:9|4:274|4:274;1|1:273|4:274|5:349|6:312|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:288;6|12:22|13:318;p;1|1:273|4:274|5:350|6:312|7:134|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;p;1|1:273|4:274|5:351|6:138|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:22|13:289;p;1|1:273|4:274|5:352|6:309|7:134|23:113|9:9|8:9|4:274|4:274;n;6|12:46|13:316;6|12:34|13:288;p;p;14|4:200|5:353|7:323|9:13|33:13|27:13|28:13|8:9|4:200|4:200;n;3;n;15|1:324;p;6|12:140|13:354;6|12:175|13:355;6|12:142|13:356;6|12:357|13:358;p;p;2|1:359;n;2|1:272;n;1|1:273|4:274|25:4|5:360|6:276|7:31|23:113|20:13|9:13|33:13|27:15|28:13|8:13|4:274|4:274;n;6|12:78|13:282;6|12:74|13:361;6|12:283|13:284;p;1|1:273|4:274|25:4|5:362|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:288;p;1|1:273|4:274|25:4|5:363|7:134|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:175|13:299;6|12:84|13:167;p;1|1:273|4:274|25:4|5:364|6:146|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;p;1|1:273|4:274|25:4|5:365|6:276|7:134|23:113|9:13|8:9|4:274|4:274;n;6|12:46|13:291;6|12:175|13:292;p;1|1:273|4:274|25:4|5:366|7:294|23:113|20:1'
  902. ..'3|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:295;p;1|1:273|4:274|25:4|5:367|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:288;6|12:22|13:297;p;1|1:273|4:274|25:4|5:368|7:134|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;p;1|1:273|4:274|25:4|5:369|6:146|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:22|13:289;p;1|1:273|4:274|25:4|5:370|6:276|7:134|23:113|9:13|8:9|4:274|4:274;n;6|12:175|13:292;6|12:46|13:291;6|12:34|13:288;p;1|1:273|4:274|25:4|5:371|7:294|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:295;p;p;1|1:303|4:18|25:4|5:372|6:276|7:68|20:13|9:13|33:13|27:13|28:13|8:13|4:18|4:18;1|1:303|4:18|25:4|5:373|6:276|7:68|20:13|9:13|33:13|27:13|28:13|8:13|4:18|4:18;2|1:307;n;1|1:273|4:274|5:374|6:309|7:31|23:113|9:9|8:9|4:274|4:274;1|1:273|4:274|5:375|6:312|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:22|13:345;p;1|1:273|4:274|5:376|6:312|7:134|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:167;p;1|1:273|4:274|5:377|6:138|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:288;6|12:22|13:289;p;1|1:273|4:274|5:378|6:309|7:134|23:113|9:9|8:9|4:274|4:274;n;6|12:46|13:316;p;1|1:273|4:274|5:379|6:312|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:22|13:318;p;1|1:273|4:274|5:380|6:312|7:134|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:167;p;1|1:273|4:274|5:381|6:138|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:288;6|12:22|13:289;p;1|1:273|4:274|5:382|6:309|7:134|23:113|9:9|8:9|4:274|4:274;n;6|12:46|13:316;p;p;14|4:200|5:383|7:323|9:13|33:13|27:13|28:13|8:9|4:200|4:200;n;3;n;15|1:324;p;p;p;2|1:384;n;2|1:272;n;1|1:273|4:274|25:4|5:385|6:276|7:31|23:113|20:13|9:13|33:13|27:15|28:13|8:13|4:274|4:274;n;6|12:74|13:361;6|12:283|13:386;6|12:78|13:282;p;1|1:273|4:274|25:4|5:387|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:288;6|12:22|13:329;p;1|1:273|4:274|25:4|5:388|7:134|23:113|20:13|'
  903. ..'9:13|8:9|4:274|4:274;n;8|22:13;p;1|1:273|4:274|25:4|5:389|6:146|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:22|13:289;p;1|1:273|4:274|25:4|5:390|6:276|7:134|23:113|9:13|8:9|4:274|4:274;n;6|12:46|13:291;6|12:175|13:292;6|12:34|13:288;p;1|1:273|4:274|25:4|5:391|7:294|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:295;p;1|1:273|4:274|25:4|5:392|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:288;p;1|1:273|4:274|25:4|5:393|7:134|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:175|13:299;6|12:84|13:167;p;1|1:273|4:274|25:4|5:394|6:146|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;p;1|1:273|4:274|25:4|5:395|6:276|7:134|23:113|9:13|8:9|4:274|4:274;n;6|12:175|13:292;p;1|1:273|4:274|25:4|5:396|7:294|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;p;p;1|1:303|4:18|25:4|5:397|6:276|7:68|20:13|9:13|33:13|27:13|28:13|8:13|4:18|4:18;n;6|12:24|13:77;6|12:34|13:340;6|12:34|13:341;p;1|1:303|4:18|25:4|5:398|6:276|7:68|20:13|9:13|33:13|27:13|28:13|8:13|4:18|4:18;2|1:307;n;1|1:273|4:274|5:399|6:309|7:31|23:113|9:9|8:9|4:274|4:274;n;6|12:283|13:400;6|12:283|13:310;p;1|1:273|4:274|5:401|6:312|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;p;1|1:273|4:274|5:402|6:312|7:134|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;p;1|1:273|4:274|5:403|6:138|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:288;6|12:22|13:289;p;1|1:273|4:274|5:404|6:309|7:134|23:113|9:9|8:9|4:274|4:274;n;6|12:46|13:316;6|12:34|13:288;p;1|1:273|4:274|5:405|6:312|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;p;1|1:273|4:274|5:406|6:312|7:134|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;p;1|1:273|4:274|5:407|6:138|7:68|23:113|20:13|9:13|8:9|4:274|4:274;n;8|22:13;6|12:84|13:288;6|12:22|13:289;p;1|1:273|4:274|5:408|6:309|7:134|23:113|9:9|8:9|4:274|4:274;n;6|12:46|13:316;6|12:34|13:288;p;p;14|4:200|5:409|7:323|9:13|33:13|27:13|28:13|8:9|4:200|4:200;n;3;n;15|1:324;p;6|12:140|13:354;'
  904. ..'6|12:175|13:410;6|12:357|13:358;p;p;1|1:411|4:18|5:412|7:413|9:13|8:9|4:18|4:18;n;8|1:414|22:13;p;1|1:415|5:416|6:417|7:418|23:113|9:13|8:9;n;8|1:414|22:13;6|12:419|13:420;p;1|1:421|3:4|4:422|5:423|6:7|7:424|9:13|8:9|4:422|4:422;n;16|1:425|34:426;3;p;p;2|1:427;n;2|1:428;n;1|3:4|4:429|5:430|6:431|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:432|6:433|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:434|6:435|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:436|6:437|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:438|6:437|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:439|6:440|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:441|6:431|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:442|6:435|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:443|6:435|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:444|6:445|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:446|6:435|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:447|6:445|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:448|6:440|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:449|6:431|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:450|6:431|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:451|6:452|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:453|6:452|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:454|6:30|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:455|6:30|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:456|6:457|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:458|6:459|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:460|6:457|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:461|6:462|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:463|6:464|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:465|6:466|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:467|6:468|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:469|6:470|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:471|6:472|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:473|6:474|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:475|6:476|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:477|6:478|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:479|6:480|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:481|6:462|7:21|9:9|8:9|4:429|4:429;1|3:4|4:4'
  905. ..'29|5:482|6:483|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:484|6:468|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:485|6:474|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:486|6:466|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:487|6:476|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:488|6:472|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:489|6:470|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:490|6:480|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:491|6:483|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:492|6:478|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:493|6:494|7:21|9:9|8:9|4:429|4:429;3|1:495;p;2|1:496;n;1|3:4|4:429|5:497|6:498|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:499|6:500|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:501|6:498|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:502|6:503|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:504|6:500|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:505|6:506|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:507|6:506|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:508|6:509|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:510|6:509|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:511|6:503|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:512|6:513|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:514|6:515|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:516|6:517|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:518|6:519|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:520|6:519|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:521|6:522|7:21|9:9|8:9|4:429|4:429;3|1:495;p;2|1:523;n;1|3:4|4:429|5:524|6:525|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:526|6:527|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:528|6:529|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:530|6:531|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:532|6:531|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:533|6:534|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:535|6:534|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:536|6:537|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:538|6:539|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:540|6:539|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:541|6:542|7:21|9:9|8:9|4:429|4:429;1|3:'
  906. ..'4|4:429|5:543|6:544|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:545|6:546|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:547|6:527|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:548|6:525|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:549|6:529|7:21|9:9|8:9|4:429|4:429;3|1:495;p;2|1:550;n;1|3:4|4:429|5:551|6:552|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:553|6:554|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:555|6:556|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:557|6:558|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:559|6:558|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:560|6:561|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:562|6:552|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:563|6:556|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:564|6:556|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:565|6:566|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:567|6:556|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:568|6:566|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:569|6:561|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:570|6:552|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:571|6:552|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:572|6:573|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:574|6:573|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:575|6:576|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:577|6:576|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:578|6:579|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:580|6:581|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:582|6:579|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:583|6:584|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:585|6:586|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:587|6:588|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:589|6:590|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:591|6:592|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:593|6:594|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:595|6:596|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:597|6:598|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:599|6:600|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:601|6:602|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:603|6:584|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:604|6'
  907. ..':605|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:606|6:590|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:607|6:596|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:608|6:588|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:609|6:598|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:610|6:594|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:611|6:592|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:612|6:602|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:613|6:605|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:614|6:600|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:615|6:616|7:21|9:9|8:9|4:429|4:429;3|1:495;p;p;1|1:617|3:4|4:429|5:618|6:417|35:619|7:620|9:9|8:9|4:429|4:429;1|1:617|3:4|4:429|5:621|6:417|35:619|7:620|9:9|8:9|4:429|4:429;1|1:622|3:4|4:429|5:623|6:30|7:624|9:9|8:9|4:429|4:429;1|1:622|3:4|4:429|5:625|6:146|7:626|9:9|8:9|4:429|4:429;1|1:622|3:4|4:429|5:627|6:628|7:21|9:9|8:9|4:429|4:429;1|1:622|3:4|4:429|5:629|6:628|7:21|9:9|8:9|4:429|4:429;2|1:630;n;1|3:4|4:429|5:631|6:632|35:633|7:68|9:9|8:9|4:429|4:429;1|3:4|4:429|5:634|6:635|35:633|7:68|9:9|8:9|4:429|4:429;1|3:4|4:429|5:636|6:637|35:633|7:68|9:9|8:9|4:429|4:429;1|3:4|4:429|5:638|6:632|35:633|7:639|9:9|8:9|4:429|4:429;1|3:4|4:429|5:640|6:637|35:633|7:639|9:9|8:9|4:429|4:429;1|3:4|4:429|5:641|6:642|35:633|7:112|9:9|8:9|4:429|4:429;1|3:4|4:429|5:643|6:644|35:633|7:112|9:9|8:9|4:429|4:429;1|3:4|4:429|5:645|6:646|35:633|7:112|9:9|8:9|4:429|4:429;1|3:4|4:429|5:647|6:648|35:633|7:112|9:9|8:9|4:429|4:429;1|3:4|4:429|5:649|6:67|35:633|7:639|9:9|8:9|4:429|4:429;1|3:4|4:429|5:650|6:651|35:633|7:112|9:9|8:9|4:429|4:429;1|3:4|4:429|5:652|6:653|35:633|7:68|9:9|8:9|4:429|4:429;1|3:4|4:429|5:654|6:644|35:633|7:68|9:9|8:9|4:429|4:429;1|3:4|4:429|5:655|6:642|35:633|7:68|9:9|8:9|4:429|4:429;1|3:4|4:429|5:656|6:646|35:633|7:68|9:9|8:9|4:429|4:429;1|3:4|4:429|5:657|6:648|35:633|7:68|9:9|8:9|4:429|4:429;1|3:4|4:429|5:658|6:659|35:633|7:112|9:9|8:9|4:429|4:429;1|3:4|4:429|5:660|6:661|35:633|7:112|9:9|8:9|4:4'
  908. ..'29|4:429;1|3:4|4:429|5:662|6:67|35:633|7:663|9:9|8:9|4:429|4:429;1|3:4|4:429|5:664|6:651|35:633|7:663|9:9|8:9|4:429|4:429;1|3:4|4:429|5:665|6:661|35:633|7:639|9:9|8:9|4:429|4:429;1|3:4|4:429|5:666|6:659|35:633|7:639|9:9|8:9|4:429|4:429;p;2|1:630;n;1|3:4|4:429|5:667|6:37|35:668|7:669|9:9|8:9|4:429|4:429;1|3:4|4:429|5:670|6:671|35:668|7:68|9:9|8:9|4:429|4:429;1|3:4|4:429|5:672|6:673|35:668|7:68|9:9|8:9|4:429|4:429;1|3:4|4:429|5:674|6:37|35:668|7:675|9:9|8:9|4:429|4:429;1|3:4|4:429|5:676|6:673|35:668|7:639|9:9|8:9|4:429|4:429;1|3:4|4:429|5:677|6:678|35:668|7:112|9:9|8:9|4:429|4:429;1|3:4|4:429|5:679|6:680|35:668|7:112|9:9|8:9|4:429|4:429;1|3:4|4:429|5:681|6:682|35:668|7:112|9:9|8:9|4:429|4:429;1|3:4|4:429|5:683|6:684|35:668|7:112|9:9|8:9|4:429|4:429;1|3:4|4:429|5:685|6:686|35:668|7:687|9:9|8:9|4:429|4:429;1|3:4|4:429|5:688|6:689|35:668|7:112|9:9|8:9|4:429|4:429;1|3:4|4:429|5:690|6:691|35:668|7:68|9:9|8:9|4:429|4:429;1|3:4|4:429|5:692|6:680|35:668|7:68|9:9|8:9|4:429|4:429;1|3:4|4:429|5:693|6:678|35:668|7:68|9:9|8:9|4:429|4:429;1|3:4|4:429|5:694|6:682|35:668|7:68|9:9|8:9|4:429|4:429;1|3:4|4:429|5:695|6:684|35:668|7:68|9:9|8:9|4:429|4:429;1|3:4|4:429|5:696|6:697|35:668|7:112|9:9|8:9|4:429|4:429;1|3:4|4:429|5:698|6:699|35:668|7:112|9:9|8:9|4:429|4:429;1|3:4|4:429|5:700|6:686|35:668|7:701|9:9|8:9|4:429|4:429;1|3:4|4:429|5:702|6:689|35:668|7:663|9:9|8:9|4:429|4:429;1|3:4|4:429|5:703|6:699|35:668|7:639|9:9|8:9|4:429|4:429;1|3:4|4:429|5:704|6:697|35:668|7:639|9:9|8:9|4:429|4:429;p;2|1:705;n;1|3:4|24:706|4:429|5:707|6:708|35:709|7:710|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:711|6:20|35:709|7:710|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:712|6:20|35:709|7:710|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:713|6:708|35:709|7:710|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:714|6:715|35:709|7:710|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:716|6:715|35:709|7:710|9:9|8:9|4:429|4:429;1|3:4|24:7'
  909. ..'06|4:429|5:717|6:718|35:709|7:710|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:719|6:718|35:709|7:710|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:720|6:721|35:709|7:722|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:723|6:721|35:709|7:722|9:9|8:9|4:429|4:429;p;2|1:724;n;1|3:4|4:429|5:725|6:726|35:727|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:728|6:729|35:727|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:730|6:726|35:727|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:731|6:729|35:727|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:732|6:729|35:727|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:733|6:729|35:727|7:21|9:9|8:9|4:429|4:429;p;2|1:734;n;2|1:428;n;1|3:4|4:429|5:735|6:736|35:737|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:738|6:739|35:740|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:741|6:742|35:743|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:744|6:745|35:746|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:747|6:748|35:749|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:750|6:751|35:752|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:753|6:754|35:755|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:756|6:757|35:758|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:759|6:760|35:761|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:762|6:763|35:764|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:765|6:766|35:767|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:768|6:769|35:770|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:771|6:772|35:773|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:774|6:775|35:776|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:777|6:778|35:779|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:780|6:781|35:782|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:783|6:784|35:785|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:786|6:787|35:788|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:789|6:790|35:791|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:792|6:793|35:794|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:795|6:796|35:797|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:798|6:799|35:800|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:801|6:802|35:803|7:21|9:9|8:9|4:429'
  910. ..'|4:429;1|3:4|4:429|5:804|6:805|35:806|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:807|6:808|35:809|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:810|6:811|35:812|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:813|6:814|35:815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:816|6:817|35:818|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:819|6:820|35:821|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:822|6:823|35:824|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:825|6:826|35:827|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:828|6:829|35:830|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:831|6:832|35:833|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:834|6:793|35:794|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:835|6:796|35:836|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:837|6:838|35:839|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:840|6:841|35:842|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:843|6:844|35:845|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:846|6:847|35:848|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:849|6:850|35:851|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:852|6:853|35:854|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:855|6:856|35:857|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:858|6:859|35:860|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:861|6:862|35:863|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:864|6:865|35:863|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:866|6:867|35:868|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:869|6:870|35:871|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:872|6:873|35:874|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:875|6:876|35:874|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:877|6:878|35:879|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:880|6:881|35:882|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:883|6:884|35:885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:886|6:887|35:888|7:21|9:9|8:9|4:429|4:429;p;2|1:550;n;1|3:4|4:429|5:889|6:890|35:891|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:892|6:893|35:894|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:895|6:896|35:897|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:898|6:899|35:900'
  911. ..'|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:901|6:902|35:903|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:904|6:905|35:906|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:907|6:908|35:909|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:910|6:911|35:912|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:913|6:914|35:915|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:916|6:917|35:918|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:919|6:920|35:921|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:922|6:923|35:924|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:925|6:926|35:927|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:928|6:929|35:930|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:931|6:932|35:933|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:934|6:935|35:936|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:937|6:938|35:939|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:940|6:941|35:942|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:943|6:944|35:945|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:946|6:947|35:948|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:949|6:950|35:951|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:952|6:953|35:954|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:955|6:956|35:957|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:958|6:959|35:960|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:961|6:962|35:963|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:964|6:965|35:966|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:967|6:968|35:969|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:970|6:971|35:972|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:973|6:974|35:975|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:976|6:977|35:978|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:979|6:980|35:981|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:982|6:983|35:984|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:985|6:986|35:987|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:988|6:947|35:948|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:989|6:950|35:990|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:991|6:992|35:993|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:994|6:995|35:996|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:997|6:998'
  912. ..'|35:999|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1000|6:1001|35:1002|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1003|6:1004|35:1005|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1006|6:1007|35:1008|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1009|6:1010|35:1011|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1012|6:1013|35:1014|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1015|6:1016|35:1017|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1018|6:1019|35:1017|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1020|6:1021|35:1022|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1023|6:1024|35:1025|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1026|6:1027|35:1028|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1029|6:1030|35:1031|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1032|6:1033|35:1034|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1035|6:1036|35:1037|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1038|6:1039|35:1040|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1041|6:1042|35:737|7:21|9:9|8:9|4:429|4:429;p;3|1:495;p;2|1:734;n;2|1:428;n;1|3:4|4:429|5:1043|6:1044|35:1045|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1046|6:1047|35:1048|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1049|6:1050|35:1051|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1052|6:1053|35:1054|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1055|6:1056|35:1057|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1058|6:1059|35:1060|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1061|6:1062|35:1063|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1064|6:1065|35:1066|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1067|6:1068|35:1069|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1070|6:1071|35:1072|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1073|6:1074|35:1075|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1076|6:1077|35:1078|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1079|6:1080|35:1081|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1082|6:1083|35:1084|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1085|6:1086|35:1087|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1088|6:1089|35:1090|7:21|9:9|8:9|4:429|4:429;1|3:'
  913. ..'4|4:429|5:1091|6:1092|35:1093|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1094|6:1095|35:1096|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1097|6:1098|35:1099|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1100|35:1101|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1102|6:1103|35:1104|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1105|6:1106|35:1107|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1108|6:1109|35:1110|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1111|6:1112|35:1113|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1114|6:1115|35:1116|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1117|6:1118|35:1119|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1120|6:1121|35:1122|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1123|6:1124|35:1125|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1126|6:1127|35:1128|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1129|6:1130|35:1131|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1132|6:1133|35:1134|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1135|6:1136|35:1137|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1138|6:1139|35:1140|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1141|35:1101|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1142|6:1103|35:1143|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1144|6:1145|35:1146|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1147|6:1148|35:1149|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1150|6:1151|35:1152|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1153|6:1154|35:1155|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1156|6:1157|35:1158|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1159|6:1160|35:1161|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1162|6:1163|35:1164|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1165|6:1166|35:1167|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1168|6:1169|35:1170|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1171|6:1172|35:1173|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1174|6:1175|35:1176|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1177|6:1178|35:1179|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1180|6:1181|35:1182|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1183|6:1184|3'
  914. ..'5:1182|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1185|6:1186|35:1187|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1188|6:1189|35:1190|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1191|6:1192|35:1193|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1194|6:1195|35:1196|7:21|9:9|8:9|4:429|4:429;p;2|1:550;n;1|3:4|4:429|5:1197|6:1198|35:1199|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1200|6:1201|35:1202|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1203|6:1204|35:1205|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1206|6:1207|35:1208|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1209|6:1210|35:1211|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1212|6:1213|35:1214|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1215|6:1216|35:1217|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1218|6:1219|35:1220|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1221|6:1222|35:1223|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1224|6:1225|35:1226|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1227|6:1228|35:1229|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1230|6:1231|35:1232|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1233|6:1234|35:1235|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1236|6:1237|35:1238|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1239|6:1240|35:1241|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1242|6:1243|35:1244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1245|6:1246|35:1247|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1248|6:1249|35:1250|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1251|6:1252|35:1253|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1254|6:1255|35:794|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1256|6:1257|35:1258|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1259|6:1260|35:1261|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1262|6:1263|35:1264|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1265|6:1266|35:1267|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1268|6:1269|35:1270|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1271|6:1272|35:1273|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1274|6:1275|35:1276|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1277|6:1278'
  915. ..'|35:1279|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1280|6:1281|35:1282|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1283|6:1284|35:1285|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1286|6:1287|35:1288|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1289|6:1290|35:1291|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1292|6:1293|35:1294|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1295|6:1255|35:794|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1296|6:1257|35:1297|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1298|6:1299|35:1300|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1301|6:1302|35:1303|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1304|6:1305|35:1306|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1307|6:1308|35:1309|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1310|6:1311|35:1312|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1313|6:1314|35:1315|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1316|6:1317|35:1318|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1319|6:1320|35:1321|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1322|6:1323|35:1324|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1325|6:1326|35:1324|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1327|6:1328|35:1329|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1330|6:1331|35:1332|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1333|6:1334|35:1335|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1336|6:1337|35:1335|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1338|6:1339|35:1340|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1341|6:1342|35:1343|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1344|6:1345|35:1346|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1347|6:1348|35:1045|7:21|9:9|8:9|4:429|4:429;p;3|1:495;p;2|1:1349;n;1|3:4|4:429|5:1350|6:1351|35:1352|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1353|6:1354|35:1355|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1356|6:1357|35:1358|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1359|6:1360|35:1355|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1361|6:1362|35:1355|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1363|6:1364|35:1355|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|'
  916. ..'5:1365|6:1366|35:1355|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1367|6:1368|35:1358|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1369|6:1370|35:1358|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1371|6:1372|35:1352|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1373|6:1374|35:1358|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1375|6:1376|35:1358|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1377|6:1357|35:1358|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1378|6:1379|35:1358|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1380|6:1381|35:1352|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1382|6:1357|35:1358|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1383|6:1362|35:1355|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1384|6:1385|35:1352|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1386|6:1387|35:1352|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1388|6:1389|35:1358|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1390|6:1357|35:1391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1392|6:1357|35:1391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1393|6:1394|35:1391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1395|6:1396|35:1391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1397|6:1398|35:1391|7:1399|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1400|6:1401|35:1352|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1402|6:1403|35:1391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1404|6:1396|35:1391|7:1405|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1406|6:1398|35:1391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1407|6:1408|35:1391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1409|6:1408|35:1391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1410|6:1398|35:1391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1411|6:1408|35:1391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1412|6:1357|35:1391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1413|6:1396|35:1391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1414|6:1415|35:1416|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1417|6:1418|35:1416|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1419|6:1420|35:1416|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:142'
  917. ..'1|6:1422|35:1416|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1423|6:1424|35:1416|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1425|6:1426|35:1416|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1427|6:1428|35:1416|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1429|6:1396|35:1391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1430|6:1431|35:1416|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1432|6:1431|35:1416|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1433|6:1434|35:1416|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1435|6:1436|35:1391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1437|6:1438|35:1416|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1439|6:1438|35:1416|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1440|6:1403|35:1391|7:1441|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1442|6:1443|35:1416|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1444|6:1443|35:1416|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1445|6:1436|35:1391|7:1446|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1447|6:1443|35:1416|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1448|6:1443|35:1416|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1449|6:1450|35:1416|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1451|6:1450|35:1416|7:21|9:9|8:9|4:429|4:429;3|1:495;1|3:4|4:429|5:1452|6:1453|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1455|6:1456|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1457|6:1458|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1459|6:1458|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1460|6:1453|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1461|6:1456|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1462|6:1463|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1464|6:1465|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1466|6:1467|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1468|6:1469|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1470|6:1469|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1471|6:1469|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1472|6:1469|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:'
  918. ..'1473|6:1474|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1475|6:1476|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1477|6:1478|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1479|6:1480|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1481|6:1480|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1482|6:1483|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1484|6:1485|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1486|6:1487|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1488|6:1489|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1490|6:1487|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1491|6:1487|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1492|6:1487|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1493|6:1489|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1494|6:1489|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1495|6:1496|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1497|6:1489|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1498|6:1496|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1499|6:1496|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1500|6:1501|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1502|6:1503|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1504|6:1505|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1506|6:1503|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1507|6:1508|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1509|6:1510|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1511|6:1505|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1512|6:1510|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1513|6:1514|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1515|6:1516|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1517|6:1518|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1519|6:1505|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1520|6:1521|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1522|6:1523|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1524|6:15'
  919. ..'16|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1525|6:1516|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1526|6:1527|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1528|6:1529|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1530|6:1531|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1532|6:1521|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1533|6:1534|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1535|6:1536|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1537|6:1538|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1539|6:1540|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1541|6:1542|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1543|6:1536|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1544|6:1456|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1545|6:1540|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1546|6:1547|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1548|6:1489|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1549|6:1547|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1550|6:1547|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1551|6:1476|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1552|6:1547|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1553|6:1487|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1554|6:1487|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1555|6:1527|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1556|6:1521|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1557|6:1547|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1558|6:1501|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1559|6:1560|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1561|6:1562|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1563|6:1562|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1564|6:1562|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1565|6:1566|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1567|6:1496|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1568|6:1562|35:145'
  920. ..'4|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1569|6:1562|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1570|6:1560|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1571|6:1572|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1573|6:1574|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1575|6:1576|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1577|6:1578|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1579|6:1560|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1580|6:1581|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1582|6:1583|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1584|6:1585|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1586|6:1587|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1588|6:1589|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1590|6:1560|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1591|6:1566|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1592|6:1562|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1593|6:1566|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1594|6:1595|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1596|6:1595|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1597|6:1566|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1598|6:1595|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1599|6:1595|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1600|6:1595|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1601|6:1595|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1602|6:1595|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1603|6:1595|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1604|6:1595|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1605|6:1595|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1606|6:1595|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1607|6:1595|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1608|6:1609|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1610|6:1595|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1611|6:1595|35:1454|7:21|9:'
  921. ..'9|8:9|4:429|4:429;1|3:4|4:429|5:1612|6:1595|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1613|6:1595|35:1454|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1614|6:1609|35:1454|7:21|9:9|8:9|4:429|4:429;p;2|1:427;n;2|1:496;n;1|3:4|4:429|5:1615|6:1616|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1617|6:1618|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1619|6:1616|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1620|6:1621|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1622|6:1618|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1623|6:1624|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1625|6:1624|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1626|6:1627|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1628|6:1627|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1629|6:1621|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1630|6:1631|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1632|6:1633|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1634|6:1635|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1636|6:1637|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1638|6:1637|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1639|6:1640|7:21|9:9|8:9|4:429|4:429;3|1:495;p;2|1:523;n;1|3:4|4:429|5:1641|6:1642|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1643|6:1644|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1645|6:1646|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1647|6:1648|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1649|6:1648|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1650|6:1651|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1652|6:1651|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1653|6:1654|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1655|6:1656|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1657|6:1656|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1658|6:1659|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1660|6:1661|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1662|6:1663|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1664|6:1644|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1665|6:1642|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1666|6:1646|7:21|9:9|8:9|4:429|4:429;3|1:495;p;2|1:550;n;1|3:4|4:'
  922. ..'429|5:1667|6:1668|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1669|6:1670|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1671|6:1672|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1673|6:1674|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1675|6:1674|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1676|6:1677|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1678|6:1668|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1679|6:1672|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1680|6:1672|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1681|6:1682|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1683|6:1672|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1684|6:1682|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1685|6:1677|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1686|6:1668|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1687|6:1668|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1688|6:1689|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1690|6:1689|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1691|6:1692|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1693|6:1692|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1694|6:1695|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1696|6:1697|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1698|6:1695|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1699|6:1700|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1701|6:1702|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1703|6:1704|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1705|6:1706|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1707|6:1708|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1709|6:1710|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1711|6:1712|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1713|6:1714|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1715|6:1716|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1717|6:1718|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1719|6:1700|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1720|6:1721|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1722|6:1706|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1723|6:1712|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1724|6:1704|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1725'
  923. ..'|6:1714|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1726|6:1710|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1727|6:1708|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1728|6:1718|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1729|6:1721|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1730|6:1716|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1731|6:1732|7:21|9:9|8:9|4:429|4:429;3|1:495;p;2|1:428;n;1|3:4|4:429|5:1733|6:1734|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1735|6:1736|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1737|6:1738|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1739|6:1740|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1741|6:1742|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1743|6:1744|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1745|6:1734|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1746|6:1747|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1748|6:1738|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1749|6:1750|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1751|6:1752|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1753|6:1754|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1755|6:1747|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1756|6:1757|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1758|6:1750|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1759|6:1752|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1760|6:1754|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1761|6:1757|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1762|6:1740|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1763|6:1736|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1764|6:1765|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1766|6:1765|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1767|6:1768|7:1769|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1770|6:1771|7:1772|9:9|8:9|4:429|4:429;3|1:495;p;p;2|1:1773;n;1|3:4|4:429|5:1774|6:160|35:1775|7:1776|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1777|6:160|35:1775|7:1778|9:9|8:9|4:429|4:429;p;2|1:1779;n;1|3:4|4:429|5:1780|6:1781|35:1782|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1783|6:1784|35:1782|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1785|6:1786|35:1782|7:'
  924. ..'21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1787|6:1788|35:1782|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1789|6:1790|35:1782|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1791|6:1792|35:1782|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1793|6:1794|35:1782|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1795|6:1788|35:1782|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1796|6:1794|35:1782|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1797|6:1794|35:1782|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1798|6:1794|35:1782|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1799|6:1781|35:1782|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1800|6:1790|35:1782|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1801|6:1786|35:1782|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1802|6:1803|35:1782|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1804|6:1803|35:1782|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1805|6:1803|35:1782|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1806|6:1803|35:1782|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1807|6:1808|35:1782|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1809|6:1808|35:1782|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1810|6:146|35:1782|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1811|6:146|35:1782|7:21|9:9|8:9|4:429|4:429;p;2|1:1812;n;1|3:4|4:429|5:1813|6:1814|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1816|6:1817|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1818|6:1819|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1820|6:153|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1821|6:1822|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1823|6:1824|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1825|6:1826|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1827|6:1828|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1829|6:1830|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1831|6:1832|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1833|6:1834|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1835|6:1836|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1837|6:1838|35:1815|7'
  925. ..':21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1839|6:1840|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1841|6:1842|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1843|6:1844|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1845|6:1846|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1847|6:1848|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1849|6:1850|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1851|6:1852|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1853|6:1854|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1855|6:1856|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1857|6:1858|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1859|6:1860|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1861|6:1862|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1863|6:1864|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1865|6:1866|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1867|6:1868|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1869|6:1870|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1871|6:1872|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1873|6:1874|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1875|6:1876|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1877|6:1878|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1879|6:1880|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1881|6:1882|35:1815|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1883|35:1815|7:21|9:9|8:9|4:429|4:429;p;2|1:630;n;1|3:4|4:429|5:1884|6:37|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1886|6:1887|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1888|6:1889|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1890|6:1891|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1892|6:1893|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1894|6:1895|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1896|6:1897|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1898|6:1899|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1900|6:1901|35:1885|7:21|9:'
  926. ..'9|8:9|4:429|4:429;1|3:4|4:429|5:1902|6:1903|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1904|6:1905|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1906|6:1907|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1908|6:1909|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1910|6:1911|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1912|6:1913|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1914|6:1915|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1916|6:1917|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1918|6:1919|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1920|6:1921|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1922|6:1923|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1924|6:1925|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1926|6:1927|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1928|6:1927|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1929|6:1930|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1931|6:1932|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1933|6:1934|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1935|6:1936|35:1885|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1937|6:1938|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1939|6:1940|35:1885|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1941|6:1942|35:1885|7:21|9:9|8:9|4:429|4:429;p;2|1:1943;n;1|3:4|4:429|5:1944|6:1945|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1947|6:1948|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1949|6:1950|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1951|6:1952|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1953|6:1954|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1955|6:1956|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1957|6:1958|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1959|6:1960|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1961|6:105|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1962|6:1963|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1964|6:1965|35:1946|7:2'
  927. ..'1|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1966|6:1967|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1968|6:1969|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1970|6:1971|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1972|6:1973|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1974|6:1975|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1976|6:1977|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1978|6:1979|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1980|6:1981|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1982|6:1983|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1984|6:1985|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1986|6:1987|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1988|6:1989|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1990|6:1991|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1992|6:1993|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1994|6:1995|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1996|6:1997|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:1998|6:1999|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2000|6:2001|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2002|6:2003|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2004|6:2005|35:1946|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2006|6:2007|35:1946|7:21|9:9|8:9|4:429|4:429;p;2|1:427;n;2|1:428;n;1|3:4|4:429|5:2008|6:431|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2009|6:433|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2010|6:435|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2011|6:437|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2012|6:437|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2013|6:440|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2014|6:431|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2015|6:435|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2016|6:435|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2017|6:445|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2018|6:435|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2019|6:445|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:'
  928. ..'2020|6:440|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2021|6:431|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2022|6:431|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2023|6:452|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2024|6:452|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2025|6:30|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2026|6:30|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2027|6:457|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2028|6:459|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2029|6:457|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2030|6:462|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2031|6:464|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2032|6:466|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2033|6:468|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2034|6:470|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2035|6:472|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2036|6:474|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2037|6:476|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2038|6:478|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2039|6:480|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2040|6:462|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2041|6:483|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2042|6:468|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2043|6:474|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2044|6:466|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2045|6:476|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2046|6:472|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2047|6:470|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2048|6:480|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2049|6:483|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2050|6:478|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2051|6:494|7:21|9:9|8:9|4:429|4:429;3|1:495;p;2|1:496;n;1|3:4|4:429|5:2052|6:498|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2053|6:500|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2054|6:498|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2055|6:503|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2056|6:500|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2057|6:506|7:21|9:9|8:9|4:429'
  929. ..'|4:429;1|3:4|4:429|5:2058|6:506|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2059|6:509|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2060|6:509|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2061|6:503|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2062|6:513|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2063|6:515|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2064|6:517|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2065|6:519|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2066|6:519|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2067|6:522|7:21|9:9|8:9|4:429|4:429;3|1:495;p;2|1:523;n;1|3:4|4:429|5:2068|6:525|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2069|6:527|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2070|6:529|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2071|6:531|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2072|6:531|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2073|6:534|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2074|6:534|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2075|6:537|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2076|6:539|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2077|6:539|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2078|6:542|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2079|6:544|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2080|6:546|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2081|6:527|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2082|6:525|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2083|6:529|7:21|9:9|8:9|4:429|4:429;3|1:495;p;2|1:550;n;1|3:4|4:429|5:2084|6:552|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2085|6:554|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2086|6:556|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2087|6:558|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2088|6:558|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2089|6:561|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2090|6:552|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2091|6:556|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2092|6:556|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2093|6:566|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2094|6:556|7:21|9:9|8:9|4:429|4:429;'
  930. ..'1|3:4|4:429|5:2095|6:566|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2096|6:561|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2097|6:552|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2098|6:552|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2099|6:573|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2100|6:573|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2101|6:576|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2102|6:576|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2103|6:579|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2104|6:581|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2105|6:579|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2106|6:584|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2107|6:586|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2108|6:588|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2109|6:590|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2110|6:592|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2111|6:594|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2112|6:596|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2113|6:598|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2114|6:600|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2115|6:602|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2116|6:584|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2117|6:605|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2118|6:590|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2119|6:596|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2120|6:588|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2121|6:598|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2122|6:594|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2123|6:592|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2124|6:602|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2125|6:605|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2126|6:600|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2127|6:616|7:21|9:9|8:9|4:429|4:429;3|1:495;p;p;2|1:258;n;1|3:4|4:429|5:2128|6:417|35:2129|7:2130|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2131|6:417|35:2129|7:2132|9:9|8:9|4:429|4:429;p;2|1:2133;n;1|3:4|4:429|5:2134|6:2135|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2137|35:2136|7:21|9'
  931. ..':9|8:9|4:429|4:429;1|3:4|4:429|5:2138|6:1876|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2139|6:1874|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2140|6:1878|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2141|6:1872|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2142|6:1870|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2143|6:2144|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2145|6:1882|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2146|6:1868|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2147|6:1840|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2148|6:1864|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2149|6:1862|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2150|6:1842|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2151|6:2152|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2153|6:2154|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2155|6:1832|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2156|6:2157|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2158|6:1860|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2159|6:1830|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2160|6:1828|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2161|6:2162|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2163|6:1824|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2164|6:1819|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2165|6:1822|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2166|6:2167|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2168|6:1858|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2169|6:2170|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2171|6:1852|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2172|6:2173|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2174|6:1846|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2175|6:2176|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2177|6:153|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2178|6:1850|35:2136|7:21|9:9|8:9|4:4'
  932. ..'29|4:429;1|3:4|4:429|5:2179|6:1854|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2180|6:1814|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2181|6:2182|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2183|6:2003|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2184|6:2007|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2185|6:2005|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2186|6:1997|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2187|6:1999|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2188|6:2189|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2190|6:1995|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2191|6:1985|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2192|6:2193|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2194|6:2195|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2196|6:1954|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2197|6:1989|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2198|6:1987|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2199|6:1969|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2200|6:1950|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2201|6:1967|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2202|6:1965|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2203|6:2204|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2205|6:1981|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2206|6:1979|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2207|6:2208|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2209|6:1977|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2210|6:2211|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2212|6:2213|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2214|6:1958|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2215|6:2216|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2217|6:1956|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2218|6:1945|35:2136|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2219|6:105|35:2136|7:21|9:9|8:9|4:429|4:429;p'
  933. ..';2|1:1773;n;1|3:4|4:429|5:2220|6:417|35:2221|7:2222|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2223|6:2224|35:2221|7:2222|9:9|8:9|4:429|4:429;p;2|1:2225;n;1|3:4|4:429|5:2226|6:2227|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2230|6:2227|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2231|6:2232|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2233|6:2232|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2234|6:2235|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2236|6:2235|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2237|6:2238|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2239|6:2238|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2240|6:2241|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2242|6:2241|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2243|6:2244|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2245|6:2244|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2246|6:417|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2247|6:417|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2248|6:2249|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2250|6:2249|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2251|6:2252|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2253|6:2252|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2254|6:2255|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2256|6:2255|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2257|6:2258|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2259|6:2258|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2260|6:2261|35:2228|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2262|6:2261|35:2228|7:2229|9:9|8:9|4:429|4:429;p;2|1:2263;n;1|3:4|4:429|5:2264|6:2265|35:2266|7:2267|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2268|6:2265|35:2266|7:2269|9:9|8:9|4:429|4:429;p;2|1:630;n;1|3:4|4:429|5:2270|6:2271|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2273|6:2274|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2275|6:227'
  934. ..'6|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2277|6:2278|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2279|6:2280|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2281|6:2282|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2283|6:2284|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2285|6:2286|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2287|6:2288|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2289|6:2290|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2291|6:2292|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2293|6:2294|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2295|6:2296|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2297|6:2298|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2299|6:2300|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2301|6:2302|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2303|6:2304|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2305|6:2306|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2307|6:2308|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2309|6:2310|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2311|6:2312|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2313|6:2314|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2315|6:2316|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2317|6:2318|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2319|6:2320|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2321|6:2322|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2323|6:2324|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2325|6:2326|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2327|6:2328|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2329|6:2330|35:2272|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2331|6:2332|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2333|6:2334|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2335|6:2336|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2337|6:2338|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2339|6:2338|35:227'
  935. ..'2|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2340|6:2341|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2342|6:2343|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2344|6:2345|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2346|6:2347|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2348|6:2349|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2350|6:2351|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2352|6:2353|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2354|6:2355|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2356|6:2357|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2358|6:2359|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2360|6:2361|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2362|6:2363|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2364|6:2365|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2366|6:2367|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2368|6:2369|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2370|6:2371|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2372|6:2373|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2374|6:2375|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2376|6:2377|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2378|6:2379|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2380|6:2381|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2382|6:2383|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2384|6:2385|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2386|6:1876|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2387|6:2388|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2389|6:1880|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2390|6:2391|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2392|6:2393|35:2272|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2394|6:2395|35:2272|7:21|9:9|8:9|4:429|4:429;p;2|1:630;n;1|3:4|4:429|5:2396|6:2397|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2399|6:20|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2400|6:2401|35:23'
  936. ..'98|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2402|6:2403|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2404|6:2405|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2406|6:2407|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2408|6:2409|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2410|6:2411|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2412|6:2413|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2414|6:2415|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2416|6:2417|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2418|6:2419|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2420|6:2421|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2422|6:2423|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2424|6:2425|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2426|6:2427|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2428|6:2429|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2430|6:2431|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2432|6:2433|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2434|6:2435|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2436|6:2437|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2438|6:2439|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2440|6:2441|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2442|6:2443|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2444|6:2445|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2446|6:2447|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2448|6:2449|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2450|6:2451|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2452|6:2453|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2454|6:2455|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2456|6:2457|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2458|6:2459|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2460|6:2461|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2462|6:2463|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2464|6:2465|35:2398|7:21|9'
  937. ..':9|8:9|4:429|4:429;1|3:4|4:429|5:2466|6:2467|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2468|6:2469|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2470|6:2471|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2472|6:2473|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2474|6:2475|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2476|6:1999|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2477|6:2478|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2479|6:2480|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2481|6:1993|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2482|6:2483|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2484|6:2485|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2486|6:2487|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2488|6:2489|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2490|6:2491|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2492|6:2493|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2494|6:2495|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2496|6:2497|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2498|6:2499|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2500|6:1983|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2501|6:1965|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2502|6:2503|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2504|6:1945|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2505|6:2506|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2507|6:2508|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2509|6:105|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2510|6:2511|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2512|6:1971|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2513|6:1958|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2514|6:2515|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2516|6:2517|35:2398|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2518|6:2211|35:2398|7:21|9:9|8:9|4:429|4:429;p;2|1:2225;n;1|3:4|4:429|5:2519|6:2520|35:2521|7:2'
  938. ..'229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2522|6:2520|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2523|6:2524|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2525|6:2524|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2526|6:2527|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2528|6:2527|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2529|6:2530|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2531|6:2530|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2532|6:2533|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2534|6:2533|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2535|6:2536|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2537|6:2536|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2538|6:146|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2539|6:146|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2540|6:2541|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2542|6:2541|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2543|6:2544|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2545|6:2544|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2546|6:2547|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2548|6:2547|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2549|6:2550|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2551|6:2550|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2552|6:2553|35:2521|7:2229|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2554|6:2553|35:2521|7:2229|9:9|8:9|4:429|4:429;p;2|1:1943;n;1|3:4|4:429|5:2555|6:2556|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2558|6:2559|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2560|6:2561|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2562|6:2563|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2564|6:2565|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2566|6:2567|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2568|6:2569|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2570|6:2571|35:2557|7:21|9:9|8:9'
  939. ..'|4:429|4:429;1|3:4|4:429|5:2572|6:2573|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2574|6:2575|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2576|6:2577|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2578|6:2579|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2580|6:2581|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2582|6:153|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2583|6:2584|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2585|6:2586|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2587|6:2588|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2589|6:2590|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2591|6:2592|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2593|6:2594|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2595|6:2596|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2597|6:2598|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2599|6:2600|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2601|6:2602|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2603|6:2604|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2605|6:2606|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2607|6:2608|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2609|6:2610|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2611|6:2612|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2613|6:2614|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2615|6:2616|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2617|6:2618|35:2557|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2619|6:2620|35:2557|7:21|9:9|8:9|4:429|4:429;p;2|1:2621;n;1|3:4|4:429|5:2622|6:20|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2624|6:2625|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2626|6:2627|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2628|6:2629|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2630|6:2631|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2632|6:2633|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2634|6:2423|35:2623|7:21|9:9|8:'
  940. ..'9|4:429|4:429;1|3:4|4:429|5:2635|6:2636|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2637|6:2429|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2638|6:2639|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2640|6:726|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2641|6:2642|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2643|6:2644|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2645|6:2646|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2647|6:2648|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2649|6:2650|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2651|6:2652|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2653|6:2654|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2655|6:2656|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2657|6:2658|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2659|6:2660|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2661|6:2662|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2663|6:2664|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2665|6:2662|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2666|6:2667|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2668|6:2669|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2670|6:2671|35:2623|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2672|6:2673|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2674|6:2675|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2676|6:2677|35:2623|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2678|6:2679|35:2623|7:21|9:9|8:9|4:429|4:429;p;2|1:1773;n;1|3:4|4:429|5:2680|6:2681|35:2682|7:722|9:9|8:9|4:429|4:429;1|3:4|4:429|5:2683|6:2681|35:2682|7:1405|9:9|8:9|4:429|4:429;p;1|1:2684|3:4|4:2685|5:2686|6:20|7:2687|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2689|6:20|7:2687|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2690|6:20|7:2691|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2692|6:20|7:2693|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1'
  941. ..':2684|3:4|4:2685|5:2694|6:20|7:2695|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2696|6:20|7:2695|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2697|6:20|7:2698|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2699|6:20|7:2700|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2701|6:7|7:2700|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2702|6:20|7:2703|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2704|6:20|7:2687|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2705|6:20|7:2706|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2707|6:20|7:2708|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2709|6:20|7:2710|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2711|6:20|7:2712|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2713|6:20|7:2714|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2715|6:30|7:2714|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2716|6:146|7:2717|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2718|6:146|7:2719|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2720|6:146|7:2719|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2721|6:146|7:2719|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2722|6:146|7:2719|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2723|6:20|7:2724|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2725|6:20|7:2724|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2726|6:20|7:2724|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2727|6:20|7:2728|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2729|6:20|7:2730|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:27'
  942. ..'31|6:20|7:2730|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2732|6:20|7:2733|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2734|6:20|7:2733|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2735|6:20|7:2736|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2737|6:20|7:2736|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2738|6:20|7:2739|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2740|6:20|7:2741|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2742|6:20|7:2743|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2744|6:20|7:2743|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2745|6:20|7:2746|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2747|6:20|7:2746|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2748|6:20|7:2749|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2750|6:20|7:2751|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2752|6:20|7:2753|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2754|6:20|7:2755|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2756|6:20|7:2757|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2758|6:20|7:2757|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2759|6:20|7:2760|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2761|6:20|7:2762|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2763|6:20|7:2764|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2765|6:20|7:2764|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2766|6:67|7:2767|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2768|6:67|7:2767|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2769|6:67|7:2770|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2771|6:67|7:2772|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2773|6:67|7:2751|9:9|8:9'
  943. ..'|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2774|6:67|7:2751|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2775|6:67|7:2776|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2777|6:67|7:2776|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2778|6:67|7:2736|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2779|6:67|7:2736|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2780|7:2781|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2782|7:2781|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2783|7:2784|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2785|7:2786|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2787|7:2788|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2789|7:2788|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2790|7:2791|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2792|7:2793|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2794|7:2795|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2796|7:2795|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2797|7:2798|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2799|7:2800|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2801|7:2800|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2802|7:2800|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2803|7:2798|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2804|7:2800|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2805|6:37|7:2800|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2806|6:37|7:2798|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2807|6:37|7:2808|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2809|6:37|7:2808|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2810|6:37|7:2811|9:9|8:9|4:2685|4:2685;n;8|21:2688;'
  944. ..'p;1|1:2684|3:4|4:2685|5:2812|6:37|7:2811|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2813|6:20|7:2814|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2815|6:20|7:2814|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2816|6:20|7:2814|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2817|6:20|7:2814|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2818|6:20|7:2819|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2820|6:20|7:2819|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2821|6:37|7:2811|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2822|6:37|7:2811|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2823|6:37|7:2811|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2824|6:37|7:2811|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2825|6:20|7:2826|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2827|6:20|7:2826|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2828|6:20|7:2829|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2830|6:20|7:2811|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2831|6:20|7:2811|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2832|6:20|7:2811|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2833|6:20|7:2834|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2835|6:20|7:2811|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2836|6:20|7:2811|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2837|6:20|7:2811|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|3:4|4:2685|5:2838|6:67|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2840|6:37|7:2841|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2842|7:2843|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2844|7:2845|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2846|6:37|7:2847|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:284'
  945. ..'8|6:37|7:2847|23:113|9:9|8:9|4:2685|4:2685;2|1:2849;n;1|3:4|4:2685|5:2850|6:37|7:2851|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2852|6:37|7:2851|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2853|6:37|7:2851|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2854|6:37|7:2855|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2856|6:37|7:2855|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2857|6:37|7:2858|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2859|6:37|7:2860|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2861|6:37|7:2851|23:113|9:9|8:9|4:2685|4:2685;2;n;1|3:4|4:2685|5:2862|7:2863|23:113|9:9|8:9|4:2685|4:2685;1|1:2684|3:4|4:2685|5:2864|6:37|7:2798|9:9|8:9|4:2685|4:2685;n;8|21:2865;p;1|3:4|4:2685|5:2866|7:2863|23:113|9:9|8:9|4:2685|4:2685;1|1:2684|3:4|4:2685|5:2867|6:37|7:2798|9:9|8:9|4:2685|4:2685;n;8|21:2865;p;1|3:4|4:2685|5:2868|6:20|7:2869|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2870|6:20|7:2869|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2871|6:20|7:2872|23:113|9:9|8:9|4:2685|4:2685;p;2;n;1|3:4|4:2685|5:2873|7:2863|23:113|9:9|8:9|4:2685|4:2685;1|1:2684|3:4|4:2685|5:2874|6:37|7:2798|9:9|8:9|4:2685|4:2685;n;8|21:2865;p;1|3:4|4:2685|5:2875|7:2863|23:113|9:9|8:9|4:2685|4:2685;1|1:2684|3:4|4:2685|5:2876|6:37|7:2798|9:9|8:9|4:2685|4:2685;n;8|21:2865;p;1|3:4|4:2685|5:2877|6:20|7:2869|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2878|6:20|7:2869|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2879|6:20|7:2872|23:113|9:9|8:9|4:2685|4:2685;p;1|3:4|4:2685|5:2880|6:37|7:2881|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2882|6:37|7:2860|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2883|6:37|7:2858|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2884|6:37|7:2885|23:113|9:9|8:9|4:2685|4:2685;p;2|1:2849;n;1|3:4|4:2685|5:2886|6:37|7:2851|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2887|6:37|7:2851|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2888|6:37|7:2851|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|'
  946. ..'5:2889|6:37|7:2855|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2890|6:37|7:2855|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2891|6:37|7:2858|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2892|6:37|7:2860|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2893|6:37|7:2851|23:113|9:9|8:9|4:2685|4:2685;2;n;1|3:4|4:2685|5:2894|7:2863|23:113|9:9|8:9|4:2685|4:2685;1|1:2684|3:4|4:2685|5:2895|6:37|7:2798|9:9|8:9|4:2685|4:2685;n;8|21:2865;p;1|3:4|4:2685|5:2896|7:2863|23:113|9:9|8:9|4:2685|4:2685;1|1:2684|3:4|4:2685|5:2897|6:37|7:2798|9:9|8:9|4:2685|4:2685;n;8|21:2865;p;1|3:4|4:2685|5:2898|6:20|7:2869|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2899|6:20|7:2869|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2900|6:20|7:2872|23:113|9:9|8:9|4:2685|4:2685;p;2;n;1|3:4|4:2685|5:2901|7:2863|23:113|9:9|8:9|4:2685|4:2685;1|1:2684|3:4|4:2685|5:2902|6:37|7:2798|9:9|8:9|4:2685|4:2685;n;8|21:2865;p;1|3:4|4:2685|5:2903|7:2863|23:113|9:9|8:9|4:2685|4:2685;1|1:2684|3:4|4:2685|5:2904|6:37|7:2798|9:9|8:9|4:2685|4:2685;n;8|21:2865;p;1|3:4|4:2685|5:2905|6:20|7:2869|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2906|6:20|7:2869|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2907|6:20|7:2872|23:113|9:9|8:9|4:2685|4:2685;p;1|3:4|4:2685|5:2908|6:37|7:2881|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2909|6:37|7:2860|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2910|6:37|7:2858|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2911|6:37|7:2885|23:113|9:9|8:9|4:2685|4:2685;p;2|1:2912;n;1|3:4|4:2685|5:2913|6:67|7:2863|23:113|9:9|8:9|4:2685|4:2685;1|1:2684|3:4|4:2685|5:2914|7:2798|9:9|8:9|4:2685|4:2685;n;8|21:2865;p;1|3:4|4:2685|5:2915|6:67|7:2863|23:113|9:9|8:9|4:2685|4:2685;1|1:2684|3:4|4:2685|5:2916|7:2798|9:9|8:9|4:2685|4:2685;n;8|21:2865;p;1|3:4|4:2685|5:2917|6:37|7:2869|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2918|6:37|7:2869|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2919|6:37|7:2872|23:113|9:9|8:9|4:2685|4:2685;p'
  947. ..';1|1:622|3:4|4:2685|5:2920|7:2851|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:2921|7:2851|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:2922|7:2851|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2923|7:2855|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2924|7:2855|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2925|7:2926|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2927|7:2928|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:2929|7:2851|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2930|7:2931|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2932|7:2933|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:2934|7:2935|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:2936|7:2937|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:2938|6:67|7:2939|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:2940|6:67|7:2939|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:2941|6:67|7:2942|23:113|9:9|8:9|4:2685|4:2685;2|1:2943;n;1|3:4|4:2685|5:2944|6:20|7:2863|23:113|9:9|8:9|4:2685|4:2685;1|1:2684|3:4|4:2685|5:2945|6:67|7:2798|9:9|8:9|4:2685|4:2685;n;8|21:2865;p;1|3:4|4:2685|5:2946|6:20|7:2863|23:113|9:9|8:9|4:2685|4:2685;1|1:2684|3:4|4:2685|5:2947|6:67|7:2798|9:9|8:9|4:2685|4:2685;n;8|21:2865;p;1|3:4|4:2685|5:2948|7:2869|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2949|7:2869|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2950|7:2872|23:113|9:9|8:9|4:2685|4:2685;p;1|1:622|3:4|4:2685|5:2951|6:67|7:2939|23:113|9:9|8:9|4:2685|4:2685;2|1:2952;n;1|3:4|4:2685|5:2953|6:20|7:2863|23:113|9:9|8:9|4:2685|4:2685;1|1:2684|3:4|4:2685|5:2954|6:67|7:2798|9:9|8:9|4:2685|4:2685;n;8|21:2865;p;1|3:4|4:2685|5:2955|6:20|7:2863|23:113|9:9|8:9|4:2685|4:2685;1|1:2684|3:4|4:2685|5:2956|6:67|7:2798|9:9|8:9|4:2685|4:2685;n;8|21:2865;p;1|3:4|4:2685|5:2957|7:2869|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2958|7:2869|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2959|7:2872|23:113|9:9|8:9|4:2685|4:2685;p;1|1:622|3:4|4:'
  948. ..'2685|5:2960|6:67|7:2939|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:2961|6:67|7:2942|23:113|9:9|8:9|4:2685|4:2685;1|1:2684|3:4|4:2685|5:2962|6:20|7:2963|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|1:2684|3:4|4:2685|5:2964|6:20|7:2965|23:113|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|3:4|4:2685|5:2966|6:37|7:2967|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2968|7:2843|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2969|7:2845|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2970|7:2845|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2971|7:2972|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2973|7:2974|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2975|7:2976|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2977|6:37|7:2847|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2978|6:37|7:2847|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2979|6:37|7:2847|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2980|6:37|7:2847|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2981|6:37|7:2847|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2982|6:37|7:2847|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2983|6:37|7:2847|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2984|6:37|7:2847|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2985|6:37|7:2847|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2986|6:37|7:2847|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2987|6:37|7:2847|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2988|6:20|7:2989|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2990|6:20|7:2989|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2991|6:20|7:2989|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2992|6:20|7:2989|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2993|6:20|7:2989|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2994|6:20|7:2989|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2995|6:20|7:2989|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2996|6:20|7:2989|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:2997|6:20|7:2998|23:113|9:9|8:9|4:2685|4:2'
  949. ..'685;1|3:4|4:2685|5:2999|6:20|7:2998|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3000|6:20|7:3001|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3002|6:20|7:3003|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3004|6:20|7:3005|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3006|6:20|7:3007|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3008|6:20|7:3009|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3010|6:20|7:3009|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3011|6:20|7:3012|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3013|6:20|7:3014|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3015|6:20|7:3016|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3017|6:20|7:3018|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3019|6:3020|7:3009|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3021|6:3020|7:3009|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3022|6:3020|7:2872|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3023|6:3020|7:2851|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3024|6:3020|7:3025|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3026|6:3020|7:2851|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3027|6:3028|7:3029|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3030|6:3028|7:3031|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3032|6:3028|7:3029|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3033|6:3028|7:3034|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3035|6:3028|7:3036|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3037|6:3028|7:3036|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3038|6:37|7:3039|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3040|6:37|7:3039|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3041|6:37|7:3039|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3042|6:3028|7:2851|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3043|6:3028|7:2851|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3044|6:37|7:2843|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3045|6:37|7:2843|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3046|6:37|7:28'
  950. ..'43|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3047|6:3020|7:2872|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3048|6:3020|7:2872|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3049|6:3020|7:3009|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3050|6:20|7:3051|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3052|6:20|7:2976|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3053|6:20|7:2863|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3054|6:3055|7:3025|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3056|6:3055|7:3025|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3057|6:3055|7:3025|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3058|6:3055|7:2863|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3059|6:3055|7:3025|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3060|6:3055|7:3025|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3061|6:20|7:3051|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3062|6:20|7:2843|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3063|6:20|7:3025|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3064|6:3065|7:2942|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3066|6:3065|7:2942|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3067|6:3065|7:3068|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3069|6:3065|7:2942|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3070|6:3065|7:2942|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3071|6:3065|7:2942|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3072|6:3028|7:2942|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3073|6:3028|7:2942|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3074|6:3028|7:2942|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3075|6:3028|7:3076|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3077|6:3028|7:3076|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3078|6:3028|7:3076|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3079|6:20|7:3080|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3081|6:20|7:3082|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3083|6:67|7:2839|23:113|9:9|8:9|4:2685|'
  951. ..'4:2685;1|3:4|4:2685|5:3084|6:67|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3085|6:20|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3086|6:67|7:3034|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3087|6:67|7:3034|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3088|6:20|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3089|6:37|7:2841|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3090|6:37|7:3091|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3092|6:37|7:3093|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3094|6:20|7:3095|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3096|6:20|7:3097|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3098|6:67|7:3099|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3100|6:67|7:3101|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3102|6:20|7:3093|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3103|6:67|7:3104|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3105|6:67|7:3106|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3107|6:67|7:3108|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3109|6:67|7:3104|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3110|6:37|7:2841|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3111|6:37|7:2841|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3112|6:67|7:3051|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3113|6:67|7:3051|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3114|6:20|7:3080|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3115|6:20|7:3082|23:113|9:9|8:9|4:2685|4:2685;2|1:3116;n;1|3:4|4:429|5:3117|6:3118|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3120|6:3121|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3122|6:3123|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3124|6:3125|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3126|6:3127|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3128|6:3129|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3130|6:3131|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3132|6:3133|35:3119|7:710|9:9|8:9|4:429|4:'
  952. ..'429;1|3:4|4:429|5:3134|6:3135|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3136|6:3137|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3138|6:3139|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3140|6:3141|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3142|6:2261|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3143|6:3144|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3145|6:3146|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3147|6:3146|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3148|6:3141|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3149|6:3135|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3150|6:3137|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3151|6:3121|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3152|6:3123|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3153|6:3125|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3154|6:3118|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3155|6:3156|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3157|6:3129|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3158|6:3131|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3159|6:2258|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3160|6:3133|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3161|6:2261|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3162|6:2258|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3163|6:2255|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3164|6:2255|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3165|6:2252|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3166|6:2252|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3167|6:2249|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3168|6:2249|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3169|6:417|35:3119|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3170|6:417|35:3119|7:710|9:9|8:9|4:429|4:429;p;2|1:3171;n;1|3:4|24:706|4:429|5:3172|6:3173|35:3174|7:3175|9:9|8:9|4:429|4:429;1|3:4|24:706|4'
  953. ..':429|5:3176|6:3173|35:3174|7:3177|9:9|8:9|4:429|4:429;p;2|1:3178;n;1|3:4|24:706|4:429|5:3179|6:3180|35:3181|7:3182|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3183|6:3173|35:3181|7:3182|9:9|8:9|4:429|4:429;p;1|3:4|4:2685|5:3184|6:67|7:3185|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3186|6:3187|7:3185|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3188|6:67|7:3106|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3189|6:67|7:3106|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3190|7:3097|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3191|6:20|7:3093|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3192|6:20|7:3093|23:113|9:9|8:9|4:2685|4:2685;2|1:3193;n;1|3:4|4:429|5:3194|6:1899|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3196|6:3197|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3198|6:3199|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3200|6:37|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3201|6:3202|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3203|6:3204|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3205|6:3206|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3207|6:3208|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3209|6:3210|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3211|6:3212|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3213|6:3214|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3215|6:3216|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3217|6:3218|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3219|6:3220|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3221|6:3222|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3223|6:3224|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3225|6:3226|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3227|6:3228|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3229|6:3230|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3231|6:3232|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3233|6:3234|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3235|6'
  954. ..':3236|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3237|6:3238|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3239|6:3240|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3241|6:3242|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3243|6:3244|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3245|6:3246|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3247|6:3248|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3249|6:3250|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3251|6:3252|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3253|6:3254|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3255|6:3256|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3257|6:3258|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3259|6:3260|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3261|6:3262|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3263|6:3264|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3265|6:3266|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3267|6:3268|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3269|6:3270|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3271|6:3272|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3273|6:3274|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3275|6:3276|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3277|6:3278|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3279|6:3280|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3281|6:3282|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3283|6:3284|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3285|6:3286|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3287|6:3288|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3289|6:3290|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3291|6:3292|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3293|6:3294|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3295|6:3296|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3297|6:3298|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3299|6:3300|35:'
  955. ..'3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3301|6:3302|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3303|6:3304|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3305|6:3306|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3307|6:3308|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3309|6:3264|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3310|6:3311|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3312|6:3313|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3314|6:3315|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3316|6:3317|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3318|6:3319|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3320|6:3321|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3322|6:3323|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3324|6:3325|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3326|6:3327|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3328|6:3329|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3330|6:3331|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3332|6:3333|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3334|6:3335|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3336|6:3337|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3338|6:3339|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3340|6:3341|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3342|6:3343|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3344|6:3345|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3346|6:3347|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3348|6:3349|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3350|6:3351|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3352|6:3353|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3354|6:3355|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3356|6:3357|35:3195|7:710|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3358|6:3359|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3360|6:3361|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3362|6:3363|35:3195|7:2'
  956. ..'1|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3364|6:3365|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3366|6:3367|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3368|6:3369|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3370|6:3371|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3372|6:3373|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3374|6:3375|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3376|6:3377|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3378|6:3379|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3380|6:3381|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3382|6:3383|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3384|6:3385|35:3195|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3386|6:3387|35:3195|7:21|9:9|8:9|4:429|4:429;p;2|1:3388;n;1|3:4|4:429|5:3389|6:3390|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3392|6:3393|35:3391|7:624|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3394|6:3393|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3395|6:3396|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3397|6:3390|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3398|6:3399|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3400|6:3401|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3402|6:3403|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3404|6:3399|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3405|6:3406|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3407|6:3408|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3409|6:3410|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3411|6:3401|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3412|6:3399|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3413|6:3414|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3415|6:3416|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3417|6:3418|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3419|6:3420|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3421|6:3422|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3423|6:3416|35:339'
  957. ..'1|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3424|6:3425|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3426|6:3427|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3428|6:3429|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3430|6:3431|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3432|6:3433|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3434|6:3435|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3436|6:3437|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3438|6:3439|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3440|6:3441|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3442|6:3443|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3444|6:3445|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3446|6:3447|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3448|6:3449|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3450|6:3451|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3452|6:3453|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3454|6:3455|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3456|6:3457|35:3391|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3458|6:3459|35:3391|7:112|9:9|8:9|4:429|4:429;3|1:495;p;1|1:3460|3:4|24:706|4:136|5:3461|6:3173|7:3462|23:113|20:3463|33:3463|27:3464|28:3464|8:3463|4:136|4:136;n;13|32:261;3|1:3465;p;1|1:3466|3:4|24:706|4:18|25:3467|5:3468|6:3469|7:669|23:113|9:9|8:9|4:18|4:18;n;3|1:3470;p;1|3:4|4:2685|5:3471|7:2845|23:113|9:9|8:9|4:2685|4:2685;1|1:2684|3:4|4:2685|5:3472|6:20|7:2728|9:9|8:9|4:2685|4:2685;n;8|21:2688;p;1|3:4|4:2685|5:3473|7:2974|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3474|7:2843|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3475|7:2843|23:113|9:9|8:9|4:2685|4:2685;1|1:3476|3:4|4:429|5:3477|6:20|7:3478|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:3480|6:7|7:3478|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:3481|6:20|7:3478|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:3482|6:20|7:3483|9:9|8:9|4:429|4:429;n;8|21'
  958. ..':3479;p;1|1:3476|3:4|4:429|5:3484|6:20|7:3483|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:3485|6:3486|7:2730|9:9|8:9|4:429|4:429;n;8;p;1|1:3476|3:4|4:429|5:3487|6:3488|7:2730|9:9|8:9|4:429|4:429;n;8;p;1|1:3476|3:4|4:429|5:3489|6:20|7:3478|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:3490|6:3491|7:3492|9:9|8:9|4:429|4:429;n;8|21:3493;p;1|1:3476|3:4|4:429|5:3494|6:3491|7:3495|9:9|8:9|4:429|4:429;n;8|21:3493;p;1|3:4|4:2685|5:3496|6:37|7:3497|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3498|6:30|7:3497|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3499|6:30|7:3500|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3501|6:3187|7:3502|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3503|6:3187|7:3502|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3504|6:3187|7:3502|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3505|6:3187|7:3502|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3506|6:3187|7:3502|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3507|6:3187|7:3502|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3508|6:3509|7:3510|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3511|6:3187|7:3512|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3513|6:3187|7:3512|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3514|6:3187|7:3512|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:429|5:3515|6:3187|7:3516|23:113|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3517|6:3187|7:3518|23:113|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3519|6:3187|7:3520|9:9|8:9|4:429|4:429;1|3:4|4:429|5:3521|6:3187|7:3522|9:9|8:9|4:429|4:429;1|3:4|4:2685|5:3523|6:20|7:3524|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3525|6:20|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3526|6:20|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3527|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3528|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3529|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3530|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3531|7:3524|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3532|7:3524|9:9|8:9|4:2685|4:2685;1|3:4|4:2685'
  959. ..'|5:3533|6:20|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3534|6:20|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3535|6:20|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3536|6:20|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3537|6:20|7:3524|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3538|6:20|7:3524|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3539|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3540|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3541|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3542|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3543|7:3524|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3544|7:3524|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3545|6:20|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3546|6:20|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3547|6:20|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3548|6:20|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3549|6:20|7:3524|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3550|6:20|7:3524|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3551|6:20|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3552|6:20|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3553|6:20|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3554|6:20|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3555|6:20|7:3524|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3556|6:20|7:3524|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3557|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3558|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3559|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3561|7:3524|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3562|7:3524|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3563|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3564|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3565|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3566|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3567|7:3524|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3568|7:3524|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3569|6:20|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3570|6:20|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3571|6:20|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3572|6:20|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3573|6:20|7:3524|9:9'
  960. ..'|8:9|4:2685|4:2685;1|3:4|4:2685|5:3574|6:20|7:3524|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3575|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3576|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3577|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3578|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3579|7:3524|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3580|9:9|8:9|4:2685|4:2685;1|1:2684|3:4|4:2685|5:3581|6:20|7:3582|9:9|8:9|4:2685|4:2685;n;8|21:3583;p;1|1:2684|3:4|4:2685|5:3584|6:20|7:3582|9:9|8:9|4:2685|4:2685;n;8|21:3583;p;1|1:2684|3:4|4:2685|5:3585|6:20|7:2819|9:9|8:9|4:2685|4:2685;n;8|21:3583;p;1|1:2684|3:4|4:2685|5:3586|6:20|7:2819|9:9|8:9|4:2685|4:2685;n;8|21:3583;p;1|1:3476|3:4|4:429|5:3587|6:20|7:3478|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:3588|6:20|7:3478|23:113|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:3589|6:20|7:3590|23:113|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:3591|6:20|7:3478|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:3592|6:160|7:2795|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:3593|6:3509|7:3594|23:113|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:3595|6:3509|7:3594|9:9|8:9|4:429|4:429;n;8|21:3479;p;2|1:3596;n;1|1:3476|3:4|4:429|5:3597|7:3478|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:3598|6:138|7:3599|9:9|8:9|4:429|4:429;n;8;p;1|1:3476|3:4|4:429|5:3600|7:3601|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:3602|6:3603|7:3604|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:3605|6:3603|7:3604|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|3:4|4:429|5:3606|6:3607|7:3608|9:9|8:9|4:429|4:429;1|1:3476|3:4|4:429|5:3609|7:3478|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:3610|7:3478|9:9|8:9|4:429|4:429;n;8|21:3479;p;p;1|1:3476|3:4|4:429|5:3611|6:20|7:3478|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:3612|6:3613|7:3599|9:9|8:9|4:429|4:429;n;8;p;1|1:3476|3:4|4:429|5:3614|6:20|7:3601|9:9|8:9|4:42'
  961. ..'9|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:3615|6:3187|7:3604|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:3616|6:3187|7:3604|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|3:4|4:429|5:3617|6:3618|7:3608|9:9|8:9|4:429|4:429;1|1:3476|3:4|4:429|5:3619|6:20|7:3478|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:3620|6:20|7:3478|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|3:4|4:2685|5:3621|6:3618|7:3622|9:9|8:9|4:2685|4:2685;1|1:3476|3:4|4:2685|5:3623|6:7|7:3478|9:9|8:9|4:2685|4:2685;n;8|21:3479;p;1|1:3476|3:4|4:2685|5:3624|6:7|7:3478|23:113|9:9|8:9|4:2685|4:2685;n;8|21:3479;p;1|1:3476|3:4|4:2685|5:3625|6:7|7:3478|23:113|9:9|8:9|4:2685|4:2685;n;8|21:3479;p;1|1:3476|3:4|4:2685|5:3626|6:7|7:3478|23:113|9:9|8:9|4:2685|4:2685;n;8|21:3479;p;1|1:3476|3:4|4:2685|5:3627|6:3509|7:3628|23:113|9:9|8:9|4:2685|4:2685;n;8|21:3479;p;1|1:3476|3:4|4:2685|5:3629|6:3509|7:3628|23:113|9:9|8:9|4:2685|4:2685;n;8|21:3479;p;1|1:3476|3:4|4:2685|5:3630|6:2265|7:3631|23:113|9:9|8:9|4:2685|4:2685;n;8|21:3479;p;1|1:3476|3:4|4:2685|5:3632|6:2265|7:3633|23:113|9:9|8:9|4:2685|4:2685;n;8|21:3479;p;1|3:4|4:136|5:3634|6:3509|7:3635|9:9|8:9|4:136|4:136;1|3:4|4:136|5:3636|6:3509|7:3637|9:9|8:9|4:136|4:136;n;6|12:3638|13:3639;p;1|3:4|4:136|5:3640|6:3509|7:3641|9:9|8:9|4:136|4:136;n;6|12:3638|13:3642;p;1|3:4|4:3643|5:3644|6:3509|7:3645|23:113|9:9|8:9|4:3643|4:3643;1|3:4|4:3643|5:3646|6:3647|7:3645|9:9|8:9|4:3643|4:3643;1|3:4|4:3643|5:3648|6:3509|7:3645|9:9|8:9|4:3643|4:3643;1|3:4|4:3643|5:3649|6:3647|7:3645|9:9|8:9|4:3643|4:3643;1|1:622|3:4|4:200|5:3650|6:3647|7:3651|9:9|8:9|4:200|4:200;1|1:3652|3:4|25:4|5:3653|6:67|7:3654|23:113|9:9|8:9;1|1:3655|3:4|25:4|5:3656|6:67|7:3654|23:113|9:9|8:9;1|3:4|24:706|4:429|5:3657|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3659|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3660|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3661|6:20|7:3658|9:9|8:9|4:42'
  962. ..'9|4:429;1|3:4|24:706|4:429|5:3662|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3663|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3664|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3665|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3666|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3667|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3668|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3669|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3670|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3671|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3672|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3673|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3674|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3675|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3676|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3677|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3678|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3679|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3680|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3681|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3682|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3683|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3684|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3685|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3686|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3687|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3688|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3689|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3690|6:20|7:3658|9:9|8:9|4:429|4:429;2|1:3691;n;1|3:4|24:706|4:429|5:3692|6:20|7:3693|23:113|9:9|8:9|4:429|4:429;n;8|21:3694|22:72;p;1|3:4|24:706|4:429|5:3695|6:721|7:3696|23:113|9:9|8:9|4:429|4:429;p;1|3:4|24:706|4:429|5:3697|6:721|7:3698|23:1'
  963. ..'13|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3699|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3700|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3701|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3702|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3703|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3704|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3705|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3706|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3707|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3708|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3709|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3710|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3711|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3712|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3713|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3714|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3715|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3716|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3717|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3718|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3719|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3720|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3721|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3722|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3723|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3724|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3725|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3726|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3727|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3728|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3729|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3730|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429'
  964. ..'|5:3731|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3732|6:20|7:3733|23:113|9:9|8:9|4:429|4:429;n;8|21:3694|22:72;p;1|3:4|24:706|4:429|5:3734|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3735|6:20|7:3736|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3737|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3738|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3739|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3740|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3741|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3742|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3743|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3744|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3745|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3746|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3747|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3748|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3749|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3750|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3751|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3752|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3753|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3754|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3755|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3756|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3757|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3758|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3759|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3760|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3761|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3762|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3763|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3764|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3765|6:20|7'
  965. ..':3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3766|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3767|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3768|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3769|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3770|6:721|7:3698|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3771|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3772|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3773|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3774|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3775|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3776|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3777|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3778|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3779|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3780|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3781|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3782|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3783|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3784|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3785|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3786|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3787|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3788|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3789|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3790|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3791|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3792|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3793|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3794|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3795|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3796|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3797|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4'
  966. ..':429|5:3798|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3799|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3800|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3801|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3802|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3803|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3804|6:20|7:3733|9:9|8:9|4:429|4:429;n;8|21:3694|22:72;p;1|3:4|24:706|4:429|5:3805|6:20|7:3658|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:3806|6:20|7:3736|9:9|8:9|4:429|4:429;2|1:3691;n;1|3:4|24:706|4:429|5:3807|6:20|7:3693|23:113|9:9|8:9|4:429|4:429;n;8|21:3694|22:72;p;1|3:4|24:706|4:429|5:3808|6:721|7:3696|23:113|9:9|8:9|4:429|4:429;p;1|3:4|4:429|5:3809|6:3187|7:3810|9:9|8:9|4:429|4:429;1|3:4|4:2685|5:3811|6:67|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3812|6:67|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3814|6:67|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3815|6:67|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3816|6:67|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3817|6:67|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3818|6:67|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3819|6:67|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3820|6:67|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3821|6:67|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3822|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3824|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3825|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3826|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3827|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3828|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3829|6:67|7:2839|23:113|9:9|8:9|4:2685|4:2685;2|1:3830;n;1|3:4|4:2685|5:3831|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3832|6:67|7:3823|23:113|9:9|'
  967. ..'8:9|4:2685|4:2685;1|3:4|4:2685|5:3833|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;p;1|3:4|4:2685|5:3834|6:67|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3835|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3836|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3837|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3838|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3839|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3840|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3841|6:67|7:2839|23:113|9:9|8:9|4:2685|4:2685;2|1:3830;n;1|3:4|4:2685|5:3842|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3843|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3844|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3845|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3846|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3847|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;p;1|3:4|4:2685|5:3848|6:67|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3849|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3850|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3851|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3852|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3853|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3854|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3855|6:67|7:2839|23:113|9:9|8:9|4:2685|4:2685;2|1:3830;n;1|3:4|4:2685|5:3856|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3857|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3858|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3859|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3860|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3861|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;p;1|3:4|4:2685|5:3862|6:67|7:2839|23:113|9:9|8:9|4:2685|4:2685;2|1:3830;n;1|3:4|4:26'
  968. ..'85|5:3863|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3864|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3865|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3866|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3867|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3868|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;p;1|3:4|4:2685|5:3869|6:67|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3870|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3871|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3872|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3873|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3874|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3875|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3876|6:67|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3877|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3878|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3879|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3880|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3881|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3882|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3883|6:67|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3884|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3885|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3886|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3887|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3888|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3889|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3890|6:67|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3891|6:67|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3892|6:67|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3893|6:37|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|'
  969. ..'1:622|3:4|4:2685|5:3894|6:37|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3895|6:37|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3896|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3897|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3898|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3899|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3900|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3901|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3902|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3903|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3904|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3905|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3906|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3907|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3908|6:37|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3909|6:37|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3910|6:37|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3911|6:37|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3912|6:37|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3913|6:37|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3914|6:37|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3915|6:37|7:3916|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3917|6:37|7:3916|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3918|6:37|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3919|6:37|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3920|6:37|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3921|6:37|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3922|6:37|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:3923|6:37|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3924|6:37|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2'
  970. ..'685|5:3925|6:37|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3926|6:37|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3927|6:37|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3928|6:37|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3929|6:37|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3930|6:37|7:3823|23:113|9:9|8:9|4:2685|4:2685;2|1:2912;n;1|3:4|4:2685|5:3931|6:67|7:2863|23:113|9:9|8:9|4:2685|4:2685;1|1:2684|3:4|4:2685|5:3932|7:2798|9:9|8:9|4:2685|4:2685;n;8|21:2865;p;1|3:4|4:2685|5:3933|6:67|7:2863|23:113|9:9|8:9|4:2685|4:2685;1|1:2684|3:4|4:2685|5:3934|7:2798|9:9|8:9|4:2685|4:2685;n;8|21:2865;p;1|3:4|4:2685|5:3935|6:37|7:2869|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3936|6:37|7:2869|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3937|6:37|7:2872|23:113|9:9|8:9|4:2685|4:2685;p;1|3:4|4:2685|5:3938|6:37|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3939|6:37|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3940|6:37|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3941|6:37|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3942|6:37|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3943|6:37|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3944|6:37|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3945|6:37|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3946|6:37|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3947|6:37|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3948|6:37|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3949|6:37|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3950|6:37|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3951|6:37|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3952|6:20|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3953|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3954|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3955|6:20|7:3823|23:113|9:9|8:'
  971. ..'9|4:2685|4:2685;1|3:4|4:2685|5:3956|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3957|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3958|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3959|6:20|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3960|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3961|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3962|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3963|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3964|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3965|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3966|6:20|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3967|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3968|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3969|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3970|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3971|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3972|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3973|6:20|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3974|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3975|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3976|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3977|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3978|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3979|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3980|6:20|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3981|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3982|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3983|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3984|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3985|6:20|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3986|6:20|7:3823|23:113|9:9|8:9|4:26'
  972. ..'85|4:2685;1|3:4|4:2685|5:3987|6:67|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3988|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3989|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3990|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3991|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3992|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3993|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3994|6:67|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3995|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3996|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3997|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3998|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:3999|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4000|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4001|6:67|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4002|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4003|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4004|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4005|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4006|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4007|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4008|6:67|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4009|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4010|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4011|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4012|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4013|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4014|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4015|6:67|7:2839|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4016|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4017|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2'
  973. ..'685;1|3:4|4:2685|5:4018|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4019|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4020|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4021|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|3:4|24:706|4:429|25:4|5:4022|6:20|7:4023|9:9|8:13|4:429|4:429;1|3:4|24:706|4:429|25:4|5:4024|6:20|7:4025|9:9|8:13|4:429|4:429;1|3:4|24:706|4:429|25:4|5:4026|6:7|7:4025|9:9|8:13|4:429|4:429;1|3:4|24:706|4:429|25:4|5:4027|6:7|7:4025|9:9|8:13|4:429|4:429;1|3:4|24:706|4:429|25:4|5:4028|6:7|7:4025|9:9|8:13|4:429|4:429;1|3:4|24:706|4:429|25:4|5:4029|6:20|7:4030|9:9|8:13|4:429|4:429;1|3:4|24:706|4:429|25:4|5:4031|6:20|7:4030|9:9|8:13|4:429|4:429;1|3:4|24:706|4:429|25:4|5:4032|6:20|7:4030|9:9|8:13|4:429|4:429;2|1:4033;n;1|3:4|24:706|4:429|5:4034|6:7|7:2935|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:4035|6:20|7:4036|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:4037|6:20|7:4036|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:4038|6:20|7:4036|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:4039|6:20|7:4036|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:4040|6:20|7:2935|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:4041|6:20|7:4036|9:9|8:9|4:429|4:429;p;2|1:4033;n;1|3:4|24:706|4:429|5:4042|6:20|7:2935|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:4043|6:20|7:4036|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:4044|6:20|7:4036|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:4045|6:20|7:4036|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:4046|6:20|7:4036|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:4047|6:20|7:2935|9:9|8:9|4:429|4:429;1|3:4|24:706|4:429|5:4048|6:20|7:4036|9:9|8:9|4:429|4:429;p;1|3:4|24:706|4:2685|5:4049|7:4050|9:9|8:9|4:2685|4:2685;1|3:4|24:706|4:2685|5:4051|7:4036|9:9|8:9|4:2685|4:2685;1|3:4|24:706|4:2685|5:4052|7:4036|9:9|8:9|4:2685|4:2685;1|3:4|24:706|4:2685|5:4053|7:4036|9:9|8:9|4:2685|4:2685;1|3:4|24:706|4:2685|5:4054|7:4036|9:9|8:9|4:2685|4:2685;1|3:4|24:706|4:2685|5:4'
  974. ..'055|7:4050|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4056|6:3618|7:4057|9:9|8:9|4:2685|4:2685;1|1:3476|3:4|4:2685|5:4058|6:7|7:3478|23:113|9:9|8:9|4:2685|4:2685;n;8|21:3479;p;1|1:3476|3:4|4:2685|5:4059|6:7|7:3478|23:113|9:9|8:9|4:2685|4:2685;n;8|21:3479;p;1|1:3476|3:4|4:2685|5:4060|6:2265|7:3478|23:113|9:9|8:9|4:2685|4:2685;n;8|21:4061;p;1|1:3476|3:4|4:2685|5:4062|6:4063|7:3478|23:113|9:9|8:9|4:2685|4:2685;n;8|21:4064;p;1|3:4|24:706|4:2685|5:4065|7:4036|9:9|8:9|4:2685|4:2685;1|1:3476|3:4|4:429|5:4066|6:7|7:4067|23:113|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:4068|6:3647|7:4067|23:113|9:9|8:9|4:429|4:429;n;8|21:3479;p;2|1:4069;n;1|1:622|3:4|4:2685|5:4070|6:4071|7:4072|23:113|9:9|8:9|4:2685|4:2685;n;8;p;1|1:622|3:4|4:2685|5:4073|6:37|7:4072|23:113|9:9|8:9|4:2685|4:2685;n;8;p;1|1:622|3:4|4:2685|5:4074|6:4075|7:4072|23:113|9:9|8:9|4:2685|4:2685;n;8;p;p;2|1:4076;n;1|1:622|3:4|4:2685|5:4077|6:4078|7:4072|23:113|9:9|8:9|4:2685|4:2685;n;8;p;1|1:622|3:4|4:2685|5:4079|6:67|7:4072|23:113|9:9|8:9|4:2685|4:2685;n;8;p;1|1:622|3:4|4:2685|5:4080|6:4081|7:4072|23:113|9:9|8:9|4:2685|4:2685;n;8;p;p;1|1:622|3:4|4:2685|5:4082|6:4083|7:4084|23:113|9:9|8:9|4:2685|4:2685;n;8;p;1|1:622|3:4|4:2685|5:4085|6:4071|7:4086|23:113|9:9|8:9|4:2685|4:2685;n;8;p;1|1:622|3:4|4:2685|5:4087|6:4088|7:4084|23:113|9:9|8:9|4:2685|4:2685;n;8;p;1|1:622|3:4|4:2685|5:4089|6:4078|7:4086|23:113|9:9|8:9|4:2685|4:2685;n;8;p;1|1:622|3:4|4:2685|5:4090|6:4088|7:4084|23:113|9:9|8:9|4:2685|4:2685;n;8;p;1|1:622|3:4|4:2685|5:4091|6:4078|7:4086|23:113|9:9|8:9|4:2685|4:2685;n;8;p;1|1:622|3:4|4:2685|5:4092|6:4083|7:4093|23:113|9:9|8:9|4:2685|4:2685;n;8;p;1|1:622|3:4|4:2685|5:4094|6:4071|7:4093|23:113|9:9|8:9|4:2685|4:2685;n;8;p;1|1:622|3:4|4:2685|5:4095|6:4096|7:4093|23:113|9:9|8:9|4:2685|4:2685;n;8;p;1|1:622|3:4|4:2685|5:4097|6:1882|7:4098|23:113|9:9|8:9|4:2685|4:2685;n;8;p;1|1:622|3:4|4:2685|5:4099|6:4100|7:4101|2'
  975. ..'3:113|9:9|8:9|4:2685|4:2685;n;8;p;1|1:622|3:4|4:2685|5:4102|6:2413|7:4098|23:113|9:9|8:9|4:2685|4:2685;n;8;p;1|1:622|3:4|4:2685|5:4103|6:4104|7:4105|9:9|8:9|4:2685|4:2685;n;8|21:3493;p;1|1:622|3:4|4:2685|5:4106|6:417|7:4105|9:9|8:9|4:2685|4:2685;n;8|21:3493;p;1|1:622|3:4|4:2685|5:4107|6:4108|7:4109|9:9|8:9|4:2685|4:2685;n;8;p;1|1:622|3:4|4:2685|5:4110|6:146|7:4105|9:9|8:9|4:2685|4:2685;n;8|21:3493;p;1|1:622|3:4|4:2685|5:4111|6:3187|7:4112|9:9|8:9|4:2685|4:2685;n;8|21:4113;p;1|1:622|3:4|4:2685|5:4114|6:3187|7:4115|9:9|8:9|4:2685|4:2685;n;8|21:4061;p;1|1:622|3:4|4:2685|5:4116|6:4104|7:4105|9:9|8:9|4:2685|4:2685;n;8|21:3493;p;1|1:622|3:4|4:2685|5:4117|6:417|7:4105|9:9|8:9|4:2685|4:2685;n;8|21:3493;p;1|1:622|3:4|4:2685|5:4118|6:4108|7:4109|9:9|8:9|4:2685|4:2685;n;8|21:3493;p;1|1:622|3:4|4:2685|5:4119|6:146|7:4105|9:9|8:9|4:2685|4:2685;n;8|21:3493;p;1|1:622|3:4|4:2685|5:4120|6:67|7:3813|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:4121|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:4122|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:4123|6:67|7:3823|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:4124|6:67|7:3813|23:113|9:9|8:9|4:2685|4:2685;2|1:1773;n;1|3:4|4:429|5:4125|6:20|35:4126|7:4127|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4128|6:20|35:4126|7:4129|9:9|8:9|4:429|4:429;p;2|1:1773;n;1|1:1773|3:4|4:429|5:4130|6:30|35:4131|7:4132|9:9|8:9|4:429|4:429;1|1:1773|3:4|4:429|5:4133|6:30|35:4131|7:4134|9:9|8:9|4:429|4:429;p;2|1:4135;n;2|1:4136;n;1|3:4|4:429|5:4137|6:4138|35:4139|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4140|6:4138|35:4139|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4141|6:4142|35:4139|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4143|6:4144|35:4139|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4145|6:4146|35:4139|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4147|6:4144|35:4139|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4148|6:4142|35:4139|7:21|9:9|8:9|4:429|'
  976. ..'4:429;1|3:4|4:429|5:4149|6:4150|35:4139|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4151|6:4146|35:4139|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4152|6:4153|35:4139|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4154|6:4150|35:4139|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4155|6:4153|35:4139|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4156|6:4157|35:4139|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4158|6:4157|35:4139|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4159|6:4160|35:4139|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4161|6:4160|35:4139|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4162|6:4163|35:4139|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4164|6:4163|35:4139|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4165|6:4166|35:4139|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4167|6:4166|35:4139|7:21|9:9|8:9|4:429|4:429;p;2|1:4168;n;1|3:4|4:429|5:4169|6:4170|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4172|6:4170|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4173|6:4170|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4174|6:4170|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4175|6:4176|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4177|6:4170|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4178|6:4170|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4179|6:4180|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4181|6:4176|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4182|6:4180|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4183|6:4180|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4184|6:4185|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4186|6:4187|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4188|6:4189|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4190|6:4191|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4192|6:4187|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4193|6:4191|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4194|6:4189|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4195|6:4185|35:4171|7:21|9:9|8:9|4:'
  977. ..'429|4:429;1|3:4|4:429|5:4196|6:4180|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4197|6:4191|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4198|6:4199|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4200|6:4180|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4201|6:4191|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4202|6:4191|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4203|6:4191|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4204|6:4191|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4205|6:4206|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4207|6:4191|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4208|6:4199|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4209|6:4180|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4210|6:4191|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4211|6:4206|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4212|6:4191|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4213|6:4191|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4214|6:4191|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4215|6:4216|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4217|6:4218|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4219|6:4216|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4220|6:4221|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4222|6:4221|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4223|6:30|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4224|6:30|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4225|6:30|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4226|6:30|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4227|6:30|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4228|6:4218|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4229|6:4230|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4231|6:4230|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4232|6:30|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4233|6:3607|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429'
  978. ..'|5:4234|6:3607|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4235|6:30|35:4171|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4236|6:30|35:4171|7:21|9:9|8:9|4:429|4:429;p;1|1:622|3:4|4:2685|5:4237|7:4238|23:113|9:9|8:9|4:2685|4:2685;1|1:622|3:4|4:2685|5:4239|6:4240|7:4241|23:113|9:9|8:9|4:2685|4:2685;2|1:550;n;1|3:4|4:429|5:4242|6:4243|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4245|6:4246|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4247|6:4248|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4249|6:4250|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4251|6:4252|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4253|6:4254|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4255|6:4256|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4257|6:4258|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4259|6:4260|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4261|6:4262|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4263|6:4264|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4265|6:4266|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4267|6:4268|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4269|6:4270|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4271|6:4272|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4273|6:4274|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4275|6:4276|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4277|6:4278|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4279|6:4280|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4281|6:4282|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4283|6:4284|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4285|6:4286|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4287|6:4288|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4289|6:4288|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4290|6:4291|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4292|6:4293|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4294|6:4295|35:4244|7:21|9:9|8:9|4:429|4:429'
  979. ..';1|3:4|4:429|5:4296|6:4297|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4298|6:4299|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4300|6:4301|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4302|6:4272|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4303|6:4304|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4305|6:4306|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4307|6:4308|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4309|6:4310|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4311|6:4312|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4313|6:4314|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4315|6:4316|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4317|6:4318|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4319|6:4320|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4321|6:4322|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4323|6:4324|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4325|6:4314|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4326|6:4327|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4328|6:4310|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4329|6:4330|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4331|6:4332|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4333|6:4334|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4335|6:4336|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4337|6:4336|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4338|6:4339|35:4244|7:4340|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4341|6:4342|35:4244|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4343|6:4344|35:4244|7:21|9:9|8:9|4:429|4:429;3|1:495;p;2|1:4345;n;1|3:4|4:429|5:4346|6:4347|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4349|6:4350|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4351|6:4347|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4352|6:4347|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4353|6:4354|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4355|6:4347|35:4348|7:21|9:9|8'
  980. ..':9|4:429|4:429;1|3:4|4:429|5:4356|6:4347|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4357|6:4358|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4359|6:4354|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4360|6:4358|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4361|6:4358|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4362|6:4363|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4364|6:4365|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4366|6:4367|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4368|6:4369|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4370|6:4365|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4371|6:4369|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4372|6:4367|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4373|6:4374|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4375|6:4358|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4376|6:4369|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4377|6:4378|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4379|6:4358|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4380|6:4369|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4381|6:4369|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4382|6:4369|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4383|6:4369|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4384|6:4385|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4386|6:4369|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4387|6:4378|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4388|6:4358|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4389|6:4369|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4390|6:4385|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4391|6:4369|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4392|6:4369|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4393|6:4369|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4394|6:4395|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4396|6:4397|35:4348|7:21|9:9|8:9|4:429|'
  981. ..'4:429;1|3:4|4:429|5:4398|6:4395|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4399|6:4400|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4401|6:4400|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4402|6:276|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4403|6:4404|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4405|6:276|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4406|6:4404|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4407|6:276|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4408|6:4397|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4409|6:4410|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4411|6:4410|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4412|6:4404|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4413|6:3618|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4414|6:3618|35:4348|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4415|6:4416|35:4348|7:4134|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4417|6:4404|35:4348|7:4134|9:9|8:9|4:429|4:429;p;2|1:4418;n;1|3:4|4:429|5:4419|6:4420|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4422|6:4420|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4423|6:4424|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4425|6:4426|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4427|6:4428|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4429|6:4426|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4430|6:4424|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4431|6:4432|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4433|6:4428|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4434|6:4435|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4436|6:4432|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4437|6:4435|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4438|6:4439|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4440|6:4439|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4441|6:4442|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4443|6:4442|35:4421|7:21|9:9|8:9|4'
  982. ..':429|4:429;1|3:4|4:429|5:4444|6:4445|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4446|6:4445|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4447|6:4448|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4449|6:4448|35:4421|7:21|9:9|8:9|4:429|4:429;p;2|1:428;n;1|3:4|4:429|5:4450|6:4451|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4452|6:4453|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4454|6:4455|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4456|6:4457|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4458|6:4459|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4460|6:4461|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4462|6:4463|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4464|6:4465|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4466|6:4467|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4468|6:4469|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4470|6:4471|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4472|6:4473|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4474|6:4475|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4476|6:4477|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4478|6:4479|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4480|6:4481|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4482|6:4483|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4484|6:4485|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4486|6:4487|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4488|6:4489|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4490|6:4491|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4492|6:4493|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4494|6:4495|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4496|6:4497|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4498|6:4499|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4500|6:4501|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4502|6:4503|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4504|6:4505|35:4421|7:21|9:9|8:'
  983. ..'9|4:429|4:429;1|3:4|4:429|5:4506|6:4507|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4508|6:4509|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4510|6:4511|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4512|6:4513|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4514|6:4515|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4516|6:4489|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4517|6:4491|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4518|6:4519|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4520|6:4521|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4522|6:4523|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4524|6:4525|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4526|6:4527|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4528|6:4529|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4530|6:4531|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4532|6:4533|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4534|6:4535|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4536|6:4537|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4538|6:4539|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4540|6:4541|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4542|6:4543|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4544|6:4545|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4546|6:4547|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4548|6:4549|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4550|6:30|35:4421|7:21|9:9|8:9|4:429|4:429;1|3:4|4:429|5:4551|6:4166|35:4421|7:21|9:9|8:9|4:429|4:429;3|1:495;p;p;2|1:2263;n;1|1:617|3:4|4:429|5:4552|6:4553|35:4554|7:4555|9:9|8:9|4:429|4:429;1|1:617|3:4|4:429|5:4556|6:4553|35:4554|7:4555|9:9|8:9|4:429|4:429;p;2|1:4557;n;1|3:4|4:2685|5:4558|6:4559|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4561|6:4562|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4563|6:4564|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4565|6:4566|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4'
  984. ..'567|6:4568|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4569|6:67|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4570|6:4571|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4572|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4573|6:20|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4574|6:4575|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4576|6:4577|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4578|6:4579|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4580|6:4581|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4582|6:37|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4583|6:4584|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4585|6:4586|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4587|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4588|6:4571|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4589|6:20|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4590|6:4575|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4591|6:4559|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4592|6:4577|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4593|6:4562|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4594|6:37|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4595|6:4579|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4596|6:4564|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4597|6:4566|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4598|6:4568|7:4560|9:9|8:9|4:2685|4:2685;1|3:4|4:2685|5:4599|6:67|7:4560|9:9|8:9|4:2685|4:2685;p;1|3:4|4:429|5:4600|6:3187|7:4601|9:9|8:9|4:429|4:429;1|1:2684|3:4|4:2685|5:4602|6:67|7:4603|9:9|8:9|4:2685|4:2685;n;8|21:3583;p;1|1:3476|3:4|4:429|5:4604|6:20|7:3478|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:4605|6:20|7:3478|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:4606|6:20|7:3478|23:113|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:4607|6:20|7:3633|9:9|8:9|4:429|4:429;n;8|21:4608;p;1|1:3476|3:4|4:429|5:4609|6:3603|7:2730|9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:4610|6:3613|7:3631|'
  985. ..'9:9|8:9|4:429|4:429;n;8|21:3479;p;1|1:3476|3:4|4:429|5:4611|6:312|7:3633|9:9|8:9|4:429|4:429;n;8|21:3479;p;p;')
  986. for _,Object in pairs(Objects) do
  987. Object.Parent = script and script.Parent==workspace and script or workspace
  988. end
  989. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement