Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Converted using Mokiros's Model to Script plugin
- -- Converted string size: 32803
- local genv={}
- local Scripts = {
- function() local boom = false
- function createExplosion(position)
- explosion = Instance.new("Explosion")
- explosion.Position = position
- explosion.BlastRadius = 12
- explosion.Parent = game.Workspace
- end
- function onTouch(part)
- if boom == true then return end
- if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
- if (script.Parent.Parts.Tip.Velocity.x > 50) or (script.Parent.Parts.Tip.Velocity.x < -50) or (script.Parent.Parts.Tip.Velocity.z > 50) or (script.Parent.Parts.Tip.Velocity.z < -50) then
- boom = true
- createExplosion(script.Parent.Parts.Engine.Position)
- script.Parent:BreakJoints()
- local stuff = script.Parent:children()
- for i=1,#stuff do
- if stuff[i].Name == "BodyKit" or
- stuff[i].Name == "Parts" then
- local parts = stuff[i]:children()
- for p = 1, #parts do
- if parts[p].className == "Part" then
- local velo = Instance.new("BodyVelocity")
- velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
- velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
- velo.Parent = parts[p]
- end
- end
- end
- end
- wait(4)
- script.Parent:remove()
- end
- end
- script.Parent.Parts.Tip.Touched:connect(onTouch)
- end;
- function() local boom = false
- function createExplosion(position)
- explosion = Instance.new("Explosion")
- explosion.Position = position
- explosion.BlastRadius = 12
- explosion.Parent = game.Workspace
- end
- function onTouch(part)
- if boom == true then return end
- if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
- if (script.Parent.Parts.Tip.Velocity.x > 50) or (script.Parent.Parts.Tip.Velocity.x < -50) or (script.Parent.Parts.Tip.Velocity.z > 50) or (script.Parent.Parts.Tip.Velocity.z < -50) then
- boom = true
- createExplosion(script.Parent.Parts.Engine.Position)
- script.Parent:BreakJoints()
- local stuff = script.Parent:children()
- for i=1,#stuff do
- if stuff[i].Name == "BodyKit" or
- stuff[i].Name == "Parts" then
- local parts = stuff[i]:children()
- for p = 1, #parts do
- if parts[p].className == "Part" then
- local velo = Instance.new("BodyVelocity")
- velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
- velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
- velo.Parent = parts[p]
- end
- end
- end
- end
- wait(4)
- script.Parent:remove()
- end
- end
- script.Parent.Parts.Tip.Touched:connect(onTouch)
- end;
- function() bin=script.Parent
- plane=nil
- hold=false
- local debounce = false
- local planedebounce = false
- local stuntdebounce = false
- local controlling = false
- function fire(pln,spn)
- local missile = bin.Rocket:clone()
- missile.CFrame = spn.CFrame * CFrame.new(0, 0, -35)
- missile.RocketScript.Disabled = false
- missile.Parent = game.Workspace
- local creator_tag = Instance.new("ObjectValue")
- creator_tag.Value = game.Players.LocalPlayer
- creator_tag.Name = "creator"
- creator_tag.Parent = missile
- missile.Owner.Value = pln
- end
- function computeDirection(vec)
- local lenSquared = vec.magnitude * vec.magnitude
- local invSqrt = 1 / math.sqrt(lenSquared)
- return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
- end
- function move(target, engine)
- local origincframe = engine:findFirstChild("BodyGyro").cframe
- local dir = (target - engine.Position).unit
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 1)
- engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(9899, 9899, 9899)
- engine:findFirstChild("BodyGyro").cframe = CFrame.new(pos, pos + dir)
- wait(0.1)
- engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(0, 0, 0)
- engine:findFirstChild("BodyGyro").cframe = origincframe
- end
- function findPlane(player)
- local list = player.Character:GetChildren()
- for x = 1, #list do
- if (list[x].Name == "Plane") then
- local weld = list[x]:FindFirstChild("Parts"):FindFirstChild("Seat"):FindFirstChild("SeatWeld")
- if (weld ~= nil) and (weld.Part1 == player.Character:FindFirstChild("Torso")) then
- return list[x]
- end
- end
- end
- return nil
- end
- function onButton1Down(mouse)
- local vehicle = findPlane(script.Parent.Parent.Parent)
- if vehicle ~= nil and debounce == false and planedebounce == false then
- debounce = true
- controlling = true
- while true do
- wait()
- local engine = vehicle.Parts.Engine
- local position = mouse.Hit
- local target = position.p
- if engine:findFirstChild("FlyScript") ~= nil then
- move(target, engine)
- end
- if planedebounce == true or
- controlling == false then break end
- end
- wait(.1)
- debounce = false
- end
- end
- function onButton1Up(mouse)
- controlling = false
- end
- function onSelected(mouse)
- mouse.Icon = "rbxasset://textures\\GunCursor.png"
- mouse.Button1Down:connect(function() onButton1Down(mouse) end)
- mouse.Button1Up:connect(function() onButton1Up(mouse) end)
- mouse.KeyDown:connect(onKeyDown)
- end
- function onKeyDown(key)
- if (key~=nil) then
- key = key:lower()
- local vehicle = findPlane(script.Parent.Parent.Parent)
- if (vehicle==nil) then return end
- plane = vehicle.Parts
- local engine = vehicle.Parts.Engine
- if (key=="f") and (bin.Reload.Value == 0) then
- fire(vehicle,plane.Gun1)
- fire(vehicle,plane.Gun2)
- bin.Reload.Value = 1
- wait(1)
- bin.Reload.Value = 0
- end
- if (key=="x") and planedebounce == false then
- local power = plane.Engine:findFirstChild("FlyScript")
- if (power ~= nil) then
- power:remove()
- plane.Boost1.Transparency = 0.5
- plane.Boost2.Transparency = 0.5
- wait(0.1)
- plane.Boost1.Transparency = 0.6
- plane.Boost2.Transparency = 0.6
- wait(0.1)
- plane.Boost1.Transparency = 0.7
- plane.Boost2.Transparency = 0.7
- wait(0.1)
- plane.Boost1.Transparency = 0.8
- plane.Boost2.Transparency = 0.8
- wait(0.1)
- plane.Boost1.Transparency = 0.9
- plane.Boost2.Transparency = 0.9
- wait(0.1)
- plane.Boost1.Transparency = 1
- plane.Boost2.Transparency = 1
- wait(0.1)
- end
- end
- if (key=="y") then
- local power = plane.Engine:findFirstChild("FlyScript")
- if (power ~= nil) then return end
- local fly = script.FlyScript:clone()
- fly.Disabled = false
- fly.Parent = plane.Engine
- plane.Boost1.Transparency = 0.9
- plane.Boost2.Transparency = 0.9
- wait(0.1)
- plane.Boost1.Transparency = 0.8
- plane.Boost2.Transparency = 0.8
- wait(0.1)
- plane.Boost1.Transparency = 0.7
- plane.Boost2.Transparency = 0.7
- wait(0.1)
- plane.Boost1.Transparency = 0.6
- plane.Boost2.Transparency = 0.6
- wait(0.1)
- plane.Boost1.Transparency = 0.5
- plane.Boost2.Transparency = 0.5
- wait(0.1)
- plane.Boost1.Transparency = 0.4
- plane.Boost2.Transparency = 0.4
- wait(0.1)
- end
- if (key=="q") then
- local gear = plane.Gear
- if gear.Value == true then
- plane.Wheels3.CanCollide = false
- plane.Wheels3.Transparency = 1
- plane.Wheels4.CanCollide = false
- plane.Wheels4.Transparency = 1
- gear.Value = false
- wait(0.1)
- plane.Wheels2.CanCollide = false
- plane.Wheels2.Transparency = 1
- plane.Wheels5.CanCollide = false
- plane.Wheels5.Transparency = 1
- gear.Value = false
- wait(0.1)
- plane.Wheels1.CanCollide = false
- plane.Wheels1.Transparency = 1
- wait(0)
- plane.Wheels6.CanCollide = false
- plane.Wheels6Transparency = 1
- gear.Value = false
- else
- plane.Wheels1.CanCollide = true
- plane.Wheels1.Transparency = 0
- plane.Wheels6.CanCollide = true
- plane.Wheels6.Transparency = 0
- gear.Value = true
- wait(0.1)
- plane.Wheels2.CanCollide = true
- plane.Wheels2.Transparency = 0
- plane.Wheels5.CanCollide = true
- plane.Wheels5.Transparency = 0
- gear.Value = true
- wait(0.1)
- plane.Wheels3.CanCollide = true
- plane.Wheels3.Transparency = 0
- plane.Wheels4.CanCollide = true
- plane.Wheels4.Transparency = 0
- gear.Value = true
- end
- end
- if (key=="k") and planedebounce == false then
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- end
- if (key=="h") and planedebounce == false then
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- return end
- if (key=="j") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9899, 9899, 9899)
- local position = engine.CFrame * Vector3.new(0, 0.5, -4)
- local dir = position - engine.Position
- dir = computeDirection(dir)
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 8)
- body.cframe = CFrame.new(pos, pos + dir)
- wait(.2)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="l") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9899, 0, 0)
- local frame = plane:FindFirstChild("OriginCFrame")
- if frame ~= nil then
- body.cframe = frame.Value
- end
- wait(0.1)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="u") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9899, 9899, 9899)
- local position = engine.CFrame * Vector3.new(0, -0.5, -4)
- local dir = position - engine.Position
- dir = computeDirection(dir)
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 8)
- body.cframe = CFrame.new(pos, pos + dir)
- wait(.2)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="g") and planedebounce == false and stuntdebounce == false then
- planedebounce = true
- stuntdebounce = true
- plane.Parent.Stunt.Value = 1
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9899, 9899, 9899)
- local currentframe = plane.Engine.CFrame
- for i = 1,6 do
- body.cframe = plane.Engine.CFrame * CFrame.fromEulerAnglesXYZ(0, 0, 30)
- wait(.2)
- end
- body.cframe = currentframe
- wait(.6)
- body.maxTorque = Vector3.new(0, 0, 0)
- planedebounce = false
- plane.Parent.Stunt.Value = 0
- wait(3)
- stuntdebounce = false
- end
- if (key=="t") and planedebounce == false and stuntdebounce == false then
- planedebounce = true
- stuntdebounce = true
- plane.Parent.Stunt.Value = 1
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9899, 9899, 9899)
- local currentframe = plane.Engine.CFrame
- local valy = 30
- local valz = 30
- for i = 1,8 do
- body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, valy, valz)
- valy = valy +50
- valz = valz +100
- wait(.1)
- end
- body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, 600, 0)
- wait(.5)
- body.maxTorque = Vector3.new(0, 0, 0)
- planedebounce = false
- plane.Parent.Stunt.Value = 0
- wait(4)
- stuntdebounce = false
- end
- end
- end
- bin.Selected:connect(onSelected)
- end;
- function() local engine = script.Parent.Parent.Engine
- local spd = 1
- local position = engine.Position
- while true do
- wait(.1)
- direction = engine.CFrame.lookVector
- position = position + spd*3*direction
- error = position - engine.Position
- engine.Velocity = spd*error
- engine.RotVelocity = Vector3.new(0, 0, 0)
- end
- end;
- function() local boom = false
- function createExplosion(position)
- explosion = Instance.new("Explosion")
- explosion.Position = position
- explosion.BlastRadius = 12
- explosion.Parent = game.Workspace
- end
- function onTouch(part)
- if boom == true then return end
- if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
- if (script.Parent.Parts.Tip.Velocity.x > 250) or (script.Parent.Parts.Tip.Velocity.x < -250) or (script.Parent.Parts.Tip.Velocity.z > 250) or (script.Parent.Parts.Tip.Velocity.z < -250) then
- boom = true
- createExplosion(script.Parent.Parts.Engine.Position)
- script.Parent:BreakJoints()
- local stuff = script.Parent:children()
- for i=1,#stuff do
- if stuff[i].Name == "BodyKit" or
- stuff[i].Name == "Parts" then
- local parts = stuff[i]:children()
- for p = 1, #parts do
- if parts[p].className == "Part" then
- local velo = Instance.new("BodyVelocity")
- velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
- velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
- velo.Parent = parts[p]
- end
- end
- end
- end
- wait(4)
- script.Parent:remove()
- end
- end
- script.Parent.Parts.Tip.Touched:connect(onTouch)
- end;
- function() local boom = false
- function createExplosion(position)
- explosion = Instance.new("Explosion")
- explosion.Position = position
- explosion.BlastRadius = 12
- explosion.Parent = game.Workspace
- end
- function onTouch(part)
- if boom == true then return end
- if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
- if (script.Parent.Parts.Tip.Velocity.x > 50) or (script.Parent.Parts.Tip.Velocity.x < -50) or (script.Parent.Parts.Tip.Velocity.z > 50) or (script.Parent.Parts.Tip.Velocity.z < -50) then
- boom = true
- createExplosion(script.Parent.Parts.Engine.Position)
- script.Parent:BreakJoints()
- local stuff = script.Parent:children()
- for i=1,#stuff do
- if stuff[i].Name == "BodyKit" or
- stuff[i].Name == "Parts" then
- local parts = stuff[i]:children()
- for p = 1, #parts do
- if parts[p].className == "Part" then
- local velo = Instance.new("BodyVelocity")
- velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
- velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
- velo.Parent = parts[p]
- end
- end
- end
- end
- wait(4)
- script.Parent:remove()
- end
- end
- script.Parent.Parts.Tip.Touched:connect(onTouch)
- end;
- function() local boom = false
- function createExplosion(position)
- explosion = Instance.new("Explosion")
- explosion.Position = position
- explosion.BlastRadius = 12
- explosion.Parent = game.Workspace
- end
- function onTouch(part)
- if boom == true then return end
- if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
- if (script.Parent.Parts.Tip.Velocity.x > 50) or (script.Parent.Parts.Tip.Velocity.x < -50) or (script.Parent.Parts.Tip.Velocity.z > 50) or (script.Parent.Parts.Tip.Velocity.z < -50) then
- boom = true
- createExplosion(script.Parent.Parts.Engine.Position)
- script.Parent:BreakJoints()
- local stuff = script.Parent:children()
- for i=1,#stuff do
- if stuff[i].Name == "BodyKit" or
- stuff[i].Name == "Parts" then
- local parts = stuff[i]:children()
- for p = 1, #parts do
- if parts[p].className == "Part" then
- local velo = Instance.new("BodyVelocity")
- velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
- velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
- velo.Parent = parts[p]
- end
- end
- end
- end
- wait(4)
- script.Parent:remove()
- end
- end
- script.Parent.Parts.Tip.Touched:connect(onTouch)
- end;
- function() --[[All parts you add on must be kept in the bodykit.do not put anchored bricks on or it wont fly!
- this is not my plane chassis but its the best one i could find to put this message on. ~SniperSkull end;
- function() local boom = false
- function createExplosion(position)
- explosion = Instance.new("Explosion")
- explosion.Position = position
- explosion.BlastRadius = 12
- explosion.Parent = game.Workspace
- end
- function onTouch(part)
- if boom == true then return end
- if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
- if (script.Parent.Parts.Tip.Velocity.x > 50) or (script.Parent.Parts.Tip.Velocity.x < -50) or (script.Parent.Parts.Tip.Velocity.z > 50) or (script.Parent.Parts.Tip.Velocity.z < -50) then
- boom = true
- createExplosion(script.Parent.Parts.Engine.Position)
- script.Parent:BreakJoints()
- local stuff = script.Parent:children()
- for i=1,#stuff do
- if stuff[i].Name == "BodyKit" or
- stuff[i].Name == "Parts" then
- local parts = stuff[i]:children()
- for p = 1, #parts do
- if parts[p].className == "Part" then
- local velo = Instance.new("BodyVelocity")
- velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
- velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
- velo.Parent = parts[p]
- end
- end
- end
- end
- wait(4)
- script.Parent:remove()
- end
- end
- script.Parent.Parts.Tip.Touched:connect(onTouch)
- end;
- function() local boom = false
- function createExplosion(position)
- explosion = Instance.new("Explosion")
- explosion.Position = position
- explosion.BlastRadius = 12
- explosion.Parent = game.Workspace
- end
- function onTouch(part)
- if boom == true then return end
- if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
- if (script.Parent.Parts.Tip.Velocity.x > 50) or (script.Parent.Parts.Tip.Velocity.x < -50) or (script.Parent.Parts.Tip.Velocity.z > 50) or (script.Parent.Parts.Tip.Velocity.z < -50) then
- boom = true
- createExplosion(script.Parent.Parts.Engine.Position)
- script.Parent:BreakJoints()
- local stuff = script.Parent:children()
- for i=1,#stuff do
- if stuff[i].Name == "BodyKit" or
- stuff[i].Name == "Parts" then
- local parts = stuff[i]:children()
- for p = 1, #parts do
- if parts[p].className == "Part" then
- local velo = Instance.new("BodyVelocity")
- velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
- velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
- velo.Parent = parts[p]
- end
- end
- end
- end
- wait(4)
- script.Parent:remove()
- end
- end
- script.Parent.Parts.Tip.Touched:connect(onTouch)
- end;
- function() creativeval = 1
- bin=script.Parent
- plane=nil
- hold=false
- local debounce = false
- local planedebounce = false
- local stuntdebounce = false
- local controlling = false
- function fire(pln,spn)
- local missile = bin.Rocket:clone()
- missile.CFrame = spn.CFrame * CFrame.new(0, 0, -35)
- missile.RocketScript.Disabled = false
- missile.Parent = game.Workspace
- local creator_tag = Instance.new("ObjectValue")
- creator_tag.Value = game.Players.LocalPlayer
- creator_tag.Name = "creator"
- creator_tag.Parent = missile
- missile.Owner.Value = pln
- end
- function computeDirection(vec)
- local lenSquared = vec.magnitude * vec.magnitude
- local invSqrt = 1 / math.sqrt(lenSquared)
- return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
- end
- function move(target, engine)
- local origincframe = engine:findFirstChild("BodyGyro").cframe
- local dir = (target - engine.Position).unit
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 1)
- engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(9000, 9000, 9000)
- engine:findFirstChild("BodyGyro").cframe = CFrame.new(pos, pos + dir)
- wait(0.1)
- engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(0, 0, 0)
- engine:findFirstChild("BodyGyro").cframe = origincframe
- end
- function findPlane(player)
- local list = player.Character:GetChildren()
- for x = 1, #list do
- if (list[x].Name == "Plane") then
- local weld = list[x]:FindFirstChild("Parts"):FindFirstChild("Seat"):FindFirstChild("SeatWeld")
- if (weld ~= nil) and (weld.Part1 == player.Character:FindFirstChild("Torso")) then
- return list[x]
- end
- end
- end
- return nil
- end
- function onButton1Down(mouse)
- local vehicle = findPlane(script.Parent.Parent.Parent)
- if vehicle ~= nil and debounce == false and planedebounce == false then
- debounce = true
- controlling = true
- while true do
- wait()
- local engine = vehicle.Parts.Engine
- local position = mouse.Hit
- local target = position.p
- if engine:findFirstChild("FlyScript") ~= nil then
- move(target, engine)
- end
- if planedebounce == true or
- controlling == false then break end
- end
- wait(.1)
- debounce = false
- end
- end
- function onButton1Up(mouse)
- controlling = false
- end
- function onSelected(mouse)
- mouse.Icon = "rbxasset://textures\\GunCursor.png"
- mouse.Button1Down:connect(function() onButton1Down(mouse) end)
- mouse.Button1Up:connect(function() onButton1Up(mouse) end)
- mouse.KeyDown:connect(onKeyDown)
- end
- function onKeyDown(key)
- if (key~=nil) then
- key = key:lower()
- local vehicle = findPlane(script.Parent.Parent.Parent)
- if (vehicle==nil) then return end
- plane = vehicle.Parts
- local engine = vehicle.Parts.Engine
- if (key=="f") and (bin.Reload.Value == 0) then
- if plane.mode.Value == true then
- bin.Reload.Value = 1
- fire(vehicle,plane.Gun1)
- fire(vehicle,plane.Gun2)
- plane.mode.Value = false
- wait(.25)
- bin.Reload.Value = 0
- else
- bin.Reload.Value = 1
- fire(vehicle,plane.Gun3)
- fire(vehicle,plane.Gun4)
- plane.mode.Value = true
- wait(.25)
- bin.Reload.Value = 0
- end
- end
- if (key=="x") and planedebounce == false then
- local power = plane.Engine:findFirstChild("FlyScript")
- if (power ~= nil) then
- power:remove()
- end
- local spd = plane.Engine:findFirstChild("Speed")
- if (spd ~= nil) then
- spd:remove()
- end
- end
- if (key=="y") then
- local power = plane.Engine:findFirstChild("FlyScript")
- if (power ~= nil) then return end
- local fly = script.FlyScript:clone()
- fly.Disabled = false
- fly.Parent = plane.Engine
- local spd = plane.Engine:findFirstChild("Speed")
- if (spd ~= nil) then return end
- local speed = script.Parent.Speed:clone()
- speed.Parent = plane.Engine
- end
- if (key=="n") and planedebounce == false then
- local val = plane.Engine:findFirstChild("Speed")
- if (val == nil) or (val.Value == creativeval) then return end
- plane.Engine.Speed.Value = val.Value - 1
- end
- if (key=="m") and planedebounce == false then
- local val = plane.Engine:findFirstChild("Speed")
- if (val == nil) then return end
- plane.Engine.Speed.Value = val.Value + 1
- end
- if (key=="k") and planedebounce == false then
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- end
- if (key=="h") and planedebounce == false then
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- return end
- if (key=="j") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local position = engine.CFrame * Vector3.new(0, 0.5, -4)
- local dir = position - engine.Position
- dir = computeDirection(dir)
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 8)
- body.cframe = CFrame.new(pos, pos + dir)
- wait(.2)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="l") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 0, 0)
- local frame = plane:FindFirstChild("OriginCFrame")
- if frame ~= nil then
- body.cframe = frame.Value
- end
- wait(0.1)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="u") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local position = engine.CFrame * Vector3.new(0, -0.5, -4)
- local dir = position - engine.Position
- dir = computeDirection(dir)
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 8)
- body.cframe = CFrame.new(pos, pos + dir)
- wait(.2)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="g") and planedebounce == false and stuntdebounce == false then
- planedebounce = true
- stuntdebounce = true
- plane.Parent.Stunt.Value = 1
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local currentframe = plane.Engine.CFrame
- for i = 1,6 do
- body.cframe = plane.Engine.CFrame * CFrame.fromEulerAnglesXYZ(0, 0, 30)
- wait(.2)
- end
- body.cframe = currentframe
- wait(.6)
- body.maxTorque = Vector3.new(0, 0, 0)
- planedebounce = false
- plane.Parent.Stunt.Value = 0
- wait(3)
- stuntdebounce = false
- end
- if (key=="t") and planedebounce == false and stuntdebounce == false then
- planedebounce = true
- stuntdebounce = true
- plane.Parent.Stunt.Value = 1
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local currentframe = plane.Engine.CFrame
- local valy = 30
- local valz = 30
- for i = 1,8 do
- body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, valy, valz)
- valy = valy +50
- valz = valz +100
- wait(.1)
- end
- body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, 600, 0)
- wait(.5)
- body.maxTorque = Vector3.new(0, 0, 0)
- planedebounce = false
- plane.Parent.Stunt.Value = 0
- wait(4)
- stuntdebounce = false
- end
- end
- end
- bin.Selected:connect(onSelected)
- end;
- function() local engine = script.Parent.Parent.Engine
- local spd = 0.6
- local position = engine.Position
- while true do
- wait(.1)
- direction = engine.CFrame.lookVector
- position = position + spd*3*direction
- error = position - engine.Position
- engine.Velocity = spd*error
- engine.RotVelocity = Vector3.new(0, 0, 0)
- end
- end;
- function() local boom = false
- function createExplosion(position)
- explosion = Instance.new("Explosion")
- explosion.Position = position
- explosion.BlastRadius = 12
- explosion.Parent = game.Workspace
- end
- function onTouch(part)
- if boom == true then return end
- if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
- if (script.Parent.Parts.Tip.Velocity.x > 50) or (script.Parent.Parts.Tip.Velocity.x < -50) or (script.Parent.Parts.Tip.Velocity.z > 50) or (script.Parent.Parts.Tip.Velocity.z < -50) then
- boom = true
- createExplosion(script.Parent.Parts.Engine.Position)
- script.Parent:BreakJoints()
- local stuff = script.Parent:children()
- for i=1,#stuff do
- if stuff[i].Name == "BodyKit" or
- stuff[i].Name == "Parts" then
- local parts = stuff[i]:children()
- for p = 1, #parts do
- if parts[p].className == "Part" then
- local velo = Instance.new("BodyVelocity")
- velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
- velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
- velo.Parent = parts[p]
- end
- end
- end
- end
- wait(4)
- script.Parent:remove()
- end
- end
- script.Parent.Parts.Tip.Touched:connect(onTouch)
- 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() position = script.Parent.Engine.Position
- local frame = Instance.new("CFrameValue")
- frame.Name = "OriginCFrame"
- frame.Value = script.Parent.Engine.CFrame
- frame.Parent = script.Parent
- local object = Instance.new("ObjectValue")
- object.Value = script.Parent.Parent.Parent
- seat = script.Parent.Seat
- function onChildAdded(part)
- if part.className == "Weld" then
- local torso = part.Part1
- if torso ~= nil then
- local parent = torso.Parent
- if parent ~= nil then
- script.Parent.Parent.Parent = parent
- while true do
- wait(2)
- local pos = script.Parent.Engine.Position
- if (position - pos).magnitude > 30 then
- if object.Value ~= nil then
- object.Value.Regen.Value = 1
- wait(.5)
- object.Value.Regen.Value = 0
- object.Value = nil
- end
- break end
- end
- while true do
- print("Loop")
- wait(2)
- if part == nil then
- script.Parent.Parent.Parent = game.Workspace
- script.Parent.Parent:MakeJoints()
- break end
- end
- end
- end
- end
- end
- seat.ChildAdded:connect(onChildAdded) end;
- function() local boom = false
- function createExplosion(position)
- explosion = Instance.new("Explosion")
- explosion.Position = position
- explosion.BlastRadius = 12
- explosion.Parent = game.Workspace
- end
- function onTouch(part)
- if boom == true then return end
- if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
- if (script.Parent.Parts.Tip.Velocity.x > 250) or (script.Parent.Parts.Tip.Velocity.x < -250) or (script.Parent.Parts.Tip.Velocity.z > 250) or (script.Parent.Parts.Tip.Velocity.z < -250) then
- boom = true
- createExplosion(script.Parent.Parts.Engine.Position)
- script.Parent:BreakJoints()
- local stuff = script.Parent:children()
- for i=1,#stuff do
- if stuff[i].Name == "BodyKit" or
- stuff[i].Name == "Parts" then
- local parts = stuff[i]:children()
- for p = 1, #parts do
- if parts[p].className == "Part" then
- local velo = Instance.new("BodyVelocity")
- velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
- velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
- velo.Parent = parts[p]
- end
- end
- end
- end
- wait(4)
- script.Parent:remove()
- end
- end
- script.Parent.Parts.Tip.Touched:connect(onTouch)
- 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
- 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,Color,Position,Orientation,Size,BottomSurface,LeftSurface,RightSurface,TopSurface,BaseAngle,Anchored,C0,C1,Part0,Part1,PrimaryPart,Value,FrontSurface,MaxForce,MaxTorque,MeshType,Transparency,CanCollide,Shape,BackS'
- ..'urface;Part,Model,RotateP,IntValue,Script,HopperBin,Weld,CFrameValue,BodyPosition,BodyGyro,SpecialMesh;Part|0.898,0.8941,0.8745|122.4999,21.7528,90.4195|-90,0,0|1,18,16|2|d��������������ng.........you got owned...|0.25'
- ..'|NP-420 Pittbull|Plane|PlaneCheck|Stunt|IMAHAKWTFZ|1.7590422885162e+22|WTFZ0R|ANTIVIRISIS|ANTIVIRIS|Dropship|Reload|PlaneFlyer|FlyScript|README|dropship|Helicopter|CivilTransport|Station1|1|0.3882,0.3725,0.3843|78.9999'
- ..',13.9528,90.4195|0,-90,0|18,1.6,18|9,0,0,0,0,1,0,1,0,-1,-0,-0|-7.8001,-0.5,-4,0,1,0,0,0,1,1,0,0|-9,0,0,-0,-0,-1,0,1,0,1,0,0|-7.8001,-0.5,-2,0,1,0,0,0,1,1,0,0|0,0.8,0,-1,-0,-0,0,0,1,0,1,0|-6.5,-7.0001,-8.5,-1,0,0,0,0,1,'
- ..'0,1,0|-7.0001,5,6,0,0,1,-1,0,0,0,-1,0|-7.0001,6.5,8.5,0,0,1,-1,0,0,0,-1,0|-7.0001,-5,6,0,0,1,-1,0,0,0,-1,0|-7.8001,-0.5,4,0,1,0,0,0,1,1,0,0|-7.8001,-0.5,-8,0,1,0,0,0,1,1,0,0|-1,0,5.5,0,0,1,-1,0,0,0,-1,0|105.4999,13.552'
- ..'8,90.4195|0,90,0|18,0.4,35|0,0.2,0,-1,-0,-0,0,0,1,0,1,0|-17,0,-8.0001,0,1,0,-1,0,0,0,0,1|0,-0.5001,-10,-1,0,0,0,0,1,0,1,0|Large Cargoship|Parts|OriginCFrame|-139,10.8,-727,-1,0,-0,-0,1,-0,-0,0,-1|128.9966,10.789,138.36'
- ..'36,0.9999,-0.0004,-0.0003,0.0003,0.9999,0.0039,0.0002,-0.004,0.9999|128.9966,10.789,138.3629,0.9999,-0.0004,-0.0003,0.0003,0.9999,0.0039,0.0002,-0.004,0.9999|128.9966,10.789,138.3621,0.9999,-0.0004,-0.0003,0.0003,0.999'
- ..'9,0.0039,0.0002,-0.004,0.9999|-344,274.7931,-95.9664,-1,-0.0001,-0.0003,-0.0001,1,-0.0001,0.0002,-0.0001,-1|Engine|115.4999,14.2528,90.4195|18,1,13|-1.5,3,-48|0,0,0|Count|0,0.5,0,-1,-0,-0,0,0,1,0,1,0|8.5,-7.0001,5.5,-1'
- ..',0,0,0,0,1,0,1,0|0,0,6.5,1,0,0,0,1,0,0,0,1|-0.5,0,-7.5001,0,0,1,1,0,0,0,1,0|66.4999,1.5017,-280,0,0,1,0,1,0,-1,0,0|-266.5,6.5999,-32,-0,0,1,-0,1,0,-1,0,0|-23.1816,3.7339,85.9741,-0.0046,0.1417,0.9898,0.0002,0.9898,-0.1'
- ..'418,-1,-0.0004,-0.0046|-33.2036,3.7337,-7.0235,-0.0048,0.1418,0.9898,0.0002,0.9898,-0.1419,-1,-0.0005,-0.0048|25.6684,3.7338,-147.9653,0.0041,0.1417,0.9898,0.0002,0.9898,-0.1419,-1,0.0008,0.0041|21.232,3.7338,33.6365,0'
- ..'.0243,0.1417,0.9896,0.0002,0.9898,-0.1418,-0.9998,0.0037,0.0241|-22.1034,3.7315,56.9576,-0.0014,0.1416,0.9899,-0.0001,0.9899,-0.1417,-1,-0.0003,-0.0014|-4.1021,77.3339,-1.0436,-0.0013,0.1417,0.9898,0.0002,0.9898,-0.141'
- ..'8,-1,0,-0.0013|-499,23.8999,-129.5,1,0,0,0,1,0,0,0,1|165.0848,3.7339,-213.9366,0.9999,0.001,0.0091,0.0002,0.9898,-0.1418,-0.0093,0.1417,0.9898|-5.5,5.9,55,0,0,-1,0,1,-0,1,0,-0|-206.8202,4.1336,-147.0698,-0.0088,-0.1418'
- ..',-0.9899,0.0002,0.9898,-0.1418,0.9999,-0.0015,-0.0086|-205.7741,4.1338,-220.0455,-0.0065,-0.1418,-0.9899,0.0002,0.9899,-0.1418,0.9999,-0.0012,-0.0064|-68.8732,3.7339,34.9771,-0.006,-0.1418,-0.9899,0.0002,0.9898,-0.1418'
- ..',0.9999,-0.0012,-0.0059|-82,31.6,190.5,-1,0,-0,-0,1,-0,-0,0,-1|-82.0469,30.1417,190.1044,-0.9999,-0.0025,-0.0186,0.0002,0.9898,-0.1419,0.0187,-0.1419,-0.9898|113.0265,21.8368,201.0393,-1,0.0018,0.0114,0.0002,0.9898,-0.'
- ..'1419,-0.0117,-0.1419,-0.9899|-55.9055,3.7338,85.9095,-0.0077,0.1418,0.9898,0.0002,0.9898,-0.1419,-1,-0.0009,-0.0077|-215.9976,2.6105,134.4995,0.9999,0,0,-0.0001,1,0,-0.0001,-0.0001,0.9999|-208,2.6,129,1,0,0,0,1,0,0,0,1'
- ..'|BodyKit|0.7686,0.1568,0.1098|82.9999,21.7528,80.9195|0,-90,90|16,1,2|0|79.9999,26.2528,80.4195|4,7,2|85.9999,26.2528,80.4195|0,0,1,1,0,0,0,1,0,0,0,1|0.5,4.5,-16,0,0,-1,0,1,0,1,0,0|0,-3.5,0,1,0,0,-0,-0,-1,0,1,0|0,-4.5,'
- ..'0,-1,0,0,0,0,1,0,1,0|73.9999,18.2528,80.4195|0,0,180|4,9,2|0,-4.5,0,1,0,0,-0,-0,-1,0,1,0|0,-3.5,0,-1,0,0,0,0,1,0,1,0|-0.5,-3.5,0,0,0,1,0,-1,0,1,0,-0|73.9999,26.2528,80.4195|70.9999,21.7528,80.9195|0,-0.5,0,1,0,0,-0,-0,'
- ..'-1,0,1,0|-9,-7.5,13,0,0,1,1,0,0,0,1,0|76.9999,21.7528,80.9195|-9,-7.5,7,0,0,1,1,0,0,0,1,0|90.3999,27.7528,76.4195|0,0,-90|6,1.2,6|88.9999,21.7528,80.9195|-9,-7.5,-5,0,0,1,1,0,0,0,1,0|0.1|79.9999,18.2528,80.4195|0|85.99'
- ..'99,18.2528,80.4195|73.9999,21.7528,81.9195|1,14,8|-0.5,0,0,-0,-0,-1,0,1,0,1,0,0|0,-0.5,3,0,1,0,0,-0,1,1,-0,0|0,7,0,-1,-0,-0,0,0,1,0,1,0|-8.5,-0.5,10,-1,0,0,0,0,1,0,1,0|0,-4.5,1,-1,0,0,0,1,0,0,0,-1|0,-7,0,1,0,0,-0,-0,-1'
- ..',0,1,0|-8.5,0.8,5,1,0,0,0,0,-1,-0,1,0|0,0,4,1,0,0,0,1,0,0,0,1|0,-4,-1.5,0,1,0,0,0,1,1,0,0|0.5,0,0,0,0,1,0,1,0,-1,-0,-0|0,-1.5,3.5,0,1,0,0,0,1,1,0,0|0,-3,1,0,1,0,0,0,1,1,0,0|0,-0.5,-3,0,1,0,0,-0,1,1,-0,0|91.9999,26.2528'
- ..',80.4195|99.9999,26.2528,80.4195|-3,9,10,0,1,0,0,0,-1,-1,0,0|0.5,4.5,-2,0,0,-1,0,1,0,1,0,0|98.9999,27.7528,76.4195|4,4,4|2,0,0,0,0,1,0,1,0,-1,-0,-0|0,0.5999,0,0,-1,-0,0,-0,-1,1,-0,-0|0.9725,0.9725,0.9725|93.9999,27.752'
- ..'8,76.4195|6,6,6|0,0,3,1,0,0,0,1,0,0,0,1|6,1,2,0,1,0,0,0,-1,-1,0,0|3,0,0,0,0,1,0,1,0,-1,-0,-0|-2,0,0,0,0,1,0,1,0,-1,0,0|2,1.5,-1,1,0,0,0,1,0,0,0,1|-3,0,0,-0,-0,-1,0,1,0,1,0,0|0,0.5999,0,0,-1,0,0,0,-1,1,0,0|0.8549,0.5215'
- ..',0.2549|0.3|101.5999,27.7528,76.4195|0,180,-90|4,1.2,4|79.9999,25.7528,81.9195|90,90,0|1,4,6|0,2,0,-1,-0,-0,0,0,1,0,1,0|0,4,-20,-1,0,0,0,-1,0,0,0,1|0,-2,0,1,0,0,-0,-0,-1,0,1,0|0,4,-4,-1,0,0,0,-1,0,0,0,1|0,-0.5,1,0,1,0,'
- ..'1,0,0,0,0,-1|91.9999,18.2528,80.4195|95.9999,21.7528,80.4195|16,2,4|102.9999,21.7528,80.9195|105.9999,26.2528,80.4195|101.9999,21.7528,81.9195|1,14,40|-16,-4.5,1,-1,0,0,0,1,0,0,0,-1|-0.5,8.5,8,0,0,1,-1,0,0,0,-1,0|-2,-3'
- ..'.5,1,1,0,0,0,-1,0,0,0,-1|-10,-4.5,1,-1,0,0,0,1,0,0,0,-1|0,-0.5,1,0,1,0,0,0,1,1,0,0|0,-1,-6,0,1,0,0,0,1,1,0,0|4,-3.5,1,1,0,-0,0,-1,-0,0,0,-1|-10,-3.5,1,1,0,-0,0,-1,-0,0,0,-1|10,-4.5,1,-1,0,0,0,1,0,0,0,-1|-8.5,-0.5,-18,1'
- ..',0,0,0,0,1,0,-1,0|0,-0.5,7,0,1,0,0,0,1,1,0,0|-8.5,0.8,-23,-1,0,0,0,0,-1,0,-1,0|-19.5,-4.0001,-8,-1,0,0,0,-1,0,0,0,1|0,-0.5,13,0,1,0,0,0,1,1,0,0|-16,-3.5,1,1,0,0,0,-1,0,0,0,-1|-4,-4.5,1,-1,0,0,0,1,0,0,0,-1|8.5,0.5,-13.5'
- ..',1,0,0,0,0,-1,0,1,0|0,-0.5,-13,0,1,0,0,0,1,1,0,0|0,0,20,1,0,0,0,1,0,0,0,1|-0.5,8.5,0,0,0,1,1,0,0,0,1,0|0,-0.5,-19,0,1,0,0,-0,1,1,-0,0|99.9999,18.2528,80.4195|109.9999,21.7528,98.9195|1,14,24|0,0,12,1,0,0,0,1,0,0,0,1|-0'
- ..'.5,-8.5,0,0,0,1,1,0,0,0,1,0|82.4999,24.7528,90.4195|1,8,16|0,-4,0,1,0,0,-0,-0,-1,0,1,0|0,-0.5,1.5,0,1,0,0,0,1,1,0,0|0,4,0,-1,-0,-0,0,0,1,0,1,0|0,-3.0001,0,-1,0,0,0,0,1,0,1,0|0,0,-8,-1,-0,-0,0,1,0,-0,-0,-1|-0.5,3,-19.5,'
- ..'0,0,1,0,-1,0,1,0,0|82.4999,17.7528,90.4195|1,6,16|0,3,0,-1,-0,-0,0,0,1,0,1,0|0,0.7999,-3.5,0,1,0,0,0,-1,-1,-0,0|68.4999,27.2528,87.9195|0,180,90|1,3,1|0,1.5,0,-1,-0,-0,0,0,1,0,1,0|-0.5,-2.5,-0.5,-1,0,0,0,-1,0,0,0,1|0.4'
- ..'313,0.6,0.7921|0.2|61.4999,25.7528,88.9195|90,-90,0|1,5,4|0,0,2,1,0,0,0,1,0,0,0,1|-1.5,3.5,3,1,0,0,0,0,-1,0,1,0|2,-1.5,1.5,0,0,-1,0,1,0,1,0,0|61.9999,25.7528,87.9195|1,4,4|-2.5,3.5,2.5,1,0,0,0,0,-1,0,1,0|2,-2,0.5,0,0,-'
- ..'1,0,1,0,1,0,0|1,4,2.5,0,0,-1,-1,0,0,0,1,0|69.4999,19.2528,86.9195|0,90,90|5,3,1|-2.5,0,0,-0,-0,-1,0,1,0,1,0,0|-3.5,-1.5,3.5,0,1,0,0,0,1,1,0,0|0.5,-2,0,-1,0,0,0,0,1,0,1,0|0,-1.5,0,1,0,0,-0,-0,-1,0,1,0|-2.5,-3.5,2,1,0,0,'
- ..'0,-1,0,0,0,-1|2.5,0,0,0,0,1,0,1,0,-1,-0,-0|-2.5,0.5,0,0,0,1,-1,0,0,0,-1,0|70.4999,19.2528,86.9195|1,-2,0,-1,0,0,0,0,1,0,1,0|1,-3.5,0,0,0,-1,0,1,0,1,0,0|-2.5,1.5,0,1,0,0,0,0,-1,0,1,0|-2.5,1.5,0,0,0,1,-1,0,0,0,-1,0|68.99'
- ..'99,24.2528,86.9195|5,4,3|-3.5,4,-2.5,0,-1,0,1,0,0,0,0,1|2.5,-3.5,1,0,0,-1,-1,0,0,0,1,0|0.5,2.5,-2.5,0,-1,0,1,0,0,0,0,1|64.4999,21.7528,86.4195|2,10,5|-1,0,0,-0,-0,-1,0,1,0,1,0,0|0,1.5,2,0,1,0,1,0,0,0,0,-1|1,0,0,0,0,1,0'
- ..',1,0,-1,-0,-0|-3,1.5,0,0,0,1,0,1,0,-1,0,0|0,0,2.5,1,0,0,0,1,0,0,0,1|0,-2,-1,0,1,0,0,0,1,1,0,0|72.9999,21.7528,85.4195|14,6,4|0,0,-2,-1,-0,-0,0,1,0,-0,-0,-1|-2.5,2,1.5,-1,0,0,0,0,-1,0,-1,0|95.9999,30.2528,90.4195|18,1,4'
- ..'|0,0.5,-12,1,0,0,0,0,-1,0,1,0|65.9999,28.2528,86.4195|2,8,3|-4,-1,14,1,0,0,0,-1,0,0,0,-1|0.5,-4,-0.5,0,-1,0,1,0,0,0,0,1|0,0,1.5,1,0,0,0,1,0,0,0,1|0,5,-1.5,1,0,0,0,0,-1,0,1,0|73.9999,30.7528,85.9195|90,180,0|-4.5,0.5,10'
- ..',0,-1,0,0,0,-1,1,0,0|79.9999,30.7528,85.9195|-4.5,0.5,4,0,-1,0,0,0,-1,1,0,0|85.9999,30.7528,85.9195|-4.5,0.5,-2,0,-1,0,0,0,-1,1,0,0|91.9999,30.7528,85.9195|59.9999,21.7528,87.4195|0,0,90|-1,0,0,0,0,1,1,0,0,0,1,0|-3,1.5'
- ..',2.5,0,1,0,1,0,0,0,0,-1|61.4999,18.7528,86.9195|0,90,180|1,2,1|0,-1,0,1,0,0,-0,-0,-1,0,1,0|-2,-1.5,-0.5,0,0,1,0,-1,0,1,0,0|105.9999,30.7528,85.9195|99.9999,30.7528,85.9195|65.9999,21.7528,83.4195|10,8,4|70.4999,21.7528'
- ..',83.9195|14,3,1|7,0,0,0,0,1,0,1,0,-1,-0,-0|-6.5,-0.5,13.5,0,1,0,0,0,1,1,0,0|-6,-5,0,-1,0,0,0,0,1,0,1,0|0,0,-0.5,-1,-0,-0,0,1,0,-0,-0,-1|0,-4,0.5,-1,0,0,0,0,1,0,1,0|60.9999,18.2528,87.9195|1,3,2|-2,-1,0.5,0,0,1,0,-1,0,1'
- ..',0,0|60.4999,18.2528,88.9195|1,3,3|-2,-0.5,1.5,0,0,1,0,-1,0,1,0,0|73.9999,30.7528,94.9195|90,0,0|79.9999,30.7528,94.9195|4.5,0.5,4,0,1,0,0,0,-1,-1,0,0|72.9999,21.7528,95.4195|-2.5,2,-1.5,-1,0,0,0,0,-1,0,-1,0|68.4999,27'
- ..'.2528,92.9195|-0.5,2.5,-0.5,-1,0,0,0,-1,0,0,0,1|85.9999,30.7528,94.9195|4.5,0.5,-2,0,1,0,0,0,-1,-1,0,0|70.4999,21.7528,96.9195|3,14,1|6.5,-0.5,13.5,-1,0,0,0,0,1,0,1,0|-1.5,0,0,-0,-0,-1,0,1,0,1,0,0|-6,5,0,0,1,0,0,0,-1,-'
- ..'1,0,0|2.5,1.5,0,0,1,0,0,0,-1,-1,0,0|70.4999,19.2528,93.9195|68.9999,24.2528,93.9195|3.5,4,-2.5,0,-1,0,1,0,0,0,0,1|2.5,3.5,1,0,0,-1,-1,0,0,0,1,0|2.5,0,-1.5,0,0,-1,-1,0,0,0,1,0|109.9999,29.2528,90.4195|1,18,24|0,-9,0,1,0'
- ..',0,-0,-0,-1,0,1,0|7.5,-0.5,-5,1,0,0,0,0,1,0,-1,0|0,9,0,-1,-0,-0,0,0,1,0,1,0|-8,3,1,0,-1,0,-1,0,0,0,0,-1|7.5,-0.5,1,1,0,0,0,0,1,0,-1,0|0,-0.5,-5,0,1,0,0,0,1,1,0,0|-4,3,1,0,1,0,1,0,0,0,0,-1|8,-4.5,1,-1,0,0,0,1,0,0,0,-1|8'
- ..'.5,7,0,0,1,0,0,0,-1,-1,0,0|0,0,-12,-1,-0,-0,0,1,0,-0,-0,-1|-0.5,0,7.5,0,0,1,0,1,0,-1,0,0|-10,3,1,0,1,0,1,0,0,0,0,-1|4,-4.5,1,1,0,0,0,-1,0,0,0,-1|2,2.9999,1,0,1,0,1,0,0,0,0,-1|4,3,1,0,-1,0,-1,0,0,0,0,-1|7.5,-0.5,-7,-1,0'
- ..',0,0,0,1,0,1,0|-2,3,1,0,-1,0,-1,0,0,0,0,-1|7.5,-0.5,-1,-1,0,0,0,0,1,0,1,0|65.9999,28.2528,94.4195|0.5,4,-0.5,0,-1,0,1,0,0,0,0,1|4,-1,14,1,0,0,0,-1,0,0,0,-1|91.9999,30.7528,94.9195|105.9999,30.7528,94.9195|99.9999,30.75'
- ..'28,94.9195|0.5,-4.5,10,0,0,-1,0,-1,0,-1,0,0|65.9999,21.7528,97.4195|10,4,8|2.5,5,-2,1,0,0,0,0,-1,0,1,0|1,0,-1.5,0,0,-1,1,0,0,0,-1,0|67.9999,19.2528,90.4195|5,10,2|0,-5,0,1,0,0,-0,-0,-1,0,1,0|-2.5,-2,2,1,0,0,0,-1,0,0,0,'
- ..'-1|69.4999,18.7528,90.4195|4,4,1|69.4999,19.2528,93.9195|3.5,-1.5,3.5,0,1,0,0,0,1,1,0,0|-2.5,-2,3.5,-1,0,0,0,0,1,0,1,0|0.5,2,0,1,0,0,0,0,-1,0,1,0|70.4999,18.2528,90.4195|3,4,1|-1.0001,-1.5,0,-1,0,0,0,0,1,0,1,0|71.4999,'
- ..'16.7528,90.4195|-2,0,0,-0,-0,-1,0,1,0,1,0,0|0,0.7999,7.5,0,1,0,0,0,-1,-1,-0,0|-5.0001,-3,-1.5,-1,0,0,0,0,1,0,1,0|-5.0001,3,-1.5,1,0,0,0,0,-1,0,1,0|72.4999,16.2528,90.4195|0,0.7999,6.5,0,1,0,0,0,-1,-1,-0,0|-5.5001,-3,-0'
- ..'.5,-1,0,0,0,0,1,0,1,0|-5.5001,3,-0.5,1,0,0,0,0,-1,0,1,0|73.4999,15.7528,90.4195|2,4,1|-6.0001,-3,0.5,-1,0,0,0,0,1,0,1,0|-6.0001,3,0.5,1,0,0,0,0,-1,0,1,0|74.4999,15.2528,90.4195|1,4,1|0,0.7999,4.5,0,1,0,0,0,-1,-1,-0,0|-'
- ..'6.5001,-3,1.5,-1,0,0,0,0,1,0,1,0|-6.5001,3,1.5,1,0,0,0,0,-1,0,1,0|72.9999,27.7528,90.4195|2,4,4|6,-3,0,-1,0,0,0,0,1,0,1,0|6,3,0,1,0,0,0,0,-1,0,1,0|70.4999,27.7528,90.4195|2,10,1|70.4999,15.7528,90.4195|-1.5,0,0,0,0,1,0'
- ..',1,0,-1,0,0|-2.5001,-3.5,0,0,0,1,0,1,0,-1,0,0|0,0.7999,8.5,0,1,0,0,0,-1,-1,-0,0|-6.0001,1.5,0,1,0,0,0,0,-1,0,1,0|0,5,0,-1,-0,-0,0,0,1,0,1,0|-1.5,-6.0001,0,0,0,1,-1,0,0,0,-1,0|83.9999,29.2528,90.4195|18,1,28|-8,-4.5,1,0'
- ..',-1,0,-1,0,0,0,0,-1|8,-4.5,1,0,1,0,1,0,0,0,0,-1|7.5,-1,12,0,1,0,0,0,1,1,0,0|7.5,-0.5,1,0,1,0,0,0,1,1,0,0|7.5,-0.5,-5,0,1,0,0,0,1,1,0,0|1,0,13.5,0,0,-1,1,0,0,0,-1,0|7.5,-0.5,-1,0,1,0,0,0,1,1,0,0|0,-0.5,-13,-1,0,0,0,0,1,'
- ..'0,1,0|10,-4.5,1,0,-1,0,-1,0,0,0,0,-1|82.9999,30.2528,90.4195|18,1,2|0,0.5,1,1,0,0,0,0,-1,0,1,0|76.9999,30.2528,90.4195|0,0.5,7,1,0,0,0,0,-1,0,1,0|70.9999,30.2528,90.4195|66.9999,29.2528,90.4195|6,6,3|0,-3,0,1,0,0,-0,-0'
- ..',-1,0,1,0|0,-1,1,1,0,0,0,-1,0,0,0,-1|0,0,14,1,0,0,0,-1,0,0,0,-1|1.5,0,-0.5,0,-1,0,1,0,0,0,0,1|111.9999,30.7528,94.9195|0.5,-4.5,-2,0,0,-1,0,-1,0,-1,0,0|88.9999,30.2528,90.4195|0,0.5,-5,1,0,0,0,0,-1,0,1,0|64.4999,21.752'
- ..'8,94.4195|0,0,-2.5,-1,-0,-0,0,1,0,-0,-0,-1|-2.5,-2,-0.5,0,1,0,0,0,1,1,0,0|0.5,-2.5,4,0,0,-1,1,0,0,0,-1,0|3,1.5,0,0,0,-1,0,1,0,1,0,0|64.4999,20.2528,90.4195|6,7,5|60.9999,25.7528,90.4195|2,6,4|0,2,-1,1,0,0,0,0,-1,0,1,0|'
- ..'0,3.5,3.5,1,0,0,0,0,-1,0,1,0|61.4999,25.7528,91.9195|2,-1.5,1.5,0,0,-1,1,0,0,0,-1,0|1.5,3.5,3,1,0,0,0,0,-1,0,1,0|61.9999,25.7528,92.9195|2,-0.5,2,0,0,-1,1,0,0,0,-1,0|2.5,3.5,2.5,1,0,0,0,0,-1,0,1,0|102.9999,30.2528,90.4'
- ..'195|108.9999,30.2528,90.4195|0.5,0,1,0,0,-1,1,0,0,0,-1,0|114.9999,30.2528,90.4195|65.9999,15.2528,90.4195|10,3,8|-2,0,-3.5,0,0,1,1,0,0,0,1,0|-2.5,0,-2,0,0,1,1,0,0,0,1,0|-4,-5,-1.5,1,0,0,0,0,1,0,-1,0|0,-3.5,-1.5,1,0,0,0'
- ..',0,1,0,-1,0|4,-5,-1.5,1,0,0,0,0,1,0,-1,0|59.9999,21.7528,93.4195|1.5,-1.5,-0.5,0,1,0,0,0,1,1,0,0|1,0,0,0,0,-1,1,0,0,0,-1,0|59.9999,21.7528,90.4195|61.4999,18.7528,93.9195|-2,0.5,1.5,0,0,1,1,0,0,0,1,0|59.9999,18.2528,90'
- ..'.4195|2,3,4|0,-2,0,1,0,0,0,0,1,0,-1,0|60.4999,18.2528,91.9195|60.9999,18.2528,92.9195|-2,-0.5,1,0,0,1,1,0,0,0,1,0|111.9999,30.7528,85.9195|120.9999,21.7528,80.9195|0.5,0,19,0,0,-1,1,0,0,0,-1,0|-7.5,9,-11,1,0,0,0,0,-1,0'
- ..',1,0|9,7.5,5.5,0,0,-1,1,0,0,0,-1,0|125.5999,27.7528,104.4195|125.5999,27.7528,76.4195|95.9999,21.7528,100.4195|9,-7.5,-12,0,0,-1,1,0,0,0,-1,0|0.5,0,-12,0,0,-1,1,0,0,-0,-1,0|0,1,0,-1,-0,-0,0,0,1,0,1,0|2,-6,-3,0,1,0,-1,0'
- ..',0,0,0,1|88.9999,21.7528,99.9195|82.9999,21.7528,99.9195|117.9999,18.2528,100.4195|0,180,180|-9,4,2.5,0,0,1,0,-1,0,1,0,0|91.9999,26.2528,100.4195|0,-180,0|0,0,-1,-1,-0,-0,0,1,0,-0,-0,-1|-2,-1.5,-3,1,0,0,0,1,0,0,0,1|83.'
- ..'9999,21.7528,98.9195|1,14,28|8.5,-0.5,0,-1,0,0,0,0,1,0,1,0|-1.5,-4.0001,8,1,-0,0,0,-1,0,0,0,-1|8.5,0.8,-5,1,0,0,0,0,-1,-0,1,0|-1.5,3,8,1,0,-0,0,-1,-0,0,0,-1|1.5,0,-13.5,0,0,-1,0,1,0,1,-0,0|0,3,11,0,1,0,0,0,-1,-1,0,0|91'
- ..'.9999,18.2528,100.4195|99.9999,26.2528,100.4195|0,180,0|120.9999,21.7528,99.9195|-7.5,-9,-11,1,0,0,0,0,1,0,-1,0|-0.5,0,11,0,0,1,1,0,0,0,1,0|-9,7.5,5.5,0,0,1,1,0,0,0,1,0|76.9999,21.7528,99.9195|9,-7.5,7,0,0,-1,1,0,0,0,-'
- ..'1,0|9,7.8,2,0,0,-1,1,0,0,-0,-1,0|102.9999,21.7528,99.9195|-7.5,-9,7,1,0,0,0,0,1,0,-1,0|-0.5,0,-7,0,0,1,1,0,0,0,1,0|111.9999,26.2528,100.4195|105.9999,18.2528,100.4195|105.9999,26.2528,100.4195|99.9999,18.2528,100.4195|'
- ..'117.9999,18.2528,80.4195|0.5,-3.5,16,-0,-0,-1,0,-1,0,-1,0,0|108.9999,21.7528,99.9195|-0.5,0,-1,0,0,1,1,0,0,0,1,0|-9,7.5,-6.5,0,0,1,1,0,0,0,1,0|70.9999,21.7528,99.9195|9,-7.5,13,0,0,-1,1,0,0,0,-1,0|9,7.8,8,0,0,-1,1,0,0,'
- ..'-0,-1,0|117.9999,30.7528,94.9195|0.5,-4.5,-8,0,0,-1,0,-1,0,-1,0,0|120.9999,30.2528,90.4195|0.5,0,-11,0,0,-1,1,0,0,0,-1,0|117.9999,30.7528,85.9195|111.9999,26.2528,80.4195|108.9999,21.7528,80.9195|9,7.5,-6.5,0,0,-1,1,0,'
- ..'0,0,-1,0|105.9999,18.2528,80.4195|117.9999,27.7528,76.4195|0,1.5,-1,1,0,0,0,1,0,0,0,1|114.3999,27.7528,76.4195|0,0.6,0,-1,-0,-0,0,0,1,0,1,0|-3,0,0,0,0,1,1,0,0,0,1,0|93.9999,27.7528,104.4195|98.9999,27.7528,104.4195|90.'
- ..'3999,27.7528,104.4195|101.5999,27.7528,104.4195|2,0,0,0,0,-1,1,0,0,0,-1,0|111.9999,18.2528,100.4195|0,-3.5001,0,-1,0,0,0,0,1,0,1,0|-9,4,-3.5,0,0,1,0,-1,0,1,0,0|117.9999,26.2528,100.4195|0,-4.5001,0,-1,0,0,0,0,1,0,1,0|0'
- ..',-1.5,-3,1,0,0,0,1,0,0,0,1|-3,-9,-8,0,1,0,0,0,1,1,0,0|114.9999,21.7528,99.9195|-0.5,0,5,0,0,1,1,0,0,0,1,0|-9,7.5,-0.5,0,0,1,1,0,0,0,1,0|111.9999,18.2528,80.4195|0.5,-3.5,10,-0,-0,-1,0,-1,0,-1,0,0|117.9999,26.2528,80.41'
- ..'95|114.9999,21.7528,80.9195|-7.5,9,-5,1,0,0,0,0,-1,0,1,0|9,7.5,-0.5,0,0,-1,1,0,0,0,-1,0|122.9999,27.7528,76.4195|0,0.6,0,0,-1,-0,0,-0,-1,1,-0,-0|117.9999,27.7528,104.4195|0,0.6,0,0,-1,0,0,0,-1,1,0,0|122.9999,27.7528,10'
- ..'4.4195|3,0,0,0,0,-1,0,1,0,1,0,0|114.3999,27.7528,104.4195;0,70>14>68,70>15>473,71>14>68,71>15>139,72>14>68,72>15>305,73>14>68,73>15>247,74>14>68,74>15>283,75>14>68,75>15>298,76>14>68,76>15>124,77>14>68,77>15>137,78>14>'
- ..'68,78>15>370,81>14>79,81>15>2,82>14>79,82>15>93,83>16>93,84>16>93,87>16>93,98>14>93,98>15>210,99>14>93,99>15>2,123>16>387,129>14>127,129>15>187,130>14>127,130>15>148,133>14>131,133>15>135,134>14>131,134>15>150,138>14>1'
- ..'37,138>15>387,140>14>139,140>15>387,144>14>143,144>15>387,147>14>145,147>15>125,151>14>150,151>15>139,152>14>150,152>15>387,153>14>150,153>15>135,154>14>150,154>15>68,155>14>150,155>15>281,156>14>150,156>15>283,157>14>'
- ..'150,157>15>247,158>14>150,158>15>137,161>14>159,161>15>180,164>14>162,164>15>314,165>14>162,165>15>187,166>14>162,166>15>208,168>14>167,168>15>174,170>14>169,170>15>182,171>14>169,171>15>167,172>14>169,172>15>159,173>1'
- ..'4>169,173>15>141,177>14>176,177>15>187,178>14>176,178>15>150,179>14>176,179>15>125,186>14>184,186>15>538,188>14>187,188>15>571,189>14>187,189>15>314,190>14>187,190>15>208,191>14>187,191>15>534,192>14>187,192>15>183,193'
- ..'>14>187,193>15>182,194>14>187,194>15>538,195>14>187,195>15>180,196>14>187,196>15>159,197>14>187,197>15>387,198>14>187,198>15>536,199>14>187,199>15>68,200>14>187,200>15>216,201>14>187,201>15>573,202>14>187,202>15>148,20'
- ..'3>14>187,203>15>184,204>14>187,204>15>93,205>14>187,205>15>143,206>14>187,206>15>2,207>14>187,207>15>124,211>14>210,211>15>2,213>14>212,213>15>387,214>14>212,214>15>216,215>14>212,215>15>187,217>14>216,217>15>68,219>14'
- ..'>218,219>15>380,222>14>220,222>15>416,223>14>220,223>15>270,226>14>224,226>15>416,227>14>224,227>15>270,228>14>224,228>15>243,230>14>229,230>15>433,231>14>229,231>15>354,232>14>229,232>15>281,233>14>229,233>15>239,235>'
- ..'14>234,235>15>360,236>14>234,236>15>381,237>14>234,237>15>283,238>14>234,238>15>239,240>14>239,240>15>416,241>14>239,241>15>352,242>14>239,242>15>243,244>14>243,244>15>281,245>14>243,245>15>416,246>14>243,246>15>270,24'
- ..'8>14>247,248>15>239,250>14>249,250>15>387,253>14>251,253>15>387,254>14>251,254>15>380,255>14>251,255>15>243,258>14>256,258>15>293,259>14>256,259>15>387,262>14>260,262>15>295,263>14>260,263>15>387,266>14>264,266>15>302,'
- ..'267>14>264,267>15>387,272>14>270,272>15>444,273>14>270,273>15>416,276>14>274,276>15>270,284>14>283,284>15>387,285>14>283,285>15>380,286>14>283,286>15>281,289>14>287,289>15>270,292>14>290,292>15>270,297>14>295,297>15>38'
- ..'7,299>14>298,299>15>310,301>14>300,301>15>380,304>14>302,304>15>387,306>14>305,306>15>387,307>14>305,307>15>380,308>14>305,308>15>309,311>14>310,311>15>416,312>14>310,312>15>352,313>14>310,313>15>309,315>14>314,315>15>'
- ..'564,316>14>314,316>15>571,317>14>314,317>15>520,318>14>314,318>15>432,319>14>314,319>15>510,320>14>314,320>15>532,321>14>314,321>15>210,322>14>314,322>15>429,323>14>314,323>15>279,324>14>314,324>15>2,325>14>314,325>15>'
- ..'494,326>14>314,326>15>341,327>14>314,327>15>277,328>14>314,328>15>506,329>14>314,329>15>184,330>14>314,330>15>183,331>14>314,331>15>534,332>14>314,332>15>536,335>14>333,335>15>380,336>14>333,336>15>412,337>14>333,337>1'
- ..'5>387,340>14>338,340>15>268,343>14>341,343>15>277,346>14>344,346>15>314,347>14>344,347>15>279,350>14>348,350>15>352,351>14>348,351>15>412,353>14>352,353>15>281,356>14>355,356>15>433,357>14>355,357>15>348,358>14>355,358'
- ..'>15>354,359>14>355,359>15>310,361>14>360,361>15>309,363>14>362,363>15>68,364>14>362,364>15>298,365>14>362,365>15>247,367>14>366,367>15>68,368>14>366,368>15>298,369>14>366,369>15>247,371>14>370,371>15>298,372>14>370,372'
- ..'>15>247,374>14>373,374>15>68,375>14>373,375>15>298,376>14>373,376>15>247,378>14>377,378>15>298,379>14>377,379>15>247,382>14>381,382>15>360,383>14>381,383>15>309,384>14>381,384>15>68,385>14>381,385>15>283,386>14>381,386'
- ..'>15>305,388>14>387,388>15>338,389>14>387,389>15>268,390>14>387,390>15>182,391>14>387,391>15>473,392>14>387,392>15>472,393>14>387,393>15>380,394>14>387,394>15>124,395>14>387,395>15>401,396>14>387,396>15>293,398>14>397,3'
- ..'98>15>387,400>14>399,400>15>387,404>14>402,404>15>401,405>14>402,405>15>387,406>14>402,406>15>380,409>14>407,409>15>314,411>14>410,411>15>387,413>14>412,413>15>310,414>14>412,414>15>425,415>14>412,415>15>416,419>14>417'
- ..',419>15>444,420>14>417,420>15>416,423>14>421,423>15>440,424>14>421,424>15>416,427>14>425,427>15>440,428>14>425,428>15>416,431>14>430,431>15>314,435>14>433,435>15>354,436>14>433,436>15>352,437>14>433,437>15>412,438>14>4'
- ..'33,438>15>416,439>14>433,439>15>243,442>14>440,442>15>451,443>14>440,443>15>444,447>14>445,447>15>440,450>14>448,450>15>444,455>14>453,455>15>440,458>14>456,458>15>407,459>14>456,459>15>314,461>14>460,461>15>187,462>14'
- ..'>460,462>15>314,463>14>460,463>15>93,469>14>468,469>15>387,470>14>468,470>15>480,471>14>468,471>15>546,476>14>474,476>15>93,479>14>477,479>15>546,481>14>480,481>15>473,482>14>480,482>15>500,483>14>480,483>15>387,484>14'
- ..'>480,484>15>216,485>14>480,485>15>68,486>14>480,486>15>523,487>14>480,487>15>212,488>14>480,488>15>305,489>14>480,489>15>472,490>14>480,490>15>298,493>14>491,493>15>477,497>14>496,497>15>314,498>14>496,498>15>210,499>1'
- ..'4>496,499>15>93,501>14>500,501>15>387,502>14>500,502>15>68,504>14>503,504>15>314,505>14>503,505>15>210,512>14>510,512>15>508,515>14>513,515>15>494,518>14>516,518>15>571,519>14>516,519>15>187,521>14>520,521>15>210,522>1'
- ..'4>520,522>15>93,524>14>523,524>15>387,525>14>523,525>15>68,528>14>526,528>15>532,529>14>526,529>15>314,531>14>530,531>15>314,537>14>536,537>15>93,541>14>540,541>15>576,542>14>540,542>15>571,545>14>543,545>15>540,547>14'
- ..'>546,547>15>548,551>14>549,551>15>546,554>14>552,554>15>548,557>14>555,557>15>506,558>14>555,558>15>93,561>14>559,561>15>474,562>14>559,562>15>578,563>14>559,563>15>314,565>14>564,565>15>210,566>14>564,566>15>93,569>14'
- ..'>567,569>15>534,570>14>567,570>15>187,574>14>573,574>15>314,575>14>573,575>15>93,577>14>576,577>15>466,579>14>578,579>15>583,581>14>580,581>15>464,582>14>580,582>15>578;2;n;1|2:2|3:3|4:4|5:5|6:6|7:6|8:6|9:6|2:2|2:2;n;3'
- ..'|1:7|10:8;p;2;n;2|1:9;n;2|1:10;n;4|1:11;4|1:12;5;p;3|1:13|10:14;3|1:7|10:8;3|1:15|10:14;3|1:16|10:14;3|1:17|10:14;p;2|1:18;n;2|1:10;n;4|1:11;4|1:12;5;p;6|1:18;n;4|1:19;5|1:20;n;5|1:21;p;p;3|1:7|10:8;p;2|1:10;n;4|1:11;4'
- ..'|1:12;3|1:7|10:8;5;p;2|1:10;n;4|1:11;4|1:12;3|1:7|10:8;5;p;2|1:10;n;4|1:11;4|1:12;3|1:7|10:8;5;5|1:22;p;2|1:23;n;2|1:24;n;4|1:12;n;5;p;4|1:11;p;3|1:7|10:8;p;2;n;2|1:25;n;2|1:26;n;2|1:10;n;4|1:11;4|1:12;5;p;p;6|1:25;n;4'
- ..'|1:19;5|1:20;n;5|1:21;p;p;p;3|1:7|10:8;p;2|1:10;n;4|1:11;4|1:12;3|1:13|10:14;3|1:7|10:8;3|1:15|10:14;3|1:16|10:14;3|1:17|10:14;5;p;1|11:27|2:28|3:29|4:30|5:31|9:6|2:28|2:28;n;3|1:7|10:8;7|12:32|13:33;7|12:34|13:35;7|12'
- ..':36|13:37;7|12:36|13:38;7|12:36|13:39;7|12:36|13:40;7|12:34|13:41;7|12:34|13:42;7|12:36|13:43;p;1|11:27|2:28|3:44|4:45|5:46|9:6|2:28|2:28;n;3|1:7|10:8;7|12:47|13:48;7|12:47|13:49;p;2|1:50;n;2|1:10;n;4|1:11;4|1:12;2|1:5'
- ..'1;n;8|1:52|17:53;8|1:52|17:54;8|1:52|17:55;8|1:52|17:56;8|1:52|17:57;1|1:58|3:59|4:45|5:60|6:6|18:6|7:6|9:6;n;9|3:61|19:62;10|20:62;5;4|1:63;7|12:64|13:65;7|12:66|13:67;p;8|1:52|17:68;8|1:52|17:69;8|1:52|17:70;8|1:52|1'
- ..'7:71;8|1:52|17:72;8|1:52|17:73;8|1:52|17:74;8|1:52|17:75;8|1:52|17:76;8|1:52|17:77;8|1:52|17:78;8|1:52|17:78;8|1:52|17:79;8|1:52|17:80;8|1:52|17:81;8|1:52|17:82;8|1:52|17:83;8|1:52|17:84;8|1:52|17:85;8|1:52|17:86;8|1:5'
- ..'2|17:87;5;8|1:52|17:68;p;2|1:88;n;1|2:89|3:90|4:91|5:92|6:6|9:93|2:89|2:89;1|2:2|3:94|5:95|6:6|2:2|2:2;n;11|21:6;p;1|2:2|3:96|5:95|6:6|2:2|2:2;n;11|21:6;7|12:97|13:98;7|12:99|13:100;p;1|2:2|3:101|4:102|5:103|6:6|2:2|2:'
- ..'2;n;11|21:6;7|12:104|13:105;7|12:97|13:106;p;1|2:2|3:107|5:95|6:6|2:2|2:2;n;11|21:6;p;1|2:89|3:108|4:91|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:110;p;1|2:89|3:111|4:91|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:112;p;1|2:89|3'
- ..':113|4:114|5:115|6:93|9:93|2:89|2:89;n;11;p;1|2:89|3:116|4:91|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:117;p;1|2:2|22:118|3:119|4:102|5:103|23:120|6:6|9:93|2:2|2:2;n;11|21:6;7|12:104|13:105;p;1|2:2|3:121|4:102|5:103|6:6|2'
- ..':2|2:2;n;11|21:6;p;1|3:122|4:30|5:123|6:6|7:6|9:6;n;7|12:124|13:125;7|12:126|13:127;7|12:124|13:128;7|12:129|13:130;7|12:131|13:132;7|12:133|13:134;7|12:133|13:135;7|12:124|13:136;p;1|2:2|3:137|5:95|6:6|2:2|2:2;n;11|21'
- ..':6;7|12:99|13:100;p;1|2:2|3:138|5:95|6:6|2:2|2:2;n;11|21:6;7|12:97|13:139;7|12:97|13:140;7|12:99|13:100;p;1|2:89|3:141|5:142|24:6|6:93|7:6|8:6|9:93|2:89|2:89;n;7|12:143|13:144;p;1|2:145|3:146|5:147|24:6|25:6|6:93|7:6|9'
- ..':93|2:145|2:145;n;7|12:148|13:149;7|12:150|13:151;7|12:148|13:152;7|12:153|13:154;p;1|2:155|22:156|3:157|4:158|5:159|6:93|9:93|2:155|2:155;n;11;p;1|3:160|4:161|5:162|6:6|8:6|9:6;n;7|12:163|13:164;7|12:165|13:166;7|12:1'
- ..'33|13:167;p;1|2:2|3:168|4:102|5:103|6:6|2:2|2:2;n;11|21:6;p;1|2:89|3:169|4:91|5:170|6:6|9:93|2:89|2:89;1|2:89|3:171|4:91|5:92|6:6|9:93|2:89|2:89;1|2:2|3:172|5:95|6:6|2:2|2:2;n;11|21:6;7|12:99|13:100;p;1|3:173|4:45|5:17'
- ..'4|6:6|7:6|8:6|9:6;n;7|12:133|13:175;7|12:126|13:176;7|12:133|13:177;7|12:133|13:178;7|12:133|13:179;7|12:133|13:180;7|12:133|13:181;7|12:133|13:182;7|12:133|13:183;7|12:126|13:184;7|12:133|13:185;7|12:129|13:186;7|12:1'
- ..'24|13:187;7|12:133|13:188;7|12:133|13:189;7|12:133|13:190;7|12:129|13:191;7|12:133|13:192;7|12:193|13:194;7|12:133|13:195;p;1|2:2|3:196|4:102|5:103|6:6|2:2|2:2;n;11|21:6;p;1|3:197|4:45|5:198|6:6|8:6|9:6;n;7|12:199|13:2'
- ..'00;p;1|3:201|4:102|5:202|25:6|6:6|18:6|9:6;n;7|12:203|13:204;7|12:205|13:206;7|12:207|13:208;p;1|3:209|4:102|5:210|25:6|6:6|18:6|9:6;n;7|12:211|13:212;p;1|3:213|4:214|5:215|6:6|9:6;n;7|12:216|13:217;p;1|2:218|22:219|3:'
- ..'220|4:221|5:222|25:6|6:93|2:218|2:218;n;11|21:6;7|12:223|13:224;7|12:223|13:225;p;1|2:218|22:219|3:226|4:221|5:227|25:6|6:93|2:218|2:218;n;11|21:6;7|12:223|13:228;7|12:223|13:229;7|12:124|13:230;p;1|3:231|4:232|5:233|6'
- ..':6|7:6|9:93;n;7|12:234|13:235;7|12:216|13:236;7|12:237|13:238;7|12:239|13:240;p;1|3:241|4:232|5:233|6:6|7:6|9:93;n;7|12:216|13:242;7|12:234|13:243;7|12:237|13:244;7|12:239|13:245;p;1|3:246|4:214|5:247|6:6|7:6|9:6;n;7|1'
- ..'2:165|13:248;7|12:234|13:249;7|12:165|13:250;p;1|2:89|3:251|4:30|5:252|6:6|7:6|8:6|9:6|2:89|2:89;n;7|12:253|13:254;7|12:255|13:256;7|12:257|13:258;p;1|3:259|4:232|5:260|6:6|7:6|9:93;n;7|12:261|13:262;p;1|2:89|3:263|4:3'
- ..'0|5:264|6:6|9:93|2:89|2:89;n;7|12:109|13:265;p;1|2:89|3:266|4:221|5:267|6:6|2:89|2:89;n;11|21:6;7|12:203|13:268;7|12:203|13:269;7|12:270|13:271;p;1|2:2|3:272|4:273|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|13:100;7|12:97|13'
- ..':274;p;1|2:2|3:275|4:273|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|13:100;7|12:97|13:276;p;1|2:2|3:277|4:273|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|13:100;7|12:97|13:278;p;1|2:2|3:279|4:273|5:103|6:6|2:2|2:2;n;11|21:6;p;1|2:8'
- ..'9|3:280|4:281|5:142|6:6|2:89|2:89;n;11|21:6;7|12:223|13:282;7|12:165|13:283;p;1|2:2|3:284|4:285|5:286|6:6|2:2|2:2;n;11|21:6;7|12:287|13:288;p;1|2:2|3:289|4:273|5:103|6:6|2:2|2:2;n;11|21:6;p;1|2:2|3:290|4:273|5:103|6:6|'
- ..'2:2|2:2;n;11|21:6;p;1|2:2|3:291|4:281|5:292|6:6|2:2|2:2;n;11|21:6;p;1|3:293|4:232|5:294|6:6|7:6|8:6|9:93;n;7|12:295|13:296;7|12:216|13:297;7|12:298|13:299;p;1|2:89|3:300|4:285|5:301|6:6|2:89|2:89;n;11|21:6;7|12:237|13:'
- ..'302;p;1|2:2|3:303|4:285|5:304|6:6|2:2|2:2;n;11|21:6;7|12:237|13:305;p;1|2:2|3:306|4:307|5:103|6:6|2:2|2:2;n;11|21:6;p;1|2:2|3:308|4:307|5:103|6:6|2:2|2:2;n;11|21:6;7|12:97|13:309;p;1|3:310|4:232|5:260|6:93|7:6|9:6;n;7|'
- ..'12:261|13:311;p;1|3:312|4:214|5:215|6:6|9:6;n;7|12:216|13:313;p;1|2:2|3:314|4:307|5:103|6:6|2:2|2:2;n;11|21:6;7|12:97|13:315;p;1|3:316|4:30|5:317|6:6|8:6|9:6;n;7|12:126|13:318;7|12:319|13:320;7|12:319|13:321;p;1|3:322|'
- ..'4:232|5:233|6:93|7:6|9:6;1|3:323|4:214|5:247|6:6|7:6|9:6;n;7|12:165|13:324;7|12:234|13:325;7|12:234|13:326;p;1|3:327|4:91|5:328|6:6|7:6|8:6|9:6;n;7|12:329|13:330;7|12:331|13:332;7|12:329|13:333;7|12:133|13:334;7|12:329'
- ..'|13:335;7|12:133|13:336;7|12:124|13:337;7|12:133|13:185;7|12:133|13:178;7|12:338|13:339;7|12:329|13:340;7|12:133|13:341;7|12:133|13:190;7|12:329|13:342;7|12:331|13:343;7|12:331|13:344;7|12:331|13:345;7|12:331|13:346;p;'
- ..'1|2:89|3:347|4:221|5:267|6:6|2:89|2:89;n;11|21:6;7|12:203|13:348;7|12:270|13:271;7|12:203|13:349;p;1|2:2|3:350|4:307|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|13:100;p;1|2:2|3:351|4:307|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|'
- ..'13:100;p;1|2:2|3:352|4:307|5:103|6:6|2:2|2:2;n;11|21:6;7|12:97|13:353;7|12:104|13:100;p;1|2:2|3:354|4:232|5:355|6:93|9:93|2:2|2:2;n;11|21:6;7|12:165|13:356;7|12:165|13:357;p;1|3:358|4:232|5:359|6:6|7:6|9:6;n;7|12:360|1'
- ..'3:361;p;1|3:362|4:232|5:363|6:6|7:6|9:6;1|3:364|4:232|5:233|6:93|7:6|9:6;n;7|12:234|13:365;7|12:216|13:366;7|12:237|13:367;7|12:239|13:240;p;1|3:368|4:232|5:369|6:6|7:6|9:6;n;7|12:163|13:370;p;1|3:371|4:232|5:363|6:6|7'
- ..':6|9:6;n;7|12:372|13:373;7|12:163|13:374;7|12:165|13:375;p;1|3:376|4:232|5:369|6:6|7:6|9:6;n;7|12:319|13:377;7|12:163|13:378;7|12:165|13:379;p;1|3:380|4:232|5:381|6:6|7:6|9:6;n;7|12:163|13:382;7|12:165|13:383;p;1|3:384'
- ..'|4:232|5:385|6:6|7:6|9:6;n;7|12:124|13:386;7|12:163|13:387;7|12:165|13:388;p;1|3:389|4:232|5:390|6:6|9:6;n;7|12:163|13:391;7|12:165|13:392;p;1|3:393|4:232|5:394|6:6|8:6|9:6;1|3:395|4:232|5:394|6:6|7:6|9:6;n;7|12:255|13'
- ..':396;7|12:255|13:397;7|12:253|13:398;7|12:360|13:399;7|12:400|13:401;p;1|3:402|4:30|5:403|6:93|9:6;n;7|12:64|13:404;7|12:64|13:405;7|12:34|13:406;7|12:32|13:407;7|12:32|13:408;7|12:109|13:409;7|12:34|13:410;7|12:64|13:'
- ..'411;7|12:64|13:412;p;1|2:89|3:413|4:30|5:414|6:6|9:93|2:89|2:89;n;7|12:109|13:415;p;1|2:89|3:416|4:30|5:414|6:6|9:93|2:89|2:89;n;7|12:109|13:417;p;1|2:89|3:418|4:30|5:414|6:6|9:93|2:89|2:89;1|2:2|3:419|4:221|5:420|6:6|'
- ..'2:2|2:2;n;11|21:6;7|12:421|13:422;7|12:421|13:423;7|12:421|13:424;p;1|2:2|3:425|4:307|5:103|6:6|2:2|2:2;n;11|21:6;7|12:97|13:426;p;1|2:89|3:427|4:30|5:414|6:6|9:93|2:89|2:89;n;7|12:109|13:428;p;1|2:89|3:429|4:30|5:252|'
- ..'6:6|7:6|8:6|9:6|2:89|2:89;n;7|12:430|13:431;7|12:253|13:432;7|12:253|13:433;p;1|3:434|4:30|5:435|6:6|7:6|8:6|9:6;1|2:218|22:219|3:436|4:221|5:437|25:6|6:93|2:218|2:218;n;11|21:6;7|12:223|13:438;7|12:223|13:439;p;1|2:21'
- ..'8|22:219|3:440|4:221|5:222|25:6|6:93|2:218|2:218;n;11|21:6;7|12:223|13:441;7|12:223|13:442;p;1|2:218|22:219|3:443|4:221|5:227|25:6|6:93|2:218|2:218;n;11|21:6;7|12:223|13:444;7|12:223|13:445;p;1|2:89|3:446|4:45|5:414|6:'
- ..'6|9:93|2:89|2:89;1|2:89|3:447|4:45|5:414|6:6|9:93|2:89|2:89;n;7|12:109|13:448;p;1|2:89|3:449|4:45|5:414|6:6|9:93|2:89|2:89;1|2:2|3:450|4:285|5:451|6:93|9:93|2:2|2:2;n;11|21:6;7|12:237|13:452;7|12:237|13:453;7|12:237|13'
- ..':454;7|12:237|13:455;7|12:237|13:456;p;1|2:89|3:457|4:232|5:142|6:6|2:89|2:89;n;11|21:6;7|12:372|13:458;7|12:165|13:459;p;1|2:2|3:460|4:30|5:390|6:6|7:6|8:6|9:6|2:2|2:2;1|2:2|3:461|4:285|5:286|6:6|2:2|2:2;n;11|21:6;7|1'
- ..'2:287|13:462;p;1|2:89|3:463|4:285|5:464|6:6|2:89|2:89;n;11|21:6;7|12:237|13:465;p;1|2:2|3:466|4:285|5:304|6:6|2:2|2:2;n;11|21:6;p;1|2:89|3:467|4:285|5:301|6:6|2:89|2:89;n;11|21:6;7|12:237|13:468;p;1|2:2|3:469|4:273|5:1'
- ..'03|6:6|2:2|2:2;n;11|21:6;7|12:104|13:100;7|12:97|13:140;p;1|2:89|3:470|4:91|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:471;7|12:109|13:472;7|12:109|13:473;p;1|2:155|22:156|3:474|4:158|5:159|6:93|9:93|2:155|2:155;n;11;p;1|2:'
- ..'155|22:156|3:475|4:158|5:159|6:93|9:93|2:155|2:155;n;11;p;1|2:89|3:476|4:232|5:170|6:6|9:93|2:89|2:89;n;7|12:287|13:477;7|12:287|13:478;7|12:479|13:480;p;1|2:89|3:481|4:232|5:92|6:6|9:93|2:89|2:89;1|2:89|3:482|4:232|5:'
- ..'92|6:6|9:93|2:89|2:89;1|2:2|3:483|4:484|5:103|6:6|2:2|2:2;n;11|21:6;7|12:97|13:485;p;1|2:2|3:486|4:487|5:95|6:6|2:2|2:2;n;11|21:6;7|12:488|13:489;p;1|2:2|3:490|4:30|5:491|6:6|9:6|2:2|2:2;n;7|12:133|13:179;7|12:133|13:1'
- ..'85;7|12:126|13:492;7|12:124|13:493;7|12:129|13:494;7|12:133|13:188;7|12:124|13:495;7|12:124|13:496;7|12:133|13:334;7|12:124|13:497;p;1|2:2|3:498|4:484|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|13:105;p;1|2:2|3:499|4:500|5:9'
- ..'5|6:6|2:2|2:2;n;11|21:6;p;1|2:89|3:501|4:232|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:502;7|12:109|13:503;7|12:109|13:504;p;1|2:89|3:505|4:232|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:506;7|12:109|13:507;p;1|2:89|3:508|4:232'
- ..'|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:509;7|12:109|13:510;p;1|2:2|3:511|4:500|5:95|6:6|2:2|2:2;n;11|21:6;p;1|2:2|3:512|4:484|5:103|6:6|2:2|2:2;n;11|21:6;p;1|2:2|3:513|4:500|5:95|6:6|2:2|2:2;n;11|21:6;7|12:99|13:100;p;'
- ..'1|2:2|3:514|4:484|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|13:105;p;1|2:2|3:515|4:102|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|13:105;7|12:97|13:516;p;1|2:89|3:517|4:232|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:518;7|12:109|13:51'
- ..'9;p;1|2:89|3:520|4:232|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:521;7|12:109|13:522;p;1|2:2|3:523|4:307|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|13:100;7|12:97|13:524;p;1|2:89|3:525|4:45|5:414|6:6|9:93|2:89|2:89;n;7|12:109|13'
- ..':526;p;1|2:2|3:527|4:273|5:103|6:6|2:2|2:2;n;11|21:6;p;1|2:2|3:528|5:95|6:6|2:2|2:2;n;11|21:6;p;1|2:89|3:529|4:91|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:530;p;1|2:2|3:531|4:102|5:103|6:6|2:2|2:2;n;11|21:6;p;1|2:145|3:53'
- ..'2|5:147|24:6|25:6|6:93|7:6|9:93|2:145|2:145;n;7|12:150|13:151;7|12:148|13:533;p;1|2:89|3:534|4:114|5:115|6:93|9:93|2:89|2:89;n;11;7|12:535|13:536;p;1|2:145|3:537|5:147|24:6|6:93|18:6|7:6|9:93|2:145|2:145;n;7|12:150|13:'
- ..'151;p;1|2:89|3:538|5:142|24:6|6:93|7:6|8:6|9:93|2:89|2:89;1|2:89|3:539|4:114|5:115|6:93|9:93|2:89|2:89;n;11;7|12:535|13:536;p;1|2:155|22:156|3:540|4:158|5:159|6:93|9:93|2:155|2:155;n;11;7|12:535|13:541;p;1|2:2|3:542|4:'
- ..'484|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|13:543;7|12:97|13:544;p;1|2:2|3:545|4:500|5:95|6:6|2:2|2:2;n;11|21:6;7|12:99|13:546;7|12:488|13:547;7|12:97|13:548;p;1|2:89|3:549|4:232|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:550'
- ..';7|12:109|13:551;p;1|2:2|3:552|4:102|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|13:105;7|12:97|13:553;p;1|2:2|3:554|5:95|6:6|2:2|2:2;n;11|21:6;p;1|2:89|3:555|4:91|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:556;7|12:109|13:557;p;1'
- ..'|2:89|3:558|5:142|24:6|6:93|7:6|8:6|9:93|2:89|2:89;n;7|12:143|13:559;p;1|2:145|3:560|5:147|24:6|6:93|18:6|7:6|9:93|2:145|2:145;n;7|12:153|13:561;p;1|2:89|3:562|5:142|24:6|6:93|7:6|8:6|9:93|2:89|2:89;n;7|12:143|13:559;7'
- ..'|12:372|13:563;p;1|2:89|3:564|4:114|5:115|6:93|9:93|2:89|2:89;n;11;p;p;5;p;3|1:7|10:8;p;3|1:7|10:8;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