Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --___!!IMPORTANT!!___
- --Your model was too big, and the plugin couldn't put it all in 1 script.
- --Concatencate all scripts following volumes order.
- -- Converted using Mokiros's Model to Script plugin
- -- Converted string size: 161014
- local genv={}
- local Scripts = {
- function() --declarations
- sp = script.Parent
- local cover = sp.Cover
- local covergui = sp.CoverGui
- local maingui = sp.MainGui
- local click = cover.ClickDetector
- local handle = sp.Storage.Handle
- local tool = sp.Storage.Cup
- local repair = sp.Repair.TextButton
- local repairtwo = true
- local ready = true
- --functions--
- function coverdown()
- covergui.TextLabel:TweenPosition(UDim2.new(0, 0, 1.36, 0), "Out", "Sine", 1, true)
- end
- function coverup()
- covergui.TextLabel:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 1, true)
- end
- function menuappear()
- for _,v in pairs(maingui:GetChildren()) do
- if v:IsA("TextButton") then
- v.Visible = true
- end
- end
- end
- function menudisappear()
- for _,v in pairs(maingui:GetChildren()) do
- if v:IsA("TextButton") then
- v.Visible = false
- end
- end
- end
- function disappearall()
- for _,v in pairs(maingui:GetChildren()) do
- if v:IsA("Frame") then
- for _,a in pairs(v:GetChildren()) do
- if a:IsA("TextButton") then
- a.Visible = false
- end
- end
- end
- end
- end
- --function of all111
- click.MouseClick:connect(function(player)
- if ready == true then
- ready = false
- click.MaxActivationDistance = 0
- coverdown()
- menuappear()
- local newtool = tool:clone()
- local newhandle = handle:clone()
- newtool.Parent = sp.Temporary
- newhandle.Parent = sp.Temporary
- newhandle.CFrame = CFrame.new(Vector3.new(newhandle.Position.X, newhandle.Position.Y+1,newhandle.Position.Z))
- for _,one in pairs(maingui:GetChildren()) do
- if one:IsA("TextButton") then
- one.MouseButton1Down:connect(function()
- menudisappear()
- newtool.Name = one.Name
- for _,frame in pairs(maingui:GetChildren()) do
- if frame:IsA("Frame") and frame.Name == one.Name then --lol this whole part though
- for _,button in pairs(frame:GetChildren()) do
- if button:IsA("TextButton") then
- button.Visible = true
- button.MouseButton1Down:connect(function()
- newtool.ToolTip = button.Name
- newhandle.Parent = newtool
- newhandle.Anchored = false
- newtool.Cup.Disabled = false
- newtool.Parent = player.Backpack
- coverup()
- for _,v in pairs(button.Parent:GetChildren()) do
- if v:IsA("TextButton") then
- v.Visible = false
- end
- end
- click.MaxActivationDistance = 10
- wait(5)
- ready = true
- script.Fixer.Disabled = false
- end)
- end
- end
- end
- end
- end)
- end
- end
- end
- end)
- --Function of the repair button
- repair.MouseButton1Down:connect(function()
- if repairtwo == true then
- repairtwo = false
- local ff = Instance.new ("ForceField")
- ff.Parent = sp
- sp.Temporary:ClearAllChildren()
- menudisappear()
- disappearall()
- click.MaxActivationDistance = 10
- coverup()
- wait(1)
- ready = true
- ff:Destroy()
- for _,force in pairs(sp:GetChildren()) do
- if force:IsA("ForceField") then
- force:Destroy()
- end
- end
- script.Fixer.Disabled = true
- wait(5)
- repairtwo = true
- end
- end) end;
- function() script.Parent.Disabled = true
- wait(0.1)
- script.Parent.Disabled = false
- script.Disabled = true end;
- function() local Tool = script.Parent
- local Handle = Tool:FindFirstChild("Handle")
- local Equipped = false
- local Player = game.Players.LocalPlayer
- repeat wait() until Player.Character wait()
- local Character = Player.Character
- repeat wait() until Character:FindFirstChild("Humanoid") wait()
- local Humanoid = Character:FindFirstChild("Humanoid")
- local Head = Character:FindFirstChild("Head")
- local Torso = Character:FindFirstChild("Torso")
- local rArm = Character:FindFirstChild("Right Arm")
- local rShoulder = Torso:FindFirstChild("Right Shoulder")
- local Neck = Torso:FindFirstChild("Neck")
- local Weld, Current
- local NeckOriginal = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
- local ArmOriginal = CFrame.new(-1.4, 0.4, -1) * CFrame.fromEulerAnglesXYZ(math.rad(-90), 0, 0)
- local ArmDrink = CFrame.new(0, -0.5, -1.3) * CFrame.fromEulerAnglesXYZ(math.rad(-130), math.rad(-20), math.rad(-60))
- local Mem = {
- NeckCF = CFrame.new(0,0,0);
- }
- function Lerp(A, B, C)
- return A + (B - A) * C
- end
- function Serp(A, B, C)
- local D = A:Dot(B)
- if D > 0.99999 or D < -0.99999 then
- return C <= 0.5 and A or B
- else
- local R = math.acos(D)
- return (A * math.sin((1 - C) * R) + B * math.sin(C * R))/math.sin(R)
- end
- end
- function Merp(A, B, C)
- local AX, AY, AZ, A00, A01, A02, A10, A11, A12, A20, A21, A22 = A:components()
- local BX, BY, BZ, B00, B01, B02, B10, B11, B12, B20, B21, B22 = B:components()
- local V0 = Lerp(Vector3.new(AX, AY, AZ), Vector3.new(BX, BY, BZ), C)
- local V1 = Serp(Vector3.new(A00, A01, A02), Vector3.new(B00, B01, B02), C)
- local V2 = Serp(Vector3.new(A10, A11, A12), Vector3.new(B10, B11, B12), C)
- local V3 = Serp(Vector3.new(A20, A21, A22), Vector3.new(B20, B21, B22), C)
- return CFrame.new(V0.X, V0.Y, V0.Z, V1.X, V1.Y, V1.Z, V2.X, V2.Y, V2.Z, V3.X, V3.Y, V3.Z)
- end
- function Pitch(lookVector)
- return math.atan(lookVector.Y/math.sqrt(lookVector.X^2 + lookVector.Z^2))
- end
- function Run(F, ...)
- local A
- setfenv(F, setmetatable({wait = function(X)
- delay(X, function()
- if Current == A then
- coroutine.resume(A)
- end
- end)
- coroutine.yield()
- end},
- {__index = getfenv(0)}))
- A = coroutine.create(F)
- Current = A
- coroutine.resume(Current, ...)
- end;
- function Update(Mouse)
- local PitchMax = 0.1
- local YawMax = 0.2
- local NeckPitch = -Pitch(Mouse.Hit.lookVector)
- local NeckYaw = (Head.CFrame.p - Mouse.Hit.p).Unit:Cross(Torso.CFrame.lookVector).Y
- NeckPitch = NeckPitch/5
- NeckYaw = NeckYaw/5
- if NeckPitch > PitchMax then
- NeckPitch = PitchMax
- end
- if NeckPitch < -PitchMax then
- NeckPitch = -PitchMax
- end
- if NeckYaw > YawMax then
- NeckYaw = YawMax
- end
- if NeckYaw < -YawMax then
- NeckYaw = -YawMax
- end
- local NeckCF = NeckOriginal * CFrame.Angles(NeckPitch, 0, NeckYaw)
- Neck.C0 = Merp(Mem.NeckCF, NeckCF, 0.5)
- Mem.NeckCF = NeckCF
- end
- function Drink(Toggle)
- if Toggle then
- local Start = Weld.C1
- for i = 0, 1, 0.1 do
- Weld.C1 = Merp(Start, ArmDrink, i)
- wait()
- end
- if Handle:FindFirstChild("Drink") then
- if Handle.Drink.IsPlaying then
- Handle.Drink:Stop()
- end
- Handle.Drink:Play()
- end
- else
- if Handle:FindFirstChild("Drink") then
- if Handle.Drink.IsPlaying then
- Handle.Drink:Stop()
- end
- end
- local Start = Weld.C1
- for i = 0, 1, 0.1 do
- Weld.C1 = Merp(Start, ArmOriginal, i)
- wait()
- end
- end
- end
- Tool.Equipped:connect(function(Mouse)
- Equipped = true
- wait(0.1)
- rShoulder.Part1 = nil
- Weld = Instance.new("Weld", Head)
- Weld.Part0 = Head
- Weld.Part1 = rArm
- Weld.C1 = ArmOriginal
- wait(0.1)
- Mouse.Button1Down:connect(function()
- Run(Drink, true)
- end)
- Mouse.Button1Up:connect(function()
- Run(Drink, false)
- end)
- while Equipped do
- Update(Mouse)
- wait()
- end
- rShoulder.Part1 = Player.Character:FindFirstChild("Right Arm")
- Weld:Destroy()
- Neck.C0 = NeckOriginal
- end)
- Tool.Unequipped:connect(function(Mouse)
- Equipped = false
- end) end;
- function() function Spread(part)
- check = part:findFirstChild("Fire")
- if check == nil then
- script.Parent:Clone().Parent = part
- elseif check ~= nil then
- check.Size = check.Size + 1
- check.Heat = check.Heat +1
- end
- end
- script.Parent.Parent.Touched:connect(Spread)
- end;
- function() function Spread(part)
- check = part:findFirstChild("Fire")
- if check == nil then
- script.Parent:Clone().Parent = part
- elseif check ~= nil then
- check.Size = check.Size + 1
- check.Heat = check.Heat +1
- end
- end
- script.Parent.Parent.Touched:connect(Spread)
- end;
- function() function Spread(part)
- check = part:findFirstChild("Fire")
- if check == nil then
- script.Parent:Clone().Parent = part
- elseif check ~= nil then
- check.Size = check.Size + 1
- check.Heat = check.Heat +1
- end
- end
- script.Parent.Parent.Touched:connect(Spread)
- end;
- function() function Spread(part)
- check = part:findFirstChild("Fire")
- if check == nil then
- script.Parent:Clone().Parent = part
- elseif check ~= nil then
- check.Size = check.Size + 1
- check.Heat = check.Heat +1
- end
- end
- script.Parent.Parent.Touched:connect(Spread)
- end;
- function() function Spread(part)
- check = part:findFirstChild("Fire")
- if check == nil then
- script.Parent:Clone().Parent = part
- elseif check ~= nil then
- check.Size = check.Size + 1
- check.Heat = check.Heat +1
- end
- end
- script.Parent.Parent.Touched:connect(Spread)
- end;
- function() function Spread(part)
- check = part:findFirstChild("Fire")
- if check == nil then
- script.Parent:Clone().Parent = part
- elseif check ~= nil then
- check.Size = check.Size + 1
- check.Heat = check.Heat +1
- end
- end
- script.Parent.Parent.Touched:connect(Spread)
- end;
- function() function Spread(part)
- check = part:findFirstChild("Fire")
- if check == nil then
- script.Parent:Clone().Parent = part
- elseif check ~= nil then
- check.Size = check.Size + 1
- check.Heat = check.Heat +1
- end
- end
- script.Parent.Parent.Touched:connect(Spread)
- end;
- function() function Spread(part)
- check = part:findFirstChild("Fire")
- if check == nil then
- script.Parent:Clone().Parent = part
- elseif check ~= nil then
- check.Size = check.Size + 1
- check.Heat = check.Heat +1
- end
- end
- script.Parent.Parent.Touched:connect(Spread)
- end;
- function() function Spread(part)
- check = part:findFirstChild("Fire")
- if check == nil then
- script.Parent:Clone().Parent = part
- elseif check ~= nil then
- check.Size = check.Size + 1
- check.Heat = check.Heat +1
- end
- end
- script.Parent.Parent.Touched:connect(Spread)
- end;
- function() function Spread(part)
- check = part:findFirstChild("Fire")
- if check == nil then
- script.Parent:Clone().Parent = part
- elseif check ~= nil then
- check.Size = check.Size + 1
- check.Heat = check.Heat +1
- end
- end
- script.Parent.Parent.Touched:connect(Spread)
- end;
- function() function Spread(part)
- check = part:findFirstChild("Fire")
- if check == nil then
- script.Parent:Clone().Parent = part
- elseif check ~= nil then
- check.Size = check.Size + 1
- check.Heat = check.Heat +1
- end
- end
- script.Parent.Parent.Touched:connect(Spread)
- end;
- function() function Spread(part)
- check = part:findFirstChild("Fire")
- if check == nil then
- script.Parent:Clone().Parent = part
- elseif check ~= nil then
- check.Size = check.Size + 1
- check.Heat = check.Heat +1
- end
- end
- script.Parent.Parent.Touched:connect(Spread)
- end;
- function() function Spread(part)
- check = part:findFirstChild("Fire")
- if check == nil then
- script.Parent:Clone().Parent = part
- elseif check ~= nil then
- check.Size = check.Size + 1
- check.Heat = check.Heat +1
- end
- end
- script.Parent.Parent.Touched:connect(Spread)
- end;
- function() function Spread(part)
- check = part:findFirstChild("Fire")
- if check == nil then
- script.Parent:Clone().Parent = part
- elseif check ~= nil then
- check.Size = check.Size + 1
- check.Heat = check.Heat +1
- end
- end
- script.Parent.Parent.Touched:connect(Spread)
- end;
- function() function Spread(part)
- check = part:findFirstChild("Fire")
- if check == nil then
- script.Parent:Clone().Parent = part
- elseif check ~= nil then
- check.Size = check.Size + 1
- check.Heat = check.Heat +1
- end
- end
- script.Parent.Parent.Touched:connect(Spread)
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait(.7)
- script.Parent.Decal.Texture = "http://www.roblox.com/asset/?id=149377818"
- wait(.7)
- script.Parent.Decal.Texture = "http://www.roblox.com/asset/?id=149377829"
- end
- end;
- function() while true do
- wait(1)
- if game.Workspace.Temp.Current.Value >= 1250 then
- script.Parent.Decal.Texture = "http://www.roblox.com/asset/?id=118700086"
- end
- end end;
- function() while true do
- wait(1)
- if game.Workspace.Temp.Current.Value < 1250 then
- script.Parent.Decal.Texture = "http://www.roblox.com/asset/?id=110706899"
- end
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value < 1250 then
- script.Parent.Lights.Disabled=false
- end
- end
- end;
- function() while true do
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Institutional white")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Lime green")
- wait(math.random(0.5, 2))
- script.Parent.BrickColor = BrickColor.new("Toothpaste")
- end end;
- function() while true do
- wait()
- if workspace.Temp.Current.Value >= 1250 then
- script.Parent.Lights.Disabled=true
- script.Parent.BrickColor = BrickColor.new("Really red")
- end
- end
- end;
- function() -- This script goes into a ClickDetector within a part.
- local function onMouseClick(Player)
- if not Player.PlayerGui:findFirstChild("ClickAudio") then
- local ls = Instance.new("Sound")
- local length = 1 -- How long the sound plays before removed.
- ls.SoundId = "http://www.roblox.com/asset/?id=133024926" -- Audio id here.
- ls.Name = "ClickAudio"
- ls.Volume = 0.5
- ls.Pitch = .6
- ls.Parent = Player.PlayerGui
- ls:Play()
- game:GetService("Debris"):AddItem(ls, length)
- end
- end
- script.Parent.MouseClick:connect(onMouseClick)
- end;
- function() function onClicked(playerWhoClicked)
- script.Parent.BrickColor=BrickColor.New"Really red"
- wait(.3)
- script.Parent.BrickColor=BrickColor.New"Lime green"
- end
- script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
- function() -- This script goes into a ClickDetector within a part.
- local function onMouseClick(Player)
- if not Player.PlayerGui:findFirstChild("ClickAudio") then
- local ls = Instance.new("Sound")
- local length = 1 -- How long the sound plays before removed.
- ls.SoundId = "http://www.roblox.com/asset/?id=133024926" -- Audio id here.
- ls.Name = "ClickAudio"
- ls.Volume = 0.5
- ls.Pitch = .6
- ls.Parent = Player.PlayerGui
- ls:Play()
- game:GetService("Debris"):AddItem(ls, length)
- end
- end
- script.Parent.MouseClick:connect(onMouseClick)
- end;
- function() function onClicked(playerWhoClicked)
- script.Parent.BrickColor=BrickColor.New"Really red"
- wait(.3)
- script.Parent.BrickColor=BrickColor.New"Lime green"
- end
- script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
- function() function onClicked(playerWhoClicked)
- script.Parent.BrickColor=BrickColor.New"Really red"
- wait(2)
- script.Parent.BrickColor=BrickColor.New"Lime green"
- end
- script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
- function() -- This script goes into a ClickDetector within a part.
- local function onMouseClick(Player)
- if not Player.PlayerGui:findFirstChild("ClickAudio") then
- local ls = Instance.new("Sound")
- local length = 1 -- How long the sound plays before removed.
- ls.SoundId = "http://www.roblox.com/asset/?id=133024926" -- Audio id here.
- ls.Name = "ClickAudio"
- ls.Volume = 0.5
- ls.Pitch = 0.4
- ls.Parent = Player.PlayerGui
- ls:Play()
- game:GetService("Debris"):AddItem(ls, length)
- end
- end
- script.Parent.MouseClick:connect(onMouseClick)
- end;
- function() -- This script goes into a ClickDetector within a part.
- local function onMouseClick(Player)
- if not Player.PlayerGui:findFirstChild("ClickAudio") then
- local ls = Instance.new("Sound")
- local length = 1 -- How long the sound plays before removed.
- ls.SoundId = "http://www.roblox.com/asset/?id=133024926" -- Audio id here.
- ls.Name = "ClickAudio"
- ls.Volume = 0.5
- ls.Pitch = .7
- ls.Parent = Player.PlayerGui
- ls:Play()
- game:GetService("Debris"):AddItem(ls, length)
- end
- end
- script.Parent.MouseClick:connect(onMouseClick)
- end;
- function() function onClicked(playerWhoClicked)
- script.Parent.BrickColor=BrickColor.New"Really red"
- wait(0.1)
- script.Parent.BrickColor=BrickColor.New"Lime green"
- end
- script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
- function() -- This script goes into a ClickDetector within a part.
- local function onMouseClick(Player)
- if not Player.PlayerGui:findFirstChild("ClickAudio") then
- local ls = Instance.new("Sound")
- local length = 1 -- How long the sound plays before removed.
- ls.SoundId = "http://www.roblox.com/asset/?id=133024926" -- Audio id here.
- ls.Name = "ClickAudio"
- ls.Volume = 0.5
- ls.Pitch = .7
- ls.Parent = Player.PlayerGui
- ls:Play()
- game:GetService("Debris"):AddItem(ls, length)
- end
- end
- script.Parent.MouseClick:connect(onMouseClick)
- end;
- function() function onClicked(playerWhoClicked)
- script.Parent.BrickColor=BrickColor.New"Really red"
- wait(0.1)
- script.Parent.BrickColor=BrickColor.New"Lime green"
- end
- script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
- function() -- This script goes into a ClickDetector within a part.
- local function onMouseClick(Player)
- if not Player.PlayerGui:findFirstChild("ClickAudio") then
- local ls = Instance.new("Sound")
- local length = 1 -- How long the sound plays before removed.
- ls.SoundId = "http://www.roblox.com/asset/?id=133024926" -- Audio id here.
- ls.Name = "ClickAudio"
- ls.Volume = 0.5
- ls.Pitch = .7
- ls.Parent = Player.PlayerGui
- ls:Play()
- game:GetService("Debris"):AddItem(ls, length)
- end
- end
- script.Parent.MouseClick:connect(onMouseClick)
- end;
- function() function onClicked(playerWhoClicked)
- script.Parent.BrickColor=BrickColor.New"Really red"
- wait(0.1)
- script.Parent.BrickColor=BrickColor.New"Lime green"
- end
- script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
- function() -- This script goes into a ClickDetector within a part.
- local function onMouseClick(Player)
- if not Player.PlayerGui:findFirstChild("ClickAudio") then
- local ls = Instance.new("Sound")
- local length = 1 -- How long the sound plays before removed.
- ls.SoundId = "http://www.roblox.com/asset/?id=133024926" -- Audio id here.
- ls.Name = "ClickAudio"
- ls.Volume = 0.5
- ls.Pitch = .7
- ls.Parent = Player.PlayerGui
- ls:Play()
- game:GetService("Debris"):AddItem(ls, length)
- end
- end
- script.Parent.MouseClick:connect(onMouseClick)
- end;
- function() function onClicked(playerWhoClicked)
- script.Parent.BrickColor=BrickColor.New"Really red"
- wait(0.1)
- script.Parent.BrickColor=BrickColor.New"Lime green"
- end
- script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
- function() -- This script goes into a ClickDetector within a part.
- local function onMouseClick(Player)
- if not Player.PlayerGui:findFirstChild("ClickAudio") then
- local ls = Instance.new("Sound")
- local length = 1 -- How long the sound plays before removed.
- ls.SoundId = "http://www.roblox.com/asset/?id=133024926" -- Audio id here.
- ls.Name = "ClickAudio"
- ls.Volume = 0.5
- ls.Pitch = .7
- ls.Parent = Player.PlayerGui
- ls:Play()
- game:GetService("Debris"):AddItem(ls, length)
- end
- end
- script.Parent.MouseClick:connect(onMouseClick)
- end;
- function() function onClicked(playerWhoClicked)
- script.Parent.BrickColor=BrickColor.New"Really red"
- wait(0.1)
- script.Parent.BrickColor=BrickColor.New"Lime green"
- end
- script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
- function() -- This script goes into a ClickDetector within a part.
- local function onMouseClick(Player)
- if not Player.PlayerGui:findFirstChild("ClickAudio") then
- local ls = Instance.new("Sound")
- local length = 1 -- How long the sound plays before removed.
- ls.SoundId = "http://www.roblox.com/asset/?id=133024926" -- Audio id here.
- ls.Name = "ClickAudio"
- ls.Volume = 0.5
- ls.Pitch = .7
- ls.Parent = Player.PlayerGui
- ls:Play()
- game:GetService("Debris"):AddItem(ls, length)
- end
- end
- script.Parent.MouseClick:connect(onMouseClick)
- end;
- function() function onClicked(playerWhoClicked)
- script.Parent.BrickColor=BrickColor.New"Really red"
- wait(0.1)
- script.Parent.BrickColor=BrickColor.New"Lime green"
- end
- script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
- function() -- This script goes into a ClickDetector within a part.
- local function onMouseClick(Player)
- if not Player.PlayerGui:findFirstChild("ClickAudio") then
- local ls = Instance.new("Sound")
- local length = 1 -- How long the sound plays before removed.
- ls.SoundId = "http://www.roblox.com/asset/?id=133024926" -- Audio id here.
- ls.Name = "ClickAudio"
- ls.Volume = 0.5
- ls.Pitch = .7
- ls.Parent = Player.PlayerGui
- ls:Play()
- game:GetService("Debris"):AddItem(ls, length)
- end
- end
- script.Parent.MouseClick:connect(onMouseClick)
- end;
- function() function onClicked(playerWhoClicked)
- script.Parent.BrickColor=BrickColor.New"Really red"
- wait(0.1)
- script.Parent.BrickColor=BrickColor.New"Lime green"
- end
- script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
- function() -- This script goes into a ClickDetector within a part.
- local function onMouseClick(Player)
- if not Player.PlayerGui:findFirstChild("ClickAudio") then
- local ls = Instance.new("Sound")
- local length = 1 -- How long the sound plays before removed.
- ls.SoundId = "http://www.roblox.com/asset/?id=133024926" -- Audio id here.
- ls.Name = "ClickAudio"
- ls.Volume = 0.5
- ls.Pitch = .7
- ls.Parent = Player.PlayerGui
- ls:Play()
- game:GetService("Debris"):AddItem(ls, length)
- end
- end
- script.Parent.MouseClick:connect(onMouseClick)
- end;
- function() function onClicked(playerWhoClicked)
- script.Parent.BrickColor=BrickColor.New"Really red"
- wait(0.1)
- script.Parent.BrickColor=BrickColor.New"Lime green"
- end
- script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
- function() -- This script goes into a ClickDetector within a part.
- local function onMouseClick(Player)
- if not Player.PlayerGui:findFirstChild("ClickAudio") then
- local ls = Instance.new("Sound")
- local length = 1 -- How long the sound plays before removed.
- ls.SoundId = "http://www.roblox.com/asset/?id=133024926" -- Audio id here.
- ls.Name = "ClickAudio"
- ls.Volume = 0.5
- ls.Pitch = .7
- ls.Parent = Player.PlayerGui
- ls:Play()
- game:GetService("Debris"):AddItem(ls, length)
- end
- end
- script.Parent.MouseClick:connect(onMouseClick)
- end;
- function() function onClicked(playerWhoClicked)
- script.Parent.BrickColor=BrickColor.New"Really red"
- wait(0.1)
- script.Parent.BrickColor=BrickColor.New"Lime green"
- end
- script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
- function() --declarations
- sp = script.Parent
- local cover = sp.Cover
- local covergui = sp.CoverGui
- local maingui = sp.MainGui
- local click = cover.ClickDetector
- local handle = sp.Storage.Handle
- local tool = sp.Storage.Cup
- local repair = sp.Repair.TextButton
- local repairtwo = true
- local ready = true
- --functions--
- function coverdown()
- covergui.TextLabel:TweenPosition(UDim2.new(0, 0, 1.36, 0), "Out", "Sine", 1, true)
- end
- function coverup()
- covergui.TextLabel:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 1, true)
- end
- function menuappear()
- for _,v in pairs(maingui:GetChildren()) do
- if v:IsA("TextButton") then
- v.Visible = true
- end
- end
- end
- function menudisappear()
- for _,v in pairs(maingui:GetChildren()) do
- if v:IsA("TextButton") then
- v.Visible = false
- end
- end
- end
- function disappearall()
- for _,v in pairs(maingui:GetChildren()) do
- if v:IsA("Frame") then
- for _,a in pairs(v:GetChildren()) do
- if a:IsA("TextButton") then
- a.Visible = false
- end
- end
- end
- end
- end
- --function of all111
- click.MouseClick:connect(function(player)
- if ready == true then
- ready = false
- click.MaxActivationDistance = 0
- coverdown()
- menuappear()
- local newtool = tool:clone()
- local newhandle = handle:clone()
- newtool.Parent = sp.Temporary
- newhandle.Parent = sp.Temporary
- newhandle.CFrame = CFrame.new(Vector3.new(newhandle.Position.X, newhandle.Position.Y+1,newhandle.Position.Z))
- for _,one in pairs(maingui:GetChildren()) do
- if one:IsA("TextButton") then
- one.MouseButton1Down:connect(function()
- menudisappear()
- newtool.Name = one.Name
- for _,frame in pairs(maingui:GetChildren()) do
- if frame:IsA("Frame") and frame.Name == one.Name then --lol this whole part though
- for _,button in pairs(frame:GetChildren()) do
- if button:IsA("TextButton") then
- button.Visible = true
- button.MouseButton1Down:connect(function()
- newtool.ToolTip = button.Name
- newhandle.Parent = newtool
- newhandle.Anchored = false
- newtool.Cup.Disabled = false
- newtool.Parent = player.Backpack
- coverup()
- for _,v in pairs(button.Parent:GetChildren()) do
- if v:IsA("TextButton") then
- v.Visible = false
- end
- end
- click.MaxActivationDistance = 10
- wait(5)
- ready = true
- script.Fixer.Disabled = false
- end)
- end
- end
- end
- end
- end)
- end
- end
- end
- end)
- --Function of the repair button
- repair.MouseButton1Down:connect(function()
- if repairtwo == true then
- repairtwo = false
- local ff = Instance.new ("ForceField")
- ff.Parent = sp
- sp.Temporary:ClearAllChildren()
- menudisappear()
- disappearall()
- click.MaxActivationDistance = 10
- coverup()
- wait(1)
- ready = true
- ff:Destroy()
- for _,force in pairs(sp:GetChildren()) do
- if force:IsA("ForceField") then
- force:Destroy()
- end
- end
- script.Fixer.Disabled = true
- wait(5)
- repairtwo = true
- end
- end) end;
- function() script.Parent.Disabled = true
- wait(0.1)
- script.Parent.Disabled = false
- script.Disabled = true end;
- function() local Tool = script.Parent
- local Handle = Tool:FindFirstChild("Handle")
- local Equipped = false
- local Player = game.Players.LocalPlayer
- repeat wait() until Player.Character wait()
- local Character = Player.Character
- repeat wait() until Character:FindFirstChild("Humanoid") wait()
- local Humanoid = Character:FindFirstChild("Humanoid")
- local Head = Character:FindFirstChild("Head")
- local Torso = Character:FindFirstChild("Torso")
- local rArm = Character:FindFirstChild("Right Arm")
- local rShoulder = Torso:FindFirstChild("Right Shoulder")
- local Neck = Torso:FindFirstChild("Neck")
- local Weld, Current
- local NeckOriginal = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
- local ArmOriginal = CFrame.new(-1.4, 0.4, -1) * CFrame.fromEulerAnglesXYZ(math.rad(-90), 0, 0)
- local ArmDrink = CFrame.new(0, -0.5, -1.3) * CFrame.fromEulerAnglesXYZ(math.rad(-130), math.rad(-20), math.rad(-60))
- local Mem = {
- NeckCF = CFrame.new(0,0,0);
- }
- function Lerp(A, B, C)
- return A + (B - A) * C
- end
- function Serp(A, B, C)
- local D = A:Dot(B)
- if D > 0.99999 or D < -0.99999 then
- return C <= 0.5 and A or B
- else
- local R = math.acos(D)
- return (A * math.sin((1 - C) * R) + B * math.sin(C * R))/math.sin(R)
- end
- end
- function Merp(A, B, C)
- local AX, AY, AZ, A00, A01, A02, A10, A11, A12, A20, A21, A22 = A:components()
- local BX, BY, BZ, B00, B01, B02, B10, B11, B12, B20, B21, B22 = B:components()
- local V0 = Lerp(Vector3.new(AX, AY, AZ), Vector3.new(BX, BY, BZ), C)
- local V1 = Serp(Vector3.new(A00, A01, A02), Vector3.new(B00, B01, B02), C)
- local V2 = Serp(Vector3.new(A10, A11, A12), Vector3.new(B10, B11, B12), C)
- local V3 = Serp(Vector3.new(A20, A21, A22), Vector3.new(B20, B21, B22), C)
- return CFrame.new(V0.X, V0.Y, V0.Z, V1.X, V1.Y, V1.Z, V2.X, V2.Y, V2.Z, V3.X, V3.Y, V3.Z)
- end
- function Pitch(lookVector)
- return math.atan(lookVector.Y/math.sqrt(lookVector.X^2 + lookVector.Z^2))
- end
- function Run(F, ...)
- local A
- setfenv(F, setmetatable({wait = function(X)
- delay(X, function()
- if Current == A then
- coroutine.resume(A)
- end
- end)
- coroutine.yield()
- end},
- {__index = getfenv(0)}))
- A = coroutine.create(F)
- Current = A
- coroutine.resume(Current, ...)
- end;
- function Update(Mouse)
- local PitchMax = 0.1
- local YawMax = 0.2
- local NeckPitch = -Pitch(Mouse.Hit.lookVector)
- local NeckYaw = (Head.CFrame.p - Mouse.Hit.p).Unit:Cross(Torso.CFrame.lookVector).Y
- NeckPitch = NeckPitch/5
- NeckYaw = NeckYaw/5
- if NeckPitch > PitchMax then
- NeckPitch = PitchMax
- end
- if NeckPitch < -PitchMax then
- NeckPitch = -PitchMax
- end
- if NeckYaw > YawMax then
- NeckYaw = YawMax
- end
- if NeckYaw < -YawMax then
- NeckYaw = -YawMax
- end
- local NeckCF = NeckOriginal * CFrame.Angles(NeckPitch, 0, NeckYaw)
- Neck.C0 = Merp(Mem.NeckCF, NeckCF, 0.5)
- Mem.NeckCF = NeckCF
- end
- function Drink(Toggle)
- if Toggle then
- local Start = Weld.C1
- for i = 0, 1, 0.1 do
- Weld.C1 = Merp(Start, ArmDrink, i)
- wait()
- end
- if Handle:FindFirstChild("Drink") then
- if Handle.Drink.IsPlaying then
- Handle.Drink:Stop()
- end
- Handle.Drink:Play()
- end
- else
- if Handle:FindFirstChild("Drink") then
- if Handle.Drink.IsPlaying then
- Handle.Drink:Stop()
- end
- end
- local Start = Weld.C1
- for i = 0, 1, 0.1 do
- Weld.C1 = Merp(Start, ArmOriginal, i)
- wait()
- end
- end
- end
- Tool.Equipped:connect(function(Mouse)
- Equipped = true
- wait(0.1)
- rShoulder.Part1 = nil
- Weld = Instance.new("Weld", Head)
- Weld.Part0 = Head
- Weld.Part1 = rArm
- Weld.C1 = ArmOriginal
- wait(0.1)
- Mouse.Button1Down:connect(function()
- Run(Drink, true)
- end)
- Mouse.Button1Up:connect(function()
- Run(Drink, false)
- end)
- while Equipped do
- Update(Mouse)
- wait()
- end
- rShoulder.Part1 = Player.Character:FindFirstChild("Right Arm")
- Weld:Destroy()
- Neck.C0 = NeckOriginal
- end)
- Tool.Unequipped:connect(function(Mouse)
- Equipped = false
- end) end;
- function() --[[
- INSTRUCTIONS: Place both teleporter1a and teleporter1b in the same directory
- (e.g. both in workspace directly, or both directly in the same group or model)
- Otherwise it wont work. Once youve done that, jump on the teleporter to teleport to the other.
- If you want more than one set of teleporters I will be adding more types in the future.
- Send me requests and ideas - miked.
- --]]
- --Enter the name of the model you want to go to here.
- ------------------------------------
- modelname="teleporter12d"
- ------------------------------------
- function onTouched(part)
- if part.Parent ~= nil then
- local h = part.Parent:findFirstChild("Humanoid")
- if h~=nil then
- local teleportfrom=script.Parent.Enabled.Value
- if teleportfrom~=0 then
- if h==humanoid then
- return
- end
- local teleportto=script.Parent.Parent:findFirstChild(modelname)
- if teleportto~=nil then
- local torso = h.Parent.Torso
- local location = {teleportto.Position}
- local i = 1
- local x = location[i].x
- local y = location[i].y
- local z = location[i].z
- x = x + math.random(-1, 1)
- z = z + math.random(-1, 1)
- y = y + math.random(2, 3)
- local cf = torso.CFrame
- local lx = 0
- local ly = y
- local lz = 0
- script.Parent.Enabled.Value=0
- teleportto.Enabled.Value=0
- torso.CFrame = CFrame.new(Vector3.new(x,y,z), Vector3.new(lx,ly,lz))
- wait(3)
- script.Parent.Enabled.Value=1
- teleportto.Enabled.Value=1
- else
- print("Could not find teleporter!")
- end
- end
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() model = script.Parent.Parent.Parent
- backup = model:clone()
- local debounce = false
- function onTouch(part)
- if (part.Name == "Safe") and (debounce == false) and (script.Parent.Count.Value == 0) then
- debounce = true
- wait(2)
- model = backup:clone()
- model.Parent = game.Workspace
- model:makeJoints()
- script.Parent.Count.Value = 1
- debounce = false
- end
- end
- script.Parent.Touched:connect(onTouch) end;
- function() --[[
- INSTRUCTIONS: Place both teleporter1a and teleporter1b in the same directory
- (e.g. both in workspace directly, or both directly in the same group or model)
- Otherwise it wont work. Once youve done that, jump on the teleporter to teleport to the other.
- If you want more than one set of teleporters I will be adding more types in the future.
- Send me requests and ideas - miked.
- --]]
- --Enter the name of the model you want to go to here.
- ------------------------------------
- modelname="teleporter12c"
- ------------------------------------
- function onTouched(part)
- if part.Parent ~= nil then
- local h = part.Parent:findFirstChild("Humanoid")
- if h~=nil then
- local teleportfrom=script.Parent.Enabled.Value
- if teleportfrom~=0 then
- if h==humanoid then
- return
- end
- local teleportto=script.Parent.Parent:findFirstChild(modelname)
- if teleportto~=nil then
- local torso = h.Parent.Torso
- local location = {teleportto.Position}
- local i = 1
- local x = location[i].x
- local y = location[i].y
- local z = location[i].z
- x = x + math.random(-1, 1)
- z = z + math.random(-1, 1)
- y = y + math.random(2, 3)
- local cf = torso.CFrame
- local lx = 0
- local ly = y
- local lz = 0
- script.Parent.Enabled.Value=0
- teleportto.Enabled.Value=0
- torso.CFrame = CFrame.new(Vector3.new(x,y,z), Vector3.new(lx,ly,lz))
- wait(3)
- script.Parent.Enabled.Value=1
- teleportto.Enabled.Value=1
- else
- print("Could not find teleporter!")
- end
- end
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() function onTouched(hit)
- if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent:findFirstChild("Arm1") == nil then
- local g = script.Parent.Parent.Arm1:clone()
- g.Parent = hit.Parent
- local C = g:GetChildren()
- for i=1, #C do
- if C[i].className == "Part" then
- local W = Instance.new("Weld")
- W.Part0 = g.Middle
- W.Part1 = C[i]
- local CJ = CFrame.new(g.Middle.Position)
- local C0 = g.Middle.CFrame:inverse()*CJ
- local C1 = C[i].CFrame:inverse()*CJ
- W.C0 = C0
- W.C1 = C1
- W.Parent = g.Middle
- end
- local Y = Instance.new("Weld")
- Y.Part0 = hit.Parent["Left Arm"]
- Y.Part1 = g.Middle
- Y.C0 = CFrame.new(0, 0, 0)
- Y.Parent = Y.Part0
- end
- local h = g:GetChildren()
- for i = 1, # h do
- if h[i].className == "Part" then
- h[i].Anchored = false
- h[i].CanCollide = false
- end
- end
- end
- end
- script.Parent.Touched:connect(onTouched) end;
- function() function onTouched(hit)
- if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent:findFirstChild("Leg1") == nil then
- local g = script.Parent.Parent.Leg1:clone()
- g.Parent = hit.Parent
- local C = g:GetChildren()
- for i=1, #C do
- if C[i].className == "Part" then
- local W = Instance.new("Weld")
- W.Part0 = g.Middle
- W.Part1 = C[i]
- local CJ = CFrame.new(g.Middle.Position)
- local C0 = g.Middle.CFrame:inverse()*CJ
- local C1 = C[i].CFrame:inverse()*CJ
- W.C0 = C0
- W.C1 = C1
- W.Parent = g.Middle
- end
- local Y = Instance.new("Weld")
- Y.Part0 = hit.Parent["Left Leg"]
- Y.Part1 = g.Middle
- Y.C0 = CFrame.new(0, 0, 0)
- Y.Parent = Y.Part0
- end
- local h = g:GetChildren()
- for i = 1, # h do
- if h[i].className == "Part" then
- h[i].Anchored = false
- h[i].CanCollide = false
- end
- end
- end
- end
- script.Parent.Touched:connect(onTouched) end;
- function() function onTouched(hit)
- local d = hit.Parent:GetChildren()
- for i=1, #d do
- if (d[i].className == "Hat") then
- d[i]:remove()
- end
- end
- end
- script.Parent.Touched:connect(onTouched) end;
- function() function onTouch(part)
- local human = part.Parent:findFirstChild("Humanoid")
- if human ~= nil then
- part.Parent:findFirstChild("Head").Transparency = 0.98
- part.Parent:findFirstChild("Torso").Transparency = 1
- part.Parent:findFirstChild("Left Arm").Transparency = 1
- part.Parent:findFirstChild("Right Arm").Transparency = 1
- part.Parent:findFirstChild("Left Leg").Transparency = 1
- part.Parent:findFirstChild("Right Leg").Transparency = 1
- end
- end
- script.Parent.Touched:connect(onTouch)
- --COLORS
- --1 = white
- --208 = Light stone grey
- --194 = Medium stone grey
- --199 = Dark stone grey
- --26 = Black
- --21 = Bright red
- --24 = Bright yellow
- --226 = Cool yellow
- --23 = Bright blue
- --107 = Bright bluish green
- --102 = Medium blue
- --11 = Pastel blue
- --45 = Light blue
- --135 = Sand blue
- --106 = Bright orange
- --105 = Br. yellowish orange
- --141 = Earth green
- --28 = Dark green
- --37 = Bright green
- --119 = Br. yellowish green
- --29 = Medium green
- --151 = Sand green
- --38 = Dark orange
- --192 = Reddish brown
- --104 = Bright violet
- --9 = Light reddish violet
- --101 = Medium red
- --5 = Brick Yellow
- --153 = Sand red
- --217 = Brown
- --18 = Nougat
- --125 = Light orange
- end;
- function() local debounce = false
- function onTouch(part)
- local human = part.Parent:findFirstChild("Humanoid")
- if (human ~= nil) and debounce == false then
- debounce = true
- human.WalkSpeed = 16-- or whatever number
- wait(2)
- debounce = false
- end
- end
- script.Parent.Touched:connect(onTouch)
- end;
- function() function onTouched(hit)
- if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent:findFirstChild("Leg2") == nil then
- local g = script.Parent.Parent.Leg2:clone()
- g.Parent = hit.Parent
- local C = g:GetChildren()
- for i=1, #C do
- if C[i].className == "Part" then
- local W = Instance.new("Weld")
- W.Part0 = g.Middle
- W.Part1 = C[i]
- local CJ = CFrame.new(g.Middle.Position)
- local C0 = g.Middle.CFrame:inverse()*CJ
- local C1 = C[i].CFrame:inverse()*CJ
- W.C0 = C0
- W.C1 = C1
- W.Parent = g.Middle
- end
- local Y = Instance.new("Weld")
- Y.Part0 = hit.Parent["Right Leg"]
- Y.Part1 = g.Middle
- Y.C0 = CFrame.new(0, 0, 0)
- Y.Parent = Y.Part0
- end
- local h = g:GetChildren()
- for i = 1, # h do
- if h[i].className == "Part" then
- h[i].Anchored = false
- h[i].CanCollide = false
- end
- end
- end
- end
- script.Parent.Touched:connect(onTouched) end;
- function() function onTouched(hit)
- if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent:findFirstChild("Arm2") == nil then
- local g = script.Parent.Parent.Arm2:clone()
- g.Parent = hit.Parent
- local C = g:GetChildren()
- for i=1, #C do
- if C[i].className == "Part" then
- local W = Instance.new("Weld")
- W.Part0 = g.Middle
- W.Part1 = C[i]
- local CJ = CFrame.new(g.Middle.Position)
- local C0 = g.Middle.CFrame:inverse()*CJ
- local C1 = C[i].CFrame:inverse()*CJ
- W.C0 = C0
- W.C1 = C1
- W.Parent = g.Middle
- end
- local Y = Instance.new("Weld")
- Y.Part0 = hit.Parent["Right Arm"]
- Y.Part1 = g.Middle
- Y.C0 = CFrame.new(0, 0, 0)
- Y.Parent = Y.Part0
- end
- local h = g:GetChildren()
- for i = 1, # h do
- if h[i].className == "Part" then
- h[i].Anchored = false
- h[i].CanCollide = false
- end
- end
- end
- end
- script.Parent.Touched:connect(onTouched) end;
- function() function onTouched(hit)
- if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent:findFirstChild("Chest") == nil then
- local g = script.Parent.Parent.Chest:clone()
- g.Parent = hit.Parent
- local C = g:GetChildren()
- for i=1, #C do
- if C[i].className == "Part" then
- local W = Instance.new("Weld")
- W.Part0 = g.Middle
- W.Part1 = C[i]
- local CJ = CFrame.new(g.Middle.Position)
- local C0 = g.Middle.CFrame:inverse()*CJ
- local C1 = C[i].CFrame:inverse()*CJ
- W.C0 = C0
- W.C1 = C1
- W.Parent = g.Middle
- end
- local Y = Instance.new("Weld")
- Y.Part0 = hit.Parent.Torso
- Y.Part1 = g.Middle
- Y.C0 = CFrame.new(0, 0, 0)
- Y.Parent = Y.Part0
- end
- local h = g:GetChildren()
- for i = 1, # h do
- if h[i].className == "Part" then
- h[i].Anchored = false
- h[i].CanCollide = false
- end
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() function ChangeFace(hit)
- if hit.Parent:FindFirstChild("Humanoid") ~= nil then
- hit.Parent.Head.face.Texture = script.Parent.Decal.Texture
- hit.Parent.Head.Mesh.Scale = Vector3.new(0.5, 1, 1)
- hit.Parent.Head.Mesh.MeshType = "Brick"
- end
- end
- script.Parent.Touched:connect(ChangeFace) end;}local ActualScripts = {}
- function s(var)
- local func = table.remove(Scripts,1)
- setfenv(func,setmetatable({script=var,require=fake_require or require,global=genv},{
- __index = getfenv(func),
- }))
- table.insert(ActualScripts,coroutine.wrap(func))
- end
- local Part_Classes = {"Part","WedgePart","CornerWedgePart"}
- local Part_Shapes = {"Brick","Cylinder","Sphere","Torso","Wedge"}
- function DecodeUnion(t)
- local r = function()return table.remove(t,1) end
- local split = function(str,sep)
- local fields = {}
- str:gsub(("([^%s]+)"):format(sep or ','),function(c)fields[#fields+1]=c end)
- return fields
- end
- local m = Instance.new("Folder")
- m.Name = "UnionCache ["..tostring(math.random(1,9999)).."]"
- m.Archivable = false
- m.Parent = game:GetService("ServerStorage")
- local Union,Subtract = {},{}
- repeat
- local isNegate = false
- local class = r()
- if class=='-' then
- isNegate = true
- class = r()
- end
- if class=='n' then
- local d = {}
- local a = r()
- repeat
- table.insert(d,a)
- a = r()
- until a=='p'
- local u = DecodeUnion(d)
- if u then
- table.insert(isNegate and Subtract or Union,u)
- end
- else
- local size,pos,rot = Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r())))
- local part = Instance.new(Part_Classes[tonumber(class)])
- part.Size = size
- part.Position = pos
- part.Orientation = rot
- if r()=="+" then
- local m,ms,of = r(),Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r())))
- if tonumber(m)==6 then
- part.Shape = Enum.PartType.Cylinder
- elseif tonumber(m)==7 then
- part.Shape = Enum.PartType.Ball
- else
- local mesh = Instance.new(tonumber(m)==8 and "CylinderMesh" or "SpecialMesh")
- if tonumber(m)~=8 then
- mesh.MeshType = Enum.MeshType[Part_Shapes[tonumber(m)]]
- end
- mesh.Scale = ms
- mesh.Offset = of
- mesh.Parent = part
- end
- end
- table.insert(isNegate and Subtract or Union,part)
- end
- until #t<=0
- local first = Union[1]
- first.Parent = m
- if #Union>1 then
- first = first:UnionAsync(Union)
- first.Parent = m
- end
- if #Subtract>0 then
- first = first:SubtractAsync(Subtract)
- first.Parent = m
- end
- first.Parent = nil
- m:Destroy()
- return first
- end
- Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
- local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
- function(t,f)
- for a,b in pairs(t) do
- f(a,b)
- end
- end
- local Types = {
- Color3 = Color3.new,
- Vector3 = Vector3.new,
- Vector2 = Vector2.new,
- UDim = UDim.new,
- UDim2 = UDim2.new,
- CFrame = CFrame.new,
- Rect = Rect.new,
- NumberRange = NumberRange.new,
- BrickColor = BrickColor.new,
- PhysicalProperties = PhysicalProperties.new,
- NumberSequence = function(...)
- local a = {...}
- local t = {}
- repeat
- t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
- until #a==0
- return NumberSequence.new(t)
- end,
- ColorSequence = function(...)
- local a = {...}
- local t = {}
- repeat
- t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
- until #a==0
- return ColorSequence.new(t)
- end,
- number = tonumber,
- boolean = function(a)
- return a=="1"
- end
- }
- split = function(str,sep)
- if not str then return end
- local fields = {}
- local ConcatNext = false
- str:gsub(("([^%s]+)"):format(sep),function(c)
- if ConcatNext == true then
- fields[#fields] = fields[#fields]..sep..c
- ConcatNext = false
- else
- fields[#fields+1] = c
- end
- if c:sub(#c)=="\\" then
- c = fields[#fields]
- fields[#fields] = c:sub(1,#c-1)
- ConcatNext = true
- end
- end)
- return fields
- end
- RemoveAndSplit = function(t)
- return split(table_remove(t,1),comma)
- end
- t = split(str,";")
- props = RemoveAndSplit(t)
- classes = RemoveAndSplit(t)
- values = split(table_remove(t,1),'|')
- ICList = RemoveAndSplit(t)
- InstanceList = {}
- Model = inst"Model"
- CurPar = Model
- table_foreach(t,function(ct,c)
- if c=="n" or c=="p" then
- CurPar = c=="n" and LastIns or CurPar[parnt]
- else
- ct = split(c,"|")
- local class = classes[tonum(table_remove(ct,1))]
- if class=="UnionOperation" then
- LastIns = {UsePartColor="1"}
- else
- LastIns = inst(class)
- if LastIns:IsA"Script" then
- s(LastIns)
- elseif LastIns:IsA("ModuleScript") then
- ms(LastIns)
- end
- end
- local function SetProperty(LastIns,p,str,s)
- s = Types[typeof(LastIns[p])]
- if p=="CustomPhysicalProperties" then
- s = PhysicalProperties.new
- end
- if s then
- LastIns[p] = s(unpack(split(str,comma)))
- else
- LastIns[p] = str
- end
- end
- local UnionData
- table_foreach(ct,function(s,p,a,str)
- a = p:find":"
- p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
- if p=="UnionData" then
- UnionData = split(str," ")
- return
- end
- if class=="UnionOperation" then
- LastIns[p] = str
- return
- end
- SetProperty(LastIns,p,str)
- end)
- if UnionData then
- local LI_Data = LastIns
- LastIns = DecodeUnion(UnionData)
- table_foreach(LI_Data,function(p,str)
- SetProperty(LastIns,p,str)
- end)
- end
- table.insert(InstanceList,LastIns)
- LastIns[parnt] = CurPar
- end
- end)
- table_remove(ICList,1)
- table_foreach(ICList,function(a,b)
- b = split(b,">")
- InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
- end)
- return Model:GetChildren()
- end
- local Objects = Decode('Name,Anchored,Color,Material,Reflectance,BackSurface,BottomSurface,FrontSurface,LeftSurface,RightSurface,TopSurface,UnionData,UsePartColor,Position,Orientation,Size,Scale,Transparency,CanCollide,MeshId,TextureId,MeshType,Face,Adornee,BackgroundColor3,BackgroundTransparency,Visible,ZIndex,Font,Text,TextColor3,TextScaled,TextSize,TextStrokeColor3,TextStrokeTransparency,TextWrapped,Image,BorderColor3,TextYAlignment,MaxActivationDistance,Grip,GripPos,GripForward,GripRight,Style,C0,C1,Part0,Part1,Enabled,Heat,SecondaryColor,Texture,BaseAngle,Shape,Range,Brightness,SparkleColor,VertexColor,Value,MaxForce,MaxTorque,Offset,Health,MaxHealth;Part,Model,UnionOperation,BlockMesh,SpecialMesh,SurfaceGui,TextButton,ImageLabel,Frame,TextLabel,ClickDetector,Script,Tool,LocalScript,TextBox,WedgePart,Seat,Weld,Fire,Snap,Decal,CylinderMesh,PointLight,ManualWeld,RotateP,Sparkles,IntValue,BodyPosition,BodyGyro,SpawnLocation,VelocityMotor,Humanoid;Part|DrinkMachine|1|0.3882,0.3725,0.3843|272|0.2|10|- 1 0.4,2,1.7199 -17.5026,10.03,45.1985 0,-92.0501,180 = n - 1 1.7,2,2 -17.5742,10'
- ..'.03,47.1972 0,-92.0501,180 = 1 2,2,2 -17.5616,10.03,46.8474 0,-92.0501,180 + 8 1,1,1 0,0,0 p|- 1 1.7,1,2 -17.5473,11.53,46.4477 0,-92.0501,180 = 1 2,1,2 -17.5348,11.53,46.0979 0,-92.0501,180 + 8 1,1,1 0,0,0|0.6313,0.7686,0.549|-17.5085,10.03,45.3984|0,-92.0501,180|0.2,2,0.5|0.5,1,1|0.9725,0.9725,0.9725|- 1 0.2,0.2,0.2 -17.9095,10.93,46.0845 0,-92.0501,180 + 8 0.3,1,0.3 0,0,0 1 0.2,0.2,0.2 -17.9095,10.93,46.0845 0,-92.0501,180 + 8 0.5,1,0.5 0,0,0|0.949,0.9529,0.9529|- 1 1,0.2,0.6499 -17.7596,10.03,46.0899 0,-92.0501,180 + 1 1,0.1,1 0,0,0 1 1,0.2,1 -17.4348,10.03,46.1015 0,-92.0501,180 + 8 1,0.1,1 0,0,0|0.1058,0.1647,0.2078|0.3|1 0.2,0.2,0.2 -17.8223,10.8305,46.1376 -85,87.9499,0 + 8 0.5,0.1,0.5 0,0,0 1 0.2,0.2,0.2 -17.8205,10.8305,46.0877 -5,-92.0501,180 + 1 0.5,0.5,0.1 0,0,0 1 0.2,0.2,0.2 -17.8187,10.8305,46.0377 -85,87.9499,0 + 8 0.5,0.1,0.5 0,0,0 1 0.2,0.2,0.2 -17.8118,10.9301,46.088 -5,-92.0501,180 + 1 1,1,0.1 0,0,0|Torso|- 1 0.5,0.2,0.5 -17.9095,10.03,46.0845 0,-92.0501,180 + 8 1,1,1 0,0,0 n 1 1,0.2,0.9499 -17.9095,10.03,46.0845 0,-92.0501,180 + 1 1,0.1'
- ..',1 0,0,0 p|-16.7753,10.03,46.1251|1,2,0.2|0.898,0.8941,0.8745|- 1 1,2,1 -17.4348,10.03,46.1015 0,-92.0501,180 + 8 1,1,1 0,0,0 1 1,2,0.55 -17.16,10.03,46.1113 0,-92.0501,180 =|Screen|-18.2993,11.53,46.0705|0,-92.0501,0|2,2,0.2|0|-17.5348,11.53,46.0979|1,1,1.72|- 1 1.7,0.5,2 -17.5222,6.7601,45.7481 0,87.9499,180 = 1 2,0.5,2 -17.5348,6.7601,46.0979 0,87.9499,180 + 8 1,1,1 0,0,0|-17.9195,8.5301,46.0841|0.5,0.8,0.5|1.1,1.1,1.1|rbxassetid://15929962|rbxassetid://134178214|5|Temporary|- 1 0.5,1,0.5 -17.9095,8.6301,46.0845 0,-92.0501,180 + 8 1,1,1 0,0,0 1 1,2,1.7199 -17.5348,8.0301,46.0979 0,-92.0501,180 =|- 1 1.7,2,2 -17.5222,8.0301,45.7481 0,87.9499,180 = 1 2,2,2 -17.5348,8.0301,46.0979 0,87.9499,180 + 8 1,1,1 0,0,0|- 1 1.7,2,2 -17.5473,8.0301,46.4477 0,-92.0501,180 = 1 2,2,2 -17.5348,8.0301,46.0979 0,-92.0501,180 + 8 1,1,1 0,0,0|- 1 0.4,2,1.7199 -17.567,10.03,46.9973 0,-92.0501,180 = n - 1 1.7,2,2 -17.4954,10.03,44.9986 0,87.9499,180 = 1 2,2,2 -17.5079,10.03,45.3484 0,87.9499,180 + 8 1,1,1 0,0,0 p|-17.5586,10.03,46.7975|- 1 1,0.5,1.7199 -19.2537,7.1701,46.0363 0'
- ..',-92.0501,180 = - 1 1,0.5,1.7199 -15.8159,7.1701,46.1595 0,-92.0501,180 = 1 2,0.2,2 -17.5348,7.0201,46.0979 0,87.9499,180 + 8 1,0.1,1 0,0,0|- 1 1.7,1,2 -17.5222,11.53,45.7481 0,87.9499,180 = 1 2,1,2 -17.5348,11.53,46.0979 0,87.9499,180 + 8 1,1,1 0,0,0|RepairScreen|-17.5348,6.7601,46.0979|1,0.5,1.7199|- 1 1.7,0.5,2 -17.5473,6.7601,46.4477 0,-92.0501,180 = 1 2,0.5,2 -17.5348,6.7601,46.0979 0,-92.0501,180 + 8 1,1,1 0,0,0|MainGui|2|Water|0.5599,-90,0.4299,-65|-0.01,100,-0.1,100|0,0,0|3|3|1,1,1|14|Tea|0.4299,-90,0.5799,-65|Coffee|0.67,-90,0.5799,-65|Juice|0.4599,-90,0.4899,-65|Milk|0.66,-90,0.4899,-65|Background|0.3,0,0.3,0|-0.6001,800,-0.6001,600|2|http://www.roblox.com/asset/?id=180377924|Still|0.6599,-90,0.3799,-65|-0.0701,100,-0.2901,100|Sparkling|0.6599,-90,1.0599,-65|Sparkle Water|Chai Tea|0.6699,-90,0.3699,-65|Herbal Tea|0.3499,-90,0.7099,-65|Green Tea|0.9899,-90,0.7099,-65|White Tea|0.4299,-90,0.4799,-65|Black Tea|0.9099,-90,0.4799,-65|Espresso|0.66,-90,0.3699,-65|-0.0701,100,-0.29,100|Mocha|0.34,-90,0.7099,-65|Frappe|0.98,-90,0.7099,-65|Latte|0.42,-90,0'
- ..'.4799,-65|Decaf|0.9,-90,0.4799,-65|Macchiato|0.66,-90,1.0499,-65|Cappuccino|0.42,-90,0.9399,-65|Capuccino|Americano|0.9,-90,0.9499,-65|Lemon Juice|Cranberry|0.3399,-90,0.7199,-65|Cranberry Juice|Plum Juice|0.9799,-90,0.7199,-65|KOOL AID|0.4199,-90,0.4899,-65|Straw berry Juice|0.8999,-90,0.4899,-65|Cherry Juice|Apple Juice|0.4199,-90,0.9499,-65|Orange Juice|0.8999,-90,0.9599,-65|Warm Milk|0.6699,-90,0.3899,-65|Standard Milk|0.3499,-90,0.7299,-65|Lactose Free Milk|0.9899,-90,0.7299,-65|Low Fat Milk|0.4299,-90,0.4999,-65|Coconut Milk|0.9099,-90,0.4999,-65|Center|0.64,-150,0.65,-125|-0.2801,300,-0.3001,250|http://www.roblox.com/asset/?id=170491068|CoverGui|0,800,0,600|0.4862,0.4862,0.3647|5|Click me to get started!|48|0|Cover|-18.2943,10.03,46.0707|10|Function|Fixer|Storage|Cup|0.0299,0,0,-0.9864,0,-0.1644,0,1,-0,0.1643,-0,-0.9864|0.0299,0,0|0.1643,0,0.9863|-0.9864,0,0.1643|Handle|-17.9195,8.7301,46.0841|1.2999,1.2999,1.2999|Repair|4|Sign|Board|-16.7898,14.8952,59.9582|0,88.86,0.0199|3.12,2.3299,0.2|0,100,0,100|Sleeping Quarters|0.2039,1,0.0274|42|0.0509,0.4117'
- ..',0.6745|816|-27.2397,8.6002,72.4478|0,90,180|5,1.2,6|-27.7397,6.9958,72.4478|0,-90.0401,0|1,0.4,1|0.4117,0.2509,0.1568|-27.4252,7.4098,72.4478|-0.01,180,-68.2|1,0.8,1|6|0.5,0,0,0,0,1,0,1,0,-1,-0,-0|-0.0003,-0.0502,-0.1288,0.9999,0.0006,0,-0.0003,0.3713,-0.9285,-0.0007,0.9284,0.3713|-28.2397,7.5002,72.4478|5,1.2,8|-28.2397,6.7002,72.4478|5,0.4,8|-31.0395,8.195,72.4478|0,-90,180|4,0.4,2|-27.6497,8.6045,47.5679|-28.1497,7.0001,47.5679|-27.8353,7.4141,47.5679|-28.6497,7.5045,47.5679|-28.6497,6.7045,47.5679|-31.4495,8.1993,47.5679|WWUR bridge control console|Console (Upper Parts)|Lights|Light|0.7686,0.1568,0.1098|-37.1544,9.2501,53.634|0,-89.88,180|3,0.8,1|1,0.6999,1|1,0.6784,0|30|25|1,0,0|-37.8972,9.8555,51.6724|0,-179.8801,-35.16|1,0.4,7|0.2,1,0.8999|-37.1603,9.2501,50.7341|2,0.8,1|-37.1655,9.2501,48.2341|Crystal|-38.6043,9.6489,54.2437|49.8699,158.61,-117.27|0.8,1,0.6999|0,1,0|-38.5275,9.3983,54.0931|1,1,0.5|Button|-38.7851,9.5442,52.5206|-17.1701,90.12,0|0,0,-0.5,-1,-0,-0,0,1,0,-0,-0,-1|-0.0801,0,0.4996,-1.0001,0,-0.0001,0,0.9999,0,-0.0001,-0.0001,-1|-38.498'
- ..'5,9.6328,52.5|0.1|-39.0938,9.377,50.3579|3,0.4,2|27.6856,-3.6,-6.2834,0.015,-0,0.9998,0,1,0,-0.9999,-0,0.015|25.9355,-3.6,-14.7718,-0.2946,-0,0.9556,-0,1,0,-0.9557,-0,-0.2946|0.0666,0.0666,0.0666|-39.4535,9.3375,52.5418|1,1,0.3|0,0,0.5,1,0,0,0,1,0,0,0,1|-0.0399,-0.0002,-0.4997,1,0,0,0,0.9999,-0.0001,0,-0.0001,0.9999|-39.7404,9.2489,52.4425|-39.2476,9.3587,54.1549|49.8699,158.61,62.7299|-39.2706,9.4331,54.3844|0.5,1,0.6999|Other Parts|ConsoleFrontCharacter|-37.2585,8.4501,51.6711|9,0.8,1|-37.2585,9.2501,51.6711|-37.2585,9.8501,51.6711|0,-89.88,0|9,0.4,1|-38.2585,8.4501,51.6731|0,90.12,180|Sides|RightSide|-39.3504,9.2911,55.6795|-6.1501,69.7399,-16.08|1,0.8,4|LeftSide|-39.367,9.2911,47.5975|6.15,-69.5101,-16.08|ControlKeyBackPanels|DiagonalBoard|-38.4934,9.3647,51.6736|-35.16,90.12,0|9,0.4,2|UnderPlate|-39.2586,8.8001,51.6383|0,90.12,0|7,0.4,3|0,0,1.5,1,0,0,0,1,0,0,0,1|0.0368,0.4499,0.5,1,0,-0.0001,-0,-1,0,-0.0001,0,-1.0001|0.0368,-0.3501,0.5,1,0,-0.0001,-0,-1,0,-0.0001,0,-1.0001|Master Backboard|-39.2352,9.3011,51.6382|-40.1487,9.2769,53.3403|70.33,-89.88,-9'
- ..'0|-40.2151,8.9819,53.3405|-40.1474,9.2769,53.9402|-40.2138,8.9819,53.9403|Sensor Pad|0.4|-40.3554,9.0751,49.9037|-34.35,90.12,0|2,0.4,1|-40.2954,9.0928,51.3238|1,1,0.6499|Stand (LowerParts)|CrossBar|-38.6588,7.7696,51.537|0,-179.8801,0|RightLeg|-39.7521,6.9002,54.8394|0,-0.4001,0,1,0,0,-0,-0,-1,0,1,0|5.2284,0.5999,-9.1024,-0.0021,0.9999,-0,0,0,-1,-1,-0.0021,0|-38.7036,8.073,55.1948|-47.35,56.5699,-47.9701|1,0.8,3|LeftLeg|-39.765,6.9001,48.5393|-38.748,8.073,48.1657|47.3499,-56.3401,-47.9701|Control Panel|832|-54.6415,7.7045,68.5636|0,180,0|4,2,9|0,1,0,-1,-0,-0,0,0,1,0,1,0|-1.5,-3.4601,0,-1,0,0,0,0,1,0,1,0|0,-1,0.5,0,-1,0,0,0,1,-1,0,0|0.8039,0.8039,0.8039|784|-54.1415,9.7045,68.5636|0,-90,0|9,2,3|1056|-53.5012,9.3984,66.3637|-33.69,-90,0|3.8,0.2,1.8|http://www.roblox.com/asset/?id=20449982|1|-55.5414,11.5043,68.5636|8.2,0.8,0.2|-53.5012,9.3984,70.7635|http://www.roblox.com/asset/?id=14356768|0,1,1|288|-55.5414,14.9041,72.4634|0.4,0.4,0.2|Good|Red|-55.5414,14.9041,71.6636|-55.5414,14.9034,70.8635|-55.5414,14.1044,70.8635|-55.5414,14.1044,71.6636|-55.5414,14.1'
- ..'044,72.4634|-55.5414,13.3046,72.4634|-55.5414,13.3046,71.6636|-55.5414,13.3046,70.8635|-55.5414,12.5043,70.8635|-55.5414,12.5043,71.6636|-55.5414,12.5043,72.4634|-55.5414,14.9047,69.3537|-55.5414,14.9047,68.554|-55.5414,14.9041,67.7535|-55.5414,14.1052,69.3537|-56.1415,12.1645,68.5636|1,6.92,9|-55.5414,14.1052,68.554|-55.5414,14.1052,67.7535|-55.5414,13.3053,69.3537|-55.5414,13.3053,68.554|-55.5414,13.3053,67.7535|-55.5414,12.5051,69.3537|-55.5414,12.5051,68.554|-55.5414,12.5051,67.7535|-55.5414,12.5122,66.3537|-55.5414,12.5122,65.5536|-55.5414,12.5122,64.7535|-55.5414,13.3125,64.7535|-55.5414,13.3125,65.5536|-55.5414,13.3125,66.3537|-55.5414,14.1123,66.3537|-55.5414,14.1123,65.5536|-55.5414,14.1123,64.7535|-55.5414,14.9113,64.7535|-55.5414,14.9123,65.5536|-55.5414,14.9123,66.3537|Thin Cylinder|-54.9156,10.3415,68.5636|-33.69,-90,180|1.6,0.2,1.3999|http://www.roblox.com/asset/?id=15868684|-54.9156,10.4416,65.3637|-54.9156,10.3415,71.7635|-48.8315,7.5045,47.0749|0,89.9199,0|-48.8322,9.5045,47.5749|0,179.9199,0|0,-1,0,1,0,0,-0,-0,-1,0,1,0|-0.5,0.9999,0,0,1,0,'
- ..'0,0,-1,-1.0001,0,0|-48.8293,11.9295,45.5749|1,6.85,9|0,-3.4251,0,1,0,0,-0,-0,-1,0,1,0|1.5,0.9999,0,1,0,0,0,0,-1,0,1,0|-51.9302,12.3042,46.1705|-51.1301,12.3042,46.1717|1536|-48.4302,13.5032,46.1756|3.8,2.8,0.2|0,0.3333,1|http://www.roblox.com/asset/?id=110706899|On|Off|-45.4305,14.2041,46.18|-90,179.9199,0|1.3999,0.2,1.3999|http://www.roblox.com/asset/?id=31857714|-45.4305,12.604,46.18|-46.6331,9.1975,48.2184|-33.69,179.9199,0|-51.0334,9.1975,48.212|-52.0313,10.141,46.7962|-33.69,179.9199,180|-48.8311,10.141,46.8008|-45.631,10.2412,46.8055|-48.8302,11.3042,46.175|-52.7301,14.7041,46.1693|-51.9302,14.7041,46.1705|-51.1301,14.7034,46.1717|-52.7301,13.9039,46.1693|-51.9302,13.9039,46.1705|-51.1301,13.9031,46.1717|-52.7301,13.104,46.1693|-51.9302,13.104,46.1705|-51.1301,13.104,46.1717|-52.7301,12.3042,46.1693|-56.2734,7.7045,53.3284|0,-119.1601,180|1,0.4,0.2|Technical Panel|-55.3288,9.3045,54.3148|0,-89.1601,180|3.4,1.1999,0.2|Technical Panel-to-Screw Strong Joint|1.7,-0.6,-0.1001,-1,0,0,0,1,0,0,0,-1|0.1124,0.1168,-0.0087,-1,0,0,0,-1,0,0,0,1|0.1124,1.0768,-0.00'
- ..'87,-1,0,0,0,-1,0,0,0,1|3.2625,0.1168,-0.0087,-1,0,0,0,-1,0,0,0,1|3.2625,1.0768,-0.0087,-1,0,0,0,-1,0,0,0,1|Screw|0.6392,0.6352,0.647|1088|- 1 1,1,1 -55.7043,8.4276,56.1701 0,90.8399,0 = n 1 0.2,0.2,0.2 -55.2859,8.8274,55.8769 0,90.8399,0 = p|- 1 1,1,1 -55.7043,9.3876,56.1701 0,90.8399,0 = n 1 0.2,0.2,0.2 -55.2859,9.7874,55.8769 0,90.8399,0 = p|- 1 1,1,1 -55.7504,9.3876,53.0204 0,90.8399,0 = n 1 0.2,0.2,0.2 -55.332,9.7874,52.7271 0,90.8399,0 = p|- 1 1,1,1 -55.7504,8.4276,53.0204 0,90.8399,0 = n 1 0.2,0.2,0.2 -55.332,8.8274,52.7271 0,90.8399,0 = p|Button2|-55.2625,8.9045,52.0135|0.3999,0.3999,0.2|Door Access-to-Part Strong Joint|-2.1,-0.5,0.1,1,0,0,0,1,0,0,0,1|-2.1001,-2.3001,-0.5,1,0,0,0,1,0,0,0,1|Button1|-55.2625,9.7045,52.0135|DoorAccess|-55.2347,10.8043,53.9134|4.1999,1,0.2|-55.2683,8.4045,55.7141|0.2,0.2,0.2|Script1|-55.2742,8.4045,55.3141|-55.2801,8.4045,54.9141|6|-55.2801,8.0045,54.9141|-55.2742,8.0045,55.3141|4|-55.2683,8.0045,55.7141|7|-55.2683,7.6045,55.7141|8|-55.2742,7.6045,55.3141|9|-55.2801,7.6045,54.9141|-56.4314,9.2045,54.831|2.4,4.2,0.4|-56.2'
- ..'734,10.7042,53.3284|-56.2734,9.3045,53.3284|-55.7446,9.0045,53.9208|4.5999,5,1|Part-to-Screw Strong Joint|2.2999,-2.5,-0.5,-1,0,0,0,1,0,0,0,-1|4.2625,2.6768,-0.0188,-1,0,0,0,-1,0,0,0,1|4.2625,1.7168,-0.0188,-1,0,0,0,-1,0,0,0,1|1.1125,2.6768,-0.0188,-1,0,0,0,-1,0,0,0,1|1.1125,1.7168,-0.0188,-1,0,0,0,-1,0,0,0,1|Part-to-Part Strong Joint|-2.3,-2.5,0.5,1,0,0,0,1,0,0,0,1|-1.4,-2.3,-0.2,1,0,0,0,1,0,0,0,1|-36.7896,15.1552,59.9582|Control Room|Nightstand|512|-18.1673,9.7001,70.3329|0,90.4599,0|3,0.4,3|1.1,0.5,1.1|-18.1673,8.2002,70.3329|3,3,3|-19.8673,8.8001,70.3466|90,0.4699,0|d��������������ng.........you got owned...|0.25|0.3,0.3,0.3|-19.6673,8.8001,70.345|-90,90.47,0|0.4,1,0.6|-19.5673,8.8001,70.3442|1.2,1,1|-18.1673,6.7002,70.3329|-20.1673,8.8001,70.3491|-90,90.4599,0|0.4499,0.4499,0.4499|-19.6673,7.4003,70.345|-19.5673,7.4003,70.3442|-19.8673,7.4003,70.3466|-20.1673,7.4002,70.3491|- 1 0.4,2,1.7199 -18.0027,10.02,73.1685 0,-92.0501,180 = n - 1 1.7,2,2 -18.0742,10.02,75.1672 0,-92.0501,180 = 1 2,2,2 -18.0617,10.02,74.8175 0,-92.0501,180 + 8 1,1,1 0,0,0 p|- 1 1.'
- ..'7,1,2 -18.0474,11.52,74.4177 0,-92.0501,180 = 1 2,1,2 -18.0348,11.52,74.068 0,-92.0501,180 + 8 1,1,1 0,0,0|-18.0086,10.02,73.3684|- 1 0.2,0.2,0.2 -18.4096,10.9199,74.0545 0,-92.0501,180 + 8 0.3,1,0.3 0,0,0 1 0.2,0.2,0.2 -18.4096,10.9199,74.0545 0,-92.0501,180 + 8 0.5,1,0.5 0,0,0|- 1 1,0.2,0.6499 -18.2597,10.02,74.0599 0,-92.0501,180 + 1 1,0.1,1 0,0,0 1 1,0.2,1 -17.9349,10.02,74.0716 0,-92.0501,180 + 8 1,0.1,1 0,0,0|1 0.2,0.2,0.2 -18.3223,10.8205,74.1077 -85,87.9499,0 + 8 0.5,0.1,0.5 0,0,0 1 0.2,0.2,0.2 -18.3206,10.8205,74.0577 -5,-92.0501,180 + 1 0.5,0.5,0.1 0,0,0 1 0.2,0.2,0.2 -18.3188,10.8205,74.0078 -85,87.9499,0 + 8 0.5,0.1,0.5 0,0,0 1 0.2,0.2,0.2 -18.3118,10.9201,74.058 -5,-92.0501,180 + 1 1,1,0.1 0,0,0|- 1 0.5,0.2,0.5 -18.4096,10.02,74.0546 0,-92.0501,180 + 8 1,1,1 0,0,0 n 1 1,0.2,0.9499 -18.4096,10.02,74.0546 0,-92.0501,180 + 1 1,0.1,1 0,0,0 p|-17.2753,10.02,74.0952|- 1 1,2,1 -17.9349,10.02,74.0715 0,-92.0501,180 + 8 1,1,1 0,0,0 1 1,2,0.55 -17.6601,10.02,74.0814 0,-92.0501,180 =|-18.7994,11.52,74.0406|-18.0349,11.52,74.068|- 1 1.7,0.5,2 -18.0223,6.75'
- ..'01,73.7182 0,87.9499,180 = 1 2,0.5,2 -18.0348,6.7501,74.068 0,87.9499,180 + 8 1,1,1 0,0,0|-18.4196,8.52,74.0541|- 1 0.5,1,0.5 -18.4096,8.6201,74.0545 0,-92.0501,180 + 8 1,1,1 0,0,0 1 1,2,1.7199 -18.0349,8.0201,74.068 0,-92.0501,180 =|- 1 1.7,2,2 -18.0223,8.0201,73.7182 0,87.9499,180 = 1 2,2,2 -18.0348,8.0201,74.068 0,87.9499,180 + 8 1,1,1 0,0,0|- 1 1.7,2,2 -18.0474,8.0201,74.4177 0,-92.0501,180 = 1 2,2,2 -18.0348,8.0201,74.068 0,-92.0501,180 + 8 1,1,1 0,0,0|- 1 0.4,2,1.7199 -18.0671,10.02,74.9674 0,-92.0501,180 = n - 1 1.7,2,2 -17.9955,10.02,72.9686 0,87.9499,180 = 1 2,2,2 -18.008,10.02,73.3184 0,87.9499,180 + 8 1,1,1 0,0,0 p|-18.0587,10.02,74.7676|- 1 1,0.5,1.7199 -19.7538,7.16,74.0064 0,-92.0501,180 = - 1 1,0.5,1.7199 -16.316,7.16,74.1295 0,-92.0501,180 = 1 2,0.2,2 -18.0349,7.01,74.068 0,87.9499,180 + 8 1,0.1,1 0,0,0|- 1 1.7,1,2 -18.0223,11.52,73.7182 0,87.9499,180 = 1 2,1,2 -18.0348,11.52,74.068 0,87.9499,180 + 8 1,1,1 0,0,0|-18.0349,6.7501,74.068|- 1 1.7,0.5,2 -18.0474,6.7501,74.4177 0,-92.0501,180 = 1 2,0.5,2 -18.0348,6.7501,74.068 0,-92.0501,180 + 8 1'
- ..',1,1 0,0,0|-18.7944,10.02,74.0407|-18.4196,8.72,74.0541|-79.3981,10.3423,59.0035|0,-0.3301,-45|2.6,1,0.2|0.2941,0.5921,0.2941|-79.4458,10.2823,58.6032|-79.8333,10.8245,60.521|0,-0.3301,45|1072|-79.1627,10.5409,60.3049|-45,-90.3301,0|4,0.2,3|0,0.1254,0.3764|-78.9997,9.9823,61.0058|0.6,1,0.6|-79.6456,9.958,60.3021|4,1,3|-79.8095,10.8045,61.6011|1,1,0|-78.998,10.0066,61.7059|-79.7055,8.6304,60.3117|-15,89.6699,0|-80.102,7.9045,60.3095|0,89.6699,0|1,2,1|-79.1021,7.9045,60.3152|0,-90.3301,0|-79.602,7.0045,60.3023|4,1,2|-77.6021,7.0045,60.3139|Engineering panel|Control panel|-44.8197,9.5045,73.5678|10,2,1|http://www.roblox.com/asset/?id=4009753|0,1,-1.0001,1,0,0,0,0,-1,0,1,0|Base|-44.8197,9.5045,75.0678|10,2,2|-44.8197,7.5045,74.5678|10,2,3|0,-1.0001,-0.5,-1,0,0,0,0,1,0,1,0|HoloPanel|Circuitry|0.4705,0.5647,0.5098|-38.6588,9.6051,68.5973|-90,-90.06,0|1,0.2,1|0.3999,1.8,0.3999|-38.1589,9.6047,68.5978|1,0.5999,1|0.2999,1.1,1|-37.7588,9.6047,68.5982|0.3999,1,1|-38.6578,9.6051,67.5973|-38.7767,9.6519,68.5972|-70,89.9499,179.99|0.2999,1,1|-38.7588,9.6547,68.5972|70,-9'
- ..'0.06,0|-38.1578,9.6047,67.5978|-38.7877,9.6835,67.5972|-38.5578,9.6046,67.5974|-37.1588,9.0045,68.5988|0,179.94,0.0099|-38.7578,9.6547,67.5972|-38.5588,9.6046,68.5974|-37.1578,9.0045,67.5989|-37.7578,9.6047,67.5983|-37.1609,9.6046,70.4988|-90,179.94,0|1,1.5999,1|0.3999,1.1,1|-37.1583,9.6045,68.0988|2,1,1|-37.1596,9.6045,69.2989|90,-0.06,0|-37.1599,9.6046,69.5988|0.4999,3.6,1|-37.1571,9.6045,66.8989|90,179.94,0|-37.1583,10.3045,68.0988|0,-90.06,-180|2,0.2,1|0.5999,1,0.5999|-37.1583,10.1045,68.0988|0.6999,2.7999,0.6999|-37.1583,10.2045,68.0988|-37.1567,9.6046,66.5989|-37.1558,9.6046,65.6989|Projecters|Projecter-1|-37.1628,9.6046,72.3987|-37.1627,11.1038,72.3987|0,179.94,90|-37.1621,9.6046,71.6988|-37.1618,9.6046,71.3988|0.0099,89.94,90|0.4999,4,1|-37.1616,12.6037,71.3987|0.4999,1,1|-37.1618,12.6037,71.5988|0.5999,2.8,1|-37.1626,13.604,72.3987|0,179.94,0|1,3,1|-37.1619,13.604,71.7987|0,-90.06,90|3,0.2,1|-37.1617,13.604,71.5988|-37.1615,13.604,71.3987|-37.1617,14.6044,71.5988|0.5999,2.7999,1|-37.1615,14.6044,71.3987|Projecter-2|-37.1549,9.6046,64.7989|-37.1546,'
- ..'9.6046,64.4989|-37.1538,9.6046,63.7989|-90,-0.06,0|-37.1537,11.1038,63.7989|-37.1544,12.6036,64.5989|-37.1547,12.6036,64.7989|-37.1535,13.6041,63.7989|0,-0.06,0|-37.1542,13.6041,64.3989|-37.1544,13.604,64.5989|-37.1546,13.604,64.7989|-37.1543,14.6044,64.5989|-37.1545,14.6044,64.7989|Hologram|0.6235,0.9529,0.9137|-37.156,14.4044,66.1989|0.0999,1,1|-37.1585,14.4044,68.5988|90,89.94,0|3.7999,1,0.9999|1,0.0999,1|-37.1581,12.8037,68.0988|4.7999,1,2.1999|http://www.roblox.com/asset/?id=158141360|-37.158,11.5036,67.8989|4.3999,1,0.3999|-37.1605,11.5045,70.2989|0,179.94,-180|1,0.4,0.4|-0.5,-0.2001,0.2,1,0,0,0,1,0,0,0,1|-2.2,-0.5,-0.2009,-0.0001,-0.0001,0.9999,0.9999,-0.0001,0,0,0.9999,-0.0001|0.5,-0.2001,0.2,1,0,0,0,0,-1,0,1,0|-2,0.5,1.0992,-0.0001,0.9999,0,0.9999,0,0,0,-0.0001,-1|Hologram-Keyboard|-39.1801,9.1882,66.8969|0,-0.06,160|-39.1483,9.2821,69.1969|0,179.94,-160|0.2,0.4,0.4|-38.976,9.752,67.9971|70,-90.06,-180|2,0.2,1.3999|-38.9749,9.7521,66.8971|0.2,0.2,0.9999|-38.943,9.846,69.1971|0.3999,0.2,0.7999|-38.7696,10.3159,66.8973|0,-0.06,-20|-38.7721,10.3159,69'
- ..'.2973|0,179.94,20|-38.7719,10.3159,69.0973|-37.1579,8.3045,67.5988|0,-0.06,180|1,1.1999,1|0.5999,1.1,1|-37.1589,8.3045,68.5988|0.5,-0.6,-0.5,-1,0,0,0,1,0,0,0,-1|0.5,-0.6,0.5,-1,0,0,0,1,0,0,0,-1|-37.1579,7.6047,67.5988|-0.5,0.1,0.5,-1,0,0,0,0,1,0,1,-0|-0.5001,0.5998,-0.5,-1,-0.0001,-0.0001,0,0,-1,0,-1,-0.0001|-37.159,7.6047,68.5988|-37.1569,7.0045,66.5989|-37.1585,7.0045,68.0988|-37.1601,7.0045,69.5988|-9.78,15.1352,59.9582|Main Room|1.9703,33.1005,59.9379|60|900000000|-75.6497,13.1003,73.5678|0,90,0|3,8.4,10|1.5,0,0,0,0,1,0,1,0,-1,-0,-0|-1,3,1.5,0,0,1,0,1,0,-1,0,0|-1,3,-6,0,0,1,0,1,0,-1,0,0|-4.1497,20.9003,48.0678|25,2.4,6|0,-1.2001,0,1,0,0,-0,-0,-1,0,1,0|-3.5001,6.6,-5,0,1,0,0,0,-1,-1,0,0|-70.1497,15.5003,55.5678|1,1.2,1|0,-0.6001,0,1,0,0,-0,-0,-1,0,1,0|4.5,-0.6,-6,1,0,0,0,0,1,0,-1,0|-9.1497,13.1003,51.5678|13,13.2,1|6.5,0,0,0,0,1,0,1,0,-1,-0,-0|0,0,0.5,1,0,0,0,-1,0,0,0,-1|-82.1497,15.5003,64.5678|-4.5,-0.6,-5,-1,0,0,0,0,1,0,1,0|0,-5.4,-0.1,1,0,0,0,0,1,0,-1,0|-72.1497,11.4003,75.2678|0,90,90|5,0.4,1|0,-0.2001,0,1,0,0,-0,-0,-1,0,1,0|-1.5001,-1.7001,3.5,0,0,'
- ..'1,1,0,0,0,1,0|-5.6497,9.5002,51.0678|2,1.2,2|0,0,1,1,0,0,0,1,0,0,0,1|-2.5001,4.5999,0.5,0,0,1,1,0,0,0,1,0|-5.6497,7.7002,51.0678|2,2.4,2|9,0.6,24.9999,-1,0,0,0,0,-1,0,-1,0|0,1.2,0,-1,-0,-0,0,0,1,0,1,0|0,-0.6001,0,0,1,0,0,0,1,1,0,0|22.9503,8.0002,46.0678|-90,-90,0|2,7.2,5|0,-3.6001,0,1,0,0,-0,-0,-1,0,1,0|0,-2.7001,-5.5,1,0,0,0,1,0,0,0,1|-12.6497,26.9005,54.0678|2,9.6,8|0,0,4,1,0,0,0,1,0,0,0,1|-6.0001,-4.2001,11.5,-1,0,0,0,1,0,0,0,-1|-1.0497,9.0002,47.5678|-90,90,0|5,14.8,5|11.3503,24.5004,52.0678|2,12,6|0,0,3,1,0,0,0,1,0,0,0,1|-8.0001,5.4,-1,-1,0,0,0,-1,0,0,0,1|0,-6,0,1,0,0,-0,-0,-1,0,1,0|-8.0001,-0.6001,-8.5,-1,0,0,0,0,1,0,1,0|0.8503,28.4005,48.0678|0,90,-90|1,6,11|0,0,5.5,1,0,0,0,1,0,0,0,1|0,0,0.9999,1,0,0,0,-1,0,0,0,-1|0,-3,0,1,0,0,-0,-0,-1,0,1,0|2,2.1,-0.5001,0,1,0,-1,0,0,0,0,1|-21.1497,17.9003,49.5678|9,1.2,5|0,0.6,0,-1,-0,-0,0,0,1,0,1,0|-10.5001,-0.6001,0,0,1,0,0,0,1,1,0,0|-12.6497,26.9005,52.0678|-1.5,0.6,3.4999,-1,0,0,0,1,0,0,0,-1|-8.0001,-4.2001,11.5,-1,0,0,0,1,0,0,0,-1|-7.5,0.6,0.5,0,0,1,0,1,0,-1,0,0|0,-4.8001,0,1,0,0,-0,-0,-1,0,1,0|-8.0001,1.2001,'
- ..'7.4999,-1,0,0,0,0,-1,0,-1,0|7.3503,28.4005,48.0678|0,-90,-90|1,6,2|17.3503,32.3005,54.0678|2,3.6,2|0,0,1,1,0,0,0,-1,0,0,0,-1|-62.6497,7.7002,72.5678|1,2.4,2|-66.6497,7.5002,69.5678|6,2,1|0,-0.2001,0,-1,0,0,0,0,1,0,1,0|3.3503,32.1005,52.0678|2,0.8,22|-8.0001,0.5999,-0.5,1,0,0,0,0,-1,0,1,0|0,0,11,1,0,0,0,1,0,0,0,1|0,0,0.5,-1,0,0,0,1,0,0,0,-1|13.8503,4.1002,46.5678|0,0,180|11,2.4,3|15.3503,32.3005,54.0678|-4.6497,32.9005,54.0678|2,2.4,8|-76.2497,15.6003,64.5678|1,10.8,1|-4.5,-0.6001,0.8999,-1,0,0,0,0,1,0,1,0|22.9503,13.0003,46.0678|90,90,0|-14.0001,-2.5001,-5.5,-1,0,0,0,-1,0,0,0,1|0,2.3,-5.5,-1,0,0,0,-1,0,0,0,1|0,0,2.5,1,0,0,0,1,0,0,0,1|0,0,2.5001,-1,0,0,0,1,0,0,0,-1|12.3503,24.5004,54.0678|2,12,8|-6.0001,5.4,-1,-1,0,0,0,-1,0,0,0,1|-6.0001,-0.6001,-9.5,-1,0,0,0,0,1,0,1,0|0,-1.8001,-3,1,0,0,0,0,1,0,-1,0|14.3503,35.3005,54.0678|0,-1.8,2.9999,1,0,0,0,0,1,0,-1,0|0,1.7999,-1,1,0,0,0,0,-1,0,1,0|8.8503,2.3002,50.5678|5,1.2,1|-15,-0.6001,-3.5001,0,0,1,0,-1,0,1,0,0|-1.1497,26.3004,51.5678|15,8.4,1|9.8503,1.7001,54.0678|2,2.4,3|6.8503,32.9005,54.0678|2,2.4,15|0,-1.2,-7.'
- ..'5,-1,0,0,0,0,1,0,1,0|0,0,-7.5,-1,-0,-0,0,1,0,-0,-0,-1|0,0,4,-1,0,0,0,1,0,0,0,-1|-6.0001,0.5999,-4,-1,0,0,0,0,-1,0,-1,0|-5.1497,26.3004,53.5678|3,8.4,7|0,0,3.5,1,0,0,0,1,0,0,0,1|0.5,-0.6001,3.9999,-1,0,0,0,1,0,0,0,-1|26.5503,10.5003,51.0678|8,0.4,8|0,3.4,1|-17.6497,21.5004,54.0678|-8.1497,32.1005,52.0678|17.3503,10.5003,51.0678|8,18,8|0,-9,0,1,0,0,-0,-0,-1,0,1,0|9,-3.2001,1,1,0,0,0,-1,0,0,0,-1|0,0,-4,-1,-0,-0,0,1,0,-0,-0,-1|-9.0001,-3.2001,1,1,0,0,0,-1,0,0,0,-1|13.8503,1.5001,55.5678|1,2.7999,11|0,-1.4,0,1,0,0,-0,-0,-1,0,1,0|0,-1.2001,4.5,0,1,0,0,0,1,1,0,0|-44.5,-1.4001,4.5,0,0,1,0,-1,0,1,0,0|13.8503,10.7003,46.0678|2,8.4,11|-16.1497,12.5003,48.5678|7,12,1|0,6,0,-1,-0,-0,0,0,1,0,1,0|-11.5001,-0.6002,-5.0001,-1,0,0,0,0,1,0,1,0|3.5,0,0,0,0,1,0,1,0,-1,-0,-0|0,0.6,0.5,1,0,0,0,-1,0,0,0,-1|0.9607,0.8039,0.1882|-66.6497,8.7002,69.5678|6,0.4,1|-63.1497,6.7002,71.0678|-64.1497,16.7003,60.0678|30,1.2,13|0,-0.6,-6,-1,0,0,0,0,1,0,1,0|-11,-0.6,-6,-1,0,0,0,0,1,0,1,0|-14.0001,4.8,0,1,0,0,0,0,-1,0,1,0|0,0,-6.5,-1,-0,-0,0,1,0,-0,-0,-1|13.4999,3.6,5,-1,0,0,0,1,0,0,0,-1|-66.64'
- ..'97,8.7002,72.5678|0,1,0,1,0,0,0,0,-1,0,1,0|-62.6497,7.7002,69.5678|-16.1497,7.1002,55.5678|-69.6497,10.1002,71.0678|2,2.4,14|1.6,1.6,1|2,2,2|http://www.roblox.com/asset/?id=2251534|-64.2497,7.0002,76.0678|0,180,-90|1,13.2,2|-42.6497,19.7004,54.0678|2,2.4,30|-16.1497,13.1003,55.5678|-4.0001,0.6,0,0,0,1,0,-1,0,1,0,0|1.5,-2.4001,0,0,1,0,0,0,1,1,0,0|-16.1497,13.1003,52.5678|0,180,180|-36.1497,13.1003,58.5678|-1.5001,-1.2001,0,0,-1,0,0,0,1,-1,0,0|-66.6497,6.7002,71.0678|6,0.4,2|-70.1497,7.7002,71.5678|3,2.4,1|-0.5,-1.2001,-0.5,-1,0,0,0,0,1,0,1,0|-16.1497,16.1003,54.0678|4,4.8,1|0,2.4,0,-1,-0,-0,0,0,1,0,1,0|-6.0001,-0.6001,-5.0001,-1,0,0,0,0,1,0,1,0|0,-2.4001,0,1,0,0,-0,-0,-1,0,1,0|0,-0.6001,-1.5,0,-1,0,0,0,1,-1,0,0|-66.6497,7.5002,72.5678|-36.1497,7.1002,58.5678|-16.1497,7.1002,52.5678|3.5,-5.4001,0,0,0,-1,0,1,0,1,0,0|-77.1497,16.7003,60.0678|14,1.2,13|-6.0001,4.8,0,1,0,0,0,0,-1,0,1,0|6,4.8,5,-1,0,0,0,1,0,0,0,-1|4.5,-0.9,0.5,-1,0,0,0,1,0,0,0,-1|-53.6497,3.5002,71.0678|36,3.6,8|0,-1.8001,0,1,0,0,-0,-0,-1,0,1,0|-0.5,-0.6001,-17.5,0,-1,0,0,0,1,-1,0,0|-22.1497,20.30'
- ..'04,54.0678|2,1.2,11|0,-0.6001,-4.5001,-1,0,0,0,0,1,0,1,0|-6.0001,0.5999,1,-1,0,0,0,0,-1,0,-1,0|-57.1497,16.7003,60.0678|1,1.2,30|-0.5,0,0,-0,-0,-1,0,1,0,1,0,0|14,-10,-0.0351,-1,0,0,0,0,1,0,1,0|-14,-10,0.6,-1,0,0,0,0,1,0,1,0|0,4.8,-9.5001,1,0,0,0,0,-1,0,1,0|0,4.8,9.4999,1,0,0,0,0,-1,0,1,0|-70.1497,12.5003,72.5678|1,7.2,1|0,3.6,0,-1,-0,-0,0,0,1,0,1,0|-12.5,-0.6001,-6,-1,0,0,0,0,1,0,1,0|0.5,-6,-2.4001,-1,0,0,0,0,1,0,1,0|-1,1.2,0,1,0,0,0,0,-1,0,1,0|-1,2.4,-0.5,0,0,1,0,1,0,-1,0,0|1,-0.6001,5,-1,0,0,0,1,0,0,0,-1|13.8503,17.3003,44.5678|11,2.4,7|-10.1497,10.1002,45.5678|0,-0.6,-2.5,-1,0,0,0,0,1,0,1,0|0,3,0.5,1,0,0,0,-1,0,0,0,-1|-75.6497,13.1003,68.5678|0,0,5,1,0,0,0,1,0,0,0,1|-8.5,-3.6001,-6.5,1,0,0,0,1,0,0,0,1|-1.5,0,0,-0,-0,-1,0,1,0,1,0,0|1,3,1.5,0,0,-1,0,1,0,1,0,0|1,3,-6,0,0,-1,0,1,0,1,0,0|-62.6497,7.7002,50.5678|-28.6497,2.9002,48.0678|14,4.8,10|15,-0.6001,-5,-1,0,0,0,0,1,0,1,0|-34.1397,16.7003,48.5678|3.0199,1.2,7|0.5,4.8,-0.01,0,1,0,0,0,-1,-1,0,0|-53.6497,1.1001,52.5678|36,1.2,1|17.5,-1.8001,7,1,0,0,0,-1,0,0,0,-1|0,-1.8001,-3.5,1,0,0,0,0,1,0,-1,0|-15.1497,10'
- ..'.1002,45.5678|0,-0.6,2.5,-1,0,0,0,0,1,0,1,0|14.5,0.6,15.4999,-1,0,0,0,0,-1,0,-1,0|0,3,0.5,1,0,0,0,-1,0,0,-0,-1|0,3,0.5,-1,0,0,0,1,0,0,0,-1|-57.1497,11.3002,50.5678|1,9.6,15|0,1.8,0.5,1,0,0,0,-1,0,0,0,-1|-4.3001,-6.6001,6.5,0,1,0,0,0,1,1,0,0|-36.1497,1.1001,48.5678|7,1.2,1|7,-1.8001,-0.5,0,0,-1,0,-1,0,-1,0,0|-64.1497,19.1004,54.0678|2,3.6,13|0,0,6.5,-1,0,0,0,1,0,0,0,-1|6,0.6,0,1,0,0,0,0,-1,0,1,0|-1.1497,4.8002,40.8678|-90,0,0|19,0.4,1|-5.5,1.9,5.9999,-1,0,0,0,1,0,0,0,-1|-58.1497,17.9003,60.0678|10,1.2,1|4.8503,10.1002,56.5678|1,-0.6,-0.5,0,-1,0,0,0,1,-1,0,0|0,0,0.5,-1,0,0,0,1,0,-0,0,-1|0,0,-0.5,1,0,0,0,1,0,0,0,1|Gun1|-77.1497,10.1002,71.0678|2,2.4,1|0,0,-7,1,0,0,0,1,0,0,0,1|-21.1497,17.9003,46.0678|9,1.2,2|-76.2497,15.6003,55.5678|1.8503,10.1002,56.5678|-2,-0.6,-0.5,0,-1,0,0,0,1,-1,0,0|3.1,-2.4001,-2,0,1,0,0,0,1,1,0,0|-2.6001,-2.4001,-2,0,1,0,0,0,1,1,0,0|-53.6497,3.5002,49.0678|0.5,-0.6001,-17.5,0,-1,0,0,0,1,-1,0,0|3.8503,13.2003,53.6678|1,4.8,5|0.5,-3.1001,0,0,0,-1,1,0,0,0,-1,-0|0.5,-3.1001,2,0,0,-1,1,0,0,0,-1,-0|0.5,-3.1001,-1,0,0,-1,1,0,0,0,-1,-0|0.5,-3.1'
- ..'001,1,0,0,-1,1,0,0,0,-1,-0|-64.6497,17.5004,52.5678|12,0.4,1|7.5,0.6,-0.5,0,1,0,0,0,-1,-1,0,0|2.8503,10.1002,56.5678|-82.1497,15.5003,55.5678|4.5,-0.6,-5,-1,0,0,0,0,1,0,1,0|3.8503,7.5002,53.6678|2,4.8,5|0.5,2.6,0,0,0,-1,1,0,0,0,-1,-0|0.5,2.6,2,0,0,-1,1,0,0,0,-1,-0|0.5,2.6,-1,0,0,-1,1,0,0,0,-1,-0|0.5,2.6,1,0,0,-1,1,0,0,0,-1,-0|-14.1497,13.1003,45.5678|0,-0.5999,1.5,-1,0,0,0,0,1,0,1,0|-36.1497,11.3002,50.5678|0,4.2,0.5,-1,0,0,0,1,0,0,0,-1|0,4.8,0,-1,-0,-0,0,0,1,0,1,0|0,-0.6001,9.5,-1,0,0,0,0,1,0,1,0|5.8503,10.1002,56.5678|2,-0.6,-0.5,0,-1,0,0,0,1,-1,0,0|-70.1497,11.3002,67.5678|5,9.6,1|1,-1.8001,5,-1,0,0,0,1,0,0,0,-1|-2.5,0,0,-0,-0,-1,0,1,0,1,0,0|1,1.2,-0.5,0,0,-1,0,1,0,1,0,0|1.5,-9,3.8,-1,0,0,0,0,1,0,1,0|-7.5,-0.6001,-6,-1,0,0,0,0,1,0,1,0|-70.1497,13.7003,71.0678|2,4.8,1|-1,-6,-1.2001,-1,0,0,0,0,1,0,1,0|-11,-0.6001,-6,-1,0,0,0,0,1,0,1,0|0,1.2,-0.5,1,0,0,0,0,-1,0,1,0|-70.1497,11.3002,52.5678|7.5,0.6,-39.5,1,0,0,0,0,-1,0,1,0|7.5,-0.6001,-6,-1,0,0,0,0,1,0,1,0|-1.5,-9,3.8,-1,0,0,0,0,1,0,1,0|2.5,0,0,0,0,1,0,1,0,-1,-0,-0|-1,1.2,-0.5,0,0,1,0,1,0,-1,0,0|-1,-1.8001,5'
- ..',-1,0,0,0,1,0,0,0,-1|3.8503,10.1002,56.5678|0,-0.6,-0.5,0,-1,0,0,0,1,-1,0,0|Door|-24.6497,11.9103,51.9678|16,10.82,0.2|-9.6497,19.1004,42.0678|36,1.2,2|-34.1497,11.3002,48.0678|8,9.6,3|20.5,0.6,-5,0,1,0,0,0,-1,-1,0,0|-9.1497,19.9003,44.0678|35,0.4,2|-16.0001,0.5999,16.5,0,1,0,0,0,-1,-1,0,0|-5,0.5999,0,1,0,0,0,0,-1,0,1,0|-16.0001,0.5999,-12.0001,0,1,0,0,0,-1,-1,0,0|13.8503,11.3002,43.0678|4,9.6,11|0,-1.2001,-1.5,0,-1,0,0,0,1,-1,0,0|-2,0,0,-0,-0,-1,0,1,0,1,0,0|-3.8001,-15.6001,6.4999,0,-1,0,0,0,1,-1,0,0|0.5,-0.2,-2.7001,-1,0,0,0,0,1,0,1,0|-11.1497,13.1003,43.5678|13.3503,14.0003,40.8678|10,0.4,3|number_010b|-77.1497,19.1004,54.0678|-77.1497,11.3002,66.0678|2,9.6,13|-6,-0.6001,0,-1,0,0,0,0,1,0,1,0|0,-0.6001,5,-1,0,0,0,1,0,0,0,-1|-6,0.6,10,1,0,0,0,0,-1,0,1,0|-1.1497,27.4005,45.0678|1,12,15|0,0,7.5,1,0,0,0,1,0,0,0,1|0,0,2.9999,1,0,0,0,-1,0,0,0,-1|0,1.1,-0.5001,0,1,0,-1,0,0,0,0,1|15.3503,9.5002,37.4678|2,7.2,4|0,-2.4001,0,1,0,0,0,0,1,0,-1,0|-66.6497,6.7002,49.0678|18.8503,14.0003,40.8678|0,-90,90|3,0.4,1|-2,2.7,-5,0,0,1,1,0,0,0,1,0|-11.1497,13.1003,45.5678|-12.64'
- ..'97,15.5003,45.5678|6,1.2,1|0,0.6001,0,0,-1,0,0,0,-1,1,0,0|1,3,11.4999,0,0,-1,0,1,0,1,0,0|1,-0.6,0,0,0,-1,0,1,0,1,0,0|-77.1497,11.3002,54.0678|-11.1497,7.1002,45.5678|14.5,0.6,19.5,1,0,0,0,0,-1,0,1,0|0,-3.0001,0.5,-1,0,0,0,1,0,0,0,-1|13.8503,5.9002,43.0678|11,1.2,4|0,-4.8001,0,0,1,0,0,0,1,1,0,0|-4.1497,19.1004,44.0678|21,1.2,2|0,0,-1,-1,-0,-0,0,1,0,-0,-0,-1|5.4999,0,0.9999,-1,0,0,0,1,0,0,0,-1|-12.6497,16.1003,44.0678|2,4.8,4|1,0,0,0,0,1,0,1,0,-1,-0,-0|0,-15.0001,-2.6001,-1,0,0,0,0,1,0,1,0|-8.5,-0.6001,0,0,-1,0,0,0,1,-1,0,0|0.5,-0.6001,-1.5,1,0,0,0,0,1,0,-1,0|-1,0,0,-0,-0,-1,0,1,0,1,0,0|-1.4001,-1,-2,0,1,0,0,0,1,1,0,0|2,-15.0001,-2.4001,-1,0,0,0,0,1,0,1,0|-0.5,3.6,0,1,0,0,0,0,-1,0,1,0|-1.1497,12.5003,44.0678|2,12,19|-16.0001,-0.6002,8.5,-1,0,0,0,0,1,0,1,0|-9.5,-15.0001,-6.0002,-1,0,0,0,0,1,0,1,0|3,-0.6002,0,0,-1,0,0,0,1,-1,0,0|-12.5,0.6,-1,0,1,0,0,0,-1,-1,0,0|0,0,9.5,1,0,0,0,1,0,0,0,1|-0.5,5.4,0.4999,-1,0,0,0,1,0,0,0,-1|1,-1.5,0.9999,0,1,0,1,0,0,0,0,-1|0.5,0.6,0.4999,1,0,0,0,-1,0,0,0,-1|-5.0001,-1,-13.5,0,1,0,0,0,1,1,0,0|-12.6497,14.3002,45.5678|1,1.2,6|0,-0.'
- ..'5999,-1.5,1,0,0,0,0,1,0,-1,0|-1.1497,1.0001,40.8678|-5.5,-1.9001,5.9999,-1,0,0,0,1,0,0,0,-1|-2.6497,11.5003,42.0678|0,0,90|7.3503,28.4005,44.4678|1,1.2,2|0,-3,0,1,0,0,0,0,1,0,-1,0|-12.6497,10.1002,44.5678|1,7.2,4|Door1|-1,0.6,-1.5,0,1,0,0,0,-1,-1,0,0|-11.1497,7.1002,43.5678|-2.5,0.6,-0.5,0,-1,0,0,0,-1,1,0,0|-63.1497,6.7002,49.0678|-69.1497,5.8002,75.2678|1,0.4,23|-28.1497,19.1004,49.0678|8,1.2,1|-14.1497,7.1002,45.5678|9.3503,27.4005,45.0678|1,12,6|0,-1.2001,0,1,0,0,0,0,1,0,-1,0|-75.6497,13.1003,51.5678|8.5,-3.6001,-6.5,1,0,0,0,1,0,0,0,1|-13.6497,5.9002,43.0678|44,1.2,4|0.5|-39.1497,11.9003,43.5678|1,6,5|0,1.2,-7.5001,1,0,0,0,0,-1,0,1,0|0,3,0,-1,-0,-0,0,0,1,0,1,0|0,-0.6001,-7.5001,-1,0,0,0,0,1,0,1,0|-20.1497,12.5003,44.0678|2,12,11|7.5,-3.0001,0.5,-1,0,0,0,1,0,0,0,-1|-16.0001,-0.6002,-1,-1,0,0,0,0,1,0,1,0|6.5,0.6,-1,0,1,0,0,0,-1,-1,0,0|-5.0001,-1,5.5,0,1,0,0,0,1,1,0,0|-18.1497,4.8002,40.8678|7,0.4,1|11.5,1.9,5.9999,-1,0,0,0,1,0,0,0,-1|7.8503,14.0003,40.8678|-63.6497,15.1003,48.0678|2,12,2|12,-0.6001,0.5,-1,0,0,0,0,1,0,1,0|-70.1497,7.7002,48.5678|-46.6497,16'
- ..'.7353,46.0678|2,20,1.1299|-75.6497,7.7002,67.5678|1,2.4,10|1,-4.2001,0,-1,0,0,0,0,1,0,1,0|-69.6497,10.1002,49.0678|0,-2.4001,0.5,-1,0,0,0,0,1,0,1,0|-0.5,1.2,0.5,1,0,0,0,0,-1,0,1,0|1.5,-3.0001,6,0,0,-1,0,1,0,1,0,0|0,0,-7,-1,-0,-0,0,1,0,-0,-0,-1|-1.5,-3.0001,6,0,0,1,0,1,0,-1,0,0|-75.6497,7.7002,72.5678|5,2.4,10|-0.7001,11.3999,1,0,-1,0,-1,0,0,-0,-0,-1|-1.5,-1.2001,1.5,-1,0,0,0,0,1,0,1,0|-1.5,-1.2001,-6,-1,0,0,0,0,1,0,1,0|0,0,-5,-1,-0,-0,0,1,0,-0,-0,-1|0.2,0.0999,2.5,0,1,0,1,0,0,0,0,-1|-14.1497,7.1002,43.5678|-0.5,-5.4001,-5.5001,1,0,0,0,1,0,0,0,1|0.5,0.6,-0.5,0,1,0,0,0,-1,-1,0,0|-27.1497,19.9003,44.0678|-16.0001,0.5999,6,-1,0,0,0,0,-1,0,-1,0|-17.5001,0,0,0,0,1,0,1,0,-1,0,0|-18.1497,1.0001,40.8678|11.5,-1.9001,5.9999,-1,0,0,0,1,0,0,0,-1|-14.1497,13.1003,43.5678|-0.5,0.6,-5.5001,-1,0,0,0,-1,0,0,0,1|-0.5,-2.4001,1.5,-1,0,0,0,0,1,0,1,0|-28.2497,4.8002,42.0678|0,-6.6001,0,1,0,0,-0,-0,-1,0,1,0|15,1.9,4.9999,0,0,-1,1,0,0,0,-1,0|14.6,-0.6001,1,0,1,0,0,0,1,1,0,0|-0.4,1.9,4.9999,0,1,0,1,0,0,0,0,-1|-28.2497,1.0001,42.0678|1,13.1999,2|0,-6.6,0,1,0,0,-0,-0,-1,0,1,0|15,-1.'
- ..'9001,4.9999,0,0,-1,1,0,0,0,-1,0|-0.4,-1.9001,4.9999,0,1,0,1,0,0,0,0,-1|-66.6497,7.5002,50.5678|9.5,0.6,-36,0,1,0,0,0,-1,-1,0,0|3.3503,12.5003,42.0678|2,12,10|1.4999,-0.2,-4.5,0,-1,0,0,0,1,-1,0,0|13,-0.6002,0,0,-1,0,0,0,1,-1,0,0|-5.0001,-15.6001,-4,0,-1,0,0,0,1,-1,0,0|-17,0.6,1,0,1,0,0,0,-1,-1,0,0|1,-1.0001,0,0,1,0,0,0,1,1,0,0|-66.6497,8.7002,50.5678|-75.6497,7.7002,52.5678|-1,-4.2001,0,-1,0,0,0,0,1,0,1,0|-58.1497,17.9003,49.0678|-12.6497,5.9002,40.5678|1,1.2,4|-1,0,2,-1,0,0,0,1,0,0,0,-1|-26.6497,17.3003,44.0678|-0.2001,-1,12,0,1,0,0,0,1,1,0,0|-62.6497,7.7002,47.5678|1.8503,17.5004,36.8678|2,8.4,7|0,-4.2001,0,1,0,0,-0,-0,-1,0,1,0|0,-0.6,0,1,0,0,0,0,1,0,-1,0|0,0,13,1,0,0,0,-1,0,0,0,-1|-70.1497,12.5003,47.5678|12.5,-0.6001,-6,-1,0,0,0,0,1,0,1,0|-1,-0.6001,5,-1,0,0,0,1,0,0,0,-1|1,1.2,0,1,0,0,0,0,-1,0,1,0|1,2.4,-0.5,0,0,-1,0,1,0,1,0,0|-0.5,-6,-2.6001,-1,0,0,0,0,1,0,1,0|-12.6497,1.1001,40.5678|5.9999,-1.8001,5.9999,-1,0,0,0,1,0,0,0,-1|-66.6497,8.7002,47.5678|5.8503,9.5002,37.4678|2,7.2,15|0,0,1.9999,1,0,0,0,-1,0,0,0,-1|-2.0001,-1.8001,7.9999,0,0,1,-1,0,0,0,-1,0|-'
- ..'1.0001,-3.0001,-2.5,0,0,1,-1,0,0,0,-1,0|-66.6497,7.5002,47.5678|-64.6497,11.4003,44.8678|14,0.4,5|0.9999,0.1,-0.5,0,0,-1,0,1,0,1,0,0|1.4999,-1.7001,11,0,0,-1,0,1,0,1,0,0|-30.6497,11.3002,44.0378|1.94,9.6,10|3.9999,-1.2001,0.0299,0,1,0,0,0,1,1,0,0|17,0.6,-0.9701,0,1,0,0,0,-1,-1,0,0|-46.6497,15.5003,43.5678|1,1.2,20|-70.1497,13.7003,49.0678|11,-0.6001,-6,-1,0,0,0,0,1,0,1,0|1,-6,-1.4001,-1,0,0,0,0,1,0,1,0|-12.6497,3.5002,40.5678|5.9999,0.6,5.9999,-1,0,0,0,1,0,0,0,-1|-14.6497,17.5004,42.0678|2,2,26|-5,-0.6001,0,1,0,0,0,0,1,0,-1,0|-42.6497,17.3003,44.0678|30,2.4,2|4,-0.6,0.5,1,0,0,0,0,1,0,-1,0|0.5,0.5999,-4,0,1,0,0,0,-1,-1,0,0|-14.5,4.8,6.5,-1,0,0,0,0,-1,0,-1,0|-4,4.8,8.5,0,1,0,0,0,-1,-1,0,0|0.0299,4.8,12,0,1,0,0,0,-1,-1,0,0|6.5,4.8,6.5,-1,0,0,0,0,-1,0,-1,0|-76.1497,3.5002,71.0678|8,3.6,9|0,0,4.5,1,0,0,0,1,0,0,0,1|17.9999,0,0,0,0,-1,0,-1,0,-1,0,0|-76.1497,3.5002,49.0678|-46.6497,15.5003,44.5678|20,1.2,1|0.5,0,0,0,0,-1,0,-1,0,-1,0,0|-46.6497,4.1002,44.0678|22,4.8,2|15,-1.8001,-16.0001,0,0,-1,0,-1,0,-1,0,0|10.5,-4.8001,6.5,1,0,0,0,0,1,0,-1,0|-7,0.6,4,1,0,0,0,-1,0,'
- ..'0,0,-1|0.5,-1.2001,0,0,1,0,0,0,1,1,0,0|-10.5,-4.8001,6.5,1,0,0,0,0,1,0,-1,0|-75.6497,13.1003,46.5678|-0.5001,1.8,-6.5,1,0,0,0,1,0,0,0,1|13.5,-3.6001,-6.5,1,0,0,0,1,0,0,0,1|Gun2|-77.1497,10.1002,49.0678|-79.6497,7.5002,51.0678|2,18,2|-26.6497,11.5003,42.0678|0,-5.8001,0.9999,0,1,0,1,0,0,0,0,-1|0,-1.0001,4,0,1,0,1,0,0,0,0,-1|-0.9701,0.2,-4,0,0,1,1,0,0,0,1,0|17.9503,9.5002,31.3678|0,180,90|2,1.2,5|0,0.1,1.9999,-1,0,0,0,1,0,0,0,-1|-31.6497,12.5003,42.0678|-5.0001,0,13,0,1,0,1,0,0,0,0,-1|18,0.6,1,0,-1,0,0,0,-1,1,0,0|-46.6497,7.7002,43.5678|1,2.4,20|0,-3.0001,-7.5,-1,0,0,0,0,1,0,1,0|9.3503,27.4005,37.8678|1,2.4,6|-82.1497,2.3002,60.0678|8,3.6,3|44.4999,-0.6001,0,0,0,-1,0,-1,0,-1,0,0|-83.1497,7.5002,47.6678|0.9999,3.5,0,0,0,-1,0,-1,0,-1,0,0|19.8503,7.5002,25.4678|2,31.2,7|2.3999,-3.6001,5.9999,0,-1,0,0,0,1,-1,0,0|0,0,8.9999,1,0,0,0,-1,0,0,0,-1|-42.6497,11.9003,43.5678|0,1.2,-4,1,0,0,0,0,-1,0,1,0|0,-0.6001,-4,-1,0,0,0,0,1,0,1,0|-79.6497,7.5002,69.0678|0,-0.2001,3.5,1,0,0,0,0,1,0,-1,0|0,-2.4001,3.5,1,0,0,0,0,1,0,-1,0|15.3503,9.5002,31.4678|-72.1497,11.4003,44.8678|1'
- ..'.4999,-1.7001,3.5,0,0,-1,-1,0,0,0,1,0|-83.1497,7.5002,72.4678|-54.1497,11.9003,43.5678|0,-0.6001,7.5,-1,0,0,0,0,1,0,1,0|-14.6497,17.5004,36.8678|2,8.4,26|0,1,0,-1,0,0,0,0,-1,0,-1,0|19.3503,12.1003,27.8678|2,7.2,2|0,0,4.4999,1,0,0,0,-1,0,0,0,-1|-50.6497,11.9003,43.5678|0,1.2,4,1,0,0,0,0,-1,0,1,0|0,-0.6001,4,-1,0,0,0,0,1,0,1,0|-46.6497,11.9003,43.5678|1,6,6|0,1.2,0,1,0,0,0,0,-1,0,1,0|0,-0.6001,0,-1,0,0,0,0,1,0,1,0|-75.6497,7.7002,47.5678|12.5,0.6,-45,1,0,0,0,0,-1,0,1,0|0.7,11.3999,1,0,1,0,1,0,0,0,0,-1|1.5,-1.2001,-6,-1,0,0,0,0,1,0,1,0|1.5,-1.2001,1.5,-1,0,0,0,0,1,0,1,0|-0.2001,0.1,2.5,0,-1,0,-1,0,0,0,0,-1|-83.1497,8.7002,69.0678|2,0.4,5|-88.1497,7.1002,60.0678|10,1.2,9|0,-4.8001,-1.5,-1,0,0,0,0,1,0,1,0|0,0,-4.5,-1,-0,-0,0,1,0,-0,-0,-1|0,0.6,-1,1,0,0,0,0,-1,0,1,0|1.8503,17.5004,32.0678|2,1.2,7|-64.2497,7.0002,44.0678|0.5,-4.3001,6.5,0,0,-1,1,0,0,0,-1,0|0.9999,-4.3001,-0.1001,0,0,-1,1,0,0,0,-1,0|13.8503,12.1003,27.8678|2,7.2,9|-1.0001,-2.4,6.4999,0,0,1,1,0,0,0,1,0|-64.2497,15.6003,44.0678|0.9999,4.3,-0.1001,0,0,-1,1,0,0,0,-1,0|1.5,2.5,11.3999,0,0,-1,1,0,0,0,-1,'
- ..'0|-87.1497,5.9002,60.0678|-6.0001,-4.8001,-10,-1,0,0,0,0,1,0,1,0|6,-5.4001,1.5,-1,0,0,0,0,1,0,1,0|-6,-2.4001,0,-1,0,0,0,0,1,0,1,0|0,-0.6001,6,-1,0,0,0,0,1,0,1,0|6,-2.4001,0,-1,0,0,0,0,1,0,1,0|-64.1497,11.3002,46.0678|1.8503,17.5004,88.0678|-31.6497,12.5003,78.0678|-5.0001,0,-13.0001,0,1,0,-1,0,0,0,0,1|18,0.6,-1.0001,0,-1,0,0,0,-1,1,0,0|-80.8497,5.8002,49.0678|1,0.4,8|15.3503,9.5002,88.6678|0,0,2,1,0,0,0,1,0,0,0,1|0,-0.6,-0.1001,-1,0,0,0,0,1,0,1,0|0,-3.6,0,1,0,0,0,0,1,0,-1,0|9.3503,27.4005,82.2678|0,-6,0,1,0,0,0,0,1,0,-1,0|-87.1497,2.9002,66.0678|2,4.8,13|19.8503,7.5002,8.0678|2,3.6,7|0,-15.6001,0,1,0,0,0,0,1,0,-1,0|-87.1497,2.9002,54.0678|1.8503,17.5004,83.2678|13.8503,17.3003,75.5678|-5.5,0,0,-0,-0,-1,0,1,0,1,0,0|-15.5,-1.2001,-1.8,1,0,0,0,0,1,0,-1,0|-1.5,4.8,0,0,-1,0,0,0,-1,1,0,0|15.4999,0.5999,0,0,-1,0,0,0,-1,1,0,0|0,0,-12,1,0,0,0,1,0,0,0,1|-88.6497,11.9003,54.0678|2,10.8,10|6,-4.8001,-6.5,1,0,0,0,1,0,0,0,1|0,0.6,-6.5,1,0,0,0,1,0,0,0,1|0,-5.4001,0,1,0,0,-0,-0,-1,0,1,0|6,0.6,-1.5,1,0,0,0,0,-1,0,1,0|-69.1497,5.8002,44.8678|-83.1497,8.7002,51.0678|0,3.5,1,1'
- ..',0,0,0,-1,0,0,0,-1|-86.6497,2.1001,64.5678|1,4,12|-86.6497,2.1001,55.5678|0,0,6,1,0,0,0,1,0,0,0,1|44.4999,-0.8001,4.5,0,0,-1,0,-1,0,-1,0,0|-44.5,-1.8001,0,0,0,1,0,1,0,-1,0,0|0,-2,0,1,0,0,-0,-0,-1,0,1,0|4.5,-0.6001,0,-1,0,0,0,0,1,0,1,0|17.9503,9.5002,88.7678|0,0,-90|-88.6497,11.9003,66.0678|-86.6497,12.5003,60.0678|10,9.6,6|-9.6497,19.1004,78.0678|0,6.0001,13,0,-1,0,0,0,-1,1,0,0|16.9999,0,17,0,0,-1,0,1,0,1,0,0|16.9999,0,-11.5001,0,0,-1,0,1,0,1,0,0|1,0,5,0,0,-1,0,-1,0,-1,0,0|5.8503,9.5002,82.6678|1,-3.0001,-2.5,0,0,-1,1,0,0,0,-1,0|2,-1.8001,7.9999,0,0,-1,1,0,0,0,-1,0|-80.8497,5.8002,71.0678|-46.6497,16.1003,74.0678|2,20,2|7.3503,7.5002,25.4678|2,31.2,18|-14.6497,17.5004,83.2678|-86.6497,4.7002,60.0678|10,1.2,12|0,-1.8001,-4.5,-1,0,0,0,0,1,0,1,0|-4.5,-2.0001,0,-1,0,0,0,0,1,0,1,0|0,0,-6,-1,-0,-0,0,1,0,-0,-0,-1|0,-0.6001,0.5,-1,0,0,0,0,1,0,1,0|15.3503,9.5002,82.6678|-12.6497,14.3002,74.5678|0,-0.5999,-1.5,-1,0,0,0,0,1,-0,1,0|0,-0.6002,0,0,-1,0,0,0,1,-1,0,0|0,3.5999,2.5,1,0,0,0,0,-1,0,1,0|9.3503,27.4005,75.0678|0,0,7.4999,1,0,0,0,-1,0,0,0,-1|-9.1497,19.9003,76.06'
- ..'78|15.9999,0.5999,-12.0001,0,1,0,0,0,-1,-1,0,0|-17.5,0,0,-0,-0,-1,0,1,0,1,0,0|-10.1497,10.1002,74.5678|7.8503,14.0003,79.2678|1,1.4999,-4.5,0,0,-1,1,0,0,0,-1,0|-12.6497,15.5003,74.5678|-93.1497,4.7002,60.0678|0,-0.6001,-6.0001,-1,0,0,0,0,1,0,1,0|19.8503,7.5002,94.6678|0,-15.6001,0,1,0,0,-0,-0,-1,0,1,0|0,-1.8,0,1,0,0,0,0,1,0,-1,0|13.8503,12.1003,92.2678|0,0,1,1,0,0,0,-1,0,0,-0,-1|1,2.3999,5.9999,0,0,-1,1,0,0,0,-1,0|-27.1497,19.9003,76.0678|-93.1497,7.1002,60.0678|-12.6497,5.9002,79.5678|13.3503,14.0003,79.2678|-90,-180,0|19.3503,12.1003,92.2678|-4.1497,19.1004,76.0678|0,6.0001,3,0,1,0,0,0,-1,-1,0,0|5,-0.2,0,-1,0,0,0,0,1,0,1,0|-5.5,0,1,-1,0,0,0,1,0,0,0,-1|-1.1497,12.5003,76.0678|-1.0001,-1.5,1,0,-1,0,-1,0,0,-0,-0,-1|11.4999,-3.0001,0.4999,-1,0,0,0,1,0,0,0,-1|-5.0001,-1,13.4999,0,1,0,0,0,1,1,0,0|19.8503,7.5002,112.0677|-12.6497,0.9001,79.5678|-46.6497,15.5003,75.5678|-0.5,0,0,0,0,1,0,-1,0,1,0,0|4,-1.2,0.5,1,0,0,0,0,1,0,-1,0|7.3503,7.5002,94.6678|0,0,9,1,0,0,0,1,0,0,0,1|0,0,3.4999,1,0,0,0,-1,0,0,0,-1|-2.4,-3.6001,-6.5,0,-1,0,0,0,1,-1,0,0|1,-5.0001,-4,0,0,-1,1,0'
- ..',0,0,-1,0|2,-3.8001,6.4999,0,0,-1,1,0,0,0,-1,0|7.3503,28.4005,75.6678|0,-3.0001,0,1,0,0,0,0,1,0,-1,0|-14.1497,7.1002,76.5678|-2.6497,11.5003,78.0678|0,-1.0001,5,0,-1,0,-1,0,0,0,-0,-1|-12.6497,10.1002,75.5678|-1,0.6,1.4999,0,1,0,0,0,-1,-1,0,0|-11.1497,7.1002,76.5678|-2.5,0.6,0.5,0,-1,0,0,0,-1,1,0,0|0.4999,-5.4001,9.4999,-1,0,0,0,1,0,0,0,-1|-11.1497,7.1002,74.5678|18.8503,14.0003,79.2678|2,2.7,-5,0,0,-1,-1,0,0,0,1,0|-26.6497,11.5003,78.0678|0,-5.8001,-1,0,-1,0,1,0,0,0,0,1|-5,0,0,-0,-0,-1,0,1,0,1,0,0|13,0.6,-1.0001,0,-1,0,0,0,-1,1,0,0|-1.1497,4.8002,79.2678|13.8503,11.3002,77.0678|2,0,0,0,0,1,0,1,0,-1,-0,-0|-0.5,-0.2001,-2.7001,-1,0,0,0,0,1,0,1,0|0,-0.6001,0,0,-1,0,0,0,1,-1,0,0|-18.1497,4.8002,79.2678|-1.1497,27.4005,75.0678|0,1.1,0.5,0,1,0,1,0,0,0,0,-1|-11.1497,13.1003,74.5678|13.8503,10.7003,74.0678|0,0,-5.5,-1,-0,-0,0,1,0,-0,-0,-1|0,-3.6,2.3,1,0,0,0,0,1,0,-1,0|0,-3.6,2.7,-1,0,0,0,0,1,0,1,0|0,4.2,0,-1,-0,-0,0,0,1,0,1,0|13.9999,-0.6001,0,-1,0,0,0,0,1,0,1,0|-14.1497,13.1003,76.5678|13.8503,5.9002,77.0678|-14.6497,17.5004,78.0678|-12.0001,0.2,-1,0,-1,0,1,0,0,0,'
- ..'0,1|-1.1497,1.0001,79.2678|-42.6497,17.3003,76.0678|4,4.8,8.5,0,-1,0,0,0,-1,1,0,0|-21.1497,17.9003,74.0678|13.9999,-0.6001,0,0,-1,0,0,0,1,-1,0,0|-12.6497,16.1003,76.0678|-0.5,-0.6001,-1.5,1,0,0,0,0,1,0,-1,0|-1.4001,-1,2,0,1,0,0,0,1,1,0,0|0.4999,-0.6001,-1.5,-1,0,0,0,0,1,-0,1,0|0.5,3.6,0,1,0,0,0,0,-1,0,1,0|0,0.5999,0.4999,-1,0,0,0,1,0,0,0,-1|-5.6497,7.7002,69.0678|-28.2497,4.8002,78.0678|-12.6497,3.5002,79.5678|-4.1497,20.9003,72.0678|3.5,6.6,-5,0,-1,0,0,0,-1,1,0,0|-6.6497,2.9002,73.0678|30,4.8,12|-0.5,-0.6001,-6,0,0,1,0,1,0,-1,0,0|5.5,-0.2,1.9,-1,0,0,0,0,1,0,1,0|5.5,-0.2,-1.9001,-1,0,0,0,0,1,0,1,0|-11.5001,-0.2,1.9,-1,0,0,0,0,1,0,1,0|-0.5,2,-6,0,0,1,0,1,0,-1,0,0|-7,-0.6001,3.9999,-1,0,0,0,0,1,0,1,0|15,0,0,0,0,1,0,1,0,-1,-0,-0|1.9,-6.6001,5,0,-1,0,0,0,1,-1,-0,0|-11.5001,-0.2,-1.9001,-1,0,0,0,0,1,0,1,0|22.9503,13.0003,74.0678|-28.1497,19.1004,71.0678|10.9999,0,6.5,-1,0,0,0,1,0,0,0,-1|-20.1497,12.5003,76.0678|-7.5001,-3.0001,0.4999,-1,0,0,0,1,0,0,0,-1|0.4999,0.6,0.5,1,0,0,0,-1,0,0,-0,-1|15.9999,-0.6002,-1,-1,0,0,0,0,1,0,1,0|-5.0001,-1,-5.5001,0,1,0,0,0,1,1,0,0'
- ..'|6.5,0.6,0.9999,0,1,0,0,0,-1,-1,0,0|-0.5,5.4,0.5,-1,0,0,0,1,0,0,0,-1|-14.1497,13.1003,74.5678|13.8503,4.1002,73.5678|-34.1497,11.3002,72.0678|-28.2497,1.0001,78.0678|15,-1.9001,-5,0,-0,-1,-1,0,0,0,1,0|-0.4,-1.9001,-5,0,1,0,-1,0,0,0,0,1|-15.1497,10.1002,74.5678|-39.1497,11.9003,76.5678|-11.1497,13.1003,76.5678|0.4999,0.6,9.4999,1,0,0,0,-1,0,0,0,-1|-58.1497,17.9003,71.0678|-11,0.5999,5.9999,1,0,0,0,0,-1,0,1,0|-13.6497,5.9002,77.0678|0.5,-0.6001,-0.5,0,-1,0,0,0,1,-1,0,0|0.9999,-6.0001,12.4999,0,-1,0,0,0,1,-1,0,0|0,0,-2,-1,-0,-0,0,1,0,-0,-0,-1|-0.5,0,1,0,0,1,0,1,0,-1,0,0|-1.0001,-6.0001,17,0,-1,0,0,0,1,-1,0,0|-15.0001,2.4,-5,1,0,0,0,0,-1,0,1,0|4.9999,-4.8001,-20.5,0,-1,0,0,0,1,-1,0,0|-0.5001,-14.6001,1,0,0,1,1,0,0,0,1,0|5,10.9999,1,0,0,-1,-1,0,0,-0,1,-0|-26.6497,17.3003,76.0678|-30.6497,11.3002,76.0078|2.12,9.6,10|1.06,0,0,0,0,1,0,1,0,-1,-0,-0|-0.2001,-4,1,0,1,0,1,0,0,0,0,-1|3.9999,-1.2001,0.06,0,1,0,0,0,1,1,0,0|3.4849,-0.6001,4.4399,0,-1,0,0,0,1,-1,0,0|17,0.6,1.0599,0,1,0,0,0,-1,-1,0,0|-12.0001,-1.2001,0.06,0,1,0,0,0,1,1,0,0|-46.6497,15.5003,76.5678|4,-1.2,-0.'
- ..'5,0,1,0,0,0,1,1,0,0|0,3,0,1,0,0,0,0,-1,0,1,0|0,3,-7.5,1,0,0,0,0,-1,0,1,0|-5.6497,9.5002,69.0678|-14.1497,7.1002,74.5678|-34.1347,16.7003,71.5678|3.03,1.2,7|-0.5,4.8,-0.0151,0,1,0,0,0,-1,-1,0,0|-18.1497,1.0001,79.2678|3.3503,12.5003,78.0678|7.3503,28.4005,72.0678|-36.1497,11.3002,69.5678|-6.5,-1.2001,6.4999,-1,0,0,0,0,1,0,1,0|-1.0497,9.0002,72.5678|4.5999,-0.5,0.9999,0,-1,0,-1,0,0,0,0,-1|8.8503,2.3002,69.5678|5,-1.2001,-9.5,0,1,0,0,0,1,1,0,0|-15,-0.6001,3.4999,0,0,1,0,-1,0,1,0,0|22.9503,8.0002,74.0678|-42.6497,11.9003,76.5678|0.8503,28.4005,72.0678|2,2.1,0.5,0,1,0,1,0,0,0,0,-1|-22.1497,19.9003,67.5678|11,0.4,1|7.4999,0.5999,1,0,-1,0,0,0,-1,1,0,0|-9.1497,13.1003,68.5678|-8.1497,32.1005,68.0678|7.9999,0.5999,11,-1,0,0,0,0,-1,0,-1,0|0,0,11,-1,0,0,0,1,0,0,0,-1|11.3503,24.5004,68.0678|7.9999,5.4,-1,-1,0,0,0,-1,0,0,0,1|7.9999,-0.6001,-8.5,-1,0,0,0,0,1,0,1,0|-43.1497,18.7003,67.5678|29,0.4,1|17.3503,10.5003,69.0678|-9,-3.2001,1,1,0,0,0,-1,0,0,0,-1|-16.1497,12.5003,71.5678|-3.5,0,0,-0,-0,-1,0,1,0,1,0,0|0,0.6,0.4999,1,0,0,0,-1,0,0,0,-1|-50.6497,11.9003,76.5678|26.550'
- ..'3,10.5003,69.0678|0,-9.0001,0,-1,0,0,0,0,1,0,1,0|-28.6497,2.9002,72.0678|1.9,0.3999,1,0,-1,0,-1,0,0,-0,-0,-1|7,0,0,0,0,1,0,1,0,-1,-0,-0|0.5,-1.8001,0.5,1,0,0,0,-1,0,0,0,-1|3.3503,32.1005,68.0678|7.9999,0.5999,-0.5,1,0,0,0,0,-1,0,1,0|-64.6497,17.5004,67.5678|-7.5,0.6,-0.5,0,1,0,0,0,-1,-1,0,0|-46.6497,11.9003,76.5678|-1.1497,26.3004,68.5678|-5.1497,26.3004,66.5678|6.4999,1.2,0,1,0,0,0,0,-1,0,1,0|-0.5,-0.6001,3.9999,-1,0,0,0,1,0,0,0,-1|1.4999,-0.6001,3.9999,-1,0,0,0,1,0,0,0,-1|12.3503,24.5004,66.0678|5.9999,5.4,-1,-1,0,0,0,-1,0,0,0,1|5.9999,-0.6,-1,-1,0,0,0,-1,0,0,0,1|5.9999,-0.6001,-9.5,-1,0,0,0,0,1,0,1,0|-16.1497,7.1002,67.5678|-3.5,-5.4001,0,0,0,1,0,1,0,-1,0,0|-17.6497,21.5004,66.0678|5.9999,0.6,11.4999,-1,0,0,0,1,0,0,0,-1|0,0.6,4.5,1,0,0,0,0,-1,0,1,0|-57.1497,11.3002,69.5678|-4.5,-10,-4.8001,-1,0,0,0,0,1,0,1,0|14.5,-1.2001,6.4999,-1,0,0,0,0,1,0,1,0|-10.5,-2.4001,6.4999,-1,0,0,0,0,1,0,1,0|-4.3001,-6.6001,6.4999,0,-1,0,0,0,1,-1,-0,0|0,4.2,0.4999,-1,0,0,0,1,0,0,0,-1|6.8503,32.9005,66.0678|5.9999,0.5999,-4,-1,0,0,0,0,-1,0,-1,0|3.8503,7.5002,66.4678|-0.5001,2.6'
- ..',1,0,0,1,-1,0,0,-0,-1,0|-0.5001,2.6,0,0,0,1,-1,0,0,-0,-1,0|-12.6497,26.9005,68.0678|7.9999,-4.2001,11.5,-1,0,0,0,1,0,0,0,-1|-7.5,0.6,-0.5,0,0,1,0,1,0,-1,0,0|-5.6497,26.5004,63.8678|2,0.4,2|http://www.roblox.com/asset/?id=12261427|-36.1497,0.3001,64.5678|89,0.4,1|0,-2.4001,-4.5,-1,0,0,0,0,1,0,1,0|44.5,0,0,0,0,1,0,1,0,-1,-0,-0|0,1.2,5.5,-1,0,0,0,1,0,-0,0,-1|-44.5,0,0,-0,-0,-1,0,1,0,1,0,0|0,1.8,5.9999,-1,0,0,0,1,0,0,0,-1|17.3503,32.3005,66.0678|0,-1.2001,2.9999,1,0,0,0,0,1,0,-1,0|-21.1497,17.9003,70.5678|-42.6497,19.7004,66.0678|15.3503,32.3005,66.0678|0,1.8,0,-1,-0,-0,0,0,1,0,1,0|0,-1.2001,0.9999,-1,0,0,0,0,1,0,1,0|-46.6497,7.7002,76.5678|0,-3.0001,4,-1,0,0,0,0,1,0,1,0|0,-3.0001,7.5,-1,0,0,0,0,1,0,1,0|0,-3.0001,0,-1,0,0,0,0,1,0,1,0|0,-3.0001,-4,-1,0,0,0,0,1,0,1,0|-24.8647,11.9753,68.1678|15.6299,10.9499,0.2|-12.6497,26.9005,66.0678|14.3503,35.3005,66.0678|-16.1497,13.1003,67.5678|9.8503,1.7001,66.0678|-44.5,-1.2001,-6,0,0,1,0,-1,0,1,0,0|4,-1.2001,-6,0,1,0,0,0,1,1,0,0|-16.1497,16.1003,66.0678|5.9999,-0.6001,-5.0001,-1,0,0,0,0,1,0,1,0|0,-0.6001,-1.5,0,1,0,0,0,1'
- ..',1,0,0|-4.6497,32.9005,66.0678|5.9999,0.5999,7.5,-1,0,0,0,0,-1,0,-1,0|-4.1497,29.3005,63.5678|5,2.4,1|control017|3.4999,-0.6001,7,0,1,0,0,0,1,1,0,0|0.5,1.8,1,0,0,-1,0,-1,0,-1,0,0|3.9503,13.2003,66.5678|-54.1497,11.9003,76.5678|-7.6497,23.3004,60.0678|10,2.4,2|hull_002|girder008|-4.5001,-3.0001,-2.5,-1,0,0,0,0,1,0,1,0|7.3503,12.5003,60.0678|30,12,2|0,-0.6002,0,-1,0,0,0,0,1,0,1,0|12.4999,-7.4001,3.5,-1,0,0,0,0,1,0,1,0|0.7,-2.4001,6.4999,0,-1,0,0,0,1,-1,-0,0|-12.5001,-7.4001,3.5,-1,0,0,0,0,1,0,1,0|3.8503,14.3002,63.0678|5,1.2,2|0.4999,-3.6,1,0,1,0,0,0,1,1,0,0|0.4999,-3.6,0,0,1,0,0,0,1,1,0,0|13.8503,17.3003,60.0678|11,2.4,24|0,-1.2001,-1.8,1,0,0,0,0,1,0,-1,0|0,0.5999,0,0,-1,0,0,0,-1,1,0,0|0,0,12,1,0,0,0,1,0,0,0,1|0,0,3.5,-1,0,0,0,1,0,0,0,-1|-16.1497,13.1003,64.5678|-1.5,-2.4001,0,0,-1,0,0,0,1,-1,0,0|-16.1497,7.1002,64.5678|1.8503,10.1002,63.5678|1.9999,-0.6,-0.5,0,1,0,0,0,1,1,0,0|2.6,-2.4001,-2,0,-1,0,0,0,1,-1,0,0|5.8503,10.1002,63.5678|-2,-0.6,-0.5,0,1,0,0,0,1,1,0,0|2.6,-2.4001,2,0,-1,0,0,0,1,-1,0,0|-64.6497,11.4003,75.2678|-1.5001,-1.7001,11,0,0,1,0,1,0,-1,0,'
- ..'0|-5.1497,27.5004,64.5678|1,6,7|-4.5,1.2,2.5,1,0,0,0,0,-1,0,1,0|1,-0.2,-0.5,0,1,0,0,0,1,1,0,0|3.8503,10.1002,63.5678|-64.2497,15.6003,76.0678|0.5,4.3,-6.5,0,-0,-1,-1,0,0,0,1,0|-1.0001,4.3,-0.1001,0,0,1,-1,0,0,0,-1,0|-1.5001,2.5,11.3999,0,0,1,-1,0,0,0,-1,0|-57.1497,13.1003,61.5678|0,1.8,7.4999,1,0,0,0,-1,0,0,0,-1|-63.6497,14.9003,72.0678|teleporter12c|0.4313,0.6,0.7921|4.8503,22.3004,60.0678|3,0.4,4|Enabled|-36.1497,1.1001,71.5678|2.8503,10.1002,63.5678|0.9999,-0.6,-0.5,0,1,0,0,0,1,1,0,0|2.6,-2.4001,-1,0,-1,0,0,0,1,-1,0,0|13.8503,1.5001,64.5678|0,-1.2001,-4.5,0,1,0,0,0,1,1,0,0|-64.1497,19.1004,66.0678|-6,0.6,0,1,0,0,0,0,-1,0,1,0|-3.6497,26.5004,63.8678|control005|http://www.roblox.com/asset/?id=52350138|0.4999,-1,1.5,0,0,-1,0,1,0,1,0,0|-22.1497,20.3004,66.0678|5.9999,0.5999,1,-1,0,0,0,0,-1,0,-1,0|4.8503,10.1002,63.5678|-7.6497,25.1004,60.5678|http://www.roblox.com/asset/?id=14959624|-0.5,1.1999,0,-1,0,0,0,0,-1,0,-1,0|-9.1497,7.1002,58.5678|6.5,-6.0001,0,0,0,-1,0,1,0,1,0,0|-70.1497,15.5003,64.5678|-4.5,-0.6,-6,1,0,0,0,0,1,0,-1,0|-9.1497,13.1003,61.5678|1.4999'
- ..',-3.0001,0,0,1,0,0,0,1,1,0,0|-6.5,0,0,0,0,1,0,-1,0,1,0,0|Engine|-30.6497,5.9002,60.0678|30,1.2,100|-1.5,3,-48|Count|0,0,50,1,0,0,0,1,0,0,0,1|-14,-3.6,-2.1001,-1,0,0,0,0,1,0,1,0|14,-3.6,-2.1001,-1,0,0,0,0,1,0,1,0|-15,0,0,-0,-0,-1,0,1,0,1,0,0|-44.5,0,1.9999,1,0,0,0,-1,0,0,0,-1|-44.5,-1.2001,13.4999,0,1,0,0,0,1,1,0,0|44.4999,1.2,0,0,-1,0,0,0,-1,1,0,0|44.4999,0,2,1,0,0,0,-1,0,0,0,-1|2.5,-3.6001,34,1,0,0,0,0,1,0,-1,0|21.4999,-0.6001,-1.5001,0,-1,0,0,0,1,-1,0,0|14.4999,-0.6001,4.4999,0,-1,0,0,0,1,-1,0,0|-32.5,-3.6001,0,0,1,0,0,0,1,1,0,0|-14.5,-0.6001,4.5,0,1,0,0,0,1,1,0,0|-14.5,-0.6001,-7.5,0,1,0,0,0,1,1,0,0|-2.5,-3.6001,34,1,0,0,0,0,1,0,-1,0|14.5,-3.6001,20.5,1,0,0,0,0,1,0,-1,0|23.9999,2.4,12.9999,0,-1,0,0,0,-1,1,0,0|23.9999,2.4,-13.0001,0,-1,0,0,0,-1,1,0,0|-9,-1.2001,24.9999,1,0,0,0,0,1,0,-1,0|5.785,-5.4751,8.0999,0,-1,0,0,0,1,-1,0,0|-6,-5.4101,8.1,0,1,0,0,0,1,1,0,0|-15.94,-4.8001,0,1,0,0,0,0,1,0,-1,0|17,0,1.9999,-1,0,0,0,1,0,0,0,-1|1.9999,2.4,11.9999,0,-1,0,0,0,-1,1,0,0|-12,-4.8001,-3.5,1,0,0,0,0,1,0,-1,0|11.5,-6.0001,14.4999,1,0,0,0,0,1,0,-1,0|-11.5,-6.0001,1'
- ..'4.4999,1,0,0,0,0,1,0,-1,0|-14,-4.2001,44.4999,1,0,0,0,0,1,0,-1,0|5.5,-0.6001,-1.5,0,1,0,0,0,1,1,0,0|-5.5001,-0.6001,-1.5001,0,-1,0,0,0,1,-1,0,0|1.9999,2.4,-12.0001,0,-1,0,0,0,-1,1,0,0|14.1699,-1.0044,-14.5001,0,1,0,0,0,1,1,0,0|-8.5,-6.6001,21.4999,1,0,0,0,0,1,0,-1,0|14.4999,-0.6001,-19.5,-1,0,0,0,0,1,0,1,0|-12.5,-1.2001,-32,1,0,0,0,0,1,0,-1,0|-14.5,-3.6001,20.5,1,0,0,0,0,1,0,-1,0|-26.5001,-4.8001,9.4999,0,-1,0,0,0,1,-1,0,0|0,-0.1001,-16.0001,1,0,0,0,0,1,0,-1,0|9.5,-1.2001,-32,1,0,0,0,0,1,0,-1,0|12.5,-1.2001,-32,1,0,0,0,0,1,0,-1,0|-26.5001,-0.6001,-1.5001,0,-1,0,0,0,1,-1,0,0|-26.5001,-4.8001,-9.5001,0,-1,0,0,0,1,-1,0,0|8.5,-6.6001,21.4999,1,0,0,0,0,1,0,-1,0|14.4999,-0.6001,-7.5001,0,-1,0,0,0,1,-1,0,0|26.5,-0.6001,-1.5,0,1,0,0,0,1,1,0,0|-36,-1.0001,12.4999,0,-1,0,0,0,1,-1,0,0|-36,-1.0001,9.4999,0,-1,0,0,0,1,-1,0,0|-36,-0.2001,10.9999,0,-1,0,0,0,1,-1,0,0|11,-0.2001,-32.5,1,0,0,0,0,1,0,-1,0|14.5,-0.6001,16.5,1,0,0,0,0,1,0,-1,0|-5.5001,-4.8001,-9.5001,0,-1,0,0,0,1,-1,0,0|-11,-0.2001,-32.5,1,0,0,0,0,1,0,-1,0|-14.0001,-4.8001,33.4999,-1,0,0,0,0,1,0,1,0|11.4999,-1.'
- ..'2001,39.4999,-1,0,0,0,0,1,0,1,0|-36,-1.0001,-12.5001,0,-1,0,0,0,1,-1,0,0|0,-1.2001,0.4,-1,0,0,0,0,1,0,1,0|-11.5001,-1.2001,39.4999,-1,0,0,0,0,1,0,1,0|-23.0001,1.8,-11.0001,0,-1,0,0,0,-1,1,0,0|44.4999,-1.2001,13.5,0,-1,0,0,0,1,-1,0,0|-0.1001,-0.2,-38.5,0,-1,0,0,0,1,-1,0,0|-23.0001,1.8,10.9999,0,-1,0,0,0,-1,1,0,0|-11,-1.8001,45.4999,-1,0,0,0,0,1,0,1,0|-5.5001,-4.8001,9.4999,0,-1,0,0,0,1,-1,0,0|12.4999,-1.2001,44.9999,-1,0,0,0,0,1,0,1,0|7.4999,-1.2001,44.9999,-1,0,0,0,0,1,0,1,0|13.9999,-4.8001,33.4999,-1,0,0,0,0,1,0,1,0|-36,-0.2001,-11.0001,0,-1,0,0,0,1,-1,0,0|16,-1.8001,0.9999,1,0,0,0,-1,0,0,0,-1|-5.5001,2.4,0,0,-1,0,0,0,-1,1,0,0|-6.0001,-4.8001,46.4999,-1,0,0,0,0,1,0,1,0|12,-4.8001,-3.5,1,0,0,0,0,1,0,-1,0|-14.5,-0.6001,16.5,1,0,0,0,0,1,0,-1,0|0,-6.0001,38,1,0,0,0,0,1,0,-1,0|0,0,-50,-1,-0,-0,0,1,0,-0,-0,-1|-0.0001,0,6.4999,-1,0,0,0,1,0,0,0,-1|-0.1001,-0.2001,38.4999,0,-1,0,0,0,1,-1,0,0|-0.1001,-0.2001,10.9999,0,-1,0,0,0,1,-1,-0,0|14,-4.2001,44.4999,1,0,0,0,0,1,0,-1,0|-0.1001,-0.2001,-11.0001,0,-1,0,0,0,1,-1,-0,0|0,-6.0001,14.4999,1,0,0,0,0,1,0,-1,0|-7.5001,-1'
- ..'.2001,44.9999,-1,0,0,0,0,1,0,1,0|-9.0917,-0.4,-11.5472,0.002,-1,0,0,0,1,-1,-0.0021,0|-9.5,-1.2001,-32,1,0,0,0,0,1,0,-1,0|11,-1.8001,45.4999,-1,0,0,0,0,1,0,1,0|17,0,-2.0001,1,0,0,0,1,0,0,0,1|5.9999,-4.8001,46.4999,-1,0,0,0,0,1,0,1,0|-14.5,-3.6001,15.4999,1,0,0,0,0,1,0,-1,0|7.4999,-4.8001,39.4999,-1,0,0,0,0,1,0,1,0|-9.1497,7.1002,61.5678|-1.5,0.6,21.4999,0,-1,0,0,0,-1,1,0,0|-6.5,-6.0001,0,0,0,1,0,1,0,-1,0,0|3.3503,32.1005,60.0678|10,0.8,22|0,0.5999,-0.5,1,0,0,0,0,-1,0,1,0|-9.1497,16.7003,60.0678|4,6,1|0,-0.6001,-1.5001,0,-1,0,0,0,1,-1,0,0|7.3503,25.1004,60.0678|18,10.8,2|7.9999,-0.6,2.9999,1,0,0,0,-1,0,0,-0,-1|0,-0.6,2.9999,1,0,0,0,-1,0,0,-0,-1|-6.0001,-0.6,3.9999,1,0,0,0,-1,0,0,-0,-1|-8.0001,-0.6,2.9999,1,0,0,0,-1,0,0,-0,-1|9,0,0,0,0,1,0,1,0,-1,-0,-0|-11.5,4.2,2.9999,-1,0,0,0,1,0,0,0,-1|0,0.5999,0,1,0,0,0,0,-1,0,1,0|0,5.4,0,-1,-0,-0,0,0,1,0,1,0|0,-0.6002,-4.5,-1,0,0,0,0,1,0,1,0|-9,0,0,-0,-0,-1,0,1,0,1,0,0|11.5,4.2,3,-1,0,0,0,1,0,0,0,-1|-5.1497,20.9003,60.0678|18,2.4,23|-2,-1.8,3,-1,0,0,0,0,1,0,1,0|-1.0001,-1.2001,-0.5,1,0,0,0,0,1,0,-1,0|0,-1.2001,2.5,1,0,0,0'
- ..',0,1,0,-1,0|1,-1.8,3,-1,0,0,0,0,1,0,1,0|-4,-4.2001,8.5,0,-1,0,0,0,1,-1,0,0|5.9999,-4.8002,7.4999,1,0,0,0,0,1,0,-1,0|7.9999,-4.8002,7.4999,1,0,0,0,0,1,0,-1,0|2,-1.8,0.4999,0,1,0,0,0,1,1,0,0|0,2.9999,-4,1,0,0,0,0,-1,0,1,0|2.5,-1.8,9.5,-1,0,0,0,0,1,0,1,0|6.5,-4.2001,0,-1,0,0,0,0,1,0,1,0|10,-0.2001,0,0,1,0,0,0,1,1,0,0|0,-0.6,-9,-1,0,0,0,0,1,-0,1,0|-0.5,-2.4002,3,-1,0,0,0,0,1,0,1,0|1.9999,-1.2001,-0.5,1,0,0,0,0,1,0,-1,0|0.4999,-0.6001,-0.5,1,0,0,0,0,1,0,-1,0|-7.5,0,0.9999,0,1,0,1,0,0,0,0,-1|1,0,2.9999,-1,0,0,0,1,0,0,0,-1|0,0,11.5,1,0,0,0,1,0,0,0,1|-6.0001,-0.6001,0.9999,-1,0,0,0,1,0,0,0,-1|-4,-4.2001,-8.5,0,-1,0,0,0,1,-1,0,0|-6.0001,-4.8002,7.4999,1,0,0,0,0,1,0,-1,0|8.5,6.6,-4,1,0,0,0,0,-1,0,1,0|-8.5,6.6,-4,1,0,0,0,0,-1,0,1,0|-1,0,3,-1,0,0,0,1,0,0,0,-1|-35.1497,16.7003,60.0678|16,1.2,1|-15.1497,17.9003,60.0678|30,1.2,1|-6,1.8,-0.5,-1,0,0,0,-1,0,0,0,1|6,1.8,-0.5,-1,0,0,0,-1,0,0,0,1|0,5.4,-0.5,-1,0,0,0,-1,0,0,0,1|-11.5,5.4,-0.5,-1,0,0,0,-1,0,0,0,1|11.5,5.4,-0.5,-1,0,0,0,-1,0,0,0,1|-46.6497,6.6002,60.0678|4,0.2,20|13.8503,15.5003,60.0678|30,1.2,11|13.9999,-3.6,-2.5'
- ..'001,1,0,0,0,0,1,0,-1,0|0,-1.2,15.5,0,-1,0,0,0,1,-1,0,0|14,4.2,0,1,0,0,0,0,-1,0,1,0|2.8503,22.3004,60.0678|1,0.4,4|0,1.2,-8.0001,0,1,0,0,0,-1,-1,0,0|-41.6497,17.9003,60.0678|32,1.2,30|10.9999,-0.6001,-13.5,0,1,0,0,0,1,1,0,0|0,-0.6001,-13.5,0,1,0,0,0,1,1,0,0|-7.5151,0.5999,-11.5,-1,0,0,0,0,-1,0,-1,0|14,5,0.5649,0,-1,0,-1,0,0,0,0,-1|-7.51,0.5999,11.5,-1,0,0,0,0,-1,0,-1,0|5.9999,-1.2001,1,0,1,0,0,0,1,1,0,0|-11.0001,-0.6001,-13.5,0,1,0,0,0,1,1,0,0|-1.5001,-0.2001,7.4999,-1,0,0,0,0,1,0,1,0|16,0,0,0,0,1,0,1,0,-1,-0,-0|10.9999,0,0.5,-1,0,0,0,1,0,0,0,-1|-1.5001,-0.2001,-7.5001,-1,0,0,0,0,1,0,1,0|-6.0001,-1.2001,1,0,1,0,0,0,1,1,0,0|0,-0.6,6.4999,0,1,0,0,0,1,1,0,0|-0.0001,0,0.5,-1,0,0,0,1,0,0,0,-1|-11.0001,0,0.5,-1,0,0,0,1,0,0,0,-1|-15.5001,0.5999,0,1,0,0,0,0,-1,0,1,0|5.4999,0.5999,0,1,0,0,0,0,-1,0,1,0|20.5503,15.5003,60.0678|26,2.4,2|5.5,-1.8,15.5,0,0,-1,0,-1,0,-1,0,0|-10.6497,18.5004,60.0678|2,30,2|0,-15,0,1,0,0,-0,-0,-1,0,1,0|-6.5,-0.6001,1,-1,0,0,0,1,0,0,0,-1|-36.1497,7.1002,61.5678|0,-4.2001,7.4999,-1,0,0,0,1,0,0,0,-1|-8.1497,32.1005,60.0678|10,0.8,1|0,0.5999,11,'
- ..'-1,0,0,0,0,-1,0,-1,0|-12.6497,18.7003,60.0678|-8.5,-0.4001,1,-1,0,0,0,1,0,0,0,-1|8.4999,-1.2,11.9999,1,0,0,0,0,1,0,-1,0|-8.5,-1.2,12,-1,0,0,0,0,1,0,1,0|-9.1497,13.1003,58.5678|11.3503,24.5004,60.0678|10,12,6|9.8503,1.7001,60.0678|8,2.4,3|-44.5,-1.2001,0,0,0,1,0,-1,0,1,0,0|4,-1.2001,0,0,1,0,0,0,1,1,0,0|19.1503,10.5003,60.0678|8,21.6,8|0,-1.4001,1,1,0,0,0,-1,0,0,0,-1|-3.1497,26.3004,60.5678|0,-0.2001,0,0,-1,0,0,0,1,-1,0,0|0,1.8,0,1,0,0,0,0,-1,0,1,0|7.3503,19.1004,60.0678|34,1.2,2|16.5,-0.2,-16,0,-1,0,0,0,1,-1,0,0|0,5.4,2.9999,1,0,0,0,-1,0,0,-0,-1|-17,0,0,-0,-0,-1,0,1,0,1,0,0|17,0,1,-1,0,0,0,1,0,0,0,-1|-16,6.0001,-8.5,1,0,0,0,0,-1,0,1,0|-11.5,-1.2,11.9999,0,1,0,0,0,1,1,0,0|11.5,-1.2,12,0,-1,0,0,0,1,-1,0,0|4.3503,26.3004,62.5678|4,1.2,1|-16.1497,12.5003,60.0678|8,12,1|4,0,0,0,0,1,0,1,0,-1,-0,-0|0,5.4,0.4999,-1,0,0,0,1,0,0,0,-1|0,-0.6002,-5.0001,-1,0,0,0,0,1,0,1,0|-4,0,0,-0,-0,-1,0,1,0,1,0,0|0,5.4,0.5,-1,0,0,0,1,0,0,0,-1|-36.1497,14.9003,60.0678|4,2.4,1|20.5503,5.5002,60.0678|8.9999,-3.2001,-4.0001,-1,0,0,0,-1,0,0,0,1|5.5,-1.4,13.4999,0,0,-1,0,-1,0,-1,0,0|0,-1.4'
- ..'001,-4.0001,-1,0,0,0,-1,0,0,0,1|-5.5001,1.3999,0,0,0,1,0,1,0,-1,0,0|-5.5001,-1.4,13.5,0,0,1,0,-1,0,1,0,0|13.8503,4.1002,60.0678|0,0,-12,-1,-0,-0,0,1,0,-0,-0,-1|0,0,1.4999,1,0,0,0,-1,0,0,0,-1|-6.0001,-1.2001,-4,0,1,0,0,0,1,1,0,0|-9.5001,-0.6001,-5,0,1,0,0,0,1,1,0,0|0,0,1.5,1,0,0,0,-1,0,0,0,-1|-64.1497,11.3002,74.0678|-14,-0.6001,0,-1,0,0,0,0,1,0,1,0|-0.5,-0.2001,-0.1001,-1,0,0,0,0,1,0,1,0|-0.5,-1.8001,5,-1,0,0,0,1,0,0,0,-1|-4.3001,-0.1001,1,0,-1,0,-1,0,0,-0,-0,-1|-36.1497,16.7003,60.0678|0,1.2,0,0,-1,0,0,0,-1,1,0,0|2.8503,31.1005,60.0678|18,1.2,23|0,-6.0001,8.4999,-1,0,0,0,0,1,-0,1,0|-8.0001,-0.4001,11,1,0,0,0,0,1,0,-1,0|-6.0001,-1.2,7.5,1,0,0,0,0,1,0,-1,0|5.9999,4.2,4,-1,0,0,0,1,0,0,0,-1|7,-1.2001,-3.5001,0,-1,0,0,0,1,-1,0,0|4,4.2001,8.5,0,-1,0,0,0,-1,1,0,0|4,4.2001,-8.5,0,-1,0,0,0,-1,1,0,0|4.3503,23.9003,62.5678|1,3.6,4|2.4999,1.2,-9.5001,1,0,0,0,0,-1,0,1,0|-57.1497,7.1002,61.5678|30.1503,10.5003,60.0678|0,-10.8,0,-1,0,0,0,0,1,0,1,0|-28.1497,19.1004,60.0678|-36.1497,13.1003,61.5678|1.4999,-1.2001,0,0,1,0,0,0,1,1,0,0|-14.1497,19.1004,60.0678|9.9999,-1.2,11.'
- ..'9999,0,1,0,0,0,1,1,0,0|-10,-1.2,12,0,-1,0,0,0,1,-1,0,0|4.3503,23.9003,57.5678|-12.6497,26.9005,60.0678|10,9.6,8|-0.5,1.8,0.9999,-1,0,0,0,1,0,0,0,-1|0,1.2001,7.4999,-1,0,0,0,0,-1,0,-1,0|-36.1497,2.9002,60.0678|89,4.8,14|4.4999,-1.4001,5.5,1,0,0,0,-1,0,0,-0,-1|-6.0001,-1.2001,1.5,1,0,0,0,-1,0,0,-0,-1|-6,0,6.4999,1,0,0,0,-1,0,0,0,-1|-4.5,-0.8001,5.9999,1,0,0,0,-1,0,0,0,-1|6,0,6.4999,1,0,0,0,-1,0,0,0,-1|4.3503,26.3004,57.5678|0,1.8,0,0,1,0,0,0,-1,-1,0,0|1.8503,15.5003,60.0678|0,0.6001,0,0,1,0,0,0,-1,-1,0,0|1.8503,10.1002,60.0678|0,-0.6,0,-1,0,0,0,0,1,0,1,0|-3.1497,26.3004,59.0678|-2.1497,23.9003,59.0678|1,3.6,1|-3.8497,25.3004,60.5678|0.5,1.4,0,0,-0,-1,-1,0,0,0,1,0|0,-1.8001,0.5,0,-1,0,-1,0,0,0,-0,-1|0.5,-1,0,0,-0,-1,-1,0,0,0,1,0|-77.1497,19.1004,66.0678|0,0,6.5,1,0,0,0,1,0,0,0,1|0,0,-6.5,1,0,0,0,1,0,0,0,1|-21.1497,19.1004,60.0678|34,1.2,13|0,0,0.5,1,0,0,0,-1,0,0,-0,-1|-11.5,6.0001,5,1,0,0,0,0,-1,0,1,0|15.9999,-0.2,6,1,0,0,0,0,1,0,-1,0|-5.5,1.2,15.9999,0,1,0,0,0,-1,-1,0,0|-11.5001,0,1,-1,0,0,0,1,0,0,0,-1|0,0.6,-14.0001,0,1,0,0,0,-1,-1,0,0|0,0.6,-10.5,0,-1,0,0,0'
- ..',-1,1,0,0|-5.5,1.2,-16.0001,0,1,0,0,0,-1,-1,0,0|-46.6497,4.1002,76.0678|10.5,-4.8001,-6.5,-1,0,0,0,0,1,0,1,0|-1.8301,-1.0044,1.4999,1,0,0,0,0,1,0,-1,0|-7,0.6,-4,-1,0,0,0,-1,0,0,0,1|-0.5,-1.2001,0,0,-1,0,0,0,1,-1,0,0|-4.6497,23.3004,59.0678|-3.1497,27.1005,60.5678|5.8503,10.1002,60.0678|1,7.2,6|0,0.6,36.5,0,-1,0,0,0,-1,1,0,0|2,-0.6,3,-1,0,0,0,0,1,0,1,0|-2,-0.6,2.9999,1,0,0,0,0,1,0,-1,0|-4.1497,25.1004,59.0678|0,1.1999,0.5,1,0,0,0,0,-1,0,1,0|-2.1497,23.9003,62.0678|-3.1497,23.9003,60.5678|0,-0.6001,1.4999,1,0,0,0,0,1,0,-1,0|1.8503,14.3002,60.0678|-3.1497,26.3004,62.0678|0,1.8,-1.5,1,0,0,0,0,-1,0,1,0|-5.1497,27.5004,55.5678|-4.1497,25.1004,62.0678|-4.6497,23.3004,62.0678|-2.1497,24.5004,60.5678|3.8503,14.3002,57.0678|-0.5,3.5999,-0.5,0,1,0,0,0,-1,-1,0,0|-0.5,-3.6,-1,0,-1,0,0,0,1,-1,-0,0|teleporter12d|3.8503,6.7002,60.0678|0,0.6,34.5,0,1,0,0,0,-1,-1,0,0|4.3503,16.7003,60.0678|4,6,4|0,-1.2,-9.5001,0,1,0,0,0,1,1,0,0|0.4999,2.4001,0,0,0,-1,0,1,0,1,0,0|-1.5,3.6,0,1,0,0,0,0,-1,0,1,0|0,1.1999,0.4999,-1,0,0,0,1,0,0,0,-1|-3.6497,26.5004,56.2678|http://www.roblox.com/as'
- ..'set/?id=98948444|-0.5001,-1,1.5,0,0,1,0,1,0,-1,0,0|-57.1497,14.9003,60.0678|1,2.4,4|0,-0.6001,0,1,0,0,0,0,1,0,-1,0|0,-0.6001,-1.5001,1,0,0,0,0,1,0,-1,0|0,-0.6001,-1.5,-1,0,0,0,0,1,0,1,0|-6.6497,2.9002,47.0678|-7,-0.6001,-4,-1,0,0,0,0,1,0,1,0|3.3503,10.1002,62.5678|0.5,-0.6,0.5,0,1,0,0,0,1,1,0,0|-4.1497,29.3005,56.5678|control015|-0.5,1.8,1,0,0,1,0,-1,0,1,0,0|-57.1497,7.1002,58.5678|0,-4.2001,-7.5001,1,0,0,0,1,0,0,0,1|-57.1497,13.1003,58.5678|-53.6497,1.1001,67.5678|17.5,-1.8001,-7,-1,0,0,0,-1,0,0,0,1|0,-1.8001,3.4999,-1,0,0,0,0,1,0,1,0|-43.1497,18.7003,52.5678|-5.6497,26.5004,56.2678|-0.5001,-1,-0.5,0,0,1,0,1,0,-1,0,0|3.3503,10.1002,57.5678|-22.1497,19.9003,52.5678|-7.5001,0.5999,1,0,-1,0,0,0,-1,1,0,0|-36.1497,0.3001,55.5678|0,-2.4001,4.5,-1,0,0,0,0,1,0,1,0|-4.6497,22.7004,60.5678|0.9499|-29.5897,6.6002,60.1678|6,0.2,6|rbxasset://Textures/SpawnLocation.png| |Chest|Middle|-17.8601,10.1002,59.7946|0,90.4899,0|2,2,1|-17.8601,9.9002,59.7946|0,-89.5101,0|2,1.2,1|1.1,2,1.1|waist|-17.8597,8.7775,59.7941|0,0.2,0|2.21,0.3,1.11|chest1|-17.9601,10.2005,59.7954|0,0.49,'
- ..'0|0,-0.1001,0|0.975,0.3,2.21|chest2|-17.9552,9.9005,60.3955|0.975,0.3,1|chest3|-17.9651,9.9005,59.1955|chest4|-17.9201,9.7505,59.7951|chest5|-17.9158,9.7505,60.2952|1,0.6,0.2|chest6|-17.915,9.7505,60.3951|16.7,0.49,1.7899|chest7|-17.9243,9.7505,59.2951|chest8|-17.9252,9.7505,59.1952|-16.7001,0.49,-1.79|chest9|-18.0052,10.6504,59.1956|0,0,-0.1001|1,0.8,0.8|chest10|-17.995,10.6504,60.3957|0,0,0.1|chest11|-18.0001,10.2255,59.7956|1,0.1,0.8|ibl|-17.8601,8.7005,59.7946|1.11,0.5,0.2|shoulder1|-17.466,10.7505,59.0911|0.8999,0.8,0.8|back1|-17.6062,10.0005,59.0922|-0.3001,-0.76,-22.6801|shoulder2|-17.4541,10.7505,60.4914|back2|-17.5941,10.0005,60.4924|-1.13,-178.59,21.09|shoulder3|-17.466,11.4004,59.0911|0.8,0.4,0.3|http://www.roblox.com/asset/?id=18327577|shoulder5|-17.4541,11.4004,60.4914|shoulder4|-17.1662,11.4504,59.0884|0.8,0.3499,0.3|shoulder6|-17.1542,11.4504,60.4885|back3|-17.5601,11.0004,59.7921|0.8999,0.4,0.8|back4|-17.5601,10.4004,59.7921|0.8999,0.1,0.55|back5|-17.5601,10.0004,59.7921|0.8999,0.1,0.6999|neck|-17.9601,11.2004,59.7954|1,1,0.8999|chestbox|-18'
- ..'.0603,10.1003,59.7963|1.11,0.4,1.11|http://www.roblox.com/asset/?id=18350031|chestbox2|-18.0602,10.1503,59.7962|0.6,0.6999,1.07|chestbox3|-18.0602,10.5502,59.7963|0.8999,0.2,1.11|chestbox4|-18.0602,10.7002,59.7962|1.5,0.4,1.1|helm|-18.0603,11.8004,59.7963|0.85,0.85,0.85|http://www.roblox.com/asset/?id=17420141|http://www.roblox.com/asset/?id=18353503|Arm1|-17.8473,10.1002,61.2946|-17.8505,10.6776,60.8943|1.6499,1.2999,1.45|http://www.roblox.com/asset/?id=1185246|-17.8486,10.0775,61.0937|0,-89.5101,11.46|-17.8475,8.7769,61.2445|88.9899,-89.5101,-88.9801|0.07,0.0599,0.0599|-17.8482,9.3775,61.1946|1.1,0.4,1.1|-17.8496,10.2005,61.0446|-11.3101,0.49,-1.17|0.4862,0.3607,0.2745|-17.8473,10.6003,61.2946|11.31,-179.51,1.1699|0.4,0.4,0.4499|glove|-17.8456,8.7005,61.4944|0.6,0.3499,0.1|Arm2|-17.8728,10.1002,58.2939|-17.8695,10.6776,58.694|-17.8709,10.0775,58.4939|0,-89.5101,-11.4601|-17.8714,9.3775,58.3935|-17.8724,8.7775,58.3433|88.9899,-89.5101,89|-17.8708,10.2005,58.5439|11.31,0.49,1.1699|-17.8746,8.7005,58.0939|-17.8728,10.6003,58.2939|-11.3101,-179.51,-1.17|Leg1|'
- ..'-17.8558,8.1002,60.2946|-17.8547,8.1776,60.3951|0,-89.5101,5.73|1,2.4,1|1,0.6999,1.09|heel|-17.8544,7.1503,60.4696|foot1|-18.3543,7.1503,60.4738|1.1,0.4499,0.8999|foot2|-18.8043,7.1503,60.4774|0.6999,0.5,1|shin|-17.8544,7.5003,60.4696|-5.7101,0.49,-0.58|thigh1|-17.8534,8.3506,60.5946|1.11,0.6999,0.6|thigh2|-17.8567,8.0005,60.1946|1.11,0.2,0.6|Leg2|-17.8643,8.1002,59.2946|-17.8648,8.1776,59.1938|0,-89.5101,-5.7301|-17.8658,7.1503,59.1195|-18.3658,7.1503,59.1239|-18.8158,7.1503,59.1278|-17.8658,7.5003,59.1195|5.71,0.49,0.5799|-17.8669,8.3506,58.9938|-17.8634,8.0005,59.3946|Head|0.8431,0.7725,0.6039|-19.4183,9.8402,59.8529|3.67,6.6799,0.2|HatRemover|WalkSpeed Script|http://www.roblox.com/asset/?id=13718969|FaceScript|Virus|4D Being|-18.1673,9.7001,49.7429|-18.1673,8.2001,49.7429|-19.8672,8.8001,49.7566|-19.6672,8.8001,49.755|-19.5672,8.8001,49.7542|-18.1673,6.7002,49.7429|-20.1673,8.8001,49.7591|-19.6672,7.4002,49.755|-19.5672,7.4002,49.7542|-19.8672,7.4002,49.7566|-20.1673,7.4002,49.7591|-57.7896,14.9357,59.9582|Weapon Control;0,29>24>13,70>24>72,81>24>27,92>'
- ..'48>91,92>49>90,100>48>99,100>49>98,131>48>129,131>49>140,139>48>137,139>49>132,178>48>175,178>49>153,179>48>175,179>49>149,204>48>203,204>49>1976,213>48>212,213>49>295,214>48>212,214>49>215,405>48>404,405>49>403,407>48>406,407>49>403,502>48>501,502>49>508,503>48>501,503>49>509,504>48>501,504>49>507,505>48>501,505>49>506,573>48>572,573>49>506,574>48>572,574>49>507,575>48>572,575>49>509,576>48>572,576>49>508,577>48>572,577>49>569,634>24>618,675>24>677,686>24>632,706>48>703,706>49>709,711>48>709,711>49>707,825>48>823,825>49>821,826>48>823,826>49>818,849>48>847,849>49>845,852>48>850,852>49>845,855>48>853,855>49>847,870>48>868,870>49>1087,871>48>868,871>49>998,874>48>872,874>49>878,877>48>875,877>49>987,879>48>878,879>49>2162,882>48>880,882>49>1024,883>48>880,883>49>934,886>48>884,886>49>868,889>48>887,889>49>899,891>48>890,891>49>1976,892>48>890,892>49>887,895>48>893,895>49>980,898>48>896,898>49>2211,903>48>901,903>49>2176,904>48>901,904>49>2211,907>48>905,907>49>917,908>48>905,908>49>954,910>48>909,910>49>2270,913>48>911,913>49>961,914>48>911,914>49>2211,915>4'
- ..'8>911,915>49>954,916>48>911,916>49>2084,921>48>919,921>49>931,925>48>924,925>49>984,927>48>926,927>49>2211,928>48>926,928>49>969,936>48>934,936>49>1024,939>48>937,939>49>2121,940>48>937,940>49>980,941>48>937,941>49>893,944>48>942,944>49>2176,945>48>942,945>49>2211,946>48>942,946>49>931,949>48>947,949>49>919,950>48>947,950>49>931,953>48>951,953>49>2334,958>48>957,958>49>947,959>48>957,959>49>932,960>48>957,960>49>2211,963>48>961,963>49>896,973>48>971,973>49>964,974>48>971,974>49>2145,975>48>971,975>49>2191,978>48>976,978>49>2198,979>48>976,979>49>2244,982>48>981,982>49>2270,983>48>981,983>49>1007,988>48>987,988>49>1080,989>48>987,989>49>1316,990>48>987,990>49>1477,991>48>987,991>49>868,993>48>992,993>49>1018,1005>48>1003,1005>49>2185,1006>48>1003,1006>49>1015,1011>48>1009,1011>49>2190,1014>48>1013,1014>49>998,1016>48>1015,1016>49>2270,1017>48>1015,1017>49>1007,1023>48>1021,1023>49>981,1025>48>1024,1025>49>1191,1026>48>1024,1026>49>1528,1027>48>1024,1027>49>1090,1029>48>1028,1029>49>1941,1031>48>1030,1031>49>967,1032>48>1030,1032>49>2270,1034>48>1033,1034>49>'
- ..'1264,1035>48>1033,1035>49>1544,1036>48>1033,1036>49>1069,1037>48>1033,1037>49>1823,1039>48>1038,1039>49>987,1040>48>1038,1040>49>1936,1041>48>1038,1041>49>1013,1042>48>1038,1042>49>998,1043>48>1038,1043>49>868,1047>48>1046,1047>49>1217,1048>48>1046,1048>49>1184,1051>48>1049,1051>49>987,1052>48>1049,1052>49>1087,1053>48>1049,1053>49>998,1057>48>1056,1057>49>1247,1059>48>1058,1059>49>1152,1062>48>1060,1062>49>2244,1063>48>1060,1063>49>1098,1065>48>1064,1065>49>1217,1066>48>1064,1066>49>1976,1067>48>1064,1067>49>1120,1068>48>1064,1068>49>1238,1070>48>1069,1070>49>2345,1071>48>1069,1071>49>1467,1074>48>1072,1074>49>1056,1076>48>1075,1076>49>1166,1077>48>1075,1077>49>987,1079>48>1078,1079>49>2334,1084>48>1082,1084>49>2313,1085>48>1082,1085>49>1127,1086>48>1082,1086>49>1145,1088>48>1087,1088>49>998,1094>48>1092,1094>49>2313,1095>48>1092,1095>49>1100,1096>48>1092,1096>49>1114,1097>48>1092,1097>49>1108,1099>48>1098,1099>49>1072,1102>48>1100,1102>49>1145,1103>48>1100,1103>49>1127,1104>48>1100,1104>49>1108,1105>48>1100,1105>49>1082,1107>48>1106,1107>49>987,1112>48>11'
- ..'10,1112>49>1024,1113>48>1110,1113>49>1090,1116>48>1114,1116>49>1145,1117>48>1114,1117>49>1127,1118>48>1114,1118>49>1108,1119>48>1114,1119>49>1082,1122>48>1120,1122>49>1217,1124>48>1123,1124>49>1009,1125>48>1123,1125>49>1019,1126>48>1123,1126>49>2208,1129>48>1127,1129>49>2313,1131>48>1130,1131>49>1049,1132>48>1130,1132>49>998,1133>48>1130,1133>49>1420,1134>48>1130,1134>49>987,1136>48>1135,1136>49>1936,1137>48>1135,1137>49>987,1138>48>1135,1138>49>998,1140>48>1139,1140>49>1976,1141>48>1139,1141>49>987,1142>48>1139,1142>49>1389,1143>48>1139,1143>49>1268,1144>48>1139,1144>49>1243,1147>48>1145,1147>49>2313,1148>48>1145,1148>49>1108,1153>48>1152,1153>49>1247,1155>48>1154,1155>49>2176,1156>48>1154,1156>49>1199,1157>48>1154,1157>49>2270,1159>48>1158,1159>49>1044,1160>48>1158,1160>49>1546,1161>48>1158,1161>49>1164,1168>48>1166,1168>49>1024,1170>48>1169,1170>49>1024,1171>48>1169,1171>49>1528,1172>48>1169,1172>49>1471,1175>48>1173,1175>49>1240,1176>48>1173,1176>49>954,1179>48>1177,1179>49>1424,1183>48>1181,1183>49>1158,1188>48>1186,1188>49>1217,1189>48>1186,1189>49>12'
- ..'08,1190>48>1186,1190>49>1201,1194>48>1192,1194>49>1976,1195>48>1192,1195>49>1046,1198>48>1196,1198>49>1158,1200>48>1199,1200>49>1150,1202>48>1201,1202>49>2157,1203>48>1201,1203>49>1199,1204>48>1201,1204>49>1162,1205>48>1201,1205>49>1357,1206>48>1201,1206>49>2148,1207>48>1201,1207>49>1226,1209>48>1208,1209>49>2176,1210>48>1208,1210>49>2148,1211>48>1208,1211>49>1199,1212>48>1208,1212>49>1247,1213>48>1208,1213>49>1230,1214>48>1208,1214>49>1221,1215>48>1208,1215>49>1162,1216>48>1208,1216>49>1357,1218>48>1217,1218>49>1184,1220>48>1219,1220>49>2334,1225>48>1223,1225>49>917,1229>48>1226,1229>49>1247,1232>48>1230,1232>49>1247,1242>48>1240,1242>49>1405,1245>48>1243,1245>49>987,1246>48>1243,1246>49>1388,1249>48>1248,1249>49>1403,1250>48>1248,1250>49>1351,1252>48>1251,1252>49>1186,1253>48>1251,1253>49>2270,1254>48>1251,1254>49>1247,1255>48>1251,1255>49>1357,1257>48>1256,1257>49>2334,1262>48>1260,1262>49>987,1267>48>1266,1267>49>1049,1270>48>1268,1270>49>1352,1271>48>1268,1271>49>1263,1272>48>1268,1272>49>1243,1273>48>1268,1273>49>1388,1274>48>1268,1274>49>1383,1276>48'
- ..'>1275,1276>49>1000,1277>48>1275,1277>49>1087,1278>48>1275,1278>49>998,1279>48>1275,1279>49>868,1280>48>1275,1280>49>1429,1283>48>1281,1283>49>1251,1284>48>1281,1284>49>1247,1287>48>1285,1287>49>2270,1288>48>1285,1288>49>1154,1290>48>1289,1290>49>2334,1293>48>1291,1293>49>1251,1294>48>1291,1294>49>1201,1297>48>1295,1297>49>2334,1298>48>1295,1298>49>1247,1299>48>1295,1299>49>1056,1302>48>1300,1302>49>2334,1303>48>1300,1303>49>1056,1305>48>1304,1305>49>1976,1306>48>1304,1306>49>1313,1308>48>1307,1308>49>1258,1309>48>1307,1309>49>1150,1310>48>1307,1310>49>1546,1311>48>1307,1311>49>1247,1312>48>1307,1312>49>1221,1315>48>1314,1315>49>1243,1319>48>1318,1319>49>1247,1321>48>1320,1321>49>1357,1326>48>1324,1326>49>1458,1327>48>1324,1327>49>1433,1329>48>1328,1329>49>987,1330>48>1328,1330>49>1383,1331>48>1328,1331>49>1263,1332>48>1328,1332>49>1268,1333>48>1328,1333>49>1260,1335>48>1334,1335>49>2334,1337>48>1336,1337>49>1343,1340>48>1338,1340>49>1177,1341>48>1338,1341>49>1158,1342>48>1338,1342>49>1307,1346>48>1344,1346>49>1477,1347>48>1344,1347>49>1383,1349>48>1348,1349'
- ..'>49>1320,1350>48>1348,1350>49>1247,1353>48>1352,1353>49>987,1354>48>1352,1354>49>1260,1356>48>1355,1356>49>2334,1358>48>1357,1358>49>1150,1361>48>1359,1361>49>1373,1362>48>1359,1362>49>1351,1363>48>1359,1363>49>1069,1364>48>1359,1364>49>1152,1365>48>1359,1365>49>1348,1366>48>1359,1366>49>1123,1369>48>1367,1369>49>1028,1372>48>1370,1372>49>1098,1375>48>1373,1375>49>1351,1378>48>1376,1378>49>1976,1379>48>1376,1379>49>1123,1380>48>1376,1380>49>1098,1381>48>1376,1381>49>1403,1382>48>1376,1382>49>1069,1385>48>1383,1385>49>1477,1386>48>1383,1386>49>987,1387>48>1383,1387>49>1388,1393>48>1391,1393>49>1320,1394>48>1391,1394>49>1399,1395>48>1391,1395>49>1348,1398>48>1396,1398>49>1424,1401>48>1399,1401>49>1357,1402>48>1399,1402>49>1247,1404>48>1403,1404>49>1431,1409>48>1407,1409>49>2244,1412>48>1410,1412>49>1389,1415>48>1413,1415>49>1464,1416>48>1413,1416>49>1546,1418>48>1417,1418>49>1403,1419>48>1417,1419>49>1351,1422>48>1420,1422>49>1452,1423>48>1420,1423>49>1429,1428>48>1426,1428>49>1383,1432>48>1431,1432>49>1351,1435>48>1433,1435>49>1357,1438>48>1436,1438>49>1464,'
- ..'1440>48>1439,1440>49>1403,1441>48>1439,1441>49>1351,1443>48>1442,1443>49>1403,1444>48>1442,1444>49>1351,1446>48>1445,1446>49>1976,1447>48>1445,1447>49>1460,1448>48>1445,1448>49>1383,1449>48>1445,1449>49>1268,1450>48>1445,1450>49>1388,1451>48>1445,1451>49>1410,1455>48>1454,1455>49>1530,1456>48>1454,1456>49>1589,1457>48>1454,1457>49>1471,1462>48>1460,1462>49>1069,1463>48>1460,1463>49>1477,1466>48>1464,1466>49>1546,1469>48>1467,1469>49>1477,1470>48>1467,1470>49>1383,1472>48>1471,1472>49>1191,1473>48>1471,1473>49>1528,1474>48>1471,1474>49>1493,1475>48>1471,1475>49>1589,1476>48>1471,1476>49>1498,1482>48>1480,1482>49>1660,1483>48>1480,1483>49>1638,1484>48>1480,1484>49>1725,1488>48>1486,1488>49>1526,1489>48>1486,1489>49>1556,1492>48>1490,1492>49>1563,1497>48>1495,1497>49>1413,1502>48>1500,1502>49>1478,1503>48>1500,1503>49>1548,1506>48>1504,1506>49>2145,1507>48>1504,1507>49>1643,1508>48>1504,1508>49>2121,1509>48>1504,1509>49>1899,1512>48>1510,1512>49>1024,1513>48>1510,1513>49>1191,1514>48>1510,1514>49>1471,1518>48>1516,1518>49>1389,1523>48>1521,1523>49>2244,1524>48'
- ..'>1521,1524>49>2358,1525>48>1521,1525>49>1551,1534>48>1532,1534>49>1752,1535>48>1532,1535>49>2176,1536>48>1532,1536>49>2270,1537>48>1532,1537>49>1660,1540>48>1538,1540>49>1556,1541>48>1538,1541>49>1752,1542>48>1538,1542>49>1643,1550>48>1548,1550>49>1660,1552>48>1551,1552>49>1407,1553>48>1551,1553>49>1519,1554>48>1551,1554>49>1577,1555>48>1551,1555>49>1471,1559>48>1558,1559>49>1704,1560>48>1558,1560>49>1650,1561>48>1558,1561>49>1575,1562>48>1558,1562>49>1569,1565>48>1563,1565>49>1647,1567>48>1566,1567>49>2270,1568>48>1566,1568>49>1587,1570>48>1569,1570>49>1650,1571>48>1569,1571>49>1633,1574>48>1572,1574>49>1752,1579>48>1577,1579>49>1471,1582>48>1580,1582>49>1604,1585>48>1583,1585>49>1594,1586>48>1583,1586>49>1580,1597>48>1596,1597>49>1600,1598>48>1596,1598>49>1566,1599>48>1596,1599>49>1532,1601>48>1600,1601>49>1622,1602>48>1600,1602>49>1575,1603>48>1600,1603>49>1660,1609>48>1607,1609>49>1741,1610>48>1607,1610>49>1663,1613>48>1611,1613>49>1580,1614>48>1611,1614>49>1583,1615>48>1611,1615>49>1752,1616>48>1611,1616>49>1643,1619>48>1617,1619>49>1753,1624>48>1622,1'
- ..'624>49>1752,1628>48>1625,1628>49>1725,1631>48>1629,1631>49>1725,1632>48>1629,1632>49>1600,1637>48>1635,1637>49>1643,1640>48>1638,1640>49>1734,1641>48>1638,1641>49>1725,1644>48>1643,1644>49>1592,1645>48>1643,1645>49>1658,1649>48>1647,1649>49>1804,1653>48>1652,1653>49>1692,1654>48>1652,1654>49>1764,1655>48>1652,1655>49>2121,1661>48>1660,1661>49>1734,1665>48>1663,1665>49>1708,1667>48>1666,1667>49>2270,1669>48>1668,1669>49>1596,1670>48>1668,1670>49>1719,1671>48>1668,1671>49>1660,1672>48>1668,1672>49>1656,1673>48>1668,1673>49>1625,1674>48>1668,1674>49>1575,1676>48>1675,1676>49>1745,1682>48>1680,1682>49>1775,1684>48>1683,1684>49>1679,1685>48>1683,1685>49>1662,1686>48>1683,1686>49>1642,1687>48>1683,1687>49>1751,1688>48>1683,1688>49>1606,1689>48>1683,1689>49>1725,1690>48>1683,1690>49>1677,1691>48>1683,1691>49>1646,1696>48>1694,1696>49>2270,1698>48>1697,1698>49>1575,1699>48>1697,1699>49>1656,1700>48>1697,1700>49>2270,1701>48>1697,1701>49>1660,1702>48>1697,1702>49>1725,1703>48>1697,1703>49>1620,1711>48>1709,1711>49>1683,1712>48>1709,1712>49>1796,1714>48>1713,1714>49>'
- ..'1704,1715>48>1713,1715>49>1558,1716>48>1713,1716>49>1747,1718>48>1717,1718>49>1741,1721>48>1719,1721>49>1600,1724>48>1722,1724>49>987,1726>48>1725,1726>49>1620,1727>48>1725,1727>49>1600,1728>48>1725,1728>49>1591,1729>48>1725,1729>49>1752,1730>48>1725,1730>49>1796,1731>48>1725,1731>49>1708,1732>48>1725,1732>49>1677,1733>48>1725,1733>49>1622,1736>48>1735,1736>49>1638,1737>48>1735,1737>49>1734,1738>48>1735,1738>49>1749,1739>48>1735,1739>49>1725,1740>48>1735,1740>49>1663,1742>48>1741,1742>49>1663,1743>48>1741,1743>49>1803,1744>48>1741,1744>49>1885,1750>48>1749,1750>49>1708,1756>48>1755,1756>49>1663,1759>48>1757,1759>49>1745,1762>48>1760,1762>49>2198,1763>48>1760,1763>49>1683,1766>48>1764,1766>49>1692,1768>48>1767,1768>49>1741,1771>48>1769,1771>49>1753,1772>48>1769,1772>49>1804,1774>48>1773,1774>49>2270,1778>48>1776,1778>49>2211,1779>48>1776,1779>49>1799,1782>48>1780,1782>49>2176,1783>48>1780,1783>49>2211,1787>48>1785,1787>49>2145,1789>48>1788,1789>49>1866,1791>48>1790,1791>49>1741,1795>48>1792,1795>49>1785,1797>48>1796,1797>49>1677,1798>48>1796,1798>49>1941,180'
- ..'0>48>1799,1800>49>2211,1802>48>1801,1802>49>987,1807>48>1805,1807>49>2084,1808>48>1805,1808>49>1862,1809>48>1805,1809>49>1837,1812>48>1810,1812>49>2176,1813>48>1810,1813>49>2075,1814>48>1810,1814>49>2211,1815>48>1810,1815>49>1853,1818>48>1816,1818>49>1788,1821>48>1819,1821>49>2084,1822>48>1819,1822>49>1958,1824>48>1823,1824>49>1544,1825>48>1823,1825>49>1663,1826>48>1823,1826>49>2280,1827>48>1823,1827>49>1000,1828>48>1823,1828>49>2222,1830>48>1829,1830>49>1864,1831>48>1829,1831>49>1875,1832>48>1829,1832>49>2211,1835>48>1833,1835>49>1960,1836>48>1833,1836>49>1925,1839>48>1837,1839>49>2211,1840>48>1837,1840>49>1804,1844>48>1843,1844>49>2244,1845>48>1843,1845>49>1949,1846>48>1843,1846>49>1519,1849>48>1847,1849>49>1864,1850>48>1847,1850>49>1853,1854>48>1853,1854>49>1864,1856>48>1855,1856>49>1767,1857>48>1855,1857>49>1717,1858>48>1855,1858>49>1885,1859>48>1855,1859>49>1803,1860>48>1855,1860>49>1790,1870>48>1868,1870>49>2244,1871>48>1868,1871>49>2198,1873>48>1872,1873>49>2270,1874>48>1872,1874>49>1866,1877>48>1875,1877>49>2211,1881>48>1878,1881>49>2211,1882>48>187'
- ..'8,1882>49>1920,1889>48>1886,1889>49>2304,1891>48>1890,1891>49>2176,1892>48>1890,1892>49>1757,1893>48>1890,1893>49>1883,1894>48>1890,1894>49>899,1897>48>1895,1897>49>1960,1898>48>1895,1898>49>1925,1900>48>1899,1900>49>2145,1901>48>1899,1901>49>2121,1902>48>1899,1902>49>1044,1905>48>1903,1905>49>1872,1910>48>1908,1910>49>1895,1911>48>1908,1911>49>1833,1914>48>1912,1914>49>1895,1915>48>1912,1915>49>1960,1916>48>1912,1916>49>1833,1919>48>1917,1919>49>868,1923>48>1920,1923>49>1886,1924>48>1920,1924>49>1841,1927>48>1925,1927>49>1960,1930>48>1928,1930>49>1823,1931>48>1928,1931>49>2203,1932>48>1928,1932>49>868,1935>48>1933,1935>49>1823,1945>48>1943,1945>49>1895,1946>48>1943,1946>49>1925,1947>48>1943,1947>49>1908,1948>48>1943,1948>49>1833,1951>48>1949,1951>49>2198,1953>48>1952,1953>49>987,1957>48>1954,1957>49>1920,1959>48>1958,1959>49>2270,1965>48>1962,1965>49>1886,1968>48>1966,1968>49>878,1971>48>1969,1971>49>987,1974>48>1972,1974>49>2073,1975>48>1972,1975>49>1775,1981>48>1976,1981>49>1764,1982>48>1976,1982>49>893,1983>48>1976,1983>49>1658,1984>48>1976,1984>49>1706'
- ..',1985>48>1976,1985>49>2198,1986>48>1976,1986>49>1196,1987>48>1976,1987>49>2355,1988>48>1976,1988>49>1966,1989>48>1976,1989>49>1906,1990>48>1976,1990>49>2256,1991>48>1976,1991>49>996,1992>48>1976,1992>49>1816,1993>48>1976,1993>49>2336,1994>48>1976,1994>49>1046,1995>48>1976,1995>49>1683,1996>48>1976,1996>49>2334,1997>48>1976,1997>49>1675,1998>48>1976,1998>49>1861,1999>48>1976,1999>49>1149,2000>48>1976,2000>49>1735,2001>48>1976,2001>49>1725,2002>48>1976,2002>49>1796,2003>48>1976,2003>49>1708,2004>48>1976,2004>49>981,2005>48>1976,2005>49>1788,2006>48>1976,2006>49>1652,2007>48>1976,2007>49>2151,2008>48>1976,2008>49>1019,2009>48>1976,2009>49>1056,2010>48>1976,2010>49>709,2011>48>1976,2011>49>1775,2012>48>1976,2012>49>1633,2013>48>1976,2013>49>922,2014>48>1976,2014>49>1569,2015>48>1976,2015>49>1823,2016>48>1976,2016>49>2120,2017>48>1976,2017>49>1054,2018>48>1976,2018>49>1322,2019>48>1976,2019>49>2342,2020>48>1976,2020>49>1069,2021>48>1976,2021>49>878,2022>48>1976,2022>49>1021,2023>48>1976,2023>49>2222,2024>48>1976,2024>49>1018,2025>48>1976,2025>49>924,2026>48>1976'
- ..',2026>49>1012,2027>48>1976,2027>49>1233,2028>48>1976,2028>49>1238,2029>48>1976,2029>49>1123,2030>48>1976,2030>49>985,2031>48>1976,2031>49>1477,2032>48>1976,2032>49>1013,2033>48>1976,2033>49>1343,2034>48>1976,2034>49>2191,2035>48>1976,2035>49>1263,2036>48>1976,2036>49>1098,2037>48>1976,2037>49>929,2038>48>1976,2038>49>1235,2039>48>1976,2039>49>1028,2040>48>1976,2040>49>1367,2041>48>1976,2041>49>1755,2042>48>1976,2042>49>1275,2043>48>1976,2043>49>1266,2044>48>1976,2044>49>2203,2045>48>1976,2045>49>1180,2046>48>1976,2046>49>2280,2047>48>1976,2047>49>2244,2048>48>1976,2048>49>1191,2049>48>1976,2049>49>1152,2050>48>1976,2050>49>1747,2051>48>1976,2051>49>1890,2052>48>1976,2052>49>1471,2053>48>1976,2053>49>1515,2054>48>1976,2054>49>1543,2055>48>1976,2055>49>980,2056>48>1976,2056>49>1485,2057>48>1976,2057>49>2185,2058>48>1976,2058>49>1314,2059>48>1976,2059>49>207,2060>48>1976,2060>49>994,2061>48>1976,2061>49>1370,2062>48>1976,2062>49>1247,2063>48>1976,2063>49>1169,2064>48>1976,2064>49>1713,2065>48>1976,2065>49>1130,2068>48>2066,2068>49>1976,2069>48>2066,2069>49>177'
- ..'5,2071>48>2070,2071>49>2211,2072>48>2070,2072>49>2154,2074>48>2073,2074>49>2162,2076>48>2075,2076>49>1780,2077>48>2075,2077>49>2164,2078>48>2075,2078>49>942,2079>48>2075,2079>49>901,2080>48>2075,2080>49>1680,2081>48>2075,2081>49>2176,2082>48>2075,2082>49>2211,2083>48>2075,2083>49>872,2085>48>2084,2085>49>2296,2086>48>2084,2086>49>2286,2087>48>2084,2087>49>1886,2088>48>2084,2088>49>2260,2089>48>2084,2089>49>954,2090>48>2084,2090>49>1862,2091>48>2084,2091>49>1837,2092>48>2084,2092>49>2298,2093>48>2084,2093>49>2073,2094>48>2084,2094>49>2239,2095>48>2084,2095>49>961,2096>48>2084,2096>49>1938,2097>48>2084,2097>49>2235,2098>48>2084,2098>49>2311,2099>48>2084,2099>49>2310,2100>48>2084,2100>49>2361,2101>48>2084,2101>49>2157,2102>48>2084,2102>49>1680,2103>48>2084,2103>49>967,2104>48>2084,2104>49>1804,2105>48>2084,2105>49>896,2106>48>2084,2106>49>878,2107>48>2084,2107>49>1775,2108>48>2084,2108>49>872,2111>48>2109,2111>49>2208,2114>48>2112,2114>49>1872,2115>48>2112,2115>49>1015,2116>48>2112,2116>49>2270,2117>48>2112,2117>49>2185,2118>48>2112,2118>49>1788,2119>48>2112,2'
- ..'119>49>981,2122>48>2121,2122>49>1692,2123>48>2121,2123>49>2145,2124>48>2121,2124>49>1044,2125>48>2121,2125>49>980,2127>48>2126,2127>49>2084,2129>48>2128,2129>49>1694,2130>48>2128,2130>49>2228,2131>48>2128,2131>49>1749,2132>48>2128,2132>49>1264,2133>48>2128,2133>49>1058,2134>48>2128,2134>49>1852,2135>48>2128,2135>49>1236,2136>48>2128,2136>49>1784,2137>48>2128,2137>49>1722,2138>48>2128,2138>49>2351,2139>48>2128,2139>49>1002,2140>48>2128,2140>49>2109,2141>48>2128,2141>49>1080,2142>48>2128,2142>49>1316,2143>48>2128,2143>49>1033,2144>48>2128,2144>49>2208,2147>48>2145,2147>49>1044,2150>48>2148,2150>49>1199,2153>48>2151,2153>49>1755,2156>48>2154,2156>49>2211,2159>48>2157,2159>49>1199,2160>48>2157,2160>49>1680,2161>48>2157,2161>49>872,2168>48>2166,2168>49>2244,2169>48>2166,2169>49>2198,2172>48>2170,2172>49>2145,2174>48>2173,2174>49>2287,2175>48>2173,2175>49>2298,2177>48>2176,2177>49>1566,2178>48>2176,2178>49>2164,2179>48>2176,2179>49>1150,2180>48>2176,2180>49>1600,2181>48>2176,2181>49>1680,2182>48>2176,2182>49>872,2186>48>2185,2186>49>1903,2187>48>2185,2187>49>1906'
- ..',2188>48>2185,2188>49>2270,2189>48>2185,2189>49>996,2193>48>2191,2193>49>1785,2194>48>2191,2194>49>1706,2195>48>2191,2195>49>2170,2196>48>2191,2196>49>2198,2197>48>2191,2197>49>929,2199>48>2198,2199>49>1706,2200>48>2198,2200>49>955,2201>48>2198,2201>49>951,2202>48>2198,2202>49>929,2204>48>2203,2204>49>987,2205>48>2203,2205>49>1917,2206>48>2203,2206>49>868,2207>48>2203,2207>49>1000,2209>48>2208,2209>49>2190,2210>48>2208,2210>49>1755,2212>48>2211,2212>49>2164,2213>48>2211,2213>49>969,2214>48>2211,2214>49>932,2215>48>2211,2215>49>1862,2216>48>2211,2216>49>2338,2217>48>2211,2217>49>954,2218>48>2211,2218>49>1804,2220>48>2219,2220>49>2084,2221>48>2219,2221>49>2183,2227>48>2224,2227>49>2170,2230>48>2228,2230>49>2270,2233>48>2231,2233>49>2190,2234>48>2231,2234>49>1755,2237>48>2235,2237>49>1680,2238>48>2235,2238>49>872,2242>48>2240,2242>49>1962,2243>48>2240,2243>49>2084,2245>48>2244,2245>49>1949,2246>48>2244,2246>49>955,2247>48>2244,2247>49>1493,2248>48>2244,2248>49>1519,2249>48>2244,2249>49>1498,2252>48>2250,2252>49>2239,2255>48>2253,2255>49>2300,2257>48>2256,2257>'
- ..'49>2300,2263>48>2262,2263>49>2298,2264>48>2262,2264>49>2287,2265>48>2262,2265>49>2173,2268>48>2266,2268>49>1952,2269>48>2266,2269>49>1024,2271>48>2270,2271>49>2235,2272>48>2270,2272>49>1788,2273>48>2270,2273>49>1587,2274>48>2270,2274>49>1734,2275>48>2270,2275>49>1236,2276>48>2270,2276>49>1150,2277>48>2270,2277>49>1089,2278>48>2270,2278>49>1851,2279>48>2270,2279>49>1320,2282>48>2280,2282>49>1755,2283>48>2280,2283>49>709,2284>48>2280,2284>49>1028,2285>48>2280,2285>49>1855,2290>48>2289,2290>49>1976,2291>48>2289,2291>49>2313,2292>48>2289,2292>49>1895,2295>48>2293,2295>49>2286,2299>48>2298,2299>49>2258,2303>48>2301,2303>49>2298,2309>48>2307,2309>49>2310,2315>48>2313,2315>49>2355,2316>48>2313,2316>49>1108,2320>48>2317,2320>49>1976,2322>48>2321,2322>49>2084,2323>48>2321,2323>49>2300,2324>48>2321,2324>49>2289,2325>48>2321,2325>49>2253,2329>48>2326,2329>49>2304,2331>48>2330,2331>49>1033,2332>48>2330,2332>49>2345,2333>48>2330,2333>49>1933,2335>48>2334,2335>49>1247,2337>48>2336,2337>49>1895,2341>48>2338,2341>49>2304,2344>48>2342,2344>49>1069,2349>48>2347,2349>49>2244,'
- ..'2350>48>2347,2350>49>1028,2354>48>2352,2354>49>2304,2357>48>2356,2357>49>2270,2359>48>2358,2359>49>2244,2360>48>2358,2360>49>976;2;n;2|1:2;n;3|2:3|3:4|4:5|5:6|6:7|7:7|8:7|9:7|10:7|11:7|3:4|3:4|12:8;3|2:3|3:4|4:5|5:6|13:3|6:7|7:7|8:7|9:7|10:7|11:7|3:4|3:4|12:9;1|2:3|3:10|4:5|14:11|15:12|16:13|6:7|7:7|8:7|9:7|10:7|11:7|3:10|3:10;n;4|17:14;p;3|2:3|3:15|4:5|6:7|7:7|8:7|9:7|10:7|11:7|3:15|3:15|12:16;3|2:3|3:17|4:5|5:6|6:7|7:7|8:7|9:7|10:7|11:7|3:17|3:17|12:18;3|2:3|3:19|4:5|5:20|6:7|7:7|8:7|9:7|10:7|11:7|3:19|3:19|12:21;3|1:22|2:3|3:4|4:5|5:6|6:7|7:7|8:7|9:7|10:7|11:7|3:4|3:4|12:23;1|2:3|3:10|4:5|14:24|15:12|16:25|6:7|7:7|8:7|9:7|10:7|11:7|3:10|3:10;3|2:3|3:26|4:5|5:6|6:7|7:7|8:7|9:7|10:7|11:7|3:26|3:26|12:27;1|1:28|2:3|3:10|4:5|18:3|14:29|15:30|16:31|19:32|6:7|7:7|8:7|9:7|10:7|11:7|3:10|3:10;1|2:3|3:10|4:5|14:33|15:12|16:34|6:7|7:7|8:7|9:7|10:7|11:7|3:10|3:10;3|2:3|3:4|4:5|5:6|13:3|6:7|7:7|8:7|9:7|10:7|11:7|3:4|3:4|12:35;1|2:3|3:17|4:5|14:36|15:30|16:37|6:7|7:7|8:7|9:7|10:7|11:7|3:17|3:17;n;5|17:38|20:39|21:40|22:41;p;2|1:42;3|2:3|3:10|4:5|6:7|7:7|8:7|9:7|10:7|'
- ..'11:7|3:10|3:10|12:43;3|2:3|3:4|4:5|5:6|13:3|6:7|7:7|8:7|9:7|10:7|11:7|3:4|3:4|12:44;3|2:3|3:4|4:5|5:6|13:3|6:7|7:7|8:7|9:7|10:7|11:7|3:4|3:4|12:45;3|2:3|3:4|4:5|5:6|6:7|7:7|8:7|9:7|10:7|11:7|3:4|3:4|12:46;1|2:3|3:10|4:5|14:47|15:12|16:13|6:7|7:7|8:7|9:7|10:7|11:7|3:10|3:10;n;4|17:14;p;3|2:3|3:19|4:5|5:6|13:3|6:7|7:7|8:7|9:7|10:7|11:7|3:19|3:19|12:48;3|2:3|3:4|4:5|5:6|13:3|6:7|7:7|8:7|9:7|10:7|11:7|3:4|3:4|12:49;1|1:50|2:3|3:10|4:5|14:51|15:30|16:52|6:7|7:7|8:7|9:7|10:7|11:7|3:10|3:10;3|2:3|3:4|4:5|5:6|13:3|6:7|7:7|8:7|9:7|10:7|11:7|3:4|3:4|12:53;6|1:54|23:55;n;7|1:56|14:57|16:58|25:59|26:3|27:32|28:60|29:61|30:56|31:62|32:3|33:63|34:62|35:32|36:3;7|1:64|14:65|16:58|25:59|26:3|27:32|28:60|29:61|30:64|31:62|32:3|33:63|34:62|35:32|36:3;7|1:66|14:67|16:58|25:59|26:3|27:32|28:60|29:61|30:66|31:62|32:3|33:63|34:62|35:32|36:3;7|1:68|14:69|16:58|25:59|26:3|27:32|28:60|29:61|30:68|31:62|32:3|33:63|34:62|35:32|36:3;7|1:70|14:71|16:58|25:59|26:3|27:32|28:60|29:61|30:70|31:62|32:3|33:63|34:62|35:32|36:3;8|1:72|14:73|16:74|25:62|26:3|28:75|37:76;9|1:56|14:73|16:74|25:62'
- ..'|26:3;n;7|1:77|14:78|16:79|25:59|26:3|27:32|28:60|30:77|31:62|32:3|33:63|34:62|35:32|36:3;7|1:80|14:81|16:79|25:59|26:3|27:32|28:60|30:82|31:62|32:3|33:63|34:62|35:32|36:3;p;9|1:64|14:73|16:74|25:62|26:3;n;7|1:83|14:84|16:79|25:59|26:3|27:32|28:60|30:83|31:62|32:3|33:63|34:62|35:32|36:3;7|1:85|14:86|16:79|25:59|26:3|27:32|28:60|30:85|31:62|32:3|33:63|34:62|35:32|36:3;7|1:87|14:88|16:79|25:59|26:3|27:32|28:60|30:87|31:62|32:3|33:63|34:62|35:32|36:3;7|1:89|14:90|16:79|25:59|26:3|27:32|28:60|30:89|31:62|32:3|33:63|34:62|35:32|36:3;7|1:91|14:92|16:79|25:59|26:3|27:32|28:60|30:91|31:62|32:3|33:63|34:62|35:32|36:3;p;9|1:66|14:73|16:74|25:62|26:3;n;7|1:93|14:94|16:95|25:59|26:3|27:32|28:60|30:93|31:62|32:3|33:63|34:62|35:32|36:3;7|1:96|14:97|16:95|25:59|26:3|27:32|28:60|30:96|31:62|32:3|33:63|34:62|35:32|36:3;7|1:98|14:99|16:95|25:59|26:3|27:32|28:60|30:98|31:62|32:3|33:63|34:62|35:32|36:3;7|1:100|14:101|16:95|25:59|26:3|27:32|28:60|30:100|31:62|32:3|33:63|34:62|35:32|36:3;7|1:102|14:103|16:95|25:59|26:3|27:32|28:60|30:102|31:62|32:3|33:63|34:62|35:32|36:3;7|1:104'
- ..'|14:105|16:95|25:59|26:3|27:32|28:60|30:104|31:62|32:3|33:63|34:62|35:32|36:3;7|1:106|14:107|16:95|25:59|26:3|27:32|28:60|30:108|31:62|32:3|33:63|34:62|35:32|36:3;7|1:109|14:110|16:95|25:59|26:3|27:32|28:60|30:109|31:62|32:3|33:63|34:62|35:32|36:3;p;9|1:68|14:73|16:74|25:62|26:3;n;7|1:111|14:78|16:79|25:59|26:3|27:32|28:60|30:111|31:62|32:3|33:63|34:62|35:32|36:3;7|1:112|14:113|16:79|25:59|26:3|27:32|28:60|30:114|31:62|32:3|33:63|34:62|35:32|36:3;7|1:115|14:116|16:79|25:59|26:3|27:32|28:60|30:115|31:62|32:3|33:63|34:62|35:32|36:3;7|1:117|14:118|16:79|25:59|26:3|27:32|28:60|30:117|31:62|32:3|33:63|34:62|35:32|36:3;7|1:119|14:120|16:79|25:59|26:3|27:32|28:60|30:119|31:62|32:3|33:63|34:62|35:32|36:3;7|1:121|14:81|16:79|25:59|26:3|27:32|28:60|30:121|31:62|32:3|33:63|34:62|35:32|36:3;7|1:122|14:123|16:79|25:59|26:3|27:32|28:60|30:122|31:62|32:3|33:63|34:62|35:32|36:3;7|1:124|14:125|16:79|25:59|26:3|27:32|28:60|30:124|31:62|32:3|33:63|34:62|35:32|36:3;p;9|1:70|14:73|16:74|25:62|26:3;n;7|1:126|14:127|16:79|25:59|26:3|27:32|28:60|30:126|31:62|32:3|33:63|34:62|35:32'
- ..'|36:3;7|1:128|14:129|16:79|25:59|26:3|27:32|28:60|30:128|31:62|32:3|33:63|34:62|35:32|36:3;7|1:130|14:131|16:79|25:59|26:3|27:32|28:60|30:130|31:62|32:3|33:63|34:62|35:32|36:3;7|1:132|14:133|16:79|25:59|26:3|27:32|28:60|30:132|31:62|32:3|33:63|34:62|35:32|36:3;7|1:134|14:135|16:79|25:59|26:3|27:32|28:60|30:134|31:62|32:3|33:63|34:62|35:32|36:3;p;8|1:136|14:137|16:138|25:62|26:3|28:75|37:139;p;6|1:140|23:55;n;10|16:141|25:142|38:142|28:143|30:144|31:62|32:3|33:145|34:62|35:20|36:3|39:146;p;1|1:147|2:3|3:10|4:5|18:3|14:148|15:30|16:25|6:7|7:7|8:7|9:7|10:7|11:7|3:10|3:10;n;11|40:149;p;12|1:150;n;12|1:151;p;2|1:152;n;13|1:153|41:154|42:155|43:156|44:157;n;14|1:153;p;1|1:158|2:3|3:17|4:5|14:159|15:30|16:37|6:7|7:7|8:7|9:7|10:7|11:7|3:17|3:17;n;5|17:160|20:39|21:40|22:41;p;p;6|1:161|23:55;n;7|16:141|25:62|30:161|31:62|32:3|33:145|34:62|35:20|36:3|45:162;p;p;2|1:163;n;1|1:164|2:3|3:19|14:165|15:166|16:167|7:7|11:7|3:19|3:19;n;6;n;9|16:168|25:62|26:3;n;15|16:141|25:62|26:3|30:169|31:170|33:171|36:3;p;p;p;p;2;n;1|2:3|3:172|4:173|14:174|15:175|16:176|19:32|7:146|11:1'
- ..'46|3:172|3:172;16|2:3|3:4|14:177|15:178|16:179|3:4|3:4;17|2:3|3:180|14:181|15:182|16:183|7:55|8:184|10:55|11:146|3:180|3:180;n;18|46:185|47:186;p;1|2:3|3:15|4:173|14:187|15:175|16:188|19:32|7:146|11:146|3:15|3:15;1|2:3|3:180|14:189|15:175|16:190|7:146|11:146|3:180|3:180;1|2:3|3:15|4:173|14:191|15:192|16:193|19:32|7:146|11:146|3:15|3:15;p;2;n;1|2:3|3:172|4:173|14:194|15:175|16:176|19:32|7:146|11:146|3:172|3:172;16|2:3|3:4|14:195|15:178|16:179|3:4|3:4;17|2:3|3:180|14:196|15:182|16:183|7:55|8:184|10:55|11:146|3:180|3:180;n;18|46:185|47:186;p;1|2:3|3:15|4:173|14:197|15:175|16:188|19:32|7:146|11:146|3:15|3:15;1|2:3|3:180|14:198|15:175|16:190|7:146|11:146|3:180|3:180;1|2:3|3:15|4:173|14:199|15:192|16:193|19:32|7:146|11:146|3:15|3:15;p;2|1:200;n;2|1:201;n;2|1:202;n;1|1:203|2:3|3:204|5:20|18:6|14:205|15:206|16:207|7:146|11:146|3:204|3:204;n;5|17:208|22:184;19|3:209|16:210|50:32|51:211|52:212|3:209|3:209;n;12;p;p;1|1:203|2:3|3:204|5:6|18:6|14:213|15:214|16:215|7:55|11:146|3:204|3:204;n;5|17:216|22:184;19|3:209|16:210|50:32|51:211|52:212|3:209|3:209;n;12;p;p;1|1:203|'
- ..'2:3|3:204|5:20|18:6|14:217|15:206|16:218|7:146|11:146|3:204|3:204;n;5|17:208|22:184;19|3:209|16:210|50:32|51:211|52:212|3:209|3:209;n;12;p;p;1|1:203|2:3|3:204|5:20|18:6|14:219|15:206|16:183|7:146|11:146|3:204|3:204;n;5|17:208|22:184;19|3:209|16:210|50:32|51:211|52:212|3:209|3:209;n;12;p;p;p;2|1:220;n;1|2:3|3:4|5:6|18:6|14:221|15:222|16:179|6:55|11:146|3:4|3:4;n;5|17:223|22:184;p;1|2:3|3:224|5:6|18:6|14:225|15:222|16:179|6:55|11:146|3:224|3:224;n;5|17:226|22:184;p;p;2|1:227;n;1|2:3|3:204|5:6|18:6|14:228|15:229|16:179|6:55|11:146|3:204|3:204;n;5|17:223|22:184;18|46:230|47:231;p;1|2:3|3:204|5:6|18:6|14:232|15:229|16:179|6:55|11:146|3:204|3:204;n;5|17:226|22:184;p;p;1|1:28|2:3|3:204|5:6|18:233|14:234|15:229|16:235|7:146|11:146|3:204|3:204;n;18|46:236|47:237;p;2|1:227;n;1|2:3|3:238|5:6|18:6|14:239|15:229|16:179|6:55|11:146|3:238|3:238;n;5|17:240|22:184;18|46:241|47:242;p;1|2:3|3:224|5:6|18:6|14:243|15:229|16:179|6:55|11:146|3:224|3:224;n;5|17:223|22:184;p;p;2|1:220;n;1|2:3|3:224|5:6|18:6|14:244|15:245|16:179|6:55|11:146|3:224|3:224;n;5|17:226|22:184;p;1|2:3|3:23'
- ..'8|5:6|18:6|14:246|15:245|16:179|6:55|11:146|3:238|3:238;n;5|17:247|22:184;p;p;2|1:248;n;2|1:249;n;1|2:3|3:4|14:250|15:206|16:251|7:146|11:146|3:4|3:4;n;5|22:55;19|3:209|16:210|50:32|51:211|52:212|3:209|3:209;n;12;p;p;1|2:3|3:4|14:252|15:206|16:251|7:146|11:146|3:4|3:4;n;19|3:209|16:210|50:32|51:211|52:212|3:209|3:209;n;12;p;p;1|2:3|3:4|14:253|15:254|16:255|7:146|11:146|3:4|3:4;n;5|22:55;19|3:209|16:210|50:32|51:211|52:212|3:209|3:209;n;12;p;p;1|2:3|3:4|14:256|15:257|16:251|7:146|11:146|3:4|3:4;n;5|22:55;19|3:209|16:210|50:32|51:211|52:212|3:209|3:209;n;12;p;p;p;2|1:258;n;1|1:259|2:3|3:4|14:260|15:261|16:262|7:146|11:146|3:4|3:4;n;19|3:209|16:210|50:32|51:211|52:212|3:209|3:209;n;12;p;p;1|1:263|2:3|3:4|14:264|15:265|16:262|7:146|11:146|3:4|3:4;n;19|3:209|16:210|50:32|51:211|52:212|3:209|3:209;n;12;p;p;p;2|1:266;n;1|1:267|2:3|3:4|14:268|15:269|16:270|6:55|7:146|11:146|3:4|3:4;n;19|3:209|16:210|50:32|51:211|52:212|3:209|3:209;n;12;p;p;1|1:271|2:3|3:4|14:272|15:273|16:274|6:55|7:146|11:146|3:4|3:4;n;19|3:209|16:210|50:32|51:211|52:212|3:209|3:209;n;12;p;18|46:2'
- ..'75|47:276;18|46:275|47:277;p;1|1:278|2:3|3:4|14:279|15:229|16:274|6:55|7:146|11:146|3:4|3:4;n;19|3:209|16:210|50:32|51:211|52:212|3:209|3:209;n;12;p;p;p;p;2|1:220;n;1|2:3|3:238|5:6|18:6|14:280|15:281|16:179|6:55|11:146|3:238|3:238;n;5|17:223|22:184;p;1|2:3|3:224|5:6|18:6|14:282|15:281|16:179|6:55|11:146|3:224|3:224;n;5|17:226|22:184;p;p;2|1:220;n;1|2:3|3:238|5:6|18:6|14:283|15:281|16:179|6:55|11:146|3:238|3:238;n;5|17:223|22:184;p;1|2:3|3:224|5:6|18:6|14:284|15:281|16:179|6:55|11:146|3:224|3:224;n;5|17:226|22:184;p;p;2|1:285;n;1|2:3|3:224|5:286|18:6|14:287|15:288|16:289|6:55|11:146|3:224|3:224;n;5|17:226|22:184;19|3:209|16:210|50:32|51:211|52:212|3:209|3:209;n;12;p;p;1|2:3|3:238|5:286|18:6|14:290|15:288|16:179|6:55|11:146|3:238|3:238;n;5|17:291|22:184;p;p;p;2|1:292;n;1|1:293|2:3|3:4|14:294|15:295|16:215|7:146|11:146|3:4|3:4;2|1:296;n;1|2:3|3:4|14:297|15:295|16:218|7:55|11:146|3:4|3:4;n;18|46:298|47:299;p;1|2:3|3:4|14:300|15:301|16:302|7:146|11:146|3:4|3:4;p;2|1:303;n;1|2:3|3:4|14:304|15:295|16:218|7:55|11:146|3:4|3:4;1|2:3|3:4|14:305|15:306|16:302|7:146|11:'
- ..'146|3:4|3:4;n;19|3:209|16:210|50:32|51:211|52:212|3:209|3:209;n;12;p;p;p;p;p;2|1:307;n;1|2:3|3:4|4:308|14:309|15:310|16:311|3:4|3:4;n;20|46:312|47:313;20|46:312|47:314;p;16|2:3|3:315|4:316|14:317|15:318|16:319|3:315|3:315;1|2:3|3:4|4:320|14:321|15:322|16:323|7:146|11:146|3:4|3:4;n;4;21|53:324|23:325;p;1|2:3|3:4|4:320|14:326|15:318|16:327|7:146|11:146|3:4|3:4;n;4;p;1|2:3|3:4|4:320|14:328|15:322|16:323|7:146|11:146|3:4|3:4;n;4;21|53:329|23:325;p;1|2:3|3:330|4:331|14:332|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:336|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:337|15:318|16:333|7:146|11:146|3:330|3:330;n;4;p;1|2:3|3:330|4:331|14:338|15:318|16:333|7:146|11:146|3:330|3:330;n;4;p;1|2:3|3:330|4:331|14:339|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:340|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:341|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;'
- ..'1|2:3|3:330|4:331|14:342|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:343|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:344|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:345|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:346|15:318|16:333|7:146|11:146|3:330|3:330;n;4;p;1|2:3|3:330|4:331|14:347|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:348|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:349|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:350|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:315|4:316|14:351|15:310|16:352|3:315|3:315;1|2:3|3:330|4:331|14:353|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:354|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12'
- ..'|1:202;12|1:335;p;1|2:3|3:330|4:331|14:355|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:356|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:357|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:358|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:359|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:360|15:318|16:333|7:146|11:146|3:330|3:330;n;4;p;1|2:3|3:330|4:331|14:361|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:362|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:363|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:364|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:365|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:3'
- ..'31|14:366|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:367|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:368|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:369|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:370|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:371|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:372|15:318|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|1:373|2:3|4:5|14:374|15:375|16:376|7:146|11:146;n;22;21|53:377|23:162;p;1|1:373|2:3|4:5|14:378|15:375|16:376|7:146|11:146;n;22;21|53:377|23:162;p;1|1:373|2:3|4:5|14:379|15:375|16:376|7:146|11:146;n;22;21|53:377|23:162;p;p;2|1:307;n;1|2:3|3:4|4:308|14:380|15:381|16:311|3:4|3:4;16|2:3|3:315|4:316|14:382|15:383|16:319|3:315|3:315;n;20|46:384|47:385;p;1|2:3|3:315|4:316|14:386|15:381|16:387|3:315|3:315;n;20|4'
- ..'6:388|47:389;p;1|2:3|3:330|4:331|14:390|15:383|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:391|15:383|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|1:28|2:3|3:315|4:392|14:393|15:383|16:394|7:146|11:146|3:315|3:315;n;4;23|3:395|3:395|3:395;12|1:335;21|53:396;12|1:397;12|1:398;p;1|1:373|2:3|4:5|14:399|15:400|16:401|7:146|11:146;n;22;21|53:402|23:325;p;1|1:373|2:3|4:5|14:403|15:400|16:401|7:146|11:146;n;22;21|53:402|23:325;p;1|2:3|3:4|4:320|14:404|15:405|16:323|7:146|11:146|3:4|3:4;n;4;21|53:324|23:325;p;1|2:3|3:4|4:320|14:406|15:405|16:323|7:146|11:146|3:4|3:4;n;4;21|53:329|23:325;p;1|1:373|2:3|4:5|14:407|15:408|16:376|7:146|11:146;n;22;21|53:377|23:162;p;1|1:373|2:3|4:5|14:409|15:408|16:376|7:146|11:146;n;22;21|53:377|23:162;p;1|1:373|2:3|4:5|14:410|15:408|16:376|7:146|11:146;n;22;21|53:377|23:162;p;1|2:3|3:4|4:320|14:411|15:383|16:327|7:146|11:146|3:4|3:4;n;4;p;1|2:3|3:330|4:331|14:412|15:383|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:413|15:383|16:333'
- ..'|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:414|15:383|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:415|15:383|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:416|15:383|16:333|7:146|11:146|3:330|3:330;n;4;12|1:202;12|1:335;12|1:334;p;1|2:3|3:330|4:331|14:417|15:383|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:418|15:383|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:419|15:383|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:420|15:383|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;1|2:3|3:330|4:331|14:421|15:383|16:333|7:146|11:146|3:330|3:330;n;4;12|1:334;12|1:202;12|1:335;p;p;2|1:307;n;1|2:3|3:19|4:5|14:422|15:423|16:424|7:146|11:146|3:19|3:19;2|1:425;n;1|1:425|2:3|4:5|14:426|15:427|16:428|7:146|11:146;n;24|1:429|46:430|47:431;24|1:429|46:430|47:432;24|1:429|46:430|47:433;24|1:429|46:430|47:434;p;3|1:435|2:3'
- ..'|3:436|4:437|3:436|3:436|12:438;3|1:435|2:3|3:436|4:437|3:436|3:436|12:439;3|1:435|2:3|3:436|4:437|3:436|3:436|12:440;3|1:435|2:3|3:436|4:437|3:436|3:436|12:441;p;1|1:442|2:3|3:224|4:331|14:443|15:427|16:444|7:146|11:146|3:224|3:224;n;11;n;12;p;24|1:445|46:446|47:447;12;p;1|1:448|2:3|3:224|4:331|14:449|15:427|16:444|7:146|11:146|3:224|3:224;n;11;n;12;p;12;24|1:445|46:446|47:447;p;1|1:450|2:3|3:224|4:331|14:451|15:427|16:452|7:146|11:146|3:224|3:224;n;12;11;n;12;p;p;1|1:3|2:3|3:224|4:331|14:453|15:427|16:454|7:146|11:146|3:224|3:224;n;11;n;12;p;12|1:455;24|1:445|46:446|47:447;p;1|1:75|2:3|3:224|4:331|14:456|15:427|16:454|7:146|11:146|3:224|3:224;n;11;n;12;p;24|1:445|46:446|47:447;12|1:455;p;1|1:60|2:3|3:224|4:331|14:457|15:427|16:454|7:146|11:146|3:224|3:224;n;11;n;12;p;24|1:445|46:446|47:447;12|1:455;p;1|1:458|2:3|3:224|4:331|14:459|15:427|16:454|7:146|11:146|3:224|3:224;n;11;n;12;p;24|1:445|46:446|47:447;12|1:455;p;1|1:143|2:3|3:224|4:331|14:460|15:427|16:454|7:146|11:146|3:224|3:224;n;11;n;12;p;24|1:445|46:446|47:447;12|1:455;p;1|1:461|2:3|3:224|4:331|14:'
- ..'462|15:427|16:454|7:146|11:146|3:224|3:224;n;11;n;12;p;24|1:445|46:446|47:447;12|1:455;p;1|1:463|2:3|3:224|4:331|14:464|15:427|16:454|7:146|11:146|3:224|3:224;n;11;n;12;p;24|1:445|46:446|47:447;12|1:455;p;1|1:465|2:3|3:224|4:331|14:466|15:427|16:454|7:146|11:146|3:224|3:224;n;11;n;12;p;24|1:445|46:446|47:447;12|1:455;p;1|1:467|2:3|3:224|4:331|14:468|15:427|16:454|7:146|11:146|3:224|3:224;n;11;n;12;p;24|1:445|46:446|47:447;12|1:455;p;1|2:3|3:19|4:5|14:469|15:427|16:470|7:146|11:146|3:19|3:19;1|2:3|3:19|4:5|14:471|15:423|16:424|7:146|11:146|3:19|3:19;1|2:3|3:19|4:5|14:472|15:423|16:25|7:146|11:146|3:19|3:19;1|2:3|3:4|4:5|14:473|15:427|16:474|7:146|11:146|3:4|3:4;n;24|1:475|46:476|47:477;24|1:475|46:476|47:478;24|1:475|46:476|47:479;24|1:475|46:476|47:480;24|1:481|46:482|47:483;p;p;2|1:163;n;1|1:164|2:3|3:19|14:484|15:166|16:167|7:7|11:7|3:19|3:19;n;6;n;9|16:168|25:62|26:3;n;15|16:141|25:62|26:3|30:485|31:170|33:171|36:3;p;p;p;p;2|1:486;n;1|2:3|3:19|4:487|14:488|15:489|16:490|7:146|11:146|3:19|3:19;n;5|17:491|22:184;p;1|2:3|3:19|4:487|14:492|15:489|16:493|7:14'
- ..'6|11:146|3:19|3:19;1|2:3|3:19|4:487|14:494|15:495|16:62|7:146|11:146|3:19|3:19;n;25|1:496|54:497;5|17:498|22:162;p;1|2:3|3:19|4:487|14:499|15:500|16:289|7:146|11:146|3:19|3:19;n;5|17:501|22:184;p;1|2:3|3:19|4:487|14:502|15:500|16:289|7:146|11:146|3:19|3:19;n;5|17:503|22:184;p;1|2:3|3:19|4:487|14:504|15:489|16:490|7:146|11:146|3:19|3:19;n;5|17:491|22:184;p;1|2:3|3:19|4:487|14:505|15:506|16:62|19:32|7:146|11:146|3:19|3:19;n;5|17:507|22:61;p;1|2:3|3:19|4:487|14:508|15:500|16:289|7:146|11:146|3:19|3:19;n;5|17:501|22:184;p;1|2:3|3:19|4:487|14:509|15:500|16:289|7:146|11:146|3:19|3:19;n;5|17:503|22:184;p;1|2:3|3:19|4:487|14:510|15:495|16:62|7:146|11:146|3:19|3:19;n;25|1:496|54:497;5|17:498|22:162;p;1|2:3|3:19|4:487|14:511|15:506|16:62|19:32|7:146|11:146|3:19|3:19;n;5|17:507|22:61;p;p;2|1:2;n;3|2:3|3:4|4:5|5:6|6:7|7:7|8:7|9:7|10:7|11:7|3:4|3:4|12:512;3|2:3|3:4|4:5|5:6|13:3|6:7|7:7|8:7|9:7|10:7|11:7|3:4|3:4|12:513;1|2:3|3:10|4:5|14:514|15:12|16:13|6:7|7:7|8:7|9:7|10:7|11:7|3:10|3:10;n;4|17:14;p;3|2:3|3:15|4:5|6:7|7:7|8:7|9:7|10:7|11:7|3:15|3:15|12:515;3|2:3|3:17|4:5'
- ..'|5:6|6:7|7:7|8:7|9:7|10:7|11:7|3:17|3:17|12:516;3|2:3|3:19|4:5|5:20|6:7|7:7|8:7|9:7|10:7|11:7|3:19|3:19|12:517;3|1:22|2:3|3:4|4:5|5:6|6:7|7:7|8:7|9:7|10:7|11:7|3:4|3:4|12:518;1|2:3|3:10|4:5|14:519|15:12|16:25|6:7|7:7|8:7|9:7|10:7|11:7|3:10|3:10;3|2:3|3:26|4:5|5:6|6:7|7:7|8:7|9:7|10:7|11:7|3:26|3:26|12:520;1|1:28|2:3|3:10|4:5|18:3|14:521|15:30|16:31|19:32|6:7|7:7|8:7|9:7|10:7|11:7|3:10|3:10;1|2:3|3:10|4:5|14:522|15:12|16:34|6:7|7:7|8:7|9:7|10:7|11:7|3:10|3:10;3|2:3|3:4|4:5|5:6|13:3|6:7|7:7|8:7|9:7|10:7|11:7|3:4|3:4|12:523;1|2:3|3:17|4:5|14:524|15:30|16:37|6:7|7:7|8:7|9:7|10:7|11:7|3:17|3:17;n;5|17:38|20:39|21:40|22:41;p;2|1:42;3|2:3|3:10|4:5|6:7|7:7|8:7|9:7|10:7|11:7|3:10|3:10|12:525;3|2:3|3:4|4:5|5:6|13:3|6:7|7:7|8:7|9:7|10:7|11:7|3:4|3:4|12:526;3|2:3|3:4|4:5|5:6|13:3|6:7|7:7|8:7|9:7|10:7|11:7|3:4|3:4|12:527;3|2:3|3:4|4:5|5:6|6:7|7:7|8:7|9:7|10:7|11:7|3:4|3:4|12:528;1|2:3|3:10|4:5|14:529|15:12|16:13|6:7|7:7|8:7|9:7|10:7|11:7|3:10|3:10;n;4|17:14;p;3|2:3|3:19|4:5|5:6|13:3|6:7|7:7|8:7|9:7|10:7|11:7|3:19|3:19|12:530;3|2:3|3:4|4:5|5:6|13:3|6:7|7:7|8:7|9:7|10:7|1'
- ..'1:7|3:4|3:4|12:531;1|1:50|2:3|3:10|4:5|14:532|15:30|16:52|6:7|7:7|8:7|9:7|10:7|11:7|3:10|3:10;3|2:3|3:4|4:5|5:6|13:3|6:7|7:7|8:7|9:7|10:7|11:7|3:4|3:4|12:533;6|1:54|23:55;n;7|1:56|14:57|16:58|25:59|26:3|27:32|28:60|29:61|30:56|31:62|32:3|33:63|34:62|35:32|36:3;7|1:64|14:65|16:58|25:59|26:3|27:32|28:60|29:61|30:64|31:62|32:3|33:63|34:62|35:32|36:3;7|1:66|14:67|16:58|25:59|26:3|27:32|28:60|29:61|30:66|31:62|32:3|33:63|34:62|35:32|36:3;7|1:68|14:69|16:58|25:59|26:3|27:32|28:60|29:61|30:68|31:62|32:3|33:63|34:62|35:32|36:3;7|1:70|14:71|16:58|25:59|26:3|27:32|28:60|29:61|30:70|31:62|32:3|33:63|34:62|35:32|36:3;8|1:72|14:73|16:74|25:62|26:3|28:75|37:76;9|1:56|14:73|16:74|25:62|26:3;n;7|1:77|14:78|16:79|25:59|26:3|27:32|28:60|30:77|31:62|32:3|33:63|34:62|35:32|36:3;7|1:80|14:81|16:79|25:59|26:3|27:32|28:60|30:82|31:62|32:3|33:63|34:62|35:32|36:3;p;9|1:64|14:73|16:74|25:62|26:3;n;7|1:83|14:84|16:79|25:59|26:3|27:32|28:60|30:83|31:62|32:3|33:63|34:62|35:32|36:3;7|1:85|14:86|16:79|25:59|26:3|27:32|28:60|30:85|31:62|32:3|33:63|34:62|35:32|36:3;7|1:87|14:88|16:79|25:59'
- ..'|26:3|27:32|28:60|30:87|31:62|32:3|33:63|34:62|35:32|36:3;7|1:89|14:90|16:79|25:59|26:3|27:32|28:60|30:89|31:62|32:3|33:63|34:62|35:32|36:3;7|1:91|14:92|16:79|25:59|26:3|27:32|28:60|30:91|31:62|32:3|33:63|34:62|35:32|36:3;p;9|1:66|14:73|16:74|25:62|26:3;n;7|1:93|14:94|16:95|25:59|26:3|27:32|28:60|30:93|31:62|32:3|33:63|34:62|35:32|36:3;7|1:96|14:97|16:95|25:59|26:3|27:32|28:60|30:96|31:62|32:3|33:63|34:62|35:32|36:3;7|1:98|14:99|16:95|25:59|26:3|27:32|28:60|30:98|31:62|32:3|33:63|34:62|35:32|36:3;7|1:100|14:101|16:95|25:59|26:3|27:32|28:60|30:100|31:62|32:3|33:63|34:62|35:32|36:3;7|1:102|14:103|16:95|25:59|26:3|27:32|28:60|30:102|31:62|32:3|33:63|34:62|35:32|36:3;7|1:104|14:105|16:95|25:59|26:3|27:32|28:60|30:104|31:62|32:3|33:63|34:62|35:32|36:3;7|1:106|14:107|16:95|25:59|26:3|27:32|28:60|30:108|31:62|32:3|33:63|34:62|35:32|36:3;7|1:109|14:110|16:95|25:59|26:3|27:32|28:60|30:109|31:62|32:3|33:63|34:62|35:32|36:3;p;9|1:68|14:73|16:74|25:62|26:3;n;7|1:111|14:78|16:79|25:59|26:3|27:32|28:60|30:111|31:62|32:3|33:63|34:62|35:32|36:3;7|1:112|14:113|16:79|25:59|2'
- ..'6:3|27:32|28:60|30:114|31:62|32:3|33:63|34:62|35:32|36:3;7|1:115|14:116|16:79|25:59|26:3|27:32|28:60|30:115|31:62|32:3|33:63|34:62|35:32|36:3;7|1:117|14:118|16:79|25:59|26:3|27:32|28:60|30:117|31:62|32:3|33:63|34:62|35:32|36:3;7|1:119|14:120|16:79|25:59|26:3|27:32|28:60|30:119|31:62|32:3|33:63|34:62|35:32|36:3;7|1:121|14:81|16:79|25:59|26:3|27:32|28:60|30:121|31:62|32:3|33:63|34:62|35:32|36:3;7|1:122|14:123|16:79|25:59|26:3|27:32|28:60|30:122|31:62|32:3|33:63|34:62|35:32|36:3;7|1:124|14:125|16:79|25:59|26:3|27:32|28:60|30:124|31:62|32:3|33:63|34:62|35:32|36:3;p;9|1:70|14:73|16:74|25:62|26:3;n;7|1:126|14:127|16:79|25:59|26:3|27:32|28:60|30:126|31:62|32:3|33:63|34:62|35:32|36:3;7|1:128|14:129|16:79|25:59|26:3|27:32|28:60|30:128|31:62|32:3|33:63|34:62|35:32|36:3;7|1:130|14:131|16:79|25:59|26:3|27:32|28:60|30:130|31:62|32:3|33:63|34:62|35:32|36:3;7|1:132|14:133|16:79|25:59|26:3|27:32|28:60|30:132|31:62|32:3|33:63|34:62|35:32|36:3;7|1:134|14:135|16:79|25:59|26:3|27:32|28:60|30:134|31:62|32:3|33:63|34:62|35:32|36:3;p;8|1:136|14:137|16:138|25:62|26:3|28:75|37:139;'
- ..'p;6|1:140|23:55;n;10|16:141|25:142|38:142|28:143|30:144|31:62|32:3|33:145|34:62|35:20|36:3|39:146;p;1|1:147|2:3|3:10|4:5|18:3|14:534|15:30|16:25|6:7|7:7|8:7|9:7|10:7|11:7|3:10|3:10;n;11|40:149;p;12|1:150;n;12|1:151;p;2|1:152;n;13|1:153|41:154|42:155|43:156|44:157;n;14|1:153;p;1|1:158|2:3|3:17|4:5|14:535|15:30|16:37|6:7|7:7|8:7|9:7|10:7|11:7|3:17|3:17;n;5|17:160|20:39|21:40|22:41;p;p;6|1:161|23:55;n;7|16:141|25:62|30:161|31:62|32:3|33:145|34:62|35:20|36:3|45:162;p;p;2|1:307;n;1|2:3|3:204|4:5|14:536|15:537|16:538|3:204|3:204;1|2:3|3:539|4:5|14:540|15:537|16:538|3:539|3:539;1|2:3|3:539|4:5|14:541|15:542|16:62|55:55|7:146|11:146|3:539|3:539;1|2:3|3:330|4:543|18:233|14:544|15:545|16:546|7:7|11:7|3:330|3:330;1|2:3|3:547|4:5|14:548|15:545|16:549|11:7|3:547|3:547;1|2:3|4:320|14:550|15:545|16:551|7:7|11:7;1|2:3|3:212|4:5|14:552|15:542|16:62|55:55|7:146|11:146|3:212|3:212;1|2:3|3:553|4:5|14:554|15:545|16:549|11:7|3:553|3:553;16|2:3|4:320|14:555|15:556|16:62;16|2:3|4:320|14:557|15:558|16:559|9:7|10:7;1|2:3|4:320|14:560|15:561|16:559|8:7|9:7|10:7|11:7;1|2:3|4:320|14:56'
- ..'2|15:561|16:563|6:7|8:7|9:7|10:7|11:7;16|2:3|4:320|14:564|15:561|16:563|9:7|10:7|11:7;p;2|1:565;n;1|1:566|2:3|14:567|16:568|7:55|11:146;n;5|22:55;21|53:569;18|46:384|47:570;p;1|1:571|2:3|14:572|16:573|7:55|11:146;n;5|22:184;p;1|1:571|2:3|14:574|16:575|7:55|11:146;n;5|22:184;18|46:312|47:576;p;p;2|1:577;n;2|1:578;n;1|2:3|3:579|14:580|15:581|16:582|7:146|11:146|3:579|3:579;n;5|17:583|22:61;p;1|2:3|14:584|15:581|16:585|7:146|11:146;n;22|17:586;p;1|2:3|3:579|14:587|15:581|16:582|7:146|11:146|3:579|3:579;n;22|17:588;p;1|2:3|3:579|14:589|15:581|16:582|7:146|11:146|3:579|3:579;n;5|17:583|22:61;p;1|2:3|3:330|14:590|15:591|16:582|7:146|11:146|3:330|3:330;n;22|17:592;p;1|2:3|3:579|14:593|15:594|16:582|7:146|11:146|3:579|3:579;n;22|17:588;p;1|2:3|14:595|15:581|16:585|7:146|11:146;n;22|17:586;p;1|2:3|3:330|14:596|15:591|16:582|7:146|11:146|3:330|3:330;n;22|17:592;p;1|2:3|3:579|14:597|15:581|16:582|7:146|11:146|3:579|3:579;n;22|17:588;p;1|2:3|3:579|14:598|15:599|16:582|7:146|11:146|3:579|3:579;n;22;p;1|2:3|3:579|14:600|15:594|16:582|7:146|11:146|3:579|3:579;n;22|17:588;'
- ..'p;1|2:3|3:579|14:601|15:581|16:582|7:146|11:146|3:579|3:579;n;22|17:588;p;1|2:3|3:579|14:602|15:599|16:582|7:146|11:146|3:579|3:579;n;22;p;1|2:3|3:579|14:603|15:581|16:582|7:146|11:146|3:579|3:579;n;22|17:588;p;1|2:3|14:604|15:605|16:606|7:146|11:146;n;22|17:607;p;1|2:3|3:4|14:608|15:581|16:609|7:146|11:146|3:4|3:4;1|2:3|3:4|14:610|15:611|16:179|7:146|11:146|3:4|3:4;n;5|22:325;p;1|2:3|3:579|14:612|15:605|16:582|7:146|11:146|3:579|3:579;n;22|17:613;p;1|2:3|3:4|14:614|15:615|16:179|7:146|11:146|3:4|3:4;n;5|22:325;p;1|2:3|3:330|14:616|15:617|16:618|7:146|11:146|3:330|3:330;n;4|17:619;p;1|2:3|3:579|14:620|15:617|16:618|7:146|11:146|3:579|3:579;n;4|17:621;p;1|2:3|3:4|14:622|15:617|16:618|7:146|11:146|3:4|3:4;n;4;p;1|2:3|3:579|14:623|15:605|16:582|7:146|11:146|3:579|3:579;n;22|17:613;p;1|2:3|14:624|15:605|16:606|7:146|11:146;n;22|17:607;p;p;2|1:625;n;2|1:626;n;1|2:3|3:4|14:627|15:605|16:62|7:146|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:4|14:628|15:629|16:609|7:146|11:146|3:4|3:4;n;4;p;1|2:3|3:4|14:630|15:615|16:179|7:146|11:146|3:4|3:4;n;5|22:325;p;1|2:3|3:579|14:631|1'
- ..'5:632|16:582|7:146|11:146|3:579|3:579;n;22|17:633;p;1|2:3|3:330|14:634|15:605|16:582|7:146|11:146|3:330|3:330;n;22|17:635;p;1|2:3|3:579|14:636|15:605|16:582|7:146|11:146|3:579|3:579;n;22|17:637;p;1|2:3|3:4|14:638|15:639|16:640|7:146|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:4|14:641|15:642|16:643|7:146|11:146|3:4|3:4;n;4;p;1|2:3|3:579|14:644|15:605|16:582|7:146|11:146|3:579|3:579;n;22|17:637;p;1|2:3|3:330|14:645|15:605|16:582|7:146|11:146|3:330|3:330;n;22|17:635;p;1|2:3|3:579|14:646|15:605|16:582|7:146|11:146|3:579|3:579;n;22|17:647;p;1|2:3|3:330|14:648|15:605|16:582|7:146|11:146|3:330|3:330;n;22|17:635;p;p;2|1:649;n;1|2:3|3:579|14:650|15:632|16:582|7:146|11:146|3:579|3:579;n;22|17:633;p;1|2:3|3:4|14:651|15:611|16:179|7:146|11:146|3:4|3:4;n;5|22:325;p;1|2:3|3:4|14:652|15:653|16:62|7:146|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:4|14:654|15:629|16:609|7:146|11:146|3:4|3:4;n;4;p;1|2:3|3:579|14:655|15:605|16:582|7:146|11:146|3:579|3:579;n;22|17:637;p;1|2:3|3:330|14:656|15:605|16:582|7:146|11:146|3:330|3:330;n;22|17:635;p;1|2:3|3:4|14:657|15:658|16:640|7:146|11:146|3:4|3:4;n'
- ..';5|22:55;p;1|2:3|3:4|14:659|15:642|16:643|7:146|11:146|3:4|3:4;n;4;p;1|2:3|3:579|14:660|15:605|16:582|7:146|11:146|3:579|3:579;n;22|17:637;p;1|2:3|3:330|14:661|15:605|16:582|7:146|11:146|3:330|3:330;n;22|17:635;p;1|2:3|3:579|14:662|15:605|16:582|7:146|11:146|3:579|3:579;n;22|17:637;p;1|2:3|3:330|14:663|15:605|16:582|7:146|11:146|3:330|3:330;n;22|17:635;p;p;p;2|1:664;n;2|1:664;n;1|2:3|3:665|18:6|14:666|15:658|16:62|7:146|11:146|3:665|3:665;n;5|17:667|22:55;p;1|2:3|3:665|18:6|14:668|15:669|16:670|7:146|11:146|3:665|3:665;n;4|17:671;p;1|2:3|3:665|18:6|14:672|15:669|16:673|7:146|11:146|3:665|3:665;n;4|17:671;21|53:674|23:162;p;1|2:3|3:665|18:6|14:675|15:669|16:676|7:146|11:146|3:665|3:665;n;4|17:671;p;1|2:3|3:665|18:6|14:677|15:678|16:679|7:146|11:146|3:665|3:665;n;5|17:667|22:55;24|1:481|46:680|47:681;24|1:481|46:682|47:683;p;p;2|1:684;n;1|2:3|3:665|18:6|14:685|15:686|16:454|7:146|11:146|3:665|3:665;n;5|17:667|22:55;p;1|2:3|3:665|18:6|14:687|15:688|16:689|7:146|11:146|3:665|3:665;n;5|17:667|22:55;p;1|2:3|3:665|18:6|14:690|15:691|16:692|7:146|11:146|3:665|3:665'
- ..';n;4|17:671;p;1|2:3|3:665|18:6|14:693|15:691|16:694|7:146|11:146|3:665|3:665;n;4|17:671;p;1|2:3|3:665|18:6|14:695|15:691|16:696|7:146|11:146|3:665|3:665;n;4|17:671;p;1|2:3|3:665|18:6|14:697|15:698|16:454|7:146|11:146|3:665|3:665;n;5|17:667|22:55;p;1|2:3|3:665|18:6|14:699|15:700|16:454|7:146|11:146|3:665|3:665;n;5|17:667|22:55;p;1|2:3|3:665|18:6|14:701|15:691|16:454|7:146|11:146|3:665|3:665;n;4|17:671;p;p;p;2|1:571;n;1|2:3|14:702|15:703|16:704|7:146|11:146;n;22|17:705;p;1|2:3|14:706|15:703|16:704|7:146|11:146;n;22|17:705;24|1:481|46:707|47:708;p;1|2:3|3:579|14:709|15:599|16:582|7:146|11:146|3:579|3:579;n;22;24|1:481|46:710|47:711;p;1|2:3|3:579|14:712|15:599|16:582|7:146|11:146|3:579|3:579;n;22;24|1:481|46:710|47:711;p;1|2:3|3:4|14:713|15:658|16:62|7:146|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:4|14:714|15:581|16:609|7:146|11:146|3:4|3:4;1|2:3|3:4|14:715|15:639|16:62|7:146|11:146|3:4|3:4;n;5|22:55;p;p;p;2|1:163;n;1|1:164|2:3|3:19|14:716|15:166|16:167|7:7|11:7|3:19|3:19;n;6;n;9|16:168|25:62|26:3;n;15|16:141|25:62|26:3|30:717|31:170|33:171|36:3;p;p;p;p;1|2:3|3:4|14:7'
- ..'18|11:146|3:4|3:4;n;23|56:719|57:720|57:720;p;1|2:3|3:4|14:721|15:722|16:723|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:724|47:725;18|46:724|47:726;p;1|2:3|3:4|14:727|16:728|6:55|7:146|11:146|3:4|3:4;n;5|22:55;18|46:729|47:730;p;1|2:3|3:4|14:731|15:192|16:732|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:733|47:734;p;1|2:3|3:4|14:735|15:318|16:736|7:55|11:55|3:4|3:4;n;18|46:737|47:738;p;1|2:3|3:4|14:739|15:175|16:732|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:733|47:740;18|46:241|47:741;p;1|2:3|3:19|14:742|15:743|16:744|7:55|11:146|3:19|3:19;n;5|22:55;18|46:745|47:746;p;1|2:3|3:4|14:747|15:310|16:748|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:749|47:750;p;1|2:3|3:4|14:751|15:318|16:752|7:55|11:55|3:4|3:4;n;18|46:729|47:753;18|46:754|47:755;p;1|2:3|3:4|14:756|15:757|16:758|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:759|47:760;p;1|2:3|3:19|14:761|15:722|16:762|6:55|7:55|11:146|3:19|3:19;n;5|22:55;18|46:763|47:764;p;1|2:3|3:26|5:6|14:765|15:766|16:767|6:55|7:55|11:146|3:26|3:26;n;5;p;1|2:3|3:4|14:768|15:192|16:769|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:770|47:771;18|46:7'
- ..'72|47:773;p;1|2:3|3:19|14:774|15:775|16:776|6:55|7:55|11:146|3:19|3:19;n;5|22:55;18|46:777|47:778;18|46:779|47:780;p;1|2:3|3:4|14:781|16:782|7:146|11:55|3:4|3:4;n;18|46:783|47:784;p;1|2:3|3:4|14:785|15:722|16:762|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:763|47:786;18|46:763|47:787;18|46:763|47:788;18|46:789|47:790;p;1|2:3|3:19|14:791|15:792|16:793|6:55|7:55|11:146|3:19|3:19;n;5|22:55;p;1|2:3|3:19|14:794|15:192|16:795|6:55|7:146|11:146|3:19|3:19;n;5|22:55;18|46:749|47:796;p;1|2:3|3:4|14:797|15:318|16:798|7:55|11:55|3:4|3:4;n;5|22:55;p;1|2:3|3:4|14:799|15:310|16:800|7:55|11:55|3:4|3:4;n;18|46:312|47:801;p;1|2:3|3:4|14:802|15:318|16:803|7:55|11:146|3:4|3:4;n;18|46:298|47:804;18|46:805|47:806;p;1|2:3|3:4|14:807|15:808|16:809|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:19|14:810|15:722|16:795|7:55|11:55|3:19|3:19;1|2:3|3:19|14:811|15:722|16:812|6:55|7:55|11:146|3:19|3:19;n;5|22:55;p;1|2:3|3:17|5:286|14:813|15:757|16:814|6:55|7:55|11:146|3:17|3:17;n;5;18|46:241|47:815;p;1|2:3|3:4|14:816|15:817|16:758|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:759|47:818;18|46:759|'
- ..'47:819;18|46:820|47:821;p;1|2:3|3:19|14:822|15:192|16:823|6:55|7:55|11:146|3:19|3:19;n;5|22:55;18|46:763|47:824;18|46:772|47:825;18|46:772|47:826;p;1|2:3|3:19|14:827|15:722|16:812|7:55|11:146|3:19|3:19;n;5|22:55;18|46:729|47:828;18|46:729|47:829;p;1|2:3|3:4|14:830|15:192|16:831|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:241|47:832;p;1|2:3|3:4|14:833|16:834|7:55|11:55|3:4|3:4;1|2:3|14:835|15:192|16:836|6:55|7:55|11:146;n;5|22:55;p;1|2:3|3:19|14:837|15:722|16:838|7:55|11:146|3:19|3:19;n;18|46:754|47:839;18|46:840|47:841;18|46:729|47:842;p;1|2:3|3:19|14:843|15:318|16:844|6:55|7:55|11:146|3:19|3:19;n;5|22:55;18|46:845|47:846;p;1|2:3|3:172|5:286|18:233|14:847|15:757|16:848|6:55|7:55|11:146|3:172|3:172;n;5;26|3:849|58:395|3:849|3:849;p;1|2:3|3:19|14:850|15:722|16:748|6:55|7:55|11:146|3:19|3:19;n;5|22:55;p;1|2:3|3:4|14:851|15:722|16:218|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:26|5:6|14:852|15:766|16:853|6:55|7:55|11:146|3:26|3:26;n;5;18|46:854|47:801;18|46:763|47:855;18|46:856|47:857;p;1|2:3|3:19|14:858|15:192|16:859|6:55|7:55|11:146|3:19|3:19;n;5|22:55;18|46:8'
- ..'60|47:861;18|46:777|47:862;p;1|2:3|3:4|14:863|15:318|16:864|7:55|11:55|3:4|3:4;1|2:3|3:4|14:865|15:318|16:866|7:55|11:55|3:4|3:4;n;18|46:867|47:868;18|46:869|47:870;p;1|2:3|3:871|14:872|15:310|16:873|7:55|11:146|3:871|3:871;1|2:3|3:871|14:874|15:318|16:289|7:55|11:55|3:871|3:871;n;5|22:55;p;1|2:3|3:4|14:875|15:722|16:876|7:146|11:146|3:4|3:4;n;18|46:783|47:877;18|46:783|47:878;18|46:733|47:879;18|46:880|47:881;p;1|2:3|3:871|14:882|15:310|16:873|7:55|11:146|3:871|3:871;n;18|46:745|47:883;p;1|2:3|3:4|14:884|15:318|16:798|7:55|11:55|3:4|3:4;n;5|22:55;p;1|2:3|3:4|14:885|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:17|14:886|15:722|16:887|6:55|7:55|8:55|9:55|10:55|11:55|3:17|3:17;n;5|17:888|59:889|20:890|22:41;p;1|2:3|3:4|14:891|15:892|16:893|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:19|14:894|15:722|16:895|7:55|11:146|3:19|3:19;1|2:3|3:4|14:896|15:808|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:241|47:897;18|46:733|47:898;p;1|2:3|3:4|14:899|15:900|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:4|14:901|15:900|16:732|19:32|6:'
- ..'55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:733|47:902;p;1|2:3|3:871|14:903|15:310|16:904|7:55|11:146|3:871|3:871;1|2:3|3:4|14:905|15:722|16:906|7:55|11:55|3:4|3:4;n;18|46:754|47:907;p;1|2:3|3:4|14:908|15:318|16:909|7:55|11:55|3:4|3:4;n;18|46:910|47:911;18|46:912|47:913;p;1|2:3|3:4|14:914|15:310|16:800|7:55|11:55|3:4|3:4;1|2:3|3:4|14:915|15:310|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:4|14:916|15:310|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:241|47:917;p;1|2:3|3:4|14:918|15:722|16:919|7:146|11:146|3:4|3:4;n;18|46:733|47:920;18|46:880|47:921;18|46:733|47:922;p;1|2:3|3:4|14:923|15:310|16:924|7:146|11:55|3:4|3:4;n;18|46:925|47:926;p;1|2:3|3:19|14:927|15:722|16:928|7:55|11:146|3:19|3:19;n;18|46:783|47:929;18|46:733|47:930;p;1|2:3|3:4|14:931|15:310|16:932|7:55|11:55|3:4|3:4;n;18|46:933|47:934;18|46:933|47:935;18|46:733|47:936;18|46:733|47:937;p;1|2:3|3:4|14:938|15:722|16:939|7:55|11:55|3:4|3:4;n;18|46:940|47:941;18|46:241|47:942;18|46:759|47:943;18|46:185|47:944;18|46:230|47:945;p;1|2:3|3:4|14:946|16:947|6:55|7:55|11:146|3:4|3:4;n;5|22:55'
- ..';p;1|2:3|14:948|15:318|16:939|7:55|11:55;n;18|46:940|47:949;18|46:241|47:950;p;1|2:3|3:4|14:951|15:722|16:723|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:952|47:953;18|46:954|47:955;18|46:954|47:956;p;1|2:3|3:4|14:957|15:318|16:798|7:55|11:55|3:4|3:4;n;5|22:55;p;1|2:3|3:4|14:958|15:310|16:959|7:146|11:55|3:4|3:4;n;18|46:910|47:960;p;1|2:3|3:4|14:961|16:962|7:55|11:55|3:4|3:4;n;18|46:733|47:963;p;1|2:3|14:964|15:808|16:965|6:55|7:55|11:146;n;5|22:55;18|46:241|47:966;18|46:733|47:967;p;1|2:3|14:968|15:318|16:939|7:55|11:55;n;18|46:940|47:969;18|46:759|47:970;18|46:230|47:971;18|46:230|47:972;p;1|2:3|3:4|14:973|15:310|16:974|7:55|11:55|3:4|3:4;n;18|46:840|47:975;18|46:185|47:976;p;1|2:3|3:4|14:977|15:175|16:978|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:241|47:979;p;1|2:3|3:19|14:980|15:722|16:981|7:55|11:146|3:19|3:19;n;18|46:880|47:982;18|46:925|47:983;p;1|2:3|14:984|15:985|16:986|7:55|11:146;n;18|46:745|47:987;p;1|2:3|3:4|14:988|15:722|16:989|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:26|5:6|14:990|15:192|16:939|6:55|7:55|11:146|3:26|3:26;n;5;18|46:759|47:991;'
- ..'18|46:230|47:992;18|46:241|47:993;p;1|1:994|2:3|3:19|18:3|14:995|15:722|16:996|6:55|7:55|8:55|9:55|10:55|11:55|3:19|3:19;n;18|46:241|47:997;p;1|2:3|3:4|14:998|15:310|16:999|7:146|11:55|3:4|3:4;1|2:3|3:17|5:286|14:1000|15:757|16:814|6:55|7:55|11:146|3:17|3:17;n;5;p;1|2:3|3:26|5:6|14:1001|15:192|16:939|6:55|7:55|11:146|3:26|3:26;n;5;18|46:759|47:1002;18|46:185|47:1003;18|46:185|47:1004;18|46:230|47:992;p;1|2:3|3:4|14:1005|15:310|16:924|7:146|11:55|3:4|3:4;n;18|46:925|47:1006;p;1|2:3|14:1007|15:775|16:1008|7:55|11:55;n;5|22:55;18|46:912|47:1009;18|46:912|47:1010;18|46:912|47:1011;18|46:912|47:1012;p;1|2:3|14:1013|15:310|16:1014|7:55|11:146;n;18|46:745|47:1015;p;1|2:3|3:26|5:6|14:1016|15:192|16:939|6:55|7:55|11:146|3:26|3:26;n;5;p;1|2:3|3:4|14:1017|15:175|16:732|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:733|47:1018;18|46:241|47:741;p;1|2:3|14:1019|15:775|16:1020|7:55|11:55;n;5|22:55;18|46:912|47:1021;18|46:912|47:1022;18|46:912|47:1023;18|46:912|47:1024;p;1|2:3|14:1025|15:192|16:732|19:32|6:55|7:55|11:146;n;5|22:55;18|46:733|47:1026;p;1|2:3|3:4|14:1027|15:310|16'
- ..':974|7:55|10:7|11:55|3:4|3:4;n;18|46:840|47:975;18|46:840|47:1028;18|46:1029|47:1030;p;1|2:3|3:26|5:6|14:1031|15:192|16:939|6:55|7:55|11:146|3:26|3:26;n;5;18|46:759|47:1032;p;1|2:3|3:4|14:1033|15:722|16:1034|7:55|11:55|3:4|3:4;n;18|46:230|47:1035;18|46:1036|47:1037;18|46:230|47:1038;18|46:1029|47:1039;p;1|2:3|3:4|14:1040|15:722|16:1041|7:55|11:55|3:4|3:4;n;18|46:241|47:1042;18|46:910|47:1043;18|46:912|47:1044;p;1|2:3|3:4|14:1045|15:722|16:1034|7:55|11:55|3:4|3:4;n;18|46:789|47:1046;18|46:1029|47:1047;18|46:230|47:1048;18|46:1049|47:1050;18|46:230|47:1051;p;1|2:3|3:26|5:6|14:1052|15:192|16:939|6:55|7:55|11:146|3:26|3:26;n;5;18|46:759|47:1053;18|46:241|47:993;p;1|1:1054|2:3|3:172|18:286|14:1055|16:1056|19:32|7:55|11:55|3:172|3:172;1|2:3|14:1057|16:1058|6:55|7:55|11:146;n;5|22:55;p;1|2:3|3:4|14:1059|15:318|16:1060|7:55|11:55|3:4|3:4;n;18|46:789|47:1061;p;1|2:3|3:19|14:1062|16:1063|7:55|11:146|3:19|3:19;n;18|46:745|47:1064;18|46:745|47:1065;18|46:745|47:1066;p;1|2:3|14:1067|15:318|16:1068|7:55|11:55;n;18|46:1029|47:1069;18|46:1070|47:1071;18|46:1070|47:1072;p;1'
- ..'|2:3|3:4|14:1073|15:175|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:19|14:1074|15:985|16:1075|7:55|11:146|3:19|3:19;n;21|1:1076|23:325;p;1|2:3|3:19|14:1077|15:722|16:981|6:55|7:55|11:146|3:19|3:19;n;5|22:55;18|46:925|47:983;p;1|2:3|3:4|14:1078|15:722|16:1079|7:55|11:55|3:4|3:4;n;18|46:1029|47:1080;18|46:880|47:1081;18|46:789|47:1082;p;1|2:3|3:19|14:1083|15:775|16:1084|6:55|7:55|11:146|3:19|3:19;n;5|22:55;18|46:1085|47:1086;18|46:772|47:1087;p;1|2:3|14:1088|15:792|16:1089|6:55|7:55|11:146;n;5|22:55;18|46:759|47:1090;p;1|2:3|3:871|14:1091|15:310|16:904|7:55|11:146|3:871|3:871;1|2:3|3:19|14:1092|15:1093|16:1094|7:55|11:146|3:19|3:19;n;5|22:55;18|46:745|47:1095;p;1|2:3|14:1096|15:175|16:732|19:32|6:55|7:55|11:146;n;5|22:55;p;1|2:3|14:1097|15:310|16:1098|19:32|6:55|7:55|11:146;n;5|22:55;18|46:733|47:1099;18|46:241|47:1100;18|46:241|47:1101;p;1|2:3|3:4|14:1102|15:722|16:1079|7:55|11:55|3:4|3:4;1|2:3|14:1103|15:722|16:732|19:32|6:55|7:55|11:146;n;5|22:55;18|46:733|47:1104;18|46:241|47:1105;p;1|2:3|3:4|14:1106|15:808|16:1107|6:55|7:55|11:146|3:4|3:4;n'
- ..';5|22:55;18|46:733|47:1108;p;1|2:3|3:4|14:1109|16:1110|7:55|11:55|3:4|3:4;n;18|46:1111|47:1112;p;1|2:3|3:4|14:1113|15:318|16:1114|7:55|11:55|3:4|3:4;n;18|46:1115|47:1116;18|46:910|47:1117;18|46:912|47:1118;18|46:1119|47:1120;18|46:1115|47:1121;18|46:912|47:1122;p;1|2:3|3:4|14:1123|15:318|16:1124|7:55|11:55|3:4|3:4;n;18|46:867|47:1125;18|46:1115|47:1126;18|46:867|47:1127;18|46:772|47:1128;18|46:1129|47:1130;18|46:1119|47:1131;18|46:1129|47:1132;18|46:1119|47:1133;p;1|2:3|14:1134|15:318|16:1135|7:55|11:146;n;18|46:733|47:1136;p;1|2:3|14:1137|15:985|16:986|7:55|11:146;n;18|46:745|47:1138;p;1|2:3|14:1139|15:1140|16:573|6:55|7:55|11:146;n;5|22:55;p;1|2:3|3:19|14:1141|15:775|16:1142|7:55|11:146|3:19|3:19;n;5|22:55;18|46:733|47:1143;p;1|2:3|3:19|14:1144|15:318|16:1145|19:32|7:55|11:55|3:19|3:19;n;21|1:1146|23:146;21|1:1146|23:61;18|46:759|47:1147;p;1|2:3|3:4|14:1148|15:722|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:733|47:1149;p;1|2:3|3:871|14:1150|15:318|16:289|7:55|11:55|3:871|3:871;n;5|22:55;p;1|2:3|3:19|14:1151|15:792|16:1152|7:55|11:146|3:19|3:19;1'
- ..'|2:3|3:4|14:1153|15:722|16:1154|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|14:1155|15:318|16:732|19:32|6:55|7:55|11:146;n;5|22:55;p;1|2:3|3:19|14:1156|15:792|16:1157|6:55|7:55|11:146|3:19|3:19;n;5|22:55;18|46:772|47:1158;p;1|2:3|3:4|14:1159|15:722|16:723|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:952|47:1160;18|46:724|47:725;p;1|2:3|3:4|14:1161|15:310|16:1162|7:55|11:146|3:4|3:4;1|2:3|3:17|5:6|18:1163|14:1164|15:318|16:1165|7:55|11:55|3:17|3:17;n;18|46:779|47:1166;18|46:1167|47:1168;p;1|2:3|3:4|14:1169|15:318|16:1170|7:55|11:55|3:4|3:4;n;18|46:1115|47:1171;18|46:867|47:1172;18|46:772|47:1173;18|46:1119|47:1174;p;1|2:3|14:1175|15:985|16:1176|7:55|11:146;n;18|46:745|47:1177;p;1|2:3|3:19|14:1178|15:775|16:1094|7:55|11:146|3:19|3:19;n;5|22:55;p;1|2:3|3:4|14:1179|15:757|16:1180|6:55|7:55|11:146|3:4|3:4;n;5;18|46:749|47:1181;p;1|2:3|3:4|14:1182|15:722|16:906|7:55|11:55|3:4|3:4;1|2:3|14:1183|15:757|16:1184|6:55|7:55|11:146;n;5;p;1|2:3|3:4|14:1185|15:722|16:1186|7:55|11:55|3:4|3:4;n;18|46:754|47:1187;p;1|2:3|3:17|14:1188|15:722|16:887|6:55|7:55|8:55|9:55|10:55|11:55|'
- ..'3:17|3:17;n;5|17:888|59:889|20:890|22:41;18|46:754|47:1189;18|46:729|47:1190;18|46:1119|47:1191;18|46:1192|47:806;18|46:1115|47:1193;p;1|2:3|3:4|14:1194|15:722|16:1195|7:55|11:146|3:4|3:4;n;18|46:1036|47:1196;18|46:754|47:1197;18|46:754|47:1198;18|46:754|47:1187;18|46:1199|47:1200;p;1|2:3|3:4|14:1201|15:318|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:241|47:1202;18|46:733|47:1203;p;1|2:3|3:19|14:1204|15:722|16:289|6:55|7:55|11:146|3:19|3:19;n;5|22:55;18|46:745|47:1205;18|46:241|47:1206;p;1|2:3|14:1207|15:985|16:1176|7:55|11:146;n;18|46:745|47:1208;p;1|2:3|3:4|14:1209|15:192|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:241|47:1210;18|46:733|47:1211;p;1|2:3|14:1212|15:1140|16:893|6:55|7:55|11:146;n;5|22:55;18|46:1213|47:1214;18|46:185|47:1215;18|46:749|47:1216;p;1|2:3|14:1217|15:1140|16:1218|6:55|7:55|11:146;n;5|22:55;18|46:1219|47:1220;18|46:749|47:1221;p;1|2:3|3:4|14:1222|15:310|16:800|7:55|11:55|3:4|3:4;n;18|46:384|47:1223;18|46:312|47:801;p;1|2:3|14:1224|15:318|16:1225|7:55|11:55;n;18|46:1119|47:1226;18|46:867|47:1227;18|46:1119|47:1228'
- ..';18|46:772|47:1229;18|46:952|47:1230;p;1|2:3|3:871|14:1231|15:310|16:873|7:55|11:146|3:871|3:871;1|2:3|3:4|14:1232|15:722|16:1186|7:55|11:55|3:4|3:4;n;18|46:754|47:1233;p;1|2:3|3:4|14:1234|15:722|16:1154|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|14:1235|15:722|16:1236|7:55|9:55|11:55;n;18|46:933|47:1237;p;1|2:3|3:4|14:1238|15:310|16:752|7:55|11:55|3:4|3:4;n;18|46:749|47:1239;p;1|2:3|3:4|14:1240|15:318|16:798|7:55|11:55|3:4|3:4;n;5|22:55;p;1|2:3|14:1241|15:792|16:1242|6:55|7:55|11:146;n;5|22:55;18|46:1243|47:1244;18|46:845|47:1245;p;1|2:3|3:4|14:1246|15:722|16:939|7:55|11:55|3:4|3:4;n;18|46:940|47:1247;18|46:230|47:1248;18|46:759|47:1249;18|46:933|47:1250;18|46:241|47:1251;p;1|2:3|14:1252|15:722|16:1236|7:55|9:55|11:55;n;18|46:933|47:1253;p;1|2:3|3:871|14:1254|15:310|16:873|7:55|11:146|3:871|3:871;n;18|46:745|47:883;p;1|2:3|14:1255|15:775|16:1256|6:55|7:55|11:146;n;5|22:55;18|46:1085|47:1257;18|46:759|47:1258;18|46:759|47:1259;p;1|2:3|3:4|14:1260|15:310|16:800|7:55|11:55|3:4|3:4;1|2:3|3:19|14:1261|15:985|16:1262|7:55|11:146|3:19|3:19;n;21|1:1076|23:325;18|4'
- ..'6:745|47:1263;18|46:745|47:1264;p;1|2:3|3:4|14:1265|15:318|16:1266|7:55|11:55|3:4|3:4;n;18|46:1029|47:1267;18|46:789|47:1268;p;1|2:3|3:4|14:1269|15:318|16:1270|7:55|11:55|3:4|3:4;1|2:3|3:4|14:1271|15:722|16:1041|7:55|11:55|3:4|3:4;n;18|46:910|47:1272;18|46:241|47:1273;p;1|2:3|14:1274|15:722|16:1236|7:55|9:55|11:55;n;18|46:933|47:1275;p;1|2:3|14:1276|15:1093|16:1277|7:55|11:146;n;18|46:1115|47:1278;p;1|2:3|3:4|14:1279|16:1280|7:55|11:146|3:4|3:4;n;5|22:55;18|46:729|47:1281;18|46:729|47:1282;18|46:729|47:1283;18|46:729|47:1284;18|46:729|47:1285;18|46:729|47:1286;p;1|2:3|3:4|14:1287|15:175|16:1288|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:1289|47:1290;p;1|2:3|3:4|14:1291|15:175|16:1288|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:1289|47:1290;p;1|2:3|3:4|14:1292|15:900|16:1293|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:241|47:1294;p;1|2:3|3:4|14:1295|15:808|16:1296|6:55|7:146|11:146|3:4|3:4;n;5|22:55;18|46:749|47:1297;18|46:912|47:1298;18|46:749|47:1299;18|46:912|47:1300;18|46:912|47:1301;p;1|2:3|3:4|14:1302|15:722|16:723|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:952|'
- ..'47:1303;18|46:952|47:1304;18|46:954|47:955;p;1|1:1305|2:3|3:19|18:3|14:1306|15:722|16:996|6:55|7:55|8:55|9:55|10:55|11:55|3:19|3:19;1|2:3|3:4|14:1307|15:766|16:1308|6:55|7:55|11:146|3:4|3:4;n;5;p;1|2:3|14:1309|15:1093|16:573|6:55|7:55|11:146;n;5|22:55;18|46:384|47:1310;18|46:749|47:1311;18|46:384|47:1312;p;1|2:3|14:1313|15:1314|16:1315|7:55|11:146;n;5|22:55;18|46:733|47:1316;p;1|2:3|14:1317|15:722|16:823|6:55|7:55|11:146;n;5|22:55;18|46:763|47:1318;18|46:772|47:1319;p;1|2:3|3:4|14:1320|15:318|16:1321|7:55|11:55|3:4|3:4;n;18|46:754|47:1322;p;1|2:3|3:19|14:1323|15:775|16:1324|7:55|11:146|3:19|3:19;n;5|22:55;p;1|2:3|14:1325|15:175|16:1326|6:55|7:55|11:146;n;5|22:55;18|46:275|47:1327;p;1|2:3|3:4|14:1328|15:775|16:1020|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:912|47:1329;p;1|2:3|14:1330|15:792|16:1331|6:55|7:55|11:146;n;5|22:55;18|46:1119|47:1332;18|46:845|47:1333;p;1|2:3|3:4|14:1334|15:318|16:793|7:55|11:55|3:4|3:4;n;18|46:779|47:1335;18|46:1167|47:1336;p;1|2:3|3:4|14:1337|15:766|16:1308|6:55|7:55|11:146|3:4|3:4;n;5;18|46:749|47:1338;18|46:1119|47:1339;p;1|2:3|'
- ..'14:1340|15:775|16:1114|6:55|7:55|11:146;n;5|22:55;p;1|2:3|3:19|14:1341|15:775|16:744|7:55|11:146|3:19|3:19;n;5|22:55;18|46:745|47:1342;p;1|2:3|3:4|14:1343|15:743|16:1020|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:17|5:6|18:1163|14:1344|15:318|16:1165|7:55|11:55|3:17|3:17;n;18|46:1167|47:1345;p;1|2:3|14:1346|15:775|16:1347|6:55|7:55|11:146;n;5|22:55;18|46:1243|47:1348;p;1|2:3|14:1349|15:192|16:1350|6:55|7:146|11:146;n;5|22:55;18|46:749|47:1351;p;1|2:3|3:4|14:1352|15:318|16:793|7:55|11:55|3:4|3:4;n;18|46:779|47:1353;18|46:1167|47:1354;p;1|2:3|3:17|5:6|18:1163|14:1355|15:318|16:1356|7:55|11:55|3:17|3:17;n;18|46:779|47:1357;18|46:1167|47:1358;p;1|2:3|3:4|14:1359|15:722|16:1195|7:55|11:146|3:4|3:4;n;18|46:729|47:1360;18|46:1049|47:1361;18|46:754|47:1233;18|46:754|47:1362;18|46:754|47:1363;18|46:1199|47:1364;p;1|2:3|3:4|14:1365|15:722|16:1366|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:4|14:1367|15:722|16:1368|7:55|11:146|3:4|3:4;n;18|46:783|47:1369;18|46:1370|47:806;18|46:733|47:1371;p;1|2:3|14:1372|15:775|16:1373|7:55|11:146;n;5|22:55;p;1|2:3|3:4|14:1374|15:'
- ..'1140|16:893|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:1213|47:1375;18|46:749|47:1376;p;1|2:3|14:1377|15:722|16:1378|6:55|7:55|11:146;n;5|22:55;18|46:759|47:1379;p;1|2:3|3:4|14:1380|15:1140|16:893|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:749|47:1381;18|46:749|47:1382;p;1|2:3|3:4|14:1383|15:722|16:919|7:55|11:146|3:4|3:4;n;18|46:783|47:1384;18|46:783|47:1385;18|46:733|47:1386;18|46:783|47:1387;18|46:733|47:1388;p;1|2:3|3:4|14:1389|15:722|16:1079|7:55|11:55|3:4|3:4;1|2:3|14:1390|15:743|16:1373|7:55|11:146;n;5|22:55;p;1|2:3|14:1391|15:722|16:823|6:55|7:55|11:146;n;5|22:55;18|46:763|47:1392;18|46:763|47:1230;18|46:772|47:1393;p;1|2:3|3:19|14:1394|15:892|16:1395|7:55|11:146|3:19|3:19;1|2:3|14:1396|15:743|16:1114|6:55|7:55|11:146;n;5|22:55;18|46:1397|47:1398;18|46:912|47:1399;p;1|2:3|3:19|14:1400|15:743|16:1324|7:55|11:146|3:19|3:19;n;5|22:55;18|46:729|47:1401;p;1|2:3|14:1402|15:175|16:1403|6:55|7:55|11:146;n;5|22:55;p;1|2:3|14:1404|15:775|16:1405|7:55|11:146;n;5|22:55;18|46:925|47:1406;p;1|2:3|14:1407|15:175|16:1403|6:55|7:55|11:146;n;5|22:55;p;1|2:3|14:1408|15:10'
- ..'93|16:1242|6:55|7:55|11:146;n;5|22:55;18|46:1243|47:1244;18|46:845|47:1245;p;1|2:3|3:4|14:1409|15:310|16:947|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:1410|47:1411;18|46:729|47:1412;18|46:729|47:1413;18|46:845|47:1414;p;1|2:3|3:4|14:1415|15:722|16:1416|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:952|47:1417;18|46:952|47:1418;18|46:1419|47:1420;p;1|2:3|3:19|14:1421|15:775|16:1152|7:55|11:146|3:19|3:19;1|2:3|3:4|14:1422|15:722|16:1366|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:745|47:1423;p;1|2:3|3:19|14:1424|15:175|16:1425|6:55|7:55|11:146|3:19|3:19;n;5|22:55;p;1|2:3|3:19|14:1426|15:175|16:1425|6:55|7:55|11:146|3:19|3:19;n;5|22:55;18|46:1427|47:1428;18|46:1427|47:1429;18|46:1430|47:1431;p;1|2:3|14:1432|15:1433|16:1315|7:55|11:146;n;5|22:55;p;1|2:3|3:4|14:1434|15:722|16:1416|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:172|5:6|18:286|14:1435|15:722|16:1436|7:55|11:146|3:172|3:172;n;5|22:55;p;1|2:3|14:1437|15:310|16:1058|6:55|7:55|11:146;n;5|22:55;18|46:733|47:1438;18|46:749|47:1439;18|46:749|47:1440;18|46:733|47:1441;p;1|2:3|14:1442|15:743|16:1256|6:55|7:55|11:146;'
- ..'n;5|22:55;18|46:1085|47:1257;18|46:759|47:1443;18|46:759|47:1444;p;1|2:3|3:19|14:1445|15:892|16:1395|7:55|11:146|3:19|3:19;1|2:3|14:1446|15:757|16:1447|6:55|7:55|11:146;n;5;p;1|2:3|14:1448|15:775|16:1449|6:55|7:55|11:146;n;5|22:55;p;1|2:3|14:1450|15:743|16:1347|6:55|7:55|11:146;n;5|22:55;18|46:1243|47:883;p;1|2:3|3:4|14:1451|15:722|16:1452|7:146|11:55|3:4|3:4;n;18|46:733|47:1453;18|46:733|47:1454;18|46:1455|47:738;18|46:783|47:1456;p;1|2:3|14:1457|15:1093|16:1089|6:55|7:55|11:146;n;5|22:55;p;1|2:3|14:1458|15:318|16:1135|7:55|11:146;n;18|46:733|47:1459;18|46:733|47:1136;18|46:783|47:1460;18|46:733|47:1461;p;1|2:3|3:19|14:1462|15:1093|16:1157|6:55|7:55|11:146|3:19|3:19;n;5|22:55;18|46:770|47:1463;p;1|2:3|3:19|14:1464|16:1063|7:55|11:146|3:19|3:19;n;18|46:745|47:1465;18|46:1466|47:806;p;1|2:3|14:1467|15:318|16:939|7:55|11:55;n;18|46:241|47:950;18|46:241|47:972;p;1|2:3|3:19|14:1468|15:743|16:1094|7:55|11:146|3:19|3:19;n;5|22:55;18|46:745|47:1469;p;1|2:3|14:1470|16:1098|19:32|6:55|7:55|11:146;n;5|22:55;p;1|2:3|3:4|14:1471|15:175|16:989|6:55|7:55|11:146|3:4|3:4;n'
- ..';5|22:55;18|46:733|47:1472;p;1|2:3|14:1473|15:1093|16:1331|6:55|7:55|11:146;n;5|22:55;18|46:1474|47:1475;p;1|2:3|14:1476|15:722|16:1378|6:55|7:55|11:146;n;5|22:55;18|46:1289|47:1477;18|46:759|47:1478;p;1|2:3|3:19|14:1479|15:722|16:289|6:55|7:55|11:146|3:19|3:19;n;5|22:55;p;1|2:3|3:4|14:1480|15:722|16:989|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|14:1481|15:318|16:1236|7:55|9:55|11:55;1|2:3|3:19|14:1482|15:1483|16:1075|7:55|11:146|3:19|3:19;n;21|1:1076|23:325;p;1|2:3|14:1484|15:192|16:1350|6:55|7:146|11:146;n;5|22:55;p;1|2:3|3:4|14:1485|16:1110|7:55|11:55|3:4|3:4;n;18|46:733|47:1486;18|46:783|47:1487;18|46:749|47:1488;p;1|2:3|3:4|14:1489|15:318|16:1124|7:55|11:55|3:4|3:4;n;18|46:1115|47:1490;18|46:1119|47:1491;18|46:1115|47:1492;p;1|2:3|14:1493|15:743|16:1405|7:55|11:146;n;5|22:55;p;1|2:3|14:1494|15:318|16:1236|7:55|9:55|11:55;1|2:3|3:4|14:1495|15:808|16:1293|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:241|47:1496;18|46:733|47:1497;p;1|2:3|14:1498|15:743|16:1449|6:55|7:55|11:146;n;5|22:55;18|46:1499|47:1500;18|46:1115|47:1501;18|46:1474|47:1502;18|46:1474|47:1'
- ..'503;p;1|2:3|3:19|14:1504|15:743|16:1142|7:55|11:146|3:19|3:19;n;5|22:55;18|46:733|47:1505;p;1|2:3|3:4|14:1506|15:318|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|14:1507|15:892|16:573|6:55|7:55|11:146;n;5|22:55;18|46:384|47:1508;p;1|2:3|3:19|14:1509|15:318|16:1145|19:32|7:55|11:55|3:19|3:19;n;21|1:1146|23:146;21|1:1146|23:61;18|46:759|47:1510;p;1|2:3|3:4|14:1511|15:722|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:733|47:1512;18|46:241|47:1513;p;1|2:3|14:1514|15:722|16:732|19:32|6:55|7:55|11:146;n;5|22:55;p;1|2:3|3:19|14:1515|15:792|16:1094|7:55|11:146|3:19|3:19;n;5|22:55;18|46:745|47:1516;p;1|2:3|14:1517|15:1314|16:573|6:55|7:55|11:146;n;5|22:55;18|46:749|47:1518;18|46:1519|47:1520;p;1|2:3|14:1521|15:1483|16:986|7:55|11:146;1|2:3|14:1522|15:318|16:1068|7:55|11:55;n;18|46:1523|47:1524;18|46:789|47:1525;p;1|2:3|14:1526|15:1483|16:1176|7:55|11:146;1|2:3|3:19|14:1527|15:743|16:1084|6:55|7:55|11:146|3:19|3:19;n;5|22:55;18|46:772|47:1528;p;1|2:3|14:1529|15:175|16:732|19:32|6:55|7:55|11:146;n;5|22:55;p;1|2:3|3:4|14:1530|15:318|16:864|7:55|11:55'
- ..'|3:4|3:4;n;18|46:1531|47:1532;18|46:1531|47:1533;18|46:1534|47:1535;p;1|2:3|3:4|14:1536|15:192|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:4|14:1537|15:900|16:1107|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|14:1538|15:743|16:1277|7:55|11:146;n;18|46:384|47:1539;p;1|2:3|14:1540|15:1483|16:986|7:55|11:146;1|2:3|3:4|14:1541|15:310|16:1280|7:55|11:146|3:4|3:4;n;5|22:55;18|46:729|47:1542;p;1|2:3|3:4|14:1543|15:310|16:999|7:146|11:55|3:4|3:4;n;18|46:783|47:1544;p;1|2:3|3:4|14:1545|15:318|16:1114|7:55|11:55|3:4|3:4;n;18|46:910|47:1117;18|46:912|47:1546;18|46:1115|47:1547;18|46:912|47:1548;18|46:912|47:1549;18|46:1119|47:1550;p;1|2:3|3:4|14:1551|15:318|16:752|7:55|11:55|3:4|3:4;n;18|46:754|47:1525;p;1|2:3|14:1552|15:892|16:893|6:55|7:55|11:146;n;5|22:55;p;1|2:3|14:1553|15:318|16:1236|7:55|9:55|11:55;1|2:3|3:4|14:1554|15:310|16:728|6:55|7:146|11:146|3:4|3:4;n;5|22:55;18|46:729|47:1555;p;1|2:3|3:4|14:1556|15:310|16:1557|7:146|11:55|3:4|3:4;n;18|46:1455|47:1558;18|46:1455|47:1559;18|46:1455|47:1560;18|46:1455|47:1561;18|46:1455|47:1562;18|46:910|47:1563;'
- ..'18|46:1564|47:1565;18|46:1455|47:1566;p;1|2:3|3:4|14:1567|15:817|16:758|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:4|14:1568|15:722|16:1154|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:241|47:1569;p;1|2:3|3:4|14:1570|15:318|16:1170|7:55|11:55|3:4|3:4;n;18|46:1119|47:1571;18|46:1531|47:1572;18|46:867|47:1573;18|46:1115|47:1574;18|46:772|47:1575;18|46:1531|47:1576;p;1|2:3|14:1577|15:192|16:732|19:32|6:55|7:55|11:146;n;5|22:55;p;1|2:3|3:4|14:1578|15:900|16:809|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:4|14:1579|15:318|16:1060|7:55|11:55|3:4|3:4;1|2:3|14:1580|15:892|16:893|6:55|7:55|11:146;n;5|22:55;18|46:1213|47:1581;18|46:749|47:1582;p;1|2:3|14:1583|15:318|16:939|7:55|11:55;n;18|46:230|47:971;18|46:940|47:969;18|46:230|47:972;p;1|2:3|3:17|5:6|18:1163|14:1584|15:318|16:1165|7:55|11:55|3:17|3:17;n;18|46:1167|47:1168;p;1|2:3|3:4|14:1585|15:175|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:241|47:1586;p;1|2:3|3:4|14:1587|15:722|16:1154|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:733|47:1588;p;1|2:3|3:4|14:1589|15:310|16:1162|7:55|11:55|3:4|3:4;n;18|46:783|4'
- ..'7:1590;18|46:783|47:1591;18|46:1592|47:1593;18|46:783|47:1594;18|46:733|47:1595;18|46:783|47:1596;18|46:733|47:1597;18|46:783|47:1598;p;1|2:3|3:4|14:1599|15:310|16:752|7:55|11:55|3:4|3:4;1|2:3|3:4|14:1600|15:318|16:1601|7:55|11:55|3:4|3:4;n;18|46:1602|47:1603;18|46:1029|47:1604;18|46:1029|47:1605;18|46:789|47:1606;18|46:1029|47:1607;p;1|2:3|3:4|14:1608|15:318|16:1270|7:55|11:55|3:4|3:4;n;18|46:783|47:1609;18|46:733|47:1610;18|46:733|47:1611;p;1|2:3|3:4|14:1612|16:748|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|14:1613|15:318|16:732|19:32|6:55|7:55|11:146;n;5|22:55;p;1|2:3|3:4|14:1614|16:1615|7:55|11:55|3:4|3:4;n;18|46:733|47:1616;p;1|2:3|14:1617|15:1483|16:1176|7:55|11:146;1|2:3|14:1618|15:318|16:1225|7:55|11:55;1|2:3|3:19|14:1619|15:1093|16:793|6:55|7:55|11:146|3:19|3:19;n;5|22:55;p;1|2:3|3:4|14:1620|15:310|16:974|7:55|11:55|3:4|3:4;n;18|46:1029|47:1621;p;1|2:3|3:26|5:6|14:1622|15:766|16:767|6:55|7:55|11:146|3:26|3:26;n;5;18|46:1049|47:1623;p;1|2:3|3:4|14:1624|15:192|16:831|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:733|47:1625;18|46:241|47:1626;p;1|2:3|3:4|1'
- ..'4:1627|15:757|16:758|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:820|47:821;p;1|2:3|3:4|14:1628|15:318|16:793|7:55|11:55|3:4|3:4;n;18|46:1167|47:1336;p;1|2:3|3:19|14:1629|15:743|16:776|6:55|7:55|11:146|3:19|3:19;n;5|22:55;18|46:777|47:778;18|46:779|47:1630;p;1|2:3|14:1631|15:310|16:1632|7:55|11:146;n;18|46:745|47:1633;p;1|2:3|3:4|14:1634|15:318|16:736|7:55|11:55|3:4|3:4;1|2:3|3:4|14:1635|15:722|16:218|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:298|47:1636;18|46:241|47:1637;p;1|2:3|3:4|14:1638|15:192|16:769|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:770|47:1639;18|46:772|47:1640;p;1|2:3|14:1641|15:310|16:1642|7:55|11:146;1|2:3|3:26|5:6|14:1643|15:766|16:853|6:55|7:55|11:146|3:26|3:26;n;5;18|46:763|47:1644;p;1|2:3|3:4|14:1645|15:318|16:866|7:55|11:55|3:4|3:4;n;18|46:1646|47:1647;p;1|2:3|3:4|14:1648|15:318|16:793|7:55|11:55|3:4|3:4;n;18|46:1167|47:1354;p;1|2:3|3:172|5:286|18:233|14:1649|15:757|16:848|6:55|7:55|11:146|3:172|3:172;n;5;26|3:849|58:395|3:849|3:849;18|46:745|47:1650;p;1|2:3|3:4|14:1651|15:310|16:959|7:146|11:55|3:4|3:4;n;18|46:1199|47:1652;18|46:1653|47:1'
- ..'654;p;1|2:3|3:4|14:1655|15:318|16:803|7:55|11:146|3:4|3:4;n;18|46:298|47:1656;p;1|2:3|14:1657|15:310|16:1014|7:55|11:146;n;18|46:745|47:1658;p;1|2:3|3:17|5:6|18:1163|14:1659|15:318|16:1356|7:55|11:55|3:17|3:17;1|2:3|3:4|14:1660|16:834|7:55|11:55|3:4|3:4;1|2:3|3:19|14:1661|15:318|16:844|6:55|7:55|11:146|3:19|3:19;n;5|22:55;18|46:1243|47:1662;18|46:845|47:1663;18|46:845|47:1664;p;1|2:3|3:19|14:1665|15:192|16:823|6:55|7:55|11:146|3:19|3:19;n;5|22:55;18|46:763|47:1666;18|46:763|47:1667;18|46:772|47:1668;18|46:772|47:826;p;1|2:3|3:4|14:1669|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:241|47:1670;p;1|2:3|3:19|14:1671|15:722|16:748|6:55|7:55|11:146|3:19|3:19;n;5|22:55;18|46:749|47:1672;18|46:733|47:1673;p;1|2:3|3:4|14:1674|15:310|16:974|7:55|11:55|3:4|3:4;n;18|46:933|47:1675;18|46:1029|47:1676;18|46:789|47:1677;18|46:185|47:1678;18|46:1085|47:1679;p;1|2:3|3:19|14:1680|15:722|16:838|7:55|11:146|3:19|3:19;n;18|46:754|47:839;18|46:840|47:841;18|46:729|47:1681;p;1|2:3|14:1682|15:743|16:1020|7:55|11:55;n;5|22:55;18|46:912|47:1683;18|46:912|47:1684;p;1|2:3|3:4'
- ..'|14:1685|15:722|16:762|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:763|47:1686;18|46:763|47:1687;p;1|2:3|3:4|14:1688|15:1093|16:1689|7:55|11:146|3:4|3:4;n;21|53:1690|23:325;p;1|2:3|3:19|14:1691|15:900|16:1692|7:55|11:146|3:19|3:19;n;18|46:745|47:1693;18|46:1694|47:1695;18|46:1696|47:1697;p;1|2:3|3:19|14:1698|15:192|16:795|6:55|7:146|11:146|3:19|3:19;n;5|22:55;18|46:925|47:1699;18|46:749|47:796;p;1|2:3|3:4|14:1700|16:782|7:146|11:55|3:4|3:4;1|2:3|3:19|14:1701|15:722|16:895|7:55|11:146|3:19|3:19;1|2:3|3:19|14:1702|15:722|16:795|7:55|11:55|3:19|3:19;n;18|46:1703|47:1704;p;1|2:3|3:4|14:1705|15:318|16:1321|7:55|11:55|3:4|3:4;n;18|46:754|47:1706;18|46:754|47:1707;18|46:754|47:1322;18|46:754|47:1708;18|46:754|47:1709;p;1|1:1054|2:3|3:172|18:286|14:1710|15:310|16:1711|19:32|7:55|11:55|3:172|3:172;1|2:3|3:19|14:1712|15:722|16:762|6:55|7:55|11:146|3:19|3:19;n;5|22:55;p;1|2:3|3:19|14:1713|15:722|16:812|7:55|11:146|3:19|3:19;n;5|22:55;p;1|2:3|3:4|14:1714|15:808|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|14:1715|15:192|16:836|6:55|7:55|11:146;n;5|22:55;18|46:2'
- ..'75|47:1716;18|46:729|47:1717;p;1|2:3|3:4|14:1718|15:318|16:909|7:55|11:55|3:4|3:4;n;18|46:910|47:1719;18|46:912|47:1720;p;1|2:3|3:19|14:1721|15:722|16:812|6:55|7:55|11:146|3:19|3:19;n;5|22:55;18|46:729|47:1722;p;1|2:3|3:19|14:1723|15:808|16:1724|6:55|7:55|11:146|3:19|3:19;n;5|22:55;21|1:1725;18|46:729|47:1726;18|46:241|47:1727;p;1|2:3|14:1728|15:892|16:1008|7:55|11:55;n;5|22:55;p;1|2:3|3:17|5:6|18:1163|14:1729|15:318|16:1165|7:55|11:55|3:17|3:17;1|2:3|3:19|14:1730|15:722|16:1731|7:55|11:146|3:19|3:19;n;21|1:1732|23:325;21|1:1733|23:55;18|46:754|47:1734;p;1|2:3|3:4|14:1735|15:318|16:1736|7:55|11:55|3:4|3:4;n;18|46:867|47:1737;18|46:749|47:1738;18|46:749|47:1739;18|46:749|47:1740;p;1|2:3|14:1741|15:310|16:1742|7:55|11:55;n;5|22:55;18|46:733|47:1743;18|46:733|47:1744;p;1|2:3|3:4|14:1745|15:310|16:1746|7:55|11:146|3:4|3:4;n;18|46:1410|47:1747;18|46:729|47:1748;18|46:1749|47:1750;p;1|2:3|3:4|14:1751|15:900|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:733|47:1752;p;1|2:3|3:4|14:1753|15:310|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:26|5:6|'
- ..'14:1754|15:192|16:939|6:55|7:55|11:146|3:26|3:26;n;5;18|46:759|47:1755;18|46:933|47:1756;p;1|2:3|3:26|5:6|14:1757|15:192|16:939|6:55|7:55|11:146|3:26|3:26;n;5;18|46:759|47:1758;18|46:241|47:993;18|46:933|47:1759;p;1|2:3|3:19|14:1760|15:1483|16:1262|7:55|11:146|3:19|3:19;n;21|1:1076|23:325;18|46:745|47:1761;p;1|2:3|3:19|14:1762|15:722|16:1763|7:55|11:146|3:19|3:19;n;21|1:1733|23:146;21|1:1733|23:55;18|46:779|47:1764;18|46:185|47:1765;p;1|2:3|3:26|5:6|14:1766|15:192|16:939|6:55|7:55|11:146|3:26|3:26;n;5;18|46:230|47:992;p;1|2:3|3:4|14:1767|15:892|16:893|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:1213|47:1768;18|46:749|47:1769;18|46:749|47:1770;p;1|2:3|3:4|14:1771|15:808|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:241|47:1772;p;1|2:3|3:4|14:1773|15:757|16:1180|6:55|7:55|11:146|3:4|3:4;n;5;p;1|1:1774|2:3|3:1775|5:6|14:1776|15:310|16:1777|7:55|11:146|3:1775|3:1775;n;27|1:1778|60:3;12;p;1|2:3|3:4|14:1779|15:175|16:978|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:26|5:6|14:1780|15:192|16:939|6:55|7:55|11:146|3:26|3:26;n;5;18|46:759|47:1781;18|46:230|47:992'
- ..';18|46:241|47:993;18|46:933|47:1782;p;1|2:3|3:19|14:1783|15:192|16:859|6:55|7:55|11:146|3:19|3:19;n;5|22:55;18|46:860|47:1784;p;1|2:3|3:19|14:1785|15:722|16:981|7:55|11:146|3:19|3:19;n;18|46:925|47:1786;p;1|2:3|3:4|14:1787|15:985|16:1689|7:55|11:146|3:4|3:4;n;21|1:1788|23:325;21|53:1789|23:325;18|46:745|47:1790;p;1|2:3|3:19|14:1791|15:722|16:928|7:55|11:146|3:19|3:19;n;18|46:733|47:1792;p;1|2:3|3:26|5:6|14:1793|15:192|16:939|6:55|7:55|11:146|3:26|3:26;n;5;p;1|2:3|3:19|14:1794|15:318|16:1742|6:55|7:55|11:146|3:19|3:19;n;5|22:55;21|53:1795|23:325;18|46:733|47:1796;p;1|2:3|3:4|14:1797|15:310|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:241|47:1798;p;1|2:3|3:4|14:1799|15:192|16:732|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:733|47:1800;p;1|2:3|3:4|14:1801|15:808|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:733|47:1802;18|46:241|47:1803;p;1|1:1804|2:3|3:4|14:1805|15:722|16:1806|6:55|7:55|8:55|9:55|10:55|11:7|3:4|3:4;n;28|14:1807|61:59;29|62:59;12;27|1:1808;18|46:1809|47:1810;18|46:1809|47:1811;18|46:1812|47:1813;18|46:733|47:1814;18|46:733|47:181'
- ..'5;18|46:1564|47:1816;18|46:783|47:1817;18|46:783|47:1818;18|46:783|47:1819;18|46:783|47:1820;18|46:783|47:1821;18|46:783|47:1822;18|46:783|47:1823;18|46:783|47:1824;18|46:733|47:1825;18|46:733|47:1826;18|46:783|47:1827;18|46:783|47:1828;18|46:783|47:1829;18|46:783|47:1830;18|46:1812|47:1831;18|46:733|47:1832;18|46:783|47:1833;18|46:783|47:1834;18|46:783|47:1835;18|46:783|47:1836;18|46:783|47:1837;18|46:783|47:1838;18|46:733|47:1839;18|46:783|47:1840;18|46:783|47:1841;18|46:783|47:1842;18|46:783|47:1843;18|46:783|47:1844;18|46:783|47:1845;18|46:783|47:1846;18|46:783|47:1847;18|46:783|47:1848;18|46:783|47:1849;18|46:783|47:1850;18|46:783|47:1851;18|46:783|47:1852;18|46:783|47:1853;18|46:783|47:1854;18|46:783|47:1855;18|46:783|47:1856;18|46:783|47:1857;18|46:783|47:1858;18|46:783|47:1859;18|46:783|47:1860;18|46:783|47:1861;18|46:783|47:1862;18|46:783|47:1863;18|46:1809|47:1864;18|46:783|47:1865;18|46:733|47:1866;18|46:733|47:1867;18|46:1812|47:1868;18|46:733|47:1869;18|46:733|47:1870;18|46:783|47:1871;18|46:783|47:1872;18|46:783|47:1873;18|46:783|47:1874;18|46'
- ..':783|47:1875;18|46:1812|47:1876;18|46:733|47:1877;18|46:783|47:1878;18|46:783|47:1879;18|46:783|47:1880;18|46:783|47:1881;18|46:1882|47:1883;18|46:1564|47:1884;18|46:1882|47:1885;18|46:783|47:1886;18|46:1882|47:1887;18|46:783|47:1888;18|46:783|47:1889;18|46:783|47:1890;18|46:783|47:1891;18|46:733|47:1892;18|46:1564|47:1893;18|46:783|47:1894;18|46:783|47:1895;18|46:783|47:1896;p;1|2:3|3:4|14:1897|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:733|47:1898;18|46:241|47:1899;p;1|2:3|3:4|14:1900|15:318|16:1901|7:55|11:146|3:4|3:4;n;18|46:298|47:1902;18|46:805|47:806;p;1|2:3|3:4|14:1903|15:318|16:1904|7:55|11:55|3:4|3:4;n;18|46:779|47:1905;p;1|2:3|3:4|14:1906|15:318|16:1907|7:55|11:55|3:4|3:4;n;18|46:1111|47:1908;18|46:1111|47:1909;18|46:1111|47:1910;18|46:1111|47:1911;18|46:1912|47:1913;18|46:1419|47:1914;18|46:1915|47:1916;18|46:1917|47:1918;p;1|2:3|3:4|14:1919|15:318|16:1920|7:146|11:146|3:4|3:4;n;18|46:754|47:1921;18|46:754|47:1922;18|46:754|47:1923;18|46:754|47:1924;18|46:754|47:1925;18|46:754|47:1926;18|46:754|47:1927;18|46:754|47:1928;18|46:729|47:1'
- ..'929;18|46:754|47:1930;18|46:754|47:1931;18|46:754|47:1932;18|46:729|47:1933;18|46:754|47:1934;18|46:754|47:1935;18|46:754|47:1936;18|46:729|47:1937;18|46:1912|47:1938;18|46:1939|47:1940;18|46:754|47:1941;18|46:754|47:1942;18|46:729|47:1943;18|46:729|47:1944;18|46:1917|47:1945;p;1|2:3|3:4|14:1946|15:192|16:1947|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:241|47:1496;p;1|2:3|3:4|14:1948|15:192|16:1949|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:241|47:1950;18|46:241|47:1951;18|46:733|47:1472;18|46:241|47:1952;18|46:241|47:1953;18|46:241|47:1954;p;1|2:3|3:172|14:1955|15:318|16:1956|7:55|11:146|3:172|3:172;1|2:3|3:4|14:1957|15:318|16:1958|7:55|11:55|3:4|3:4;n;18|46:1531|47:1959;18|46:1531|47:1158;18|46:783|47:1960;18|46:733|47:1961;p;1|2:3|14:1962|16:1963|7:55|11:146;n;18|46:745|47:1964;p;1|2:3|3:4|14:1965|15:310|16:1966|7:146|11:146|3:4|3:4;n;18|46:783|47:1967;18|46:783|47:1968;18|46:733|47:1969;18|46:733|47:1970;18|46:733|47:1971;18|46:783|47:1972;18|46:783|47:1973;18|46:783|47:1974;18|46:1975|47:1976;18|46:783|47:1977;18|46:783|47:1978;18|46:733|47:1979;18|4'
- ..'6:1975|47:1980;18|46:1975|47:1981;18|46:733|47:1982;18|46:733|47:1983;p;1|2:3|3:4|14:1984|15:817|16:1985|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:729|47:1986;p;1|2:3|14:1987|15:1483|16:1988|6:55|7:55|11:146;n;5;18|46:1989|47:1990;p;1|2:3|3:4|14:1991|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:241|47:1992;p;1|2:3|3:4|14:1993|15:722|16:1994|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:298|47:1995;p;1|2:3|14:1996|15:1483|16:1988|6:55|7:55|11:146;n;5;18|46:1989|47:1997;18|46:749|47:1998;18|46:749|47:1999;p;1|2:3|3:4|14:2000|15:900|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:4|14:2001|15:192|16:2002|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|14:2003|15:192|16:2004|6:55|7:55|11:146;n;5|22:55;18|46:275|47:2005;18|46:729|47:2006;p;1|2:3|3:26|5:6|14:2007|15:766|16:2008|6:55|7:55|11:146|3:26|3:26;n;5;18|46:763|47:2009;p;1|2:3|3:19|14:2010|15:310|16:1142|19:32|7:55|11:146|3:19|3:19;n;18|46:783|47:2011;18|46:733|47:2012;p;1|2:3|3:4|14:2013|15:318|16:2014|7:55|11:55|3:4|3:4;n;18|46:783|47:2015;18|46:1111|47:2016;18|46:2017|47:2018;18|46:733|47:2019;1'
- ..'8|46:783|47:2020;18|46:783|47:2021;p;1|2:3|14:2022|15:310|16:2023|7:55|11:55;n;5|22:55;p;1|2:3|3:4|14:2024|15:318|16:2025|7:55|11:55|3:4|3:4;n;18|46:2026|47:1647;18|46:2026|47:2027;18|46:867|47:2028;18|46:2029|47:2030;p;1|2:3|3:4|14:2031|15:318|16:2032|7:55|11:55|3:4|3:4;1|2:3|3:4|14:2033|15:757|16:1985|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:749|47:2034;18|46:729|47:2035;18|46:749|47:2036;18|46:729|47:2037;18|46:729|47:2038;p;1|2:3|3:4|14:2039|15:310|16:1746|7:146|11:55|3:4|3:4;n;18|46:2040|47:2041;18|46:729|47:2042;18|46:729|47:2043;18|46:1749|47:2044;p;1|2:3|3:4|14:2045|15:722|16:1079|7:55|11:55|3:4|3:4;n;18|46:1029|47:2046;18|46:1119|47:2047;18|46:880|47:2048;18|46:1119|47:2049;p;1|2:3|3:4|14:2050|15:310|16:932|7:55|11:55|3:4|3:4;n;18|46:733|47:2051;18|46:733|47:937;p;1|2:3|3:4|14:2052|15:318|16:2053|7:146|11:55|3:4|3:4;n;18|46:733|47:2054;18|46:783|47:2055;18|46:783|47:2056;18|46:1939|47:2057;18|46:733|47:2058;18|46:733|47:2059;18|46:733|47:2060;p;1|2:3|14:2061|15:318|16:2062|7:55|11:55;n;18|46:925|47:2063;18|46:1703|47:755;p;1|2:3|3:4|14:2064|16:732|'
- ..'19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|3:172|5:286|18:233|14:2065|15:757|16:848|6:55|7:55|11:146|3:172|3:172;n;5;26|3:849|58:395|3:849|3:849;18|46:745|47:2066;p;1|2:3|3:4|14:2067|15:722|16:989|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:241|47:982;p;1|2:3|3:4|14:2068|15:808|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:733|47:2069;18|46:241|47:1772;p;1|2:3|3:4|14:2070|15:192|16:1949|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:733|47:2071;18|46:733|47:2072;p;1|2:3|14:2073|15:318|16:2062|7:55|11:55;1|2:3|3:172|5:6|18:286|14:2074|15:722|16:2075|7:55|11:146|3:172|3:172;n;5|22:55;18|46:763|47:2076;18|46:789|47:2077;p;1|2:3|14:2078|15:310|16:2079|7:146|11:55;n;18|46:1696|47:2080;18|46:1696|47:2081;18|46:1694|47:2082;18|46:1694|47:2083;18|46:1694|47:2084;p;1|2:3|14:2085|16:2023|7:55|11:55;n;5|22:55;18|46:733|47:2086;p;1|2:3|14:2087|15:722|16:2023|6:55|7:55|11:146;n;5|22:55;18|46:733|47:2088;p;1|2:3|3:172|18:20|14:2089|16:1145|19:32|7:55|11:55|3:172|3:172;n;18|46:940|47:2090;p;1|2:3|14:2091|16:732|19:32|7:55|11:146;n;5|22:55;p;1|2:3|14:2092|15:318'
- ..'|16:2093|19:32|7:55|11:146;n;5|22:55;p;1|2:3|14:2094|15:892|16:193|19:32|7:55|11:146;n;18|46:745|47:2095;18|46:745|47:2096;18|46:745|47:2097;p;1|2:3|3:19|14:2098|15:722|16:981|6:55|7:55|11:146|3:19|3:19;n;5|22:55;18|46:2099|47:2100;18|46:925|47:1786;p;1|2:3|3:4|14:2101|15:318|16:2102|7:146|11:146|3:4|3:4;n;18|46:880|47:2103;18|46:733|47:2104;18|46:783|47:2105;18|46:733|47:2106;18|46:2099|47:1981;18|46:2017|47:2107;18|46:733|47:2108;18|46:733|47:2109;18|46:733|47:2110;p;1|2:3|3:4|14:2111|15:900|16:1296|6:55|7:146|11:146|3:4|3:4;n;5|22:55;18|46:912|47:2112;18|46:912|47:2113;18|46:749|47:2114;18|46:912|47:2115;p;1|2:3|3:19|14:2116|15:722|16:798|19:32|7:55|11:146|3:19|3:19;1|2:3|14:2117|15:318|16:289|19:32|7:55|11:146;n;5|22:55;p;1|2:3|14:2118|16:2119|7:55|11:55;n;18|46:759|47:2120;18|46:940|47:2121;18|46:940|47:2122;p;1|2:3|14:2123|15:722|16:732|19:32|7:55|11:146;n;5|22:55;18|46:733|47:2124;p;1|2:3|14:2125|15:318|16:2093|19:32|7:55|11:146;n;5|22:55;p;1|2:3|14:2126|15:310|16:2062|19:32|7:55|11:146;n;18|46:1703|47:2127;p;1|2:3|14:2128|16:1236|7:55|10:55|11:55;1|'
- ..'2:3|14:2129|15:310|16:732|19:32|7:55|11:146;n;5|22:55;18|46:733|47:2130;p;1|2:3|3:19|14:2131|15:722|16:1763|7:55|11:146|3:19|3:19;n;21|1:1733|23:61;21|1:1733|23:55;p;1|2:3|3:19|14:2132|15:722|16:732|19:32|7:55|11:146|3:19|3:19;n;5|22:55;18|46:733|47:2124;p;1|2:3|3:19|14:2133|15:722|16:798|19:32|7:55|11:146|3:19|3:19;1|2:3|14:2134|15:318|16:1041|19:32|7:55|11:146;n;5|22:55;p;1|2:3|14:2135|16:1742|7:55|11:55;n;5|22:55;18|46:733|47:2136;18|46:733|47:2137;p;1|1:2138|2:3|3:1775|5:6|14:2139|15:310|16:1777|7:55|11:146|3:1775|3:1775;n;27|1:1778|60:3;12;18|46:745|47:2140;p;1|2:3|14:2141|16:2142|7:146|11:55;n;18|46:1167|47:2143;18|46:1070|47:2144;18|46:779|47:2145;18|46:1070|47:2146;p;1|2:3|3:4|14:2147|15:1483|16:1689|7:55|11:146|3:4|3:4;n;21|1:1788|23:325;21|53:2148|23:325;18|46:745|47:2149;p;1|2:3|3:4|14:2150|16:2151|7:55|11:55|3:4|3:4;n;18|46:754|47:2152;18|46:729|47:2153;18|46:729|47:2154;p;1|2:3|3:4|14:2155|15:310|16:1557|7:146|11:55|3:4|3:4;n;18|46:910|47:2156;p;1|2:3|14:2157|15:318|16:1145|7:55|11:55;n;18|46:940|47:2158;p;1|2:3|3:19|14:2159|15:900|16:1724|6:55'
- ..'|7:55|11:146|3:19|3:19;n;5|22:55;21|1:2160;18|46:241|47:2161;p;1|2:3|3:4|14:2162|15:310|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;18|46:241|47:2163;p;1|2:3|3:4|14:2164|15:900|16:732|19:32|6:55|7:55|11:146|3:4|3:4;n;5|22:55;p;1|2:3|14:2165|15:900|16:965|6:55|7:55|11:146;n;5|22:55;18|46:241|47:2166;18|46:733|47:2167;p;1|2:3|14:2168|15:310|16:1642|7:55|11:146;1|2:3|3:4|14:2169|15:1483|16:1689|7:55|11:146|3:4|3:4;n;21|53:2148|23:325;18|46:745|47:2170;p;1|2:3|14:2171|15:318|16:1145|7:55|11:55;1|2:3|14:2172|15:310|16:1632|7:55|11:146;n;18|46:745|47:2173;p;1|2:3|3:19|14:2174|15:900|16:1692|7:55|11:146|3:19|3:19;n;18|46:745|47:2175;18|46:1694|47:1695;p;17|2:3|14:2176|15:722|16:748|7:55|11:146;30|2:3|3:17|18:2177|14:2178|15:722|16:2179|19:32|7:146|11:146|3:17|3:17;n;21|53:2180|23:325;p;2|1:2181;n;2|1:2182;n;1|1:2183|2:3|3:15|18:3|14:2184|15:2185|16:2186|7:146|11:146|3:15|3:15;n;4;p;1|2:3|3:19|14:2187|15:2188|16:2189|19:32|7:146|11:146|3:19|3:19;n;4|17:2190;p;1|1:2191|2:3|3:17|14:2192|15:2188|16:732|19:32|7:146|11:146|3:17|3:17;n;4|63:2193|17:2194;p;1|1:2195|2:'
- ..'3|3:17|14:2196|15:2197|16:732|19:32|7:146|11:146|3:17|3:17;n;4|63:2198|17:2199;p;1|1:2200|2:3|3:17|14:2201|15:2197|16:732|19:32|7:146|11:146|3:17|3:17;n;4|17:2202;p;1|1:2203|2:3|3:17|14:2204|15:2197|16:732|19:32|7:146|11:146|3:17|3:17;n;4|17:2202;p;1|1:2205|2:3|3:17|14:2206|15:2197|16:732|19:32|7:146|11:146|3:17|3:17;n;4|17:179;p;1|1:2207|2:3|3:17|14:2208|15:2197|16:732|19:32|7:146|11:146|3:17|3:17;n;4|17:2209;p;1|1:2210|2:3|3:17|14:2211|15:2212|16:732|19:32|7:146|11:146|3:17|3:17;n;4|17:2209;p;1|1:2213|2:3|3:17|14:2214|15:2197|16:732|19:32|7:146|11:146|3:17|3:17;n;4|17:2209;p;1|1:2215|2:3|3:17|14:2216|15:2217|16:732|19:32|7:146|11:146|3:17|3:17;n;4|17:2209;p;1|1:2218|2:3|3:17|14:2219|15:2197|16:732|19:32|7:146|11:146|3:17|3:17;n;4|63:2220|17:2221;p;1|1:2222|2:3|3:17|14:2223|15:2197|16:732|19:32|7:146|11:146|3:17|3:17;n;4|63:2224|17:2221;p;1|1:2225|2:3|3:17|14:2226|15:2197|16:732|19:32|7:146|11:146|3:17|3:17;n;4|63:2220|17:2227;p;1|1:2228|2:3|3:15|14:2229|15:2197|16:732|19:32|7:146|11:146|3:15|3:15;n;4|17:2230;p;1|1:2231|2:3|3:15|14:2232|15:2197|16:732|19:3'
- ..'2|7:146|11:146|3:15|3:15;n;4|17:2233;p;1|1:2234|2:3|3:15|14:2235|15:2236|16:732|19:32|7:146|11:146|3:15|3:15;n;4|17:2233;p;1|1:2237|2:3|3:15|14:2238|15:2197|16:732|19:32|7:146|11:146|3:15|3:15;n;4|17:2233;p;1|1:2239|2:3|3:15|14:2240|15:2241|16:732|19:32|7:146|11:146|3:15|3:15;n;4|17:2233;p;1|1:2242|2:3|3:15|14:2243|15:2185|16:732|19:32|7:146|11:146|3:15|3:15;n;5|17:2244|22:55;21|53:2245;p;1|1:2246|2:3|3:15|14:2247|15:2185|16:732|19:32|7:146|11:146|3:15|3:15;n;5|17:2244|22:55;21|53:2245;p;1|1:2248|2:3|3:15|14:2249|15:2188|16:732|19:32|7:146|11:146|3:15|3:15;n;5|17:2250|22:55;p;1|1:2251|2:3|3:15|14:2252|15:2188|16:732|19:32|7:146|11:146|3:15|3:15;n;5|17:2250|22:55;p;1|1:2253|2:3|3:15|14:2254|15:2188|16:732|19:32|7:146|11:146|3:15|3:15;n;4|17:2255;p;1|1:2256|2:3|3:15|14:2257|15:2188|16:732|19:32|7:146|11:146|3:15|3:15;n;4|17:2258;p;1|1:2259|2:3|3:15|14:2260|15:2188|16:732|19:32|7:146|11:146|3:15|3:15;n;4|17:2261;p;1|1:2262|2:3|3:19|14:2263|15:2185|16:732|19:32|7:146|11:146|3:19|3:19;n;22|17:2264;p;1|1:2265|2:3|3:19|14:2266|15:2185|16:732|19:32|7:146|11:146|3:1'
- ..'9|3:19;n;4|17:2267;21|53:2268;p;1|1:2269|2:3|3:19|14:2270|15:2185|16:732|19:32|7:146|11:146|3:19|3:19;n;4|17:2271;p;1|1:2272|2:3|3:4|14:2273|15:2185|16:732|19:32|7:146|11:146|3:4|3:4;n;4|17:2274;p;1|1:2275|2:3|3:17|14:2276|15:2185|16:732|19:32|7:146|11:146|3:17|3:17;n;4|17:2277;p;1|1:2278|2:3|14:2279|15:2185|16:62|7:146|11:146;n;5|17:2280|20:2281|21:2282|22:41;p;p;2|1:2283;n;1|1:2183|2:3|3:15|18:3|14:2284|15:2185|16:559|7:146|11:146|3:15|3:15;n;4;p;1|2:3|3:17|14:2285|15:2188|16:732|19:32|7:146|11:146|3:17|3:17;n;5|17:2286|20:2287|22:41;p;1|2:3|3:19|14:2288|15:2289|16:732|19:32|7:146|11:146|3:19|3:19;n;22;p;1|2:3|3:19|14:2290|15:2291|16:62|7:146|11:146|3:19|3:19;n;5|17:2292|22:41;p;1|2:3|3:17|14:2293|15:2188|16:732|19:32|7:146|11:146|3:17|3:17;n;22|17:2294;p;1|1:2237|2:3|3:17|14:2295|15:2296|16:732|19:32|7:146|11:146|3:17|3:17;n;22|17:491;p;1|1:2231|2:3|3:2297|14:2298|15:2299|16:732|19:32|7:146|11:146|3:2297|3:2297;n;4|17:2300;p;1|1:2301|2:3|3:17|14:2302|15:2197|16:732|19:32|7:146|11:146|3:17|3:17;n;4|63:2193|17:2303;p;p;2|1:2304;n;1|1:2183|2:3|3:2297|18:3|1'
- ..'4:2305|15:2185|16:559|7:146|11:146|3:2297|3:2297;n;4;p;1|2:3|3:17|14:2306|15:2188|16:732|19:32|7:146|11:146|3:17|3:17;n;5|17:2286|20:2287|22:41;p;1|2:3|3:19|14:2307|15:2308|16:732|19:32|7:146|11:146|3:19|3:19;n;22;p;1|2:3|3:17|14:2309|15:2188|16:732|19:32|7:146|11:146|3:17|3:17;n;22|17:2294;p;1|2:3|3:19|14:2310|15:2311|16:62|7:146|11:146|3:19|3:19;n;5|17:2292|22:41;p;1|1:2237|2:3|3:17|14:2312|15:2313|16:732|19:32|7:146|11:146|3:17|3:17;n;22|17:491;p;1|1:2301|2:3|3:17|14:2314|15:2197|16:732|19:32|7:146|11:146|3:17|3:17;n;4|63:2193|17:2303;p;1|1:2231|2:3|3:2297|14:2315|15:2316|16:732|19:32|7:146|11:146|3:2297|3:2297;n;4|17:2300;p;p;2|1:2317;n;1|1:2183|2:3|3:15|18:3|14:2318|15:2185|16:559|7:146|11:146|3:15|3:15;n;4;p;1|2:3|3:19|14:2319|15:2320|16:2321|19:32|7:146|11:146|3:19|3:19;n;4|17:2322;p;1|1:2323|2:3|3:15|14:2324|15:2197|16:732|19:32|7:146|11:146|3:15|3:15;n;4|17:491;p;1|1:2325|2:3|3:19|14:2326|15:2197|16:732|19:32|7:146|11:146|3:19|3:19;n;4|17:2327;p;1|1:2328|2:3|3:17|14:2329|15:2197|16:732|19:32|7:146|11:146|3:17|3:17;n;4|17:2330;p;1|1:2331|2:3|3:15|14'
- ..':2332|15:2333|16:732|19:32|7:146|11:146|3:15|3:15;n;4|17:491;p;1|1:2334|2:3|3:15|14:2335|15:2333|16:732|19:32|7:146|11:146|3:15|3:15;n;4|17:2336;p;1|1:2337|2:3|3:15|14:2338|15:2333|16:732|19:32|7:146|11:146|3:15|3:15;n;4|17:2339;p;p;2|1:2340;n;1|1:2183|2:3|3:15|18:3|14:2341|15:2185|16:559|7:146|11:146|3:15|3:15;n;4;p;1|2:3|3:19|14:2342|15:2343|16:2321|19:32|7:146|11:146|3:19|3:19;n;4|17:2322;p;1|1:2323|2:3|3:15|14:2344|15:2197|16:732|19:32|7:146|11:146|3:15|3:15;n;4|17:491;p;1|1:2325|2:3|3:19|14:2345|15:2197|16:732|19:32|7:146|11:146|3:19|3:19;n;4|17:2327;p;1|1:2328|2:3|3:17|14:2346|15:2197|16:732|19:32|7:146|11:146|3:17|3:17;n;4|17:2330;p;1|1:2331|2:3|3:15|14:2347|15:2348|16:732|19:32|7:146|11:146|3:15|3:15;n;4|17:491;p;1|1:2334|2:3|3:15|14:2349|15:2348|16:732|19:32|7:146|11:146|3:15|3:15;n;4|17:2336;p;1|1:2337|2:3|3:15|14:2350|15:2348|16:732|19:32|7:146|11:146|3:15|3:15;n;4|17:2339;p;p;1|1:2351|2:3|3:2352|18:3|14:2353|15:2188|16:2354|7:146|11:146|3:2352|3:2352;n;12|1:2283;12|1:2317;22;12|1:2355;12;12|1:2356;12|1:2340;12|1:2304;12|1:22;21|53:2357|23:325;12'
- ..'|1:2358;n;18|1:2359;p;p;31|1:2360;32|64:32|65:32;p;2|1:486;n;1|2:3|3:19|4:487|14:2361|15:489|16:490|7:146|11:146|3:19|3:19;n;5|17:491|22:184;p;1|2:3|3:19|4:487|14:2362|15:489|16:493|7:146|11:146|3:19|3:19;1|2:3|3:19|4:487|14:2363|15:495|16:62|7:146|11:146|3:19|3:19;n;25|1:496|54:497;5|17:498|22:162;p;1|2:3|3:19|4:487|14:2364|15:500|16:289|7:146|11:146|3:19|3:19;n;5|17:501|22:184;p;1|2:3|3:19|4:487|14:2365|15:500|16:289|7:146|11:146|3:19|3:19;n;5|17:503|22:184;p;1|2:3|3:19|4:487|14:2366|15:489|16:490|7:146|11:146|3:19|3:19;n;5|17:491|22:184;p;1|2:3|3:19|4:487|14:2367|15:506|16:62|19:32|7:146|11:146|3:19|3:19;n;5|17:507|22:61;p;1|2:3|3:19|4:487|14:2368|15:500|16:289|7:146|11:146|3:19|3:19;n;5|17:501|22:184;p;1|2:3|3:19|4:487|14:2369|15:500|16:289|7:146|11:146|3:19|3:19;n;5|17:503|22:184;p;1|2:3|3:19|4:487|14:2370|15:495|16:62|7:146|11:146|3:19|3:19;n;25|1:496|54:497;5|17:498|22:162;p;1|2:3|3:19|4:487|14:2371|15:506|16:62|19:32|7:146|11:146|3:19|3:19;n;5|17:507|22:61;p;p;2|1:163;n;1|1:164|2:3|3:19|14:2372|15:166|16:167|7:7|11:7|3:19|3:19;n;6;n;9|16:168|25:62|2'
- ..'6:3;n;15|16:141|25:62|26:3|30:2373|31:170|33:171|36:3;p;p;p;p;p;')
- for _,Object in pairs(Objects) do
- Object.Parent = script and script.Parent==workspace and script or workspace
- end
- for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement