content
stringlengths
5
1.05M
local Model = require("lapis.db.model").Model return Model:extend("articles", { relations = { { "author", belongs_to = "Authors" } } })
local utils = {} local home = os.getenv("HOME") local path_sep = utils.is_windows and '\\' or '/' function utils.load_variables() utils.is_mac = jit.os == 'OSX' utils.is_linux = jit.os == 'Linux' utils.is_windows = jit.os == 'Windows' utils.vim_path = home .. path_sep..'.config'..path_sep..'nvim' utils.cache_dir = home .. path_sep..'.cache'..path_sep..'nvim' utils.modules_dir = utils.vim_path .. path_sep..'modules' utils.path_sep = path_sep utils.home = home end -- Key mapping function utils.map(mode, key, result, opts) vim.api.nvim_set_keymap( mode, key, result, { noremap = true, silent = opts.silent or false, expr = opts.expr or false, script = opts.script or false } ) end -- which-key map function utils.wkmap(mode, key, result, name, opts) -- if packer_plugins["which-key.nvim"] and packer_plugins["which-key.nvim"].loaded then if utils.isModuleAvailable("which-key") then local wk = require("which-key") wk.register( { [ key ] = { result, name } }, { mode = mode, noremap = true, silent = opts.silent or false, } ) else utils.map(mode, key, result, opts) end end function utils.augroup(group, fn) vim.api.nvim_command("augroup " .. group) vim.api.nvim_command("autocmd!") fn() vim.api.nvim_command("augroup END") end function utils.get_color(synID, what, mode) return vim.fn.synIDattr(vim.fn.synIDtrans(vim.fn.hlID(synID)), what, mode) end --- Check if a file or directory exists in this path function utils.exists(file) local ok, err, code = os.rename(file, file) if not ok then if code == 13 then -- Permission denied, but it exists return true end end return ok, err end --- Check if a directory exists in this path function utils.isdir(path) -- "/" works on both Unix and Windows return utils.exists(path.."/") end function utils.dump(...) local objects = vim.tbl_map(vim.inspect, {...}) print(unpack(objects)) end function utils.isModuleAvailable(name) if package.loaded[name] then return true else for _, searcher in ipairs(package.searchers or package.loaders) do local loader = searcher(name) if type(loader) == 'function' then package.preload[name] = loader return true end end return false end end utils.load_variables() return utils
function love.conf(t) t.window.title = "Underdeeps" t.window.minwidth = 800 t.window.minheight = 600 t.window.resizable = true t.window.fullscreen = true end
local machine=require "statemachine" local fsm=machine.create({ initial="begin", events={ {name="gamestart",from="begin",to="state2"}, {name="allot",from="state2",to="state3"}, {name="waitallot",from="state3",to="state4"}, {name="waitplay",from="state4",to="state5"}, {name="over",from="state5",to="begin"}, }, callbacks={ ongamestart=function() print("gamestart") end, onallot=function() print("allot") end, onwaitallot=function() print("waitallot") end, onwaitplay=function() print("waitplay") end, onover=function() print("over") end, } }) fsm:gamestart() fsm:allot() fsm:waitallot() fsm:waitplay() fsm:over()
while not _G.PERKS do Task.Wait() end local tier1 = _G.PERKS.TIER1 local tier2 = _G.PERKS.TIER2 local tier3 = _G.PERKS.TIER3 local propPremiumRoot = script:GetCustomProperty("PremiumRoot"):WaitForObject() local propCurrencyTitle = script:GetCustomProperty("CurrencyTitle"):WaitForObject() local propPremiumCurrencyName = propPremiumRoot:GetCustomProperty("PremiumCurrencyName") local propTier1Amount = propPremiumRoot:GetCustomProperty("Tier1Amount") local propTier2Amount = propPremiumRoot:GetCustomProperty("Tier2Amount") local propTier3Amount = propPremiumRoot:GetCustomProperty("Tier3Amount") local propCurrencyButton1 = script:GetCustomProperty("CurrencyButton1"):WaitForObject() local propCurrencyPurchase1 = script:GetCustomProperty("CurrencyPurchase1"):WaitForObject() local propCurrencyConversion1 = script:GetCustomProperty("CurrencyConversion1"):WaitForObject() local propCurrencyButton2 = script:GetCustomProperty("CurrencyButton2"):WaitForObject() local propCurrencyPurchase2 = script:GetCustomProperty("CurrencyPurchase2"):WaitForObject() local propCurrencyConversion2 = script:GetCustomProperty("CurrencyConversion2"):WaitForObject() local propCurrencyButton3 = script:GetCustomProperty("CurrencyButton3"):WaitForObject() local propCurrencyPurchase3 = script:GetCustomProperty("CurrencyPurchase3"):WaitForObject() local propCurrencyConversion3 = script:GetCustomProperty("CurrencyConversion3"):WaitForObject() local propPremiumLeave = script:GetCustomProperty("PremiumLeave"):WaitForObject() local propPerksWindow = script:GetCustomProperty("PerksWindow"):WaitForObject() local propTrigger = script:GetCustomProperty("Trigger"):WaitForObject() local propCamera = script:GetCustomProperty("Camera"):WaitForObject() local localPlayer = Game.GetLocalPlayer() local collisionListener = nil local description = "" local function ViewCurrencyWindow(trigger, player) if player ~= Game.GetLocalPlayer() then return end player:SetOverrideCamera(propCamera) UI.SetCursorVisible(true) propPerksWindow.isEnabled = true propPerksWindow.visibility = Visibility.FORCE_ON collisionListener:Disconnect() end local function ExitCurrencyWindow(button) local currentRotation = localPlayer:GetViewWorldRotation() localPlayer:ClearOverrideCamera() UI.SetCursorVisible(false) localPlayer:SetLookWorldRotation(currentRotation) propPerksWindow.isEnabled = false end local function ExitCurrencyWindowFromTrigger(trigger, player) if player ~= Game.GetLocalPlayer() then return end local currentRotation = localPlayer:GetViewWorldRotation() localPlayer:ClearOverrideCamera() UI.SetCursorVisible(false) localPlayer:SetLookWorldRotation(currentRotation) propPerksWindow.isEnabled = false collisionListener = propTrigger.beginOverlapEvent:Connect(ViewCurrencyWindow) end local function InitializePerkStore() propCurrencyTitle.text = "Get " .. propPremiumCurrencyName if tier1 then propCurrencyButton1.isEnabled = true propCurrencyConversion1.text = " " .. tostring(propTier1Amount) .. " " .. propPremiumCurrencyName propCurrencyPurchase1:SetPerkReference(tier1) else propCurrencyButton1.isEnabled = false end if tier2 then propCurrencyButton2.isEnabled = true propCurrencyConversion2.text = " " .. tostring(propTier2Amount) .. " " .. propPremiumCurrencyName propCurrencyPurchase2:SetPerkReference(tier2) else propCurrencyButton2.isEnabled = false end if tier3 then propCurrencyButton3.isEnabled = true propCurrencyConversion3.text = " " .. tostring(propTier3Amount) .. " " .. propPremiumCurrencyName propCurrencyPurchase3:SetPerkReference(tier3) else propCurrencyButton3.isEnabled = false end propPerksWindow.isEnabled = false propPerksWindow.visibility = Visibility.FORCE_OFF if tier1 or tier2 or tier3 then collisionListener = propTrigger.beginOverlapEvent:Connect(ViewCurrencyWindow) propTrigger.endOverlapEvent:Connect(ExitCurrencyWindowFromTrigger) propPremiumLeave.clickedEvent:Connect(ExitCurrencyWindow) end end InitializePerkStore()
local voxel = {} local cd = (...):match("(.-)[^%.]+$") local vox_model = require(cd .. "vox_model") local vox_texture = require(cd .. "vox_texture") function voxel.new(filename) local vox = {} local data, err = love.filesystem.read(filename) if data == nil then error(filename .. ": " .. err) end vox.model = vox_model.new(data) -- parses and gets info from file vox.tex = vox_texture.new(vox.model) -- slices the model and puts texture into canvas local image = love.graphics.newImage(vox.tex.canvas:newImageData()) image:setFilter("nearest", "nearest") vox.batch = love.graphics.newSpriteBatch(image) vox.quads = {} for i=1,vox.model.sizeZ do local quad = love.graphics.newQuad(vox.model.sizeX*(i-1), 0, vox.model.sizeX, vox.model.sizeY, image:getDimensions()) table.insert(vox.quads, quad) end vox.canvas = love.graphics.newCanvas() vox._transform = { r=0, sx=1, sy=1, orx=1, ory=1 } return setmetatable(vox, {__index=voxel}) end function voxel:transform(r, sx, sy, orx, ory) self._transform.r = r or self._transform.r self._transform.sx = sx or self._transform.sx self._transform.sy = sy or self._transform.sy self._transform.orx = orx or self._transform.orx self._transform.ory = ory or self._transform.ory self.batch:clear() local orx, ory = self._transform.orx, self._transform.ory for i=1,#self.quads*4 do local quad = self.quads[math.ceil(i/4)] self.batch:add(quad, 0, -i/4*1.5, self._transform.r, 1, 1, self.model.sizeX*orx, self.model.sizeY*ory) end end function voxel:rotate(r) self:transform(r) end function voxel:scale(sx, sy) self:transform(nil, sx, sy) end function voxel:origin(ox, oy) self:transform(nil, nil, nil, ox, oy) end function voxel:getRotation() return self._transform.r end function voxel:getScale() return self._transform.sx, self._transform.sy end function voxel:getOrigin() return self._transform.ox, self._transform.oy end function voxel:draw(x, y) love.graphics.push() x = x or 0 y = y or 0 local sx = self._transform.sx local sy = self._transform.sy love.graphics.draw(self.batch, x, y, 0, sx, 0.577*sy) love.graphics.pop() end return voxel
-- ========================================================================== -- opendkim.lua - Lua bindings to OpenDKIM's libopendkim API. -- -------------------------------------------------------------------------- -- Copyright (c) 2015 Barracuda Networks, Inc. -- -- Permission is hereby granted, free of charge, to any person obtaining a -- copy of this software and associated documentation files (the -- "Software"), to deal in the Software without restriction, including -- without limitation the rights to use, copy, modify, merge, publish, -- distribute, sublicense, and/or sell copies of the Software, and to permit -- persons to whom the Software is furnished to do so, subject to the -- following conditions: -- -- The above copyright notice and this permission notice shall be included -- in all copies or substantial portions of the Software. -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -- NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -- USE OR OTHER DEALINGS IN THE SOFTWARE. -- ========================================================================== local core = require"opendkim.core" -- -- We have to issue callbacks from Lua script because the Lua 5.1 API -- doesn't support lua_callk. A callback might need to yield. -- -- :getpending returns a list of callback information: -- -- * postf - Function to pass the callback return values. These are -- saved and utilized by the C code hook that libopendkim -- actually calls. The C hook returns DKIM_CBSTAT_TRYAGAIN -- until we execute postf to set the real return values. -- * execf - The application-defined callback function, the results -- of which we will be passed through to postf. -- * self - DKIM instance, needed by both postf and execf. -- * ... - Variable list of parameters to pass to execf. -- local function dopending(postf, execf, self, ...) if postf then return true, postf(self, execf(self, ...)) else return false end end -- dopending core.interpose("DKIM*", "dopending", function (self) -- -- Loop over :getpending until there are no more pending callbacks. -- -- Because the number of arguments to pass the application-defined -- callback is variable, we pass the result of :getpending directly -- to our helper function, allowing us to use variable argument list -- notation. The helper function returns true if it issued a -- callback, or false if :getpending returned nothing. -- local count = -1 repeat local did = dopending(self:getpending()) count = count + 1 until not did return count end) -- :dopending local function iowrap(class, method) local DKIM_STAT_CBTRYAGAIN = core.DKIM_STAT_CBTRYAGAIN local f; f = core.interpose(class, method, function (self, ...) local dkim = class == "DKIM*" and self or self:getowner() while true do local ok, msg, stat = f(self, ...) if ok then break elseif stat ~= DKIM_STAT_CBTRYAGAIN then return ok, msg, stat else dkim:dopending() end end return true end) end -- iowrap iowrap("DKIM_SIGINFO*", "process") iowrap("DKIM*", "sig_process") iowrap("DKIM*", "eoh") iowrap("DKIM*", "eom") iowrap("DKIM*", "chunk") -- -- lib:setflag, lib:unsetflag, lib:issetflag - Auxiliary routines to -- simplify management of option flags. -- local DKIM_OP_GETOPT = core.DKIM_OP_GETOPT local DKIM_OP_SETOPT = core.DKIM_OP_SETOPT local DKIM_OPTS_FLAGS = core.DKIM_OPTS_FLAGS local band = core.band local bnot = core.bnot local bor = core.bor local btest = core.btest local libflags = 0 for k, flag in pairs(core) do if k:match("^DKIM_LIBFLAGS_") then libflags = bor(libflags, flag) end end local function checkflag(flag) local extra if type(flag) ~= "number" then return error(string.format("expected integer flag, got %s)", type(flag)), 2) elseif not btest(libflags, flag) or 0 ~= (band(flag, flag - 1)) then return error(string.format("expected flag, got %d (not in set of DKIM_LIBFLAGS)", flag), 2) end return flag end -- checkflag core.interpose("DKIM_LIB*", "setflag", function (self, flag) local flags = self:options(DKIM_OP_GETOPT, DKIM_OPTS_FLAGS) return self:options(DKIM_OP_SETOPT, DKIM_OPTS_FLAGS, bor(flags, checkflag(flag))) end) core.interpose("DKIM_LIB*", "unsetflag", function (self, flag) local flags = self:options(DKIM_OP_GETOPT, DKIM_OPTS_FLAGS) return self:options(DKIM_OP_SETOPT, DKIM_OPTS_FLAGS, band(flags, bnot(checkflag(flag)))) end) core.interpose("DKIM_LIB*", "issetflag", function (self, flag) local flags = self:options(DKIM_OP_GETOPT, DKIM_OPTS_FLAGS) return btest(flags, checkflag(flag)) end) -- -- core.strconst - Auxiliary routine to convert constant to string. -- local cache = {} function core.strconst(match, c) local cached = cache[match] and cache[match][c] if cached then return cached end for k, v in pairs(core) do if v == c then local name = k:match(match) if name then if not cache[match] then cache[match] = {} end cache[match][c] = name return name end end end end -- core.strconst return core
--[[ Name: bentley.lua For: Argon Gamilng Network By: Cheese ]]-- local Car = {} Car.VIP = true Car.Make = "Bentley" Car.Name = "Platnum Motorsports Continental GT" Car.UID = "bently_pmcontinental" Car.Desc = "Bentley Continental GT" Car.Model = "models/lonewolfie/bently_pmcontinental.mdl" Car.Script = "scripts/vehicles/lwcars/bently_pmcontinental.txt" Car.Price = 1500000 Car.FuellTank = 800 Car.FuelConsumption = 8 GM.Cars:Register( Car ) local Car = {} Car.Make = "Bentley" Car.Name = "4 1/2 Liter Blower" Car.UID = "bently_bowler" Car.Desc = "Bentley Blower" Car.Model = "models/lonewolfie/bentley_blower.mdl" Car.Script = "scripts/vehicles/lwcars/bentley_blower.txt" Car.Price = 750000 Car.FuellTank = 800 Car.FuelConsumption = 4 GM.Cars:Register( Car )
slot3 = {} MoveCompent = class(slot1, "MoveCompent") MoveCompent.ctor = function (slot0) slot0.view = nil slot0.m_pPosition = { x = 0, y = 0 } slot0.m_fDirection = 0 slot0.m_fSpeed = 0 slot0.m_bPause = false slot0.m_nPathID = 0 slot0.m_bEndPath = false slot0.m_Offest = { x = 0, y = 0 } slot0.m_fDelay = 0 slot0.m_bBeginMove = false slot0.m_bRebound = false slot0.m_dwTargetID = 0 slot0.m_bTroop = false slot0.m_pOwner = nil end MoveCompent.SetPathMoveData = function (slot0, slot1) slot0.m_strMoveData = slot1 if not slot0.m_strMoveData.isPointBuff then slot0.m_strMoveData.xPos = { slot0.m_strMoveData.Position[1].x, slot0.m_strMoveData.Position[2].x, slot0.m_strMoveData.Position[3].x, slot0.m_strMoveData.Position[4].x } slot0.m_strMoveData.yPos = { slot0.m_strMoveData.Position[1].y, slot0.m_strMoveData.Position[2].y, slot0.m_strMoveData.Position[3].y, slot0.m_strMoveData.Position[4].y } if slot0.m_strMoveData.Type == DNTGTEST_PATH_MOVE_TYPE.LINE then slot0.m_strMoveData.xPos[5] = slot0.m_strMoveData.xPos[2] - slot0.m_strMoveData.xPos[1] slot0.m_strMoveData.yPos[5] = slot0.m_strMoveData.yPos[2] - slot0.m_strMoveData.yPos[1] slot11 = slot0.m_strMoveData.yPos[2] slot0.m_strMoveData.dir = slot0.CalcAngle(slot6, slot0, slot0.m_strMoveData.xPos[1], slot0.m_strMoveData.yPos[1], slot0.m_strMoveData.xPos[2]) - M_PI_2 elseif slot0.m_strMoveData.Type == DNTGTEST_PATH_MOVE_TYPE.BEZIER then slot2 = slot0.m_strMoveData.xPos slot3 = slot0.m_strMoveData.yPos if slot0.m_strMoveData.nPointCount == 3 then slot2[5] = slot2[2] - slot2[1] slot2[6] = slot2[3] - slot2[2] slot3[5] = slot3[2] - slot3[1] slot3[6] = slot3[3] - slot3[2] else slot2[5] = slot2[2] - slot2[1] slot2[6] = slot2[3] - slot2[2] slot2[7] = slot2[4] - slot2[3] slot3[5] = slot3[2] - slot3[1] slot3[6] = slot3[3] - slot3[2] slot3[7] = slot3[4] - slot3[3] end end slot0.m_strMoveData.isPointBuff = true end end MoveCompent.SetSpeed = function (slot0, slot1) slot0.m_fSpeed = slot1 end MoveCompent.GetSpeed = function (slot0) return slot0.m_fSpeed or 0 end MoveCompent.SetPause = function (slot0, slot1) slot0.m_bPause = slot1 or true end MoveCompent.IsPaused = function (slot0) return slot0.m_bPause or true end MoveCompent.SetPathID = function (slot0, slot1, slot2) slot0.m_nPathID = slot1 slot0.m_bTroop = slot2 end MoveCompent.GetPathID = function (slot0) return slot0.m_nPathID end MoveCompent.bTroop = function (slot0) return slot0.m_bTroop end MoveCompent.InitMove = function (slot0) slot0.m_Elaspe = 0 slot0.m_LastElaspe = -1 slot0.m_bEndPath = false end MoveCompent.OnAttach = function (slot0) slot3 = slot0 slot0.InitMove(slot2) end MoveCompent.IsEndPath = function (slot0) return slot0.m_bEndPath or false end MoveCompent.SetEndPath = function (slot0, slot1) slot0.m_bEndPath = slot1 end MoveCompent.GetOffest = function (slot0) if not slot0.m_Offest then slot4 = 0 slot1 = cc.p(slot2, 0) end return slot1 end MoveCompent.SetOffest = function (slot0, slot1) slot0.m_Offest = slot1 end MoveCompent.SetDelay = function (slot0, slot1) slot0.m_fDelay = slot1 end MoveCompent.GetDelay = function (slot0) return slot0.m_fDelay or 0 end MoveCompent.HasBeginMove = function (slot0) return slot0.m_bBeginMove or false end MoveCompent.Rebound = function (slot0) return slot0.m_bRebound or false end MoveCompent.SetRebound = function (slot0, slot1) slot0.m_bRebound = slot1 end MoveCompent.SetPosition = function (slot0, slot1, slot2) slot0.m_pPosition.x = slot1 slot0.m_pPosition.y = slot2 end MoveCompent.GetCompentPosition = function (slot0) return slot0.m_pPosition end MoveCompent.SetDirection = function (slot0, slot1) slot0.m_fDirection = slot1 end MoveCompent.GetCompentDirection = function (slot0) return slot0.m_fDirection end MoveCompent.SetOwner = function (slot0, slot1) slot0.m_pOwner = slot1 end MoveCompent.GetOwner = function (slot0) return slot0.m_pOwner end slot0 = math.atan MoveCompent.CalcAngle = function (slot0, slot1, slot2, slot3, slot4) slot5 = slot1 - slot3 if slot2 - slot4 == 0 then if slot1 < slot3 then return M_PI_2 else return -M_PI_2 end end slot9 = slot5 / slot6 slot7 = slot0(slot8) if slot6 < 0 then return -slot7 + M_PI else return -slot7 end end MoveCompent.CacLine = function (slot0, slot1, slot2, slot3) return slot1[1] + slot1[5] * slot3, slot2[1] + slot2[5] * slot3, slot0.m_strMoveData.dir end MoveCompent.CacBesier = function (slot0, slot1, slot2, slot3, slot4) if slot3 == 3 then slot17 = slot2[2] + slot2[6] * slot4 return slot1[1] + slot1[5] * slot4 + ((slot1[2] + slot1[6] * slot4) - (slot1[1] + slot1[5] * slot4)) * slot4, slot2[1] + slot2[5] * slot4 + ((slot2[2] + slot2[6] * slot4) - (slot2[1] + slot2[5] * slot4)) * slot4, slot0.CalcAngle(slot12, slot0, slot5, slot2[1] + slot2[5] * slot4, slot1[2] + slot1[6] * slot4) - M_PI_2 else slot23 = slot2[2] + slot2[6] * slot4 + ((slot2[3] + slot2[7] * slot4) - (slot2[2] + slot2[6] * slot4)) * slot4 return slot1[1] + slot1[5] * slot4 + ((slot1[2] + slot1[6] * slot4) - (slot1[1] + slot1[5] * slot4)) * slot4 + ((slot1[2] + slot1[6] * slot4 + ((slot1[3] + slot1[7] * slot4) - (slot1[2] + slot1[6] * slot4)) * slot4) - (slot1[1] + slot1[5] * slot4 + ((slot1[2] + slot1[6] * slot4) - (slot1[1] + slot1[5] * slot4)) * slot4)) * slot4, slot2[1] + slot2[5] * slot4 + ((slot2[2] + slot2[6] * slot4) - (slot2[1] + slot2[5] * slot4)) * slot4 + ((slot2[2] + slot2[6] * slot4 + ((slot2[3] + slot2[7] * slot4) - (slot2[2] + slot2[6] * slot4)) * slot4) - (slot2[1] + slot2[5] * slot4 + ((slot2[2] + slot2[6] * slot4) - (slot2[1] + slot2[5] * slot4)) * slot4)) * slot4, slot0.CalcAngle(slot18, slot0, slot11, slot2[1] + slot2[5] * slot4 + ((slot2[2] + slot2[6] * slot4) - (slot2[1] + slot2[5] * slot4)) * slot4, slot1[2] + slot1[6] * slot4 + ((slot1[3] + slot1[7] * slot4) - (slot1[2] + slot1[6] * slot4)) * slot4) - M_PI_2 end end slot1 = math.abs slot2 = math.cos slot3 = math.sin MoveCompent.CalCircle = function (slot0, slot1, slot2, slot3, slot4, slot5, slot6, slot7) slot10 = slot5 slot14 = slot4 + slot7 * slot0(slot9) return slot1 + slot3 * (1 + slot6 * slot7 * slot0(slot9)) * slot1(slot12), slot2 + slot3 * (1 + slot6 * slot7 * slot0(slot9)) * slot2(slot10), slot4 + slot7 * slot0(slot9) + M_PI_2 end return
--the builder node local builder_formspec = "size[8,9]" .. default.gui_bg .. default.gui_bg_img .. default.gui_slots .. "list[current_name;input;1,1;1,1;]" .. "list[current_name;output;3,0;4,3;]" .. "list[current_player;main;0,4.85;8,1;]" .. "list[current_player;main;0,6.08;8,3;8]" .. "listring[current_name;input]" .. "listring[current_name;output]" .. "listring[current_player;main]" .. default.get_hotbar_bg(0,4.85) local input_items = { { "default:steel_ingot 1", "scifi_nodes:black", "scifi_nodes:blue", "scifi_nodes:rough", "scifi_nodes:rust", "scifi_nodes:white", "scifi_nodes:grey", "scifi_nodes:pplwll", "scifi_nodes:greenmetal", "scifi_nodes:wall", "scifi_nodes:blue_square", "scifi_nodes:mesh", "scifi_nodes:greytile" } } minetest.register_node("scifi_nodes:builder", { description = "Sci-fi Node Builder", tiles = { "scifi_nodes_builder.png", "scifi_nodes_builder.png", "scifi_nodes_builder_side.png", "scifi_nodes_builder_side.png", "scifi_nodes_builder_side.png", "scifi_nodes_builder_front.png" }, on_construct = function(pos) --local meta = minetest.get_meta(pos) --meta:set_string("infotext", "Node Builder (currently does nothing)") local meta = minetest.get_meta(pos) meta:set_string("formspec", builder_formspec) meta:set_string("infotext", "Node Builder") local inv = meta:get_inventory() inv:set_size("output", 4 * 3) inv:set_size("input", 1 * 1) end, on_metadata_inventory_put = function(pos, listname, index, stack, player) local meta = minetest.get_meta(pos) local inv = meta:get_inventory() local player_inv = player:get_inventory() if listname == "output" then player_inv:add_item("main", stack) inv:set_stack("output", index, "") end if listname == "input" then for _, row in ipairs(input_items) do local item = row[1] if inv:contains_item("input", item) then inv:set_stack("output", 1, row[2]) inv:set_stack("output", 2, row[3]) inv:set_stack("output", 3, row[4]) inv:set_stack("output", 4, row[5]) inv:set_stack("output", 5, row[6]) inv:set_stack("output", 6, row[7]) inv:set_stack("output", 7, row[8]) inv:set_stack("output", 8, row[9]) inv:set_stack("output", 9, row[10]) inv:set_stack("output", 10, row[11]) inv:set_stack("output", 11, row[12]) inv:set_stack("output", 12, row[13]) end end end end, on_metadata_inventory_take = function(pos, listname, index, stack, player) local meta = minetest.get_meta(pos) local inv = meta:get_inventory() local istack = inv:get_stack("input", 1) local stack_name = istack:get_name() inv:remove_item("input", stack_name.." 1") inv:set_stack("output", 1, "") inv:set_stack("output", 2, "") inv:set_stack("output", 3, "") inv:set_stack("output", 4, "") inv:set_stack("output", 5, "") inv:set_stack("output", 6, "") inv:set_stack("output", 7, "") inv:set_stack("output", 8, "") inv:set_stack("output", 9, "") inv:set_stack("output", 10, "") inv:set_stack("output", 11, "") inv:set_stack("output", 12, "") end, paramtype = "light", paramtype2 = "facedir", groups = {cracky=1, oddly_breakable_by_hand=1} })
data:extend( { { type = "technology", name = "silicon-processing", icon = "__Engineersvsenvironmentalist__/graphics/icons/chemicals/silicon-plate.png", prerequisites = {"electronics"}, effects = { { type = "unlock-recipe", recipe = "quartz-crushing" }, { type = "unlock-recipe", recipe = "ferrosilicon|sand" }, { type = "unlock-recipe", recipe = "ferrosilicon|quartz" }, { type = "unlock-recipe", recipe = "metallurgicalsilicon|sand" }, { type = "unlock-recipe", recipe = "metallurgicalsilicon|quartz" }, { type = "unlock-recipe", recipe = "trichlorosilane" }, { type = "unlock-recipe", recipe = "silane" }, { type = "unlock-recipe", recipe = "tetrachlorosilane-reduction" }, { type = "unlock-recipe", recipe = "silicon" }, { type = "unlock-recipe", recipe = "silicon-wafer" }, { type = "unlock-recipe", recipe = "silicon-carbide" }, }, unit = { count = 50, ingredients = { {"science-pack-1", 1}, {"science-pack-2", 1}, }, time = 15 }, order = "a-d-b", }, } )
--- -- LoadMissionFrame.lua local class = require "middleclass" local BaseFrame = require "frames.base_frame" local LoadMissionFrame = class("LoadMissionFrame", BaseFrame) function LoadMissionFrame:initialize(data) BaseFrame.initialize(self) self:check_abstract_methods(LoadMissionFrame) if not data.logic then error("LoadMissionFrame:initialize(): no data.logic argument!") end self.logic = data.logic end function LoadMissionFrame:update(dt) self.logic:load_mission() end function LoadMissionFrame:draw() love.graphics.print("Loading ....", love.graphics.getWidth() / 2, love.graphics.getHeight() / 2) end function LoadMissionFrame:when_done(action) -- body end function LoadMissionFrame:mouse_pressed(x, y, button, istouch) -- end return LoadMissionFrame
require "luaScript/PerformanceTest/PerformanceSpriteTest" local MAX_COUNT = 1 local LINE_SPACE = 40 local kItemTagBasic = 1000 local testsName = { [0] = "PerformanceSpriteTest", "PerformanceParticleTest", "PerformanceNodeChildrenTest", "PerformanceTextureTest", "PerformanceTouchesTest" } local s = CCDirector:sharedDirector():getWinSize() ---------------------------------- -- PerformanceMainLayer ---------------------------------- local function menuCallback(tag) local scene = nil tag = tag - kItemTagBasic if tag == 0 then scene = PerformanceSpriteTest() elseif tag == 1 then elseif tag == 2 then elseif tag == 3 then elseif tag == 4 then end if scene ~= nil then CCDirector:sharedDirector():replaceScene(scene) end end local function PerformanceMainLayer() local layer = CCLayer:create() local menu = CCMenu:create() menu:setPosition(CCPointMake(0, 0)) CCMenuItemFont:setFontName("Arial") CCMenuItemFont:setFontSize(24) for i = 0, MAX_COUNT - 1 do local item = CCMenuItemFont:create(testsName[i]) item:registerScriptHandler(menuCallback) item:setPosition(s.width / 2, s.height - (i + 1) * LINE_SPACE) menu:addChild(item, kItemTagBasic + i, kItemTagBasic + i) end layer:addChild(menu) return layer end ------------------------------------- -- Performance Test ------------------------------------- function PerformanceTest() local scene = CCScene:create() scene:addChild(PerformanceMainLayer()) scene:addChild(CreateBackMenuItem()) return scene end
--Note: Update PendingRequestsAmount =3 in .ini file ------------------------------------------------------------------------------------------------- ------------------------------------------- Automated preconditions ----------------------------- ------------------------------------------------------------------------------------------------- local commonSteps = require('user_modules/shared_testcases/commonSteps') local commonPreconditions = require('user_modules/shared_testcases/commonPreconditions') function DeleteLog_app_info_dat_policy() commonSteps:CheckSDLPath() local SDLStoragePath = config.pathToSDL .. "storage/" --Delete app_info.dat and log files and storage if commonSteps:file_exists(config.pathToSDL .. "app_info.dat") == true then os.remove(config.pathToSDL .. "app_info.dat") end if commonSteps:file_exists(config.pathToSDL .. "SmartDeviceLinkCore.log") == true then os.remove(config.pathToSDL .. "SmartDeviceLinkCore.log") end if commonSteps:file_exists(SDLStoragePath .. "policy.sqlite") == true then os.remove(SDLStoragePath .. "policy.sqlite") end if commonSteps:file_exists(config.pathToSDL .. "policy.sqlite") == true then os.remove(config.pathToSDL .. "policy.sqlite") end print("path = " .."rm -r " ..config.pathToSDL .. "storage") os.execute("rm -r " ..config.pathToSDL .. "storage") end function Precondition_ArchivateINI() commonPreconditions:BackupFile("smartDeviceLink.ini") end function Precondition_PendingRequestsAmount() local SDLini = config.pathToSDL .. tostring("smartDeviceLink.ini") local StringToReplace = "PendingRequestsAmount = 3\n" f = assert(io.open(SDLini, "r")) if f then fileContent = f:read("*all") fileContentUpdated = string.gsub(fileContent, "%p?PendingRequestsAmount%s-=%s?[%w%d;]-\n", StringToReplace) if fileContentUpdated then f = assert(io.open(SDLini, "w")) f:write(fileContentUpdated) else userPrint(31, "Finding of 'PendingRequestsAmount = value' is failed. Expect string finding and replacing of value to true") end f:close() end end DeleteLog_app_info_dat_policy() Precondition_ArchivateINI() Precondition_PendingRequestsAmount() ------------------------------------------------------------------------------------------------- ------------------------------------------- END Automated preconditions ------------------------- ------------------------------------------------------------------------------------------------- Test = require('connecttest') require('cardinalities') local events = require('events') local mobile_session = require('mobile_session') local mobile = require('mobile_connection') local tcp = require('tcp_connection') local file_connection = require('file_connection') local commonSteps = require('user_modules/shared_testcases/commonSteps') require('user_modules/AppTypes') local commonSteps = require('user_modules/shared_testcases/commonSteps') APIName = "ListFiles" -- use for above required scripts. local TooManyPenReqCount = 0 function DelayedExp() local event = events.Event() event.matches = function(self, e) return self == e end EXPECT_EVENT(event, "Delayed event") RUN_AFTER(function() RAISE_EVENT(event, event) end, 5000) end --///////////////////////////////////////////////////////////////////////////-- --Script cheeks TOO_MANY_PENDING_REQUEST resultCode in SetGlobalProperties response from SDL --///////////////////////////////////////////////////////////////////////////-- --1. Activate application commonSteps:ActivationApp() --2. PutFiles commonSteps:PutFile("FutFile_action_png", "action.png") local function DelayedExp() local event = events.Event() event.matches = function(self, e) return self == e end EXPECT_EVENT(event, "Delayed event") RUN_AFTER(function() RAISE_EVENT(event, event) end, 100) end --///////////////////////////////////////////////////////////////////////////-- --Check TOO_MANY_PENDING_REQUEST resultCode in SetGlobalProperties response from HMI function Test:SetGlobalProperties_TooManyPendingRequest() --Sending 15 SetGlobalProperties requests for n = 1, 15 do --mobile side: SetGlobalProperties request local cid = self.mobileSession:SendRPC("SetGlobalProperties", { menuTitle = "Menu Title", timeoutPrompt = { { text = "Timeout prompt", type = "TEXT" } }, vrHelp = { { position = 1, image = { value = "action.png", imageType = "DYNAMIC" }, text = "VR help item" } }, menuIcon = { value = "action.png", imageType = "DYNAMIC" }, helpPrompt = { { text = "Help prompt", type = "TEXT" } }, vrHelpTitle = "VR help title", keyboardProperties = { keyboardLayout = "QWERTY", keypressMode = "SINGLE_KEYPRESS", limitedCharacterList = { "a" }, language = "EN-US", autoCompleteText = "Daemon, Freedom" } }) end --expect response SetGlobalProperties EXPECT_RESPONSE("SetGlobalProperties") :ValidIf(function(exp,data) if data.payload.resultCode == "TOO_MANY_PENDING_REQUESTS" then TooManyPenReqCount = TooManyPenReqCount+1 print(" \27[32m SetGlobalProperties response came with resultCode TOO_MANY_PENDING_REQUESTS \27[0m") return true elseif exp.occurences == 15 and TooManyPenReqCount == 0 then print(" \27[36m Response SetGlobalProperties with resultCode TOO_MANY_PENDING_REQUESTS did not came \27[0m") return false elseif data.payload.resultCode == "GENERIC_ERROR" then print(" \27[32m SetGlobalProperties response came with resultCode GENERIC_ERROR \27[0m") return true else print(" \27[36m SetGlobalProperties response came with resultCode "..tostring(data.payload.resultCode .. "\27[0m" )) return false end end) :Times(15) :Timeout(15000) --expect absence of OnAppInterfaceUnregistered EXPECT_NOTIFICATION("OnAppInterfaceUnregistered") :Times(0) --expect absence of BasicCommunication.OnAppUnregistered EXPECT_HMICALL("BasicCommunication.OnAppUnregistered") :Times(0) DelayedExp() end function Test:Postcondition_RestoreINI() commonPreconditions:RestoreFile("smartDeviceLink.ini") end
local filepath = require "util/filepath" local function OnNewGame( mod, game_state ) -- Require this Mod to be installed to launch this save game. if TheGame:GetGameState():GetOptions().mutators then for id, data in pairs(TheGame:GetGameState():GetOptions().mutators) do local graft_data = Content.GetGraft(data) if graft_data and graft_data:GetModID() == mod.id then -- OVERRIDE_CHARACTER = MUTATORS[data].override_character game_state:RequireMod(mod) return end end end end local function OnGlobalEvent(mod, event_name, ...) if event_name == "calculate_agent_has_tag" then local params, agent, tag = ... if tag == "plot_armour" and Content.GetModSetting( mod.id, "ignore_plot_armour" ) then params.override_has_tag = true end if tag == "no_patron" and Content.GetModSetting( mod.id, "ignore_no_patron" ) then params.override_has_tag = true end if tag == "no_friends" and Content.GetModSetting( mod.id, "ignore_no_friends" ) then params.override_has_tag = true end end end local function OnLoad( mod ) rawset(_G, "CURRENT_MOD_ID", mod.id) for k, filepath in ipairs( filepath.list_files( "EveryoneDies:patches/", "*.lua", true )) do local name = filepath:match( "(.+)[.]lua$" ) -- print(name) if name then require(name) end end for k, filepath in ipairs( filepath.list_files( "EveryoneDies:convo_overrides/", "*.lua", true )) do local name = filepath:match( "(.+)[.]lua$" ) -- print(name) if name then require(name) end end require "EveryoneDies:mutators" if Content.GetModSetting( mod.id, "readd_social_grafts" ) then return function( mod ) require "EveryoneDies:readd_social_grafts" end end end local function OnPreLoad() for k, filepath in ipairs( filepath.list_files( "EveryoneDies:loc", "*.po", true )) do local name = filepath:match( "(.+)[.]po$" ) local lang_id = name:match("([_%w]+)$") lang_id = lang_id:gsub("_", "-") -- require(name) print(lang_id) for id, data in pairs(Content.GetLocalizations()) do if data.default_languages and table.arraycontains(data.default_languages, lang_id) then Content.AddPOFileToLocalization(id, filepath) end end end end local function OnGameStart( mod ) TheGame:GetEvents():ListenForEvents( mod, "calculate_agent_has_tag" ) end local MOD_OPTIONS = { { title = "Allow Provoke Anywhere", spinner = true, key = "allow_provoke_anywhere", default_value = false, values = { { name="Disable (Default)", desc="Vanilla behaviour. You cannot provoke a character in a location labelled \"HQ\".", data = false }, { name="Enable", desc="Location restriction for provokation no longer applies, and you may provoke characters at HQs.", data = true }, } }, { title = "Allow Provoke Anyone", spinner = true, key = "allow_provoke_anyone", default_value = false, values = { { name="Disable (Default)", desc="Vanilla behaviour. Plot armour characters, people in your party, and people involved in quests can't be provoked.", data = false }, { name="Enable", desc="Everyone can be provoked given the right condition.", data = true }, } }, { title = "Allow Any Relation Provoking", spinner = true, key = "allow_any_relation_provoking", default_value = false, values = { { name="Disable (Default)", desc="Vanilla behaviour. You can only provoke hated characters.", data = false }, { name="Enable", desc="You can provoke anyone, from disliked to even loved (if you want for some reason).", data = true }, } }, { title = "Ignore \"plot_armour\" Tag", spinner = true, key = "ignore_plot_armour", default_value = false, values = { { name="Disable (Default)", desc="Vanilla behaviour. Characters with this tag always have plot armour by default.", data = false }, { name="Enable", desc="Certain characters, such as Fssh and night merchants, no longer have plot armour by default.", data = true }, } }, { title = "Ignore \"no_patron\" Tag", spinner = true, key = "ignore_no_patron", default_value = false, values = { { name="Disable (Default)", desc="Vanilla behaviour. Characters with this tag cannot patronize bars, ever.", data = false }, { name="Enable", desc="People who normally cannot visit bars now can (other conditions apply).", data = true }, } }, { title = "Ignore \"no_friends\" Tag", spinner = true, key = "ignore_no_friends", default_value = false, values = { { name="Disable (Default)", desc="Vanilla behaviour. Characters with this tag do not have friends automatically assigned to them (when some guy is killed).", data = false }, { name="Enable", desc="People who normally don't have friends now can have friends to be sad about when they eventually die (other conditions apply).", data = true }, } }, { title = "Readd Impossible Boons/Banes", spinner = true, key = "readd_social_grafts", default_value = false, values = { { name="Disable (Default)", desc="Vanilla behaviour. Certain characters do not have boons/banes because it is impossible to get them in the base game (requires restart to apply).", data = false }, { name="Enable", desc="All characters now have a boon/bane associated with them (requires restart to apply).", data = true }, } }, } return { version = "1.0.1", alias = "EveryoneDies", OnLoad = OnLoad, OnPreLoad = OnPreLoad, OnNewGame = OnNewGame, OnGameStart = OnGameStart, OnGlobalEvent = OnGlobalEvent, mod_options = MOD_OPTIONS, title = "Everyone Dies", description = "This mod for Griftlands adds options to remove plot armor, allowing you to break the game.", previewImagePath = "preview.png", }
-- Script Name: Nintendo Library -- Script Ver.: 1.51 -- Thread Link: http://goo.gl/AiyB00 -- Author : Skeem _G.ScriptCode = Base64Decode("bZu4rKVUSUlQTUpSaNZYXW5SRUxJQlJPQ0tTVUs9TElCWE+DS5SUSEVpiUJTVYOLU7lIRUxTglLQSYuTVK2FTElMks/EUZOUSKrMSUJcj0PNWZSIRbEJQlJZg8vVWoiFTK5CU09Ni1PXToWMSaeSUENVk9TLS0yJQpNPRUtwlEhGUkmEUrTDTFNeiEXNT0KUT6gLVFRShczNSFKPQ4zTVkhijElDWM+FS7hUSkVWiULTVcONU7mIR0xTgtLTScuVVK3FTklMks/IUdOWSKoMS0Jcj0PRWdSKRbFJRVJZg8vZWsiHTK6CVU9Ni1PbTsWOSafSUkNVk9TPS0yJQpNPR0twlEhGUkmGUrQDTlNeiEXNT0KWT6hLV1RShczNSFKTQ7CTWEhPjMnIWE+DS5SUTEVpiUJTVYOPU7nISUxTglLQSYuXVK0FUElMkk/JUZOYSKpMTkJcj0PUWVSIRY0JRlJsg0tUWgiJTK6CV09Ni1PVTgWQSafSVENVk1TSSwyNQrcPSEtdlMjPUkmCUpDDUFNxiEVNT8KXT6hLWVRShUzKSNKUQ7CTWkhPjMnNWM+IS7jUTkVWiULeVcOQU7kIS0xTgtLbScuYVK1FU0lMkk/QUdOZSKqMUEJcj8PYWdSNRbHJSVJZg0vhWsiKTK4CWU9Ni9PiTsWRSadSV0NVk1TXS0yJQpMPSktwlEhGUgmJUrSDU1NeiEXNTwKZT6jLW1RShczKSBKWQ7ATXEhPjEnSWA+KS7hUUUVWicLiVQOSU7mITkxTglLgSQuaVK3FVUlMks/UURObSKoMUkJcj0PdWVSIRY2JS1Jsg0tUWoiOTK5CXE9Ni1PVToWVSaeSWUNVk9TMS4ySQrfPTUtdlEjYUkmCUpADVFNxiEVNTwKbT6gLXVRShUzKSBKYQ7BTX0hPjEnWWA+MS7iUU0VWicLmVQOUU7nIUExTglLkSQucVK0FV0lMks/YUROdSKpMVUJcj0PhWRSRRbGJTlJZg8vpWgiOTK7CXk9Ni1PrTkWMSYMSWkNok1RJSwyUQrcPT0tdlEjdUgmNUrRDWFNeiMXkT8KeT4kLn1TJRVlJmNLPQ2jTVElgTElCac9Ey1mUlUWNyU9SbINLVFoIkkyPwp9PoMvTVFKFTOVI0ptDkROgSMaMV0Koz8NLcNRIRmdJQlJmQ0zTWoiSTIrCYE9gi1NVTgWZSUxSHuBR06BIiwyVQtOPUkup1MhFaclCU2pDS1NriEfMT8KhT15LU1RfxU3JSJKcQ4wTY0hijElDWA+QS5kUl0WpycJSWYNL81pIhUyKgmJPYItTVU6FnEmnklxDVZNUyUuMmUK3z1BLXZRI5lKJklK0A1hTXojF7WhC0k+HS1NUTEtMSUK1u6S+xlRMUkxJQqWytbTDyJ21sKq2t09HUlNUSKSrsrC7w0NPWlRIRZu3hsSwuktXYUhFTIy0t7C3sKbDq7CxvUJWXENLU5apuLF/dpe9prq3uUhJXUlCUpaov6LCtK66rpi3wba0wsJISVtJQlKTssLBwLemsJ6ytrC3sFNYVUVMSbCVvrC7tLaxsbW9u1JTSktTVJezoLKlvU9HUlNUSLOTvqPEs0NPXFRIRY2+tsGXqKy/VExSTElCosGyrrjHu5i8rq6+T0dVU1RIhry5rsuRuLG5VExQTElCpLSwusm5irqyr0JWWkNLU6m4qa29p5TEqbFTWFFFTEmwlbektMGXi0VQVEJST7GUwcitt76+ssZPR1JTVEiZrauut8JDT15USEW6lqfFwqi5urm6RVBZQlJPlr/FvbasoLiUs7ixrcLLSElSSUJSn7W0wchISVRJQlK9lru4wLS4TE1HUk9DjrTHvEVQVEJST4e0yb22qo+qtcZPR1VTVEi7nLuntpKkvsdUTExMSUKWsLCsurlISVFJQlKTpL+0VExLTElCpLSkr8xUTExMSUKktKSvzIZISVlJQlKir7rHqLeYwLurwLZDT1hUSEW6kJebT0dVU1RIk622p5W+r7rFVExRTElCoMSwrbjGi7S4uLRSU0xLU1SKtMSgq7bDq0tXWUhFTIuxyqdDT1lUSEWgrrrGqENPXFRIRbqct7+8srnGVExPTElCm7axtMe5jLKzSUZbT0NLwam8rriytstPR1ZTVEiJvqq5lbi1rr+5SEleSUJSk7Wsypext6+1p6C0u7+fyrRFUE9CUk+VusjCrEVQU0JST4qwx6ipt7OutlJTUUtTVJi3tbi0u8O8n7S2tKpMTVBST0OeuMiYt7W4tLvDrLDGVExRTElCpbS3m8W9t7e1vbtSU0xLU1S2jLi4pLO7tktXZ0hFTIyxx723kMG5ta6xvIPEvri5t1RMT0xJQpm0t4y/wLGqv0lGXE9DS5m9tKqRwavFw0NPXFRIRZiShLGfhJ+bVExVTElCqJ+1sLe9q7m1uLCAu7isU1hQRUxJtLfAuLTFuUhJWElCUqWTvbi4sajAsrHAT0dOU1RIpJNJRllPQ0vBypi3sa1CVl1DS1OnwJS+q5mzu655v8mpRVBTQlJPlsOixqqcrbWtUlNIS1NUtpS+q0JTUEdaU1RIibW/q8C0k724uHaxwapCVlhDS1OqkZWrnpWXoUNPXlRIRZCyuLu9qJvFuaxFUFVCUk+xj7zKsbOxmbS3s0NPWVRIRbqKt8a3Q09gVEhFjb62urSxv7y3qbmxSUZdT0NLosKMtMO3rsGwp0uLVEhFUklCUmNDS1NeSFR5SUJSWYNL017IxczKBFJPD02UVI+IjEnCVc9EodbXTiLOyUNTkkRLmdeJRZMMA1jQRk1TsctFTd+EVVRNy1XVyQdMSQ5UkEOSlpRIxU9JRKjSxlEw1shGTYxDUpXGjFObCwZSykVUT6DOU1Xeh09OTNLRx1WTVc1PzMrHXA9E0V1UysvSC4VSWcNN2tpKiUwuRFJP4I1TVdSHkElJ1Y9D6JXUSU8MjcvYUYhLOJZIRemLQlNuQ8tTaUhFTE1PUk9Dl8K3qbGirrTFuLK5U1hNRUxJisHCt0tXYEhFTJ+nxMKsusGkqbm0SUZ5T0NLgpa3kXudhaKks6+0yK23e5CnxqKmvbzEvHh6uarCjrauxb24uYlJRl9PQ0uVtbuqgn2HwLKyr7hUTExMSUJ4waS5t5FISVFJQlK8pL+7VExMTElCxLCxr8LBSEhMSUJO0hrilFhTRUxJlbXBrLvHpKm5tElGW09DS6a1vqqcqra6T0daU1RIiK21rrSwpraoxKymwK5CVmBDS1OXqbG4q6O1upG6qMSspsCuQlZiQ0tTl6mxuKujtbqRsMqqrbe/srHAT0dZU1RIiK21rrSwpraYxrq0vklGYk9DS5a1tLGuqqW9lLW9wsafnExNUlJPQ4y3uIy3rcCFs7uvrbS3s0VQVkJST4a9uLW8qp+4pb20t0tXY0hFTI2xyb2vurS4m7mtvbfFT0dtU1RIiLu3sLeyt2vHw2iYsbu4t8FjscLGaJuxu7W7vrGUwbq3RVBZQlJPhK+3qLGot4yjvrulrLa/SEdMSUJiT0NLY1RIRUxJRFZPQ0tYVEhFWEmCUmyDS1RzSMVMSkJST0dSU1RIlLqNtLPGQ0tTVEhGTElCU09DS1NUSEVMSUJST0NLU1RIWExJQmVPQ0tTVEpJTElCV09DS19UiEVpiUJTbkPLU1VIRUxNU1JPQ5K4yJezuLKwt6Wovca9t7NMSUJST0RLU1RJRUxJQlJPQ0tTVEhFTElCUk9ES1NUSEVMSUJST0NLU1RIRUxJQlJPWUtTVGBFTElDUlFES1NUZ0XMSUJST0NLU1RIRUxJQlJPQ0tTVEhFTElCUk9DS1NuSEVMckJST0VLWnxIRUzQQpJP3otTVF9FTcnIko9DDNNUSOLMSUNcz0PLapRJxdMJglLbQ4xU8YhFTVOCE9BNi5TXUkUOzMlSj0PSk5ZJBsxLQlMQRUvw1MhGVsnC09YDi1PgSIhNSoNVT4NM01TJxk9JWNNQReiT1EnMDIlC3g+GTFRVTEWNikZS7INLVdsIhUzVApVQRMxXVIkGUEnfkk9FVZOZ0k+Mjs1xT8NLalRIRVBTQlJPj8C0p7eot662UlNLS1NUuqq9vqvEtENPWlRIRb+4pb20t0tXW0hFTJyxtbqov1NYTkVMSaW+vrawU1RMSkxJQqW4vbBTWFRFTEmUt7K5nse1urmxrUJTT0dTU1RIqLu3sLeyt0tXXkhFTLy6f7Gyt4G5vUVPSUJST0NLp5RMSkxJQsW0sa9TWE1FTEmJl6NjS1dzSEVMaYqmo5N6hIJ5UlaRscXDfWvGzHWnu7Vwt8RQVWBeSElXSUJSwqi/x721qru+tlJSQ0tTVEhFTElGVE9DS7VUS0VMST7VJtqMV1ZIRUy9QlZZQ0tToKm4wJm0u723S1dVSEVMSUZXT0NLmb20qkxJQlJPREtTVEhFTElCUk9DS1NUSEVMSUJST25LU1R/RUxJRFJXWktTVMlFTEkOkg9DjNRUSOpNSUIvz0NNVBVIRSJJw1MbgwtUlUlGTO6DUk8gy1NWU0bMSoOTUEPM1FVIBg1KQnaQw0yoVchFnUoEVJyEDVVbiUZOH0LTUCJLU1VnRcxJTFJPQ0+UVEhFjYuFlpSJkpudkpCYlpChn5Sdpqidm6Ohm6ywpa63ua6stLKsvbuwucLEube/vbfIxrvEzYR5d399d4iGe4R+g0hJUUlCUra2wLVUTEdMSUKAT0dQU1RIdXx5clJTVEtTVG2pca1nto5or5J5rIRxrYFSU0RLU1RISU9JQlKMgEtXVkhFTIZCVU9DS1NUSE2MTEJST0NLU0SHR0xJQn9PQ0uEVEhFTUlMak9DS5RUSEXYiYJS7MNLVBXIRUxKA1JPhExUVCmFT8kCU89DXdXVylZOS0OgEYNOpZbKx52LRFNdhU1XbUhHz2DCUs9EDVRUY4dMSVlST8NMVVZIm0zLRTJPP8qyVEhGa0nCUlhDS1NYSUVMSUJWVENLU7bBubFJRVJPQ0tTVGiFT0lCUk9DS0OTS0VMSUJSTzMKVlRIRUxJQlKPRktTVEhFTElCVlFDS1OFSElOSUJSf0NLU1RIRUxJQlJPQ0tTVEhFTElCUk9DS1OFSEVMf0JST0RLXXJIRUyeQlJPXEsTVF+FTMmDkk9DqlNUSYbMSULTD0NLFFRIRU0KQlLwA03T4EmGTElE0lGDTdNW5cZMS1qSkEZiE1TI041KwuTQRM7ulUhFY0lC0tDES1OhyMZM6cJOzshLU1TURY1KTxMPQ5gUFEjjTElE8U9DS3JUyEVTSUJSUkNLU1RIRWSJRlNPQ0tTV0hFTElCUk9DTlNUSEVMSTKRU0dLU1S7uq5JRlRPQ0uEVEtFTElCUk9Di1NUSEVNSUJSUEVLU1RIRUxJQlJPQ0tTVEhFTElCUk9DS1NUSEVMSUJST0NLU1SBRUxJpFJPQ0xTXvdFTEmJUo9DplNUSFxMScJxT8NLmlSJRZiJA1IQw0xTsUjGTVMC0tBNy1PVUoXMyYmSj0Omk1RIXAxJwpkPg0uoVMhFZYnC1WYDTNObSIdMpIJST1pLVNRShY7NiVKQQ5fTFkiiTEpDXE8G0JqUi0XTiYJS6oNLU2tIRczQApJPmcvTVFKFzM+JkpJDl9MXSAYMTEKvz8NMrlRIRWNJTNKWQ49Tr4hFTGACV8+Ji5dUz4WPSc7Sk0RSlJdIUc2MRNMQR0sUVU1F4gpDVWzEy1RhiYpOkIOVT4/MFlYJxlFJQxRUQyFU1kuizclDoFAJTfBUSEepyUJS1oOOU+CIi03mwlJQkMvTVFKFTNGD0lVD0ROaSMxMkEMZT4dLIxTI01OKhVJbhJFVcclFTRhC01BEzFpU5cXMSgMSVkOhE9RIT4zJx5mPg0uulEhFY8lY0pYDi1OpSMVMooLS0lrLaNSPRY5JnVJPQ2ITaMiLDI9CmU8KS9pUjEXcycLgFoOOUyCIC00mwlJQ0gtTVQnFU0mf0s9EZJNU2FwMWsJcjwvQmpSLRZjJBVIQw1NTVQlNTB9C01CgC9NVD4WPSQ7SEkSMVF1Ixo1SQqjQxE0wFMhG50lCUmaDS9MviEVMYMJUz4rMnFSjRkxJWdJbw5EUnUjMzZJCr9BDTGtUEkdjiU3SlsSUU7GJxUxgwlzPiYyXVM+Gj0nO05NGWFWaSZNOD0PvUENNsNVIRVaJw+aWhJVT28mPTGKCU1JaC1fUjwaWSZ1TT0NiU1bIiw2SQtkQjUuw1UhGZEkMVGYDS9ObCY9M0IOcTwrMnVSlhsxKjlOaQxKUn0iijclDXM8O0JkVk0XxSkJSrIRLVGvIR8yQQ55PnkxTVF8FTcmIE5hD0lSgSKLNSUNqTw1NatRIxZNKjlLWxJVTsYlFTVOClM9iS9NUeUVMSUZjT0NLmsO8mK+7q8LDmbDFx7G0uklGWk9DS6W5q6q1v6dSU0pLU1Sbua29t8VPR1NTVEiYurKywrSnS1dbSEVMnLG1uqi/U1hQRUxJtLeyqLTJuUhITElCUk9D25NXSEVMSUJST0NPX1RIRZ6upciit6zFyK2pTEpDVlhDS1O7rbm/vaPGwkNPYlRIRZC4ucC7sqy3p7ymwL61UlNgS1NUjLTDt67BsKe0wbtom7G7tbu+sZTBurdldHlne09HUFNUSIu1tadSU0hLU1SurrqtQlZXQ0tTkHe4tcOnkE9HUFNUSJi1w6dSU0xLU1S8tLq+r7S0tUtXWEhFTLy3tE9HT1NUSIG/skJWU0NLU86tg0xMQlJPQ0tTbIhJUElCUotyvlNYTUVMSavMtIFLVlRIRUxJQkKOR09TVEixsbdCVmlDS1OYt7y6tbGzs6y5unSeqr68q8G9jLm5w2htTE1HUk9DuLTIsEVQT0JST7W6yMKsRU9JQlJPQ0uslEtFTElCUk9Di1dXSEVMbmtSUkNLU1RIBaOJRnFPQ0uXw7+zuLijtrixsnOqrbe/srHAmLGxwnRwdnx5Z3tPR1BTVEiBv6y0UlNIS1NUsbXAh0JWVENLU5B3uK9JRlhPQ0vFvbi5iklGYE9DS5a1tLGuqqW9lLW9wsZISVFJQlLDvLu4VExOTElCuMSxrse9t7NMTVBST0OawcCxs7Gfp8TCrLrBVExSTElCnr6mrL+qrbe/srHAT0deU1RIiK21rrSwprahub+bsbu1u76xS1dhSEVMjLS3sLewpsOrsLG9QlZaQ0tTp6u3tbm2orC3s1NYbUVMSYXBvbGwtshoubtplbfBubDFdK60vmmVtcGsu8eYt7y6tbGzs0NPY1RIRY2tpqa4praWtbSxrqqlvU9HXFNUSIitta60sKa2ocOdtbCqtrdPREtTVKFFTEmbUk9DS1NWTEVMSUdST0NXU5RIYoxJQ3FPw0tUVEhFUFhCUk+HusrCtLStrZfCs6S/uFRIRUxJQ1JPQ0xTVEhFTElCUk9DS1NUSEVMSUNST0NLU1RIRUxJQlJPQ0tTVEhFTEmmUk9D0VNUSEZMVeBST0OSU5RIoExJQmlPQ8tyVMhFk0mDUpuDDFMVyEZMpkLTUE0L09VSxUzKTJLPw5KTlEigjElCaQ9Dy5oUiEWhScJSaIPL1msIRsyQQpRPnotTVF9FTclMkpHHklOVSJHMC0KvT0RMXVQLypOJhVLWg4tT74hFTGBCUs/KC5NUnsXMSUySz8mSk5dIkcwMQhMPRkuw1MhGp0lCUmZDVdObSIlMpIJST1oLWNSOhZBJyZKSQ9fTmElMjYxCXtCGTdQVTEUNSkdS5QRMVnHJxU1Wg5dRioyWVJTGD0sD01RDTFVZSBtNy0Wv0MNMoRUNR+lJQlSsw0tT24iITNVCmFDgy1NVlcXMSUyST8uMk1pIy8yPQtkPiUwaVIxFHAlC4FaEjlNgSYtOZsNSUBJL1FVJhlNJ39LPRAzTW0ibDMlCXI/D0JqUiEWniUJSZoNd05sIhUyeQtJPnIvT11+FXcmJUpFDplNUSFzMWcKYz4lLmhQORdNJhlLfw0vhG4iITBVCGFAgy1NV1wVMSgOSVkOo09RJXozJ0WnPUMtdVBDKk4mFUpvDDlMViE1MSsNaTxlL1FWlBcxKCZKSQxfTF0mGDVFC01BMS6nVyUcpCcJT6kNLU2uIRcwkglJPWstV1I+GlUmdU09DYpNcyIvNkkLZkIxLsNVIRmQJC1RmQ1LTm4mOTKaD0k9ai1nUjkaWSYmTGUXS1J5IBg1TQq/Qw0zfVRNHU4uFUlvFj1fhCopNFwQXUGBNU1blhkxJzpMaReiUVEnMzZRC7VBDS2pUSsXSyotSFsSWU/HJRU1hAptSWgtT1M/Gl0kJE5pDUlWgSOKNyUNcj4XLclTIRX1JQlJTU0tTVI+0wJylxLizv6jErKbArkJWV0NLU6atqLGyuLdPR1JTVEiYwKq2x8JDT1tUSEWft6vCv6ivU1hPRUxJlcGyrrDHVExNTElCxLSmsLzKrUVPSUJST0NL45RLRUxJQlJPQ0tXYEhFTJuntcWWv7TGvKqwSUNTU0xLU1SvqsC8trPDtktXY0hFTI2xyb2vurS4m7mtvbfFT0djU1RIibvAsL6+pK+8wq9ln6y0u7+3a3uEbW5MTUdST0ORvMCtRVBOQlJPqbTBuEhJVElCUotyvrzOrYNMTUdST0OevM6tRVBSQlJPt7rBybWnsbtCVlNDS1PHvadMTUZST0OHxr1ISVBJQlLJqIlTV0hFTElCUmeDT1hUSEWIeLW7T0ZLU1RIRUw5gVZTQ0tTwK2zTE1XUk9Dj8LLtrG7qqa7vaprpre6rry9YnpPR1BTVEiyrb2qUlNJS1NUurTBt6ZSUkNLU1RIRaWJRVJPQ0tTVEiFUExCUk9odFNXSEVMSUISpoNPbVRIRZC4ucC7sqy3vbasbJylxLizv3N8eXV8bmtSU0dLU1SEuK9JRlhPQ0vFvbi5iklGWE9DS4+Du6i+SUZXT0NLvMS8g0xNUFJPQ460wLSnraytl8G1usVUTEpMSULGyLOwU1hRRUxJqMe9pr+8w7ZFUExCUk+sulNYTUVMSbHCtLFLV11IRUyco8i0k6zHvEhJT0lCUsZuS1daSEVMwLS7w6hLV1pIRUysrsHCqEtXY0hFTIyjvrulrLa/nbWwqra3T0dZU1RIlLq1q8C0mbDFx7G0uklGX09DS5/Dq6a4n6fEwqy6wVRIRUxJQ1JPQ0tTVEhFTElCUk9DS1NUSEVMSctST0PYU1RIR0xNSFJPQ1WTVMhPzAnC2A+DSzhUSEXpiUJTbkPLU1hIRUxNR1JPQ7i4wr1FUE5CUk+musDESEZMTVJST0OMt7icrq+0hbO7r620t7NFTUlCUttDS1PgSEVMSUJUU0NLU1lIRUxVQpJPYItTVWdFzElDUk9DT1pUSEWbt5a7sq5LU1RIRU1JQlJQQ0tTVEhFTElCUk9DS1NUSEVNSUJST0NLU1RIRUxJQlJPQ0tTVEhF20lCUu5DS1NVSEqRSUJSlkOLU6+IRUxgQmLPiYuTVI/FDEmdUk9DYlNbyIsMiULTT0RLGZSJRRPJA1NQBExT6khGTaaCUlCKS5VUj4UOSZ1ST0NiE1fIjEyLQpmPBUua1ApFkwkEUqpDS1NriEfMkEKUT4qLFVSPxQ5JiRIRQ2NTF0hcDEnCmU+FS5qUCkWTyQRSmYMO2F5IiMxgAlnPiYuTVI/FD0mdUk9DYhNayIsMiULTT0RLGZSJRRPJA1NQBE5T6khGTaaCUlCKS5VUj4UOSZ1ST0NiE1fIjEyLQpmPBUua1ApFkwkEUqpDS1NriEfMkEKUT4qLFVSPxQ5JiRIRQ2NTF0hcDEnCmU+FS5qUCkWTyQRSmYMO2F5IiMxoQtJPU0tTVExKTElCtb6wu1NYS0VMSaGZT0dVU1RIhsG9sZWwtb3MVExLTElCwsGsucdUTGZMSUKOtbK5x3SrtLi4tI9xZpGZhHh1fGuArZ2suce5tqm7aUJWVkNLU8HBjbG7sVJTTEtTVKutrbuQs7yoS1eWSEVMpnyOfqm6wciGZYivscDDY67CwLe3iWtlmJWJkZmaaoOSuLfAs2OelJeCZZi4o7a0p2umybi1u7u2c4tyscLCvINMTUdST0O4uMK9RVBRQlJPsr21y6mxt0lGWk9DS5q5tqq+qq5SU0tLU1SNs62rrrezQ0xUVUhJV0lCUpyQjLKgt6awrqZSU4VLU1Slf4h4qMG9t4lzkK60ur1itb6vusWRamiSj4iYlYltkZq3urqtYp+chIVzoLemsK6mcqK4u8PDurlthXG4vrG/kVRIRUxJQ1JPQ0tTVEhFTElCUk9DS1NUSEVMSeRST0MTU1RITExb7lJPQ1WTVMhPzMnCXA9DzC+VSEdjSULSEERMU14Ixs0lg1JSWktT1AtGzElMEtDFJ5TUSlxMScIVUMNLXRRJyBeKQ1IZhI3XHomH0RODFNQNjJXaEoYOz0wS0MYWVFRJRg5MQpNRR0s3lUhGVglD2VnDD9sbSYVMFQMWUoRNWFTJh1FJH5NPRRJUlEgMjQ5FHtAITpQWTUXNS0hSFYWRU1XLS0wmg1JSCkyTVA+GEUwO0xRGjBVaSMZOUEIZkYpMVNdPRZMMiVPlhU5YGkqNTExF0k8gjFNXD8aMSVqSF0Zi01vIDE2JQhmQCE4f1Q1IjctIUtDFU1MaiotMSsVYTyCMU1cPRoxJCZMURhfUGUuGDlFC01FMSxmWkUVNzEtSkAZUU9VLT0wKhVxPIIzTWA/GjUkdU09DYhNjyAxNiUIZkAhOH9UNSI3LQ1LQxVVTGkqNTExF0k8gjFNXX8VZyQlTj0MSlBlLEc0ORZPRSUvUFlJFEouIUlDGUVMxiUVPEEOSTwqMGFcUxhFMg1RaQ8yVX0gLjpJCU9JOS5QXUUXNTExSEIZVUzGJxVAQA5JPW0sUV18FTskJU49DEpQZSxHNDkWTEUtL1BZTRRKLi1JQxlRTlQtOTMpFXE8Ejl1UJYbMTVnSUcMSVJRIDI0ORR7QCE6UVlRFzYtOUhWFlFNVy1FMigVbT8ROXVQJiFZJH5PPR6ZUVEhcDErCGVCDSxqVDUgYygdVkMVMU9UKUUwPRJpPRk7TVCWGTEwIU5xDUZWhSFHOlkbZ0YRLcFbIRilKQ1JmA0zTW0uFTFCFl1VPzphazwgZTglVHUhRV5xIiFDJQm+SQ0411UhFr4s/0RWEmVN5SkVMJoNSUAnMoVRth0xJH5NPRBEUokhqzklCL5BDTBlVl0VxC0JSLIRLVHNIxUyGQlJPR1BTVEiysbe3UlNJS1NUu7Wxta5SU0hLU1S8vryuQlZTQ0tTxq22TE1HUk9DuLTCqUVQU0JST6a6wbixubW4sFJTTktTVLymvrCnxqKot7lUTE1MSUK1soXAubq7RU9JQlJPQ0tnlElGT0lCUk9DS3OUS0VMSUJST2mLVlRIRUxJQnaPRktTVEhFTIaCVltDS1PGraitta6UxKmxxlRMTExJQsS0pqy/wEhJW0lCUsGorrTAtK65ubTBxaivU1hSRUxJtLeypLe/vbasTEpCVlpDS1O1rKmfvqSftLHAU1hgRUxJb9CMnpm8wryquq2xcpa4rMW4pYLKdmJSU0lLU1Svuq27plJTTEtTVKmpsJmjxLCwS1dYSEVMt6u+T0dbU1RImMG5ssHBt7C3dJu1sbWuUlNVS1NUm4iekpKmrpOMpZWVpJWXiKFPR0xTVEhFUFJCUk+4vrinuKq4tUJWXENLU6m7qmycsre7r4VzfEhJU0lCUsK3vbzCr0VQTEJST2xrU1hNRUxJsLO8qEtXZ0hFTJyFpJiTn7KkiZeNlqGhnZKRmVRMTExJQsW3rLC/uEhJYUlCUpC4v8J0m621rq62b5esxbutub+DQlZXQ0tTwbGzmaqws09HX1NUSJK1t2KfsLGsc5W9ubucqru0r69TWFtFTEmVlaGMm6ezmIaeio+xoo+UlplISExJQlJPQ4+TV0hFTElCUk9DTlNUSEVMSZuSUkNLU1RIRTyIRmlPQ0uox61ln7Grt7una6LCaJLFaYq3wbJrU1hbRUxJg8fDsmubuamxbJ2jxLaov8aOSElaSUJSsK+3zKGxs5Suo77Dq0tXakhFTIquvshjmLzCsbLBtmK6tKS3x7xoakxMQlJPQ0uTpIhJXklCUpysuXOhqbOtaYPHw7KTuLW0RVBTQlJPsLTBnK2muL2qUlNXS1NUla66aYq3sK+/u3SJusC4irewr0tWVEhFTElCm49HYFNUSJq/rmKatKS3c6O2ZZnCYpq0tbpzVExMTElCu7+ktMXHSElVSUJSvYq3wrapsb9JRlxPQ0uaubyGuLWrt8JDT1hUSEW0qrW6T0dUU1RIqLSqtKCwsLBTWFhFTEmDtrOXtLa/i6a4taSzsq5LV2xIRUyKpraftbq2ubu4n7mnvruGrL/AqqavtEJWZENLU5WsqY25sr7IhcC5uoumuLWks7KuS1dqSEVMiqa2oai4wsqth8GvqJWwr7e1tauwTE1CUk8HS1NUDEVMSUJSUUdLU1RNRUxJTlKPQ2iTVElkTMlCU09DS1dbSEVMmLCmuKa2U1RIRUxKQlJPREtTVEhFTElCUk9DS1NUSEVMDkJSTwhLU1RKRVJPQlJPyEtTVNRFjEpCU09Di1TUSOKMSURxT8NLVFRIRVBWQlJPk73Ct624v5yyt7uvS1NUSEVNSUJSUENLU1RIRUxJQlJPQ0tTVEhFEklCUhVDS1NXSE1TSUJSFENLUyBIBU2JQ1JPw0zTVAhGTEofks9FalPUSEZMSUJWWUNLU5W4tbjChMe1qUtTVEhFTUlCUlBDS1NUSEVMSUJST0NLU1RIRRNJQlIWQ0tTVkhLUklCUtRDS1PgSIVNSUNST4NM01TlhUxLYVLPQ0xTVEhJV0lCUqGouMLKrYfBr6hST0NLU1VIRUxKQlJPQ0tTVEhFTElCUk9DS1NVSEVMSUJST0NLU1RIRUxJQlJPQ0tTHkhFTBxCUk9ES1eVSEVMkEKST56LU1RfRU7JiZKPQ5LTFEiMDAlCrU9DS2oUSMWSSYNSrMPLU69IRUxgQlLPYkvTVI6FjUnJ0pBDqNNUSV0MCkJpD0PLmtSJRanJwlKqQ0tTa8hFzI/Ck09bSxVUX0VMyWFSz0OSk5VIXYwLQmnPS8ua1IpFZAkEUmaDTNObiIVMkMIST4pLFlSYhQ9JnZJPQ2ITVMiMjIlCmc8DS5rUC0WcCQVS1sONU2wIh01gwlPPyUuXVM8FjkoIUpNDEpMYSRSMyUOsz8NMapRKxdPJhFJnw49Ua0hHzM9Clk/Ky5dVDkWQSQkSE0Qak9RJX8zJQ2mPQ8vfVI1F6YlCU25Dy1NpSEVMTUxST0O9uLepsbiysLlPR1BTVEiysbe3UlNJS1NUr7qtu6ZSU0xLU1S9uLGcsre7r0tXX0hFTJKwmL64uce1sbNMTUdST0O/zMStRVBTQlJPprrBuLG5tbiwUlNMS1NUrrq6rLa7vrFLVFRMSkxJQrq0pLdTWExFTEm0t8BDT1hUSEW5qrCzT0dTU1RIsrW3j7O9pEtWVEhFTElCq49HVVNUSLK1t4q3sK+/u1RLRUxJQlKPnotXW0hFTLa7mrS1ulNYUEVMSa+zx5CswbVISVNJQlK3qKy/yLBFUFNCUk+wrMucraa4vapSU0xLU1SJusC4irewr0tTVEhFTUlCUk9DS1NUSEVMSUJST0NLU1RIRSFJQlIuQ0tTVUhPd0lCUpZDi1ObiAVMkMIST5MLE1TORY1JCJKQQyhT1EjiTEpCaQ9FyxrViUgnikJSZkNN0xsJhk9QRJRSUo1TWGJFzkxZEk/DEpSWSBHNC0WSUUNOMJXIRu7JQlJyhEfS2wiHTORCUk9aC1bUz0WMScmSj0TSE5ZJ4ExJQmnPRcvZVItF0wmDUxVDjlMbSAdNGILSUF0LU1VfBUzJyZKRQ9fTlklLTYxC74/DTHJUyEVZSUJSU0hLU1S1qrq+QlZVQ0tTu72mvq1CVl1DS1O1tLHFlqvAl6isv8iwRU9JQlJPQ0uslExMTElCu7+ktMXHSElaSUJSlqi/lMC0vpSutMG0tktXWUhFTK2ns7NDT1pUSEW0rqO+w6tLV15IRUy2o8qXqKy/yLBFUE9CUk+2u7jAtEVQTkJST4asxshISVdJQlLDpL26ubyYsbWoUlNKS1NUtb6UrrTBT0NLU1RJRUxJQlJPQ0tTVEhFTElCUk9DS1NUKUVMSStST0NOU1ucRUxJCVKPQyaTVEhcTEvCGY+DSxrUCEYTCQJTKkNLU2sIRcwPQpNPIMvTVCNFTElZUk/DalPUSAuMikJZ0IRLMNRIRmQJA1NmA0vTG8iGTCbC0k8eS1NUX8VMyQjSkENjUxZJXExJwnFPw0salIpFZMkEU2aDTNMbiIVMEMISUAoLFVUYRQ9KHZJPQ2ITVMgMjIlCGc8DTBqUC0YcyQVTVoSNU2zIh05gwlPPSQyWVE/GjkuIE5JDklQYSpQNyUSsT8RNatRJxVIKhVJWhI9VmgmITJDDFlGSDNNWYkXNS1lST8NqU9RITA2NQ15QiE1w1UhGWIqHVNDEUFNxycVNZINST1qLV9RPBhFJiBOSQ5IUGUqdjEpEaU9Gy1pVjkZnSkJSZoNN01tJi01QA5dRiQyWVI8GEUtaklBFYhNUyEyNj0Je0IlN2lWORmmKwlNuQ8tTb0hFTE1MUk9Dvbi3qbG4srC5T0dQU1RIsrG3t1JTSUtTVK+6rbumUlNMS1NUvbixnLK3u69LV19IRUySsJi+uLnHtbGzTE1HUk9Dv8zErUVQU0JST6a6wbixubW4sFJTTEtTVK66uqy2u76xS1RUTElMSULEtLRLV1lIRUy2o8CwQ09bVEhFubKwn7CxrFNXSEVMSUJSqINPXVRIRbmysJq0pLfHvEhITElCUk+DppNYT0VMSa/Ll6i9wlRMTUxJQr+wu5i0wqlFUFBCUk+rsLTAvK1MTUxST0O4tMyQqq21trpPR1BTVEizrbanUlNJS1NUtLTDrrRSU0hLU1SurrqtQlZWQ0tTtby5raytUlNIS1NUvKqttkJWVkNLU8ipt7OutlJTSUtTVLu1sbWuUlNIS1NUi6a/vUJST0NLVFRIRUxJQlJPQ0tTVEhFTElCUk9DSz5USEVESUJSU0NTrFRIRVNKglJqhEtTa0hHzFCDkk9KzJNWTwaMS11TT0NiE1TIS02KQm/Qw0tuVUhFY0lC0m5Dy1NaiYZMkMOTT2DMU1VgBY1LWRJPw1LUlUhizclCbVBDS2rUSMVSyoNSZ0ONVWtIRcxoQtJPSoyVVGDFjktZklDDUpSUSEzNiURZEIVNY1WLR2eKQlJmA0vTW4mFTFDDklFKjJZWWMaPS4mTkUNj0xZKXMxKwpgQhkua1QpH0gqFUtZEj1bjSUZPo4JTUlrLVNSOBo9JiZMTRdEUl0jMzY1F4VBETm2USUhjSULSbkPLU+9IRUxgwlbPioyUVc4Gj0nJk5BGY9PVSlyMTMKZEIdM2RWLRdMKhlVnw8xVa0hHzJBDl0/KjBRVj8bNS5qSFEViE1TIjM2OQp4QCE0TVUhGqYrCU5ZEEVSsiAtOYIJTz4pMGVVgxRJLWRJPw5EUl0hdjEpDaU9Dy10UjsVrScJSa0NLU1hSRUxJtLeypLe/vbasTE1HUk9DuLjCvUVQT0JST6rAtMasRVBSQlJPuL64p7iquLVCVlpDS1Odtou7vrDGsKy5U1hNRUxJtsu/qEtXXkhFTKyxwLOsv7zDtkVQUkJST6nAwbe8rru3QlNPR09TVEi3sbpCVlRDS1PBqbOtSUZaT0NLwL22kq23o1JSQ0tTVEhFpYlGXE9DS8C9to2xqq7Gt0NOU1RIRUyJnZJTSktTVLW+lK60wU9HU1NUSLKtwY+zvaRLV1tIRUyxp7O7t7NTWFJFTEmvs8eLsLTAvK1MTUdST0O/uLW1RVBRQlJPpq6Vya6rv0lCVlVDS1PHuKq4tUJWVENLU5epuMBJRldPQ0vBtbWqTE1JUk9Dvbi3qbG4SUZhT0NLxbmrpri1q7+/tbrJuaxFTUpCUk9DTFNUSEVMSUJST0NLU1RIRUxJQlJPQ0VTVEhDTElCVU9HWVNUSAxMiUOqjwNMalRKxRNJglNnwwtUa8hGzBACkk8eS1NUXwVMyQhSkENjE9RIXExJwlyPBMxyVMhFUklCUlNIS1NUtqa5rkJWVkNLU8atqK21rlJTUktTVLqqr6quvriwu8XDvqqwSUZcT0NLxbmrpri1q8C2Q09aVEhFucKKt8GyS1RUSEVMSUNST0NLU1RIRUxJQlJPQ0tTVEhFTElCU09DT1RUSEhMTU1ST0MSU5RJnYwJQ2mPRMsaVIhGZMkCU2YDS9MaCIVMYQLST1pLU9RShY3LYVLPQ1FTVEhJUUlCUr2kuLhUTExMSULEtKasv8BISVtJQlLBqK60wLSuubm0wcWor1NYT0VMSa/Ll6i9wlRMT0xJQsS0pqy/wLGzs0lDU09DS1NVSEVMSUJST0NLU1RIRUxJQlJPQ0tTW0lFTF1DUk9HS2OISEVMU8JSz02L09RkhsxKWVJPw05U1EhPTErDXVBES12VicdWioPVWYQM1l6JhtBTQtPQSoyTVFSGjkvD01FDDBRWSGKNSURZkINLWhWKR1hKhVTQhE5TFclITE8ElU+ETVdUZYZMTEOTU0OSVJRImk3JRNOQR0t0lUvFU0uCUlYFTFebioVMkAQUU49NFlgPx5BNQxVTQ5LWmEzGT05CGZKIT2kXS0uSzIdS0kbLU7GKRU9pQ07OSQyYVK1GTElfk09EUVSaSKqNSUJvkENMclTIRWVJQlJTSktTVLu1sbWuxU9HUFNUSLKxt7dSU01LU1SrtLqtq8a4srlTWFBFTEmltZG4sbnHSEhMSUJST0Nfk1VJSExJQlJPQ2uTV0hFTElCUnWDTlNUSEVMSX+SU05LU1SpqbCct7ScqLnIVExfTElCf82ApqG9trmxt6bBb4aztL22iI+mf9B8Y0tXWkhFTKyqs7ixS1ddSEVMqqa2n6S9tMFISVBJQlK9rLdTWFlFTEmVx7+zusXIralsnLK3u6++U1haRUxJlZWhjJuns5iGnoqPsZiRkaJUTEZMSUJSUkNLU1RIRTyIRllPQ0vGyLquurBCVlxDS1Opu6psnLK3u6+Fc3xISU9JQlJ4Y0tXWUhFTLejv7RDT2ZUSEWfjJSbn5eqo5WahpmokaCeiZFTWF1FTEmDtrOEu8PAwYfBr6iVsK+3tbWrsExNUlJPQ4y3uJyur7SFs7uvrbS3s0VOSUJSYURLU2ZJRUxMQlpWQ0tTGUhFTBVCElCDTFNUyEbMSQJTT0Qok9RKZEzJQlNPQ0tXXkhFTIqywru8jci6rkVMSUJSUENLU1VIRUxJQlJPQ0tTVEhFTElCUmJES1NnSUVMSUJUU0NLU1lIRUxVQpJPYItTVWdFzElDUk9DT1pUSEWbt5a7sq5LU1RIRU1JQlJQQ0tTVEhFTElCUk9DS1NUSEVNSUJST0NLU1RIRUxJQlJPQ0tTVEhFYkpCUnFES1NVSFN2SUJSlUOLU9uIhUymwlJQW8sTVF8FTMmJko9DqNPUSKBMSUJpz0PLmZSIRWQJAlJmQ0vTc0jFTI9Ck0/Ji5RU5UXMSZ9SUENiU1nIy82KQhJQw03w1UhG50pCUmYDTtPbCQZO5INST1pLVtTJRk5JCZORQyBU1EtGTktC89BEy9qWikXTi0RXp8ONWGvIRcwVBJRUg07TViWHzEriE0zCrdNUSChMQ8FxT8NLX1RIRVBOQlJPt8TDuUhJVklCUrKyube9vK67t0JWWENLU7q9s6+9q8G9Q0xTWE9FTEmrwrCsvcZUTFRMSUKZtLeQwbm1vpSutMG0tktXYEhFTJ+jvrinn7TGr6rASUZaT0NLtrW2kru/p1JSQ0tTVEhFPIhGWU9DS8bErbG4vEJSU05LU1SMrsKysLeSpL7HVEhFTElDUk9DS1NUSEVMSUJST0NLU1RIRUxJZlNPQ3tUVEhJTFVnUk9DUVSUSIyNiUJv0ENMa9SIR2MJQtJWhItTccnFTGRDUk9ay1PUToaMSVoSj0ViU1TIZEzJQlhQhEuTVUhGacpCU2pES1NriEnMUIOTT4pME1VPhk1LmtKQRWJTV8hGDUpCmVCFS6hVyEfNCkNScMRM01tKh0xQBFNTm8uUWF/FTMmOlJFHC1VUSaKOyUNyEEDKclTIRVZJQlJTSEtTVLy+vK5CVllDS1O3t7Owsra7vrFLV11IRUyvt8Cyt7TCwkhGTE1OUk9DobTAsamgqrS5tLdLV1xIRUyspZTEqbHGVEhITElCUk9DO5JYT0VMSbXCtK+3xlRMUExJQpa4ubTBuYumv71CUk9DS1RUSEVMSUJST0NLU1RIRUxJQlJPQ0uHVUhFoEpCUlJDYONUSEVWyULSWYPL0yDIhUwmglJQCouTVBQFDEqDU1BDzJRVSCKMSUQZj4NLGpQJRhjJA1OQBExT1UlHTA+DlE9EzVVUJYVMTAMSUUNSVJRIWk1JRJMQRUs0lEvFE0qCUhbEzFZbioVMUISTU0/NlFjPRw9MA5RSQ1JWF0uGz0xC2RIGTinWy0pSTIZSkkbLU3GKRU8pQk7OCouTVA+FDUoOEg9EjJRYSMbNTUIvj0NNGRSMRVJKh1JsRMtTMUhGTGCCWM9JjZhUj8eRSV9UUERiE1jIjA+OSNlSCU5r1MtLYwlF0paGi1ObiwZSkMUWVY/OFFoPSBJMSZaVSSFW2E9G0E9CmVMJTtQYTkUTjYhYUMhOU2pMSlSPRpZPxk/TVKWITExk1E9D7pVOxyfMSUK1EDvKGpSIRROJA1MbAwtUlUlMTMqDWU8gi1NWDgWQSUhTlENoVNRIIkxKQmnPT8tZlo1Fk8uJUmxFTFRryEnMkEUYUluL1llfBU/JiZWPQ5KWFU6MjxBIntIEURpXDkhTjYhYJUbPWlXMS0yQRhhSxA9ZVA+Jkk9D11JDYVdZUItQjULVU8NLsJdISG7LQlLyxUXSWoqKTJAEmU9gTVRVXwVQyYkVlEnSVhpLXczMSGkPRsual4hFk4wDWJaGElmgywZSEEUYUkqPmVoeSNBQQ9ZVQ5JXGkvGEE9CGZOJUVTZS0ViTUdalUePU9dMxUymhVJSZc1TVOuHRsgk0k9DrtRGxwtMkUJ3UENLMJRIRmtJwlJwQ0tTWE9FTEm1wrSvt8ZUTEpMSUK/tLHAU1hPRUxJlrOxr7DGVExQTElCs7Onnsi2laq6vkJWbUNLU4HGgqeXq8DDqLm3w2iOur2nxMG4u8e5uqKJx29yT0dQU1RIsq2ysFJTTEtTVKmpsJmjxLCwS1dYSEVMt6u+T0dcU1RImMG5ssHBt7C3dJu1sbWuxU9HXVNUSJiPm4uio6KblKaJkquSkJieQ09UVEhFTExCUk9DS1NEh0lTSUJSwre9vMKvRVBWQlJPmL64dJu1sbWujG9rS1dXSEVMcmJSU0hLU1S2prmuQlZiQ0tTp4uXlZmWsZ+EnZShp5SamIiYT0dYU1RIirqur8tvlru4wLS4TE1NUk9DvpzCvKq+u7fCw0NPWlRIRbW5o7vBtktXY0hFTJCnxpSxsMDNkKq+uKfFT0dRU1RIta2ytMVPR1tTVEiuur2nxMG4u8enuKq4tbVSU0lLU1Srra22slJTTEtTVKutrbuQs7yoS1ddSEVMvLK3u6+WuM1ISV5JQlKYsb+4xrq6vL1ipb+ot7+OaEVQTEJST2NzU1haRUxJh8C0sMRzm6m1bIyuwcKovcZUTE9MSULFlqS7lsC3uLFJRmNPQ0u6tbiIuLi1t8G2n7TGr6rASUZlT0NLurW4iLi4tbfBtpnCqKm3s662UlNbS1NUiamwmbTBsqi+xqe4qri1hbO7r620t7NFTUlCUqJES1OnSUVMS0JYVUNLU9lIRUzVQpJQQ0xTVIhGzEnfkk9FalPUSEZMSUJWXENLU6S6tK+utcWis7C/wEhFTElCU09DS1RUSEVMSUJST0NLU1RIRUxJQlNPQ0tTVEhFTElCUk9DS1NUSEVMSUKoUENLvlVIRU9JTY9PQ0saVAhFUoqCUlZEi1WsSMZNYMJfzwrLk1RPBoxKCVLQRCZTVEhczEvCE09ES1qViUVhSkJUkERMUzVIRswQg5NPCszUV1THDUzCVM9DaJXUSSWMR8EZD4RLWlUKRRNJw1MqQ0tTa4hJzBACklBKDJRUj0YOSUmTUEVSlJZKXUzKQ2nPRcsUVElFU4qDUmRES1WVSUZMKkJTzwqMlFQPxs1MTtQQRstV1EhijslDMo9ByhrUikVTCoJTFkPMVC9IRUxgwlTPBEtUVE+GjUlXU09FjFRVSCZMSsIZkIRLGtXJSFjLA1XPRctTcYrFTSmCUM5iS9NUU0VMSUZXT0NLx7mpskxNSVJPQ7jMnK23u0lGYk9DS7zCvKq+u7fCw5a7uMC0uExNR1JPQ7m0wa1FT0lCUk9DS0OTTExMSULFv6i3v8dISVdJQlKTrMG8wq2Irby2UlNUS1NUr6a8jK7Bwqi9xqipt7OutlJTTEtTVKutrbuQs7yoS1daSEVMvLK3u69LV2dIRUywo8KSr7rGubq4mriWs8GqsMdUSEVMSUNST0NLU1RIRUxJQlJPQ0tTVEhFTEmvU09D7VRUSEZMTX9TT0OW01dI0MzJQhVPw0vdFIjG1omD1PODy1OeyMXM1MLSTwZL01TSBY3KzFKRxe+T1EiPzEnF3c/DSxZUyEXWyYTT2YOM1fiIxUyTwtLTzsvTVAtFzEnMUpLE1ZOXyumMyUKcz8PQ3tTIRQ9JwlLZA47U3oiIzu2C0k+Ny1Pb08XMSQVSz0PVk5jJz4yMxPaPw0ud1EjN18nCUhJDy1PeCInN00KU0eeL01SSxUzSzdLPQw5T1EjPjI7D3M+IzfeUyEWWyULc2sPLUxdIxUzTQpjQzUuV1uyFzEmM0s/O1tPUSAhMyULcz4nM3dSNx/CJwlKZw8vf38jFTAxC0k/NS5rV0sWRy+aSz0OV09TV0MzJQhVPw0vd1I/G1smH1PODy1OeyMXa1MLSTwZL01TSRZTKzJKSxe+T1EiPzMnR3c/DSxZUyEXWyYrT2YOO1fiIxUyTwtLfTYtT1JOFUEnNUtBDDlPUSM/MEtTcTw3e3dQS2daJhdTzg8tTnshF3tRC008GS9NU0kUX28ySGtbV0x/cz8yOxPaPw0ud1Mja10nDUhJDy1PeSBHe04Ie4s3LHujSxZHL5pLPQ5XT1N/QTMpCFU/DS90UFNfWSQzl2cMV596Ihs7tgtJPjctT7dNFzUkFUs9D1ZMh2s/MFtXczw7f3ZSLx/CJwlKZw0vt30jGTAxC0k/NiyDm0kUa3MzSGtfVk5XK6YzJQpzPw+beVMlFD0nCUtnDGeXeCBPf08Id483LmNbshcxJjNLP39ZT1UgITMlC3M8R3d0UFtjWyQ3m2cOQ1fiIxUyTwlLtzkvUVAtFzEnM0h7V1ZMf28/MFNbcT4XN95TIRZbJwvDaQ8xTF0jFTNPCIeHNix7n0sUX3cxSn8Xvk9RIj8zJ4d1PxEsWVMhF1skS5NkDGebeyBDg08KX0eeL01SSxczpzVLQQw5T1EjPTBrU3E8N3t2UGdnWiYPU84PLU57Ixe3UQtNPBkvTVNIFHdvMUiHW1dMf3M/MjsT2j8NLndRI6NdJw1ISQ8tT3sgX3tNCIOLNyx7o0oWPy+aSz0OV09Ts0EzKQhVPw0vdVBvX1okV5dnDFufeyIrO7YLST43L0/nTRc1JBVLPQ9UTJ9rPDBfV3M8O391UisfwicJSmcNL+t9IxkwMQtJPzYsn5tJFGtzM0iPX1dOZyumMyUKcz0PzXZTI1pcJRVLaw8tTF0jFTNOCJ+HNi5TW7IXMSYzST+3W09RICEzJQtwPGN3dlInH8InCUpnDS/7fyMVMDELST82LKebShY3L5pLPQ5XTVPTQzMlCFU/DS92UHtfWSYTU84PLU57IRfnUwtJPBkvTVNJFI9vMkpDF75PUSI/Mye/dz8NLFlTIRdZJFeTZg4zV+IjFTJPC0v3Oy9NUC0XMScwSJtXVk5XK6YzJQpzPQ/re1MhFD0nCUtmDI+XeiIbO7YLST43LUwTTxcxJBVLPQ9UTLNrPjIrE9o/DS53USPbXycJSEkPLU94ICt7TgpPR54vTVJLFTPvN0s9DDlPUSM/MItTcj4bN95TIRZbJwgTaw8tTF0jFTNNCLOHNi5TW7IXMSYzSz/bW09RICEzJQtzPHd3dlInH8InCUpnDywffyMVMDELST81LLubShY3L5pLPQ5XT1P3QzMlCFU/DS93UI9fWiYPU84PLU57IxQJTgtL4YkvTVLdFTElGY09DS7q1uIi4uLW3wbaftMavqsBJRlhPQ0uUv6mxtUlGWE9DS8bErbG4SUZjT0NLlL+psbWcqrOzssKXtbaosUlGW09DS8bErbG4lKfLT0dNU1RIl0xNSlJPQ4y/vbu5rbtCVlhDS1Ocraawq7fGw0NPVVRIRaNJRlhPQ0uXvamzrUlGYE9DS5e9qbOtnae+tLO6xchISVNJQlKYtbC/valFUFdCUk+MvbjAsaaTqrbBw7bAU1hKRUxJk1JTR0tTVJKmxElGYE9DS521wJGxqrKlw7W0vrlISVJJQlKZpMS2uUhJXElCUpmkxLa5nLSgsaeluqywxlRMTExJQp+wsra0vUhJYUlCUpykur61sZq6vLazsa+wmsa3vMCxQlZaQ0tTobezt667nbixslNYWUVMSY/Bva6wzJ+xs7OXq7+xuL5TWEpFTEmHUlNMS1NUmKa6vaq3vrFLV2ZIRUyZo8DDq7DCwqeRsaqylLC2s1NYTkVMSZLBv7PEU1haRUxJksG/s8Sbubq0tayFurC1srhUTEtMSUKjxKy5wVRMTExJQqPErLnBmUhJVElCUqesua28qbRMTU9ST0OjuMKira24lcm0qLtTWE9FTEmOt7SWtMFUTFNMSUK0u6y5t8G3s7e6tsm+Q09YVEhFkrK8zE9HXlNUSIu1w7yiuKi9tr22rJ+9tLu6qEtXZ0hFTLCjwpKvusa5uriauJazwaqwx1RMTUxJQpOwt73CzJlFUE9CUk+ms7TBuEVQUEJST4Ssx8a3vUxNSFJPQ720wq+qTExCUk9DS5PjiElWSUJSv7W6vae4qrGtQlVPQ0tTVAjXjE1KUk9DksW1r6a/jkJWVkNLU5u6prOqtVJSQ0tTVEgFzolFUk9DS1OU54VQVEJST4q9tMqtuJm4uLdPR1JTVEiMvqq4t8JDTlNUSEVM2bySU05LU1SQqq+qtLu8mLfHVExNTElCmrSmrMW9tUVQXkJST42sxcqps5WfhsSwqrrBp7y3tbSnUlNMS1NUkqa+v6PAmJlLVlRIRUxJUtqPR11TVEiPrbu4s72MoZa1vKavtbvFvENOU1RIRUyZxpJTS0tTVJOtrcOrypRDT1pUSEWXsaPMuLtLVlRIRUxJYt6PR1dTVEiwtKq8u8eot8LCr0VQVkJST4+wtcCps6+crruzqEtXXEhFTJWntLukubZUTFNMSUKetKW3tMKrmLiyprecQ09aVEhFo5arv7imS1dlSEVMlafBvaSluMKxubSLrrOzqEtXWkhFTJWnwb2kS1dcSEVMnoilu6S+u1RMTkxJQp+wr7u7vbyqTExCUk9DS3PwiElhSUJSoai5uL+8tLqcrruyqIzBuIyur65CVlhDS1OmrbOxtLbBvUNOU1RIRUxpvpJTWEtTVJuqtr6jwLiEvbbIsaiNvLWzxK+/U1hQRUxJlbe5uKzBvUhJW0lCUqKrsMGnsKawuLmWsLazU1hNRUxJlbq0sUtWVEhFTEk6049HVlNUSJe7rK23w43AwMRISVVJQlKjtbTGyKmzrUlGXE9DS8bAqbi0jKPFw0NPXlRIRaC7u8CzpLi4xq1FT0lCUk9D8+mUTFVMSUK7vbewxca9tcCcsre7r75TWFJFTEmNs8OkvbzCqZdMTUtST0OWtMipt7W3o1JTVUtTVI+muLKxm7Oyt6K6jLq+qrC2T0dRU1RIjK21q8FPR1VTVEiIvri5xcOyvcBUTFJMSUKYuKevv7mbubWsrcVPR1FTVEiJvqqrwE9HWFNUSIauvLG+xLewrbm6tExNR1JPQ5nIwr1FUFlCUk+Ws7jCm7mtt6anvay/uLhISVdJQlKktbLCyJu8rbl0UlNJS1NUnbezuLZSU1ZLU1SJsaaqqrPBkbDHvK23k7ujxb9DT1xUSEWZqq7MsKusxVRMT0xJQpiwr7e4wpezsUlGWk9DS561urm0vrVSU15LU1SYprq9qre+saqaxqmzsJyty7Wkt7+zkrq5uUJWVkNLU6qpt8G8k1JTSUtTVJ6mvr61UlNXS1NUi6a1va7LvYSuuL22ubSuisG7qEtXXEhFTIyju8OvxMFUTFtMSUKfuLa+mcO6ucG3p5TEr7e4yJyuua5CVltDS1Ohsbi/j7HEw7i5uFRMVExJQpu9qbTBvbyqkL60t8K2S1dcSEVMoKPExqyuvlRMTUxJQp7EprS0wppFUFBCUk+PwLa9qbNMSUJST0NLU1RIRUxJQlJPQ0tTVEhFTElC91BDSxdVSEVPSXgTT0NLHlTIWE2KQlKQxEtT1QlFTApDU09EjVRUicdNScMUUEMMVVZIRo9LQpPSRUvUF0pFDUxFUlCHTlOVzEhMygZVTwRPV1RJilBJg9dTQ8wYWEgGUU5CU5VIS5TaTUXND0dSEElRU1WPS0yKyVhPxBJZVAlMU0lDmlZDjNtbSMYUUEITV0tLVJ1QRY3SSlLQDFNTFVFOTEqMW0+E1VxUyQ9VSQNcWUNMnl5IhtdTQtMaTUsUX1NFTZVNUpDPVlPVFFBMCk5eT0SYX1SJ0lhJJpJPXEwUYEiGTVZC05BQSxTVVUVNC09SkEVZU9WKU0wKxGBPRA5hVImIUEnDVV5DDJZjSEbQWEKTE1JL1FhYRQ2NUFJQiFtTlc1VTMoHYk8EUGRUSYtdSYPYYEPMGWVIBlJbQlOWVUuU21pFzRBUUhBKXlNVkFhMispfT8TTZlQJDV9JQ1tjQ4ycaEjG1V1CExhXS1ReXUWNU0pS0I1gUxXSWkxKDWdPhFZpVMmQYkkD3WVDTB9qSIZYYELTm1pLFOBfRU0WWVKQUGNTOMhFZUqDak+EzGtUyQZkSQNTaENMlW1Ihs5iQtMRXEsUVmJFTcxFUpBGZVPVi19MCsVbT0TPbVQsBcxPTBJPwxaTV0gPjKT4HM+RAh1UJPwWyR4KGUMoDB7IIgYTQjAKDcsxEBJFKwYM0i4BFVM0Bw/MKQIcTyQMXRTI+jFJQlJZA8sVXohFD1PC0hIoi1NUUgVMDQPScUNSlLVIYs3JQpMQZUvZVatF04qlVRDEblMqCMZNUwLSEwRLd1RPRq5Jg5NrQ2jUVEmLja1Cr9DDS9TVa0UiycNTWQPLGhVIaUxQQ7RPhMxuVGXGTEqDE3NDIZPVSU8MSQsZT6VLVFVjRSnJQlNQhHBTKkjGTVMCUhkKS7VUSQZnSR/ST0RMFHlIG0zKQ1wPQxYUVGxFU0qkUpAEZ1NxyUVNioN4T8oMtlQJxnJJGBLQRFUTVBQGTG1CWVClS5RVY0VpykJTkERyUyqIxk1TAtIcYkvTVOVFTElGYE9DS8W1sbOuuLmVvq+6xcdISVRJQlJyhICFlXqGTE1KUk9DbouaioiEj0JWV0NLU3eNdZKPiJhPR1NTVEhogIF1loeFS1dcSEVMbHaKk3SOllRMTUxJQnWVc4ODjHhFUFFCUk9mg5SGiop+SUZaT0NLdpl+ioKPg1JTS0tTVGuIg3p3ioRDT1tUSEVvf4SKlHV+U1hQRUxJZYmViZGXiEhJVElCUnKJgJeZinhMTUpST0NulJiOi36PQlZXQ0tTd35+goJ4i09HU1NUSGiSeYiYlYlLV1xIRUxsdYSSh36FVExNTElCdZN2j4aYe0VQUUJST2aPhYqBdpFJRlpPQ0t2mol9fIB0UlNLS1NUa4qRjnqTkENPW1RIRW+PiJiViHtTWFBFTEllmJWEe4qVSElUSUJScoiQi4aNikxNSlJPQ26UhH13fo1CVldDS1N3i4mBjHeVT0dTU1RIaH2Cc4uGc0tXXEhFTGyFlod4fplUTE1MSUJ1kYeNioqKRVBRQlJPZn6Wlnt8fUlGWk9DS3aagIuEj4hSU0tLU1RriHyMcpV/Q09bVEhFb4B5iod8hFNYUEVMSWWYlYh/lYlISVRJQlJyhXuWiIyKTE1KUk9DbpeVf3WQf0JWV0NLU3eBeIN5hpRPR1NTVEhojox6mIeJS1dcSEVMbHSYg4l/mVRMTUxJQnWIfH6Fl4tFUFFCUk9mgpWKgIqRSUZaT0NLdpiAh5KNelJTS0tTVGuLkoCIh39DT1tUSEVvj3KYh4mRU1hQRUxJZZaUhYOLi0hJVElCUnKJjJmEjXtMTUpST0NumI2Be4OKQlZXQ0tTd3p3hIt0hE9HU1NUSGiSj3iLkXdLV1xIRUxsiJiVhI6XVExNTElCdZF1fYWGekVQUUJST2aPl5V4iZBJRlpPQ0t2mo6LjY+DUlNLS1NUa4aQjXqXhUNPW1RIRW+Acop/fHtTWFBFTElllpCEgIWESElUSUJScnuNh4l5eExNSlJPQ26UjYl+jYJCVldDS1N3jouSj4iYT0dTU1RIaJJ5h4iHhktXXEhFTGx2g4V8kIRUTE1MSUJ1lYmQh5l5RVBRQlJPZpGUmomJfklGWk9DS3aWiXqBjXVSU0tLU1RrfYOMh5iQQ09bVEhFb493mISHjlNYUEVMSWWYlYmDl5dISVRJQlJydXuVhomGTE1KUk9DboyEjYqFeUJWV0NLU3eBho+NdYRPR1NTVEhoko+EiJJ0S1dcSEVMbHaClHOPg1RMTUxJQnWViZGImY1FUFFCUk9mkYiafYuBSUZaT0NLdpqOe399eVJTS0tTVGuJfot2ipJDT1tUSEVvfneIkXWRU1hQRUxJZYaFe32ViEhJVElCUnKJkZiWi4lMTUpST0NumZWNh5CAQlZXQ0tTd456ko+Ik09HU1NUSGiEgIWXlIVLV1xIRUxsdJeHhYCKVExNTElCdZV3jIeKeEVQUUJST2aPloV8eI9JRlpPQ0t2mo6IfIyEUlNLS1NUa3uAgneXk0NPW1RIRW9/eJWThIxTWFBFTEllmJWIkZeJSElUSUJScoeNioSBeExNSlJPQ26Umo2KkY5CVldDS1N3jnWSj4iCT0dTU1RIaJKPiIKVeEtXXEhFTGyIlpV4kIlUTE1MSUJ1lYmPmJWMRVBRQlJPZoGUiYmIkElGWk9DS3aajomNi3tSU0tLU1Rri5KOdpWDQ09bVEhFb4+ImJWJe1NYUEVMSWWUf4h7mIpISVRJQlJyfIOZloF9TE1KUk9DboSZgXWSj0JWV0NLU3eMiJCMhpVPR1NTVEhoko+Ik5VzS1dcSEVMbHqCh3ODg1RMTUxJQnWViXyHjXtFUFFCUk9mgJmNjYZ8SUZZT0NLtsO0tL68QlZVQ0tTmbq3u7tCVldDS1N3jot8eXKCT0dSU1RIjbGqprfBQ09aVEhFmLijtrSnS1dcSEVMbHuLiHyBiVRMSkxJQqfCqL1TWFBFTElllZJ2foaHSElUSUJSpqi3tsO1qkxNSlJPQ26MjYuIko9CVldDS1OVtK6/vaPET0dTU1RIaH99hJWQhktXWUhFTJejv7hDT1tUSEVveXKIhXyEU1hQRUxJkLuzpLe4uUhJVElCUnJ8hImKe3hMTUpST0OYwsavprqqQlZXQ0tTd357fHmFlU9HUlNUSJGxrpW7vUNPW1RIRW+PiIuIc3tTWExFTEmOx8dDT1tUSEVvj4iYlXN7U1hNRUxJlbq0sUtXXEhFTGxygoJ2hIxUTExMSUKlvrWsvrVISVRJQlJyiZGWl3h1TE1OUk9DvbTCrLS5jLG+vrVLV2RIRUy3q8DDqLm3w56qvryrwb1DT2FUSEWuvrC2u6ihuMa7rru3QlZYQ0tTt7exu7uWs7ZDT1hUSEW0rrTBT0dcU1RIga6Hfri+sb9zt7exu7t/dE9HTlNUSGeKSUZZT0NLwM2Qqr64QlZYQ0tTt7Cmvpejv7RDT19USEWIeKjBvbeJj4Oqg0xNR1JPQ8DGubpFUE1CUk9/rZFUTE1MSUKZtLegxrm6RVBQQlJPq7C0uK23TE1kUk9Da66isbPArrC2vmOYuMe7qrqwp8SsfYeCurezwId+gbGBS1dgSEVMr6O7u5CwxseprLFJRnFPQ0tzmqmuuK6mcsOya5/DqalsnrW3wX1rj4OutLq9gHJPR1lTVEixu6qmt7OQsMbHqayxSUZ2T0NLc6C3prCupnKRuLm3wK1ljbxilbekuMO9t7OGaX6BtbK5x5JISVtJQlLGqLe2w7Wqma61xbCqsFNYaUVMSWKTxLezuMK8rq+qtrezY6DGubp/bIVxuL6xv5GQd6eKSUZdT0NLc45xZZG3rMHIZEtXY0hFTKyxwMOkrsehrbi/qqm3T0emU1RIZZWvYsu+uGu1ubSuwq5ixresvnO9u2Wtt2K3wbW6xXSrtLq9o7XDY4eCurezwIdijrWyucd0q7S4uLSPcWZ/hIqBin1rgHKZpLS+w7pmbIVxuL6xv5GQd6eKSURST0MCVFRI/k1JQlJPR1VTVEhLTIlCmI8DS5rUCEXNCUJSFUOLUylIxU2mwtJQSotTVGdFTEphUs9DT1NUSElaSUJSwaS0wba3vI+4rsHBtktXWUhFTLajxrdDT1pUSEW+qrC2vrBLVlRIRUxJQkKOQ0tTVEpFTElDUk9DS1NUSEVMSUJST0NLU1RIRQhKQlILREtTVUhJU0lCUpBDS1PaiIVM0EJSUATLU1SeBcxJoVJPRGpT1EhITElCVl1DS1OQrrS6vWK1vq+6xZFqRVBQQlJPprq/w7q4TE1FUk9DbZFUSEVMSUNST0NMU1RIRUxJQlJPQ0tTVEhFTElDUk9DS1NUSEVMSUJST0NLU1RIRUxJCFNPQx1UVEhHTFhmUk9D0VOUSMyMiUMYz4NLGhQIRilJwlLsg0tT2kiFTNBCk1Dgi9NUzkWMSclSkETok9RIy0yJQtlPhEzwlMhF8UlCUhCDTFNVyUZMnkPST8TMVFRpBk7JThQQQ8tV1EsFTslFb9FDTZNWyEbNS0RSD0VLVDHKxUxKhVRPg05TWMnITkkY0tJHa9RQxyRMSUNxT8NLXlRIRVBOQlJPsKzHvEhJV0lCUsGkubfDtbixrqZSU0ZLU1S3uExNR1JPQ7+8wa1FUFBCUk+1rMG4t7JMTUNST0NLVlRIRUxJQkKOR09TVEi4watCVmBDS1OQqoOIr7HAw2OuwsC3t4lrQlZSQ0tTdoZFUFVCUk9/ernDtrmKhXG0jUNMU1RIDk1JQh1QQ0tTVExPTElCWE+DS5mUCEWTyQJS0ANLUxpIhUweQtJQoMvTVU+FTElhUk9EalPUSElMSUJWXUNLU8aprrqrscmSsrfCxrtFUE5CUk+wrMe8SElTSUJSwaS5t8O1RU9JQlJPQ0tDk0hFTElEUk9DTFNUSEVMSUJST0NLU1RIRUxJQlJQQ0tTVEhFTElCUk9DS1NUSEVMSUJSI0RLUzFJRUxLQlx2Q0tTbEgFTGDCV8/Ji5NUD8WMSUkTj0MhU9VJ4oxJQ9iPg0sa1IhFU0qDUpaEjFMqiMZN5oJSUMmLk1QPxYxJTtOQQ8wUVUgMTYtCU5FFS5rWikXiikRVbMTLVCpIxk3mglJQWktW1GAFDklZ0lHD0ZOUSAzMiUJZUIZLmpWLRSKJw1Psg0tU2oiFTBDCkk9KzJZUHkXNSt+ST0RqU9RIVExJQlZXQ0tTy62xr7ivt09HUVNUSLW+srDGT0dSU1RIrbGqprfBQ09iVEhFw66utb6wsKC5u7itsKdSU1FLU1S0tK2tp7acqL7Gta+qTE1HUk9Ds7jGt0VQWUJST5a/xb22rKC4lLO4sa3Cy0hJYUlCUm+RtMHIrbOwuGKotLW+vMO2ZcppQlZfQ0tTwrGzwK6wtr6ZsMXHsbS6SUZkT0NLc5a9s7C1p3KlqL28w7ZlymlCVl1DS1O2vbOwtaeotLW+vMO2RVBUQlJPpMDHvK6mtbWntk9HV1NUSKutsq6ftLa+tLutRVBOQlJPuL64xkhJW0lCUrKyuce1q7mZrrXFsKqwU1RIRUxKQlJPQ0tTVEhFTElCUk9DS1NUSEVMKkNSTzFMU1RSRVluQlJPTYtT1FLFzMlMEk/EVVPVydGOikJSUsNL8NbIRlbJRNRZg0zW8IpFT2BCUs/ETVVUUsXOzN6Uz0ZiU1TIxk5LQlzPxc/vlkhJY0lC0tBFTVNeyEfR5YTSU1pLU9TLR0xJTNLRyNGVl0jMzoxHHhGGSzDWSEYTywJX1gVNWO+KRUxgQlLPxk1TVFLFTs9MUpHLalPUSFZMSUJWVENLU8e0tMBJRlhPQ0vFtbassUlGV09DS8G1tapMTUdST0O/zMStRVBQQlJPtr/FvbasTE1PUk9Dnr/DvJm7nLbEuLGyU1hORUxJpcG7sr1TWE5FTEm1wrSor1NXSEVMSUJST0NPWlRIRb6qprvEtktXWkhFTK2nvrC8S1deSEVMrLG+u6y+vMO2RVBQQlJPs724x625TE1MUk9Dnr69tLGfsbHGT0dTU1RIlZ6OlZejlktXWUhFTI2jxrBDT1xUSEW4qrXGkqS+x1RIRUxJQ1JPQ0tTVEhFTElCUk9DS1NUSEVMSTJTT0NHVFRIR0xPbFJPQ6ZTVEhczFLC3k+DS/DUSEbnSUJSZsNT09qIhUwJQtJP4MtTVQ/FjElcEk9EYlNbyMwMiUJqT4RMalRJxdKJg1IWw4xTVEnFTOaC0lBaS1jUzwWMSVoSkERik1XIy4yKQhnPhEtaVQpFk4oEUuyDS1VrCEfM0AKST1vLlVVfhU3JyJKQQxLTlUhMTQtCmZAFS/CUSEdjyULS1YOMUxvIhkzmglJQYkvTVFNFTElGWE9DS6W5qanFSUZeT0NLmrm8ibW8trO9prBTWE5FTEm0s72qsFNYTUVMSbbLv6hLV11IRUy9o8S2qL+4uEhJVklCUpKkvsenuKq4tUJWVENLU8e0tMBJRltPQ0u2vbqowbWjxE9HTVNUSL1MTURST0PFU1hPRUxJrru9qKzFVEhFTElDUk9DS1NUSEVMSUJST0NLU1RIRUxJP1NPQ2NVVEhHTFS5Uk9DplNUSFwMZcLeT4NL8NRIRudJQlJmA2bT2oiFTORCUk9aS27UzsWMSQJSz0Po01RJDAyJQmwPQ0xq1GHF00mDUmeDjFRriEzMz8KTTwkLlFQPRQ5KSROPQ5KUlkjMzYtCGBCESxpVCkjpyUJVFYOLUyAIB02PQ5VPw0zTVKXGTErCU09EKFNVSsuNjELZ0IZO2hWLSGTJw1Nmw17T2kmJTBCDlk9KzZdWjweQS9+TT0XRlJlI4s3JQlzPRNVqlFnF00mDUmfDkFRryFXM0AKXT95LU1RfRVHJyJKPQ9cTlklLTYxCklDDS3DVSEaTCodS7ENMVZqJiEyQwxVRigwWVmCFTUpZElvDkVSYSMyNjUIZ0AdMWhYMRqmKQlSVhJBTscnFTFOCU9lay13UzkWNSQlSlUPo01RJXYyPQ2nPQ8vaVI5F54lCUmYDTNPbSItMYcKYUFrLU9TJBVJJ3ZJPQ2KTVMjLDIpC2U+FTBlUj0VTiolSlgSLU9uJh0wQw5RPQ01TVSXFTExIk49DVxSWSstNjEISUMNL8NVIRgxKwlNsRExVGomITBDDFVIKDBZXYAVNS1kSUMMRVJhITI6NQpnRB03aFgxHKYpCVBWEkFMxycVMUwJT2WJL01RmRUxJRlhPQ0uluampxUlGXk9DS8GYsbu1t6eiwaivU1hURUxJibfDh7TGyKmzr65CVlVDS1PGqbOzrkJWVENLU8jBtbFJRltPQ0u2vbqowbWjxE9HVFNUSIi1u6W+tJaeU1hNRUxJr7PDq0tXWUhFTLG3ubRDT1pUSEW+qqa7xLZLV1pIRUytp76wvEtXXEhFTLm0t7OsrsdUTE5MSUKWn5esxbutuUxNTFJPQ56+vbSxn7Gxxk9HUlNUSJigipanokNPX1RIRZ+ehZWUlp6ynJGZTE1MUk9DjrTHvJi8rq6+T0dQU1RIuLi4tlJTRUtTVMBFUEtCUk+9S1ddSEVMtaPFw4asxshISVlJQlKWqL+nvauwj7i3wMNDT1pUSEW4srC3sLVLV1tIRUy5tLfCqL9TWFJFTEmlwbuvtMa9t7NMTUlST0O5yMGqqr5JQ1NSQ0tTVEhFTElGWU9DS5+9tqqfnEJWVUNLU8e4qrGtQlJPQ0tUVEhFTElCUk9DS1NUSEVMSUJST0NLbVZIRYRLQlJSQ1nAVEhFp0lCUmaDZdMgSIVMJsJSUB5LU1RfhWXJCJKPQ0tU1EgizElDWdCDS21UyUZjCVnSFQOLUxtIBk0kQlJPWgtp1CSFTEpZUk/DDJNVSEzNikJqD4RNahRQxWUJwtRmg0/TWkmGTFVDlFHDTNNUD4aOSUnUkUOS1ZRIzA6LQm9QxE5tlMnHY4lU0mnDzFRrCFbMD0OVT0qNllSPx49LyRSSRSiUVEpcjFnCWFCES19VjEfMSsJSFoSNU1vKh0yQxJJPyg2VVGVGzUxcktDFYhNhyAtNjEJZkYZLmtaLR9MLhVQshEtVa4hRzFDDk09bi5dWX8VXyUjTkEOS1JhIYs1JQ2oPh01q1EjFT0rCUmqES1NrSEXMUMOWT4rMl1RgRRFLWZJTw5FUlUiRjQ5EElDDS1qWikWTy4RS1sWLUxoKh0xPxZdPg05TVqVGzU1c0tDFYtNZyEtOjEKZkYZL2tYLRxMLBVRshUtVa0hJzI9Dk0+PDBhWCEbMSUmUkUOS1ZZIzM6JQhkRhUuwVclIZsnD1GbDTNNuCMZNYEJTz0lNllSPh49JydQSRRIVF0pijklEcU/DS2tUSEVQT0JST5WwtLjBRVBVQlJPirDHmLG4wKqwtbRDT1lUSEW+qrC5tENPVlRIRauQQlZWQ0tTwr6Vvq6mUlJDS1NUSEU8iEZXT0NLx824qkxNS1JPQ668xqu6uKq0UlNeS1NUj6rAjKvEsri3tMaJlJGMo8XDk7rGvbyuu7dCVlVDS1O4rbGtwkJWVkNLU8apqbW+tVJTSUtTVLu1sa6mUlNNS1NUi6a/vZXCtK+3U1hNRUxJtb6+t0tXVkhFTMFCVlFDS1POSElkSUJSlqi/lr26qMG1o8SSpL7HpLe4tb2rwb1DT1pUSEW4srC3sLVLV15IRUyssb67rL68w7ZFUFBCUk+xwMC2rbdMSkNWY0NLU5utuZiysLeSpL7HpLe4tb2rwb1DT1pUSEW5woq3wbJLV2tIRUyQp8abrLm4lZeKj6q1xp+yvrzIsbS6SUJST0NMU1RIRUxJQlJPQ0tTVEhFTElCUk9DhVVUSIFOSUJUT0lVU1RIy0yJQhmPg0tTVchFksqCUuzDS1XviEVMYEJSz8QLU1TnRUxKYVLPQ09TVEhJU0lCUraov5fBr0VQUEJST7a/xb22rExNSVJPQ7jMnK23u0lFUk9DS1NUSEVMSUJSUENLU1RIRUxJQlJPQ0tTVEhFTElCUo1FS1OUSkVMSkJWVUNLU5pIhUyVghJPCsuTVKZFzEqhUk9DalPUSEhMSUJWVkNLU8HBjbG7sVJTUEtTVI+qwJyyt7uvj7TIqUVQTkJST7a3wshIRUxJQlNPQ0tTVEhFTElCUk9DS1NUSEVMSUKUUUNLl1ZIRU1JRl1PQ0uZVIhFmIkCUhbDi1OxyMVNzwKST5vL01RfRUzJhZJPQ45T1EikTElDcU/DS1dUSEVQUEJST7DEm7m6tExNTlJPQ460wp24sZyyt7uvS1dZSEVMvK7Bw0NPWVRIRZ6Og5aoQ0tTVEhGTElCUk9DS1NUSEVMSUJST0NLU1RIi05JQppRQ0tUVEtTTElCnk+DS7DUSEaTiQJSaINL1GtIRsyVQpJPoMtTVY8FDEma0g9DYlNUyIiMSUKVT8NLslRIRmtJwlJTQ0tTWE1FTEmGs8OkS1daSEVMtafItK9LVlRIRUxJQlJPR1VTVEiowbu0t723jrdUSEVMSUJST0NLU1RIRUxJQlJPQ0tTVEhFlktCUpxFS1NWSElYSUJS2kNMUxpIhUzTghJQCcuTVNIFDEoIUpBD1ZMVSQvMikLcDwRMGpRIRitJQlNuQ8tTXEhFTE1FUk9DqqRUTEdMSUKjT0dOU1RIpKNJRlRPQ0uqVExITElCsZRDT1VUSEWRSUZVT0NLsqZISU5JQlKhQ0tTVEhGTElCUk9DS1NUSEVMSUJST0NLU1RIlU5JQqlRQ0tVVFNtTElCXI9Dy9pUiEXYiYJTUMRLU5UJRUzmglJRykuTVM8FjErOUpBETJRVSIbNSkLYEIRLFlXIRemJQlXWQ4tT2wiFTdVCk1BETFVUiYZOScjTkUMMFFZIRk5MQpORRkvUFkpF6YnCVtZDi1PbCIVN1UKTUETMVlSJBk9JyNORQwwUVkhGTkxCk5FGS9QWSkXpicJW1UOPUzlIRUzmglJQYkvTVFlFTElGV09DS8C5trpMTU1ST0Ost7ibuq6Wp8DEQ09tVEhFecd/rZ2suce5tqm7aa+7vaySqJ2lgsp2YlJTR0tTVK+6tUlGW09DS7S4rJWtu6O/T0dOU1RItLpJRl9PQ0umvLe8bLarwLhjoJxUTFhMSUKlkpWUo6inlY2bg5+ukpmimo5FUE5CUk+qwLysSElOSUJSp0NPZlRIRZ+MlJufl6qjlZqGmaiVnpiGkFNXSEVMSUJST0NOU1RIRUyJ0RJSQ0tTVEiF24lGV09DS7rJsZ5MTURST0OkU1hYRUxJg7azh720y4umuLWks7KuS1RUSEWiS0JSpUVLU1RIR1BJQlJUQ0tTYEiFTGaCUlBiS9NUSUVMSUZZT0NLosKMt63AQlJPQ0tUVEhFTUlCUk9DS1NUSEVMSUJST0NLVFRIRUxJQlJPQ0tTVEhFTElCUk9DS6xWSEWyS0JSUENZzFRIRZNJglKWgwtTm8gFTKRCUk9ay2/UjgWMSc5SkEPo01RJDEyJQhmPA0walAlGWMqDUmzES1SVCUZMz0OUTwSMVVRJx05JgxRRQ8yVVkjizclEE1BGS7CUyEiSiYVS0MNOUxUISExVQ5NPYMxTVVVGkEuJU49DkpQUSoyNCkSfkAdN2VWKRQ2KRFJQxU1TlQpHTMqEVE/gTNNWpYVMSYiSkkPM01hIBgxMQl5QhEtw1UhGWUqFVJZEi1ObiQVOkIMTUZAMF1bORo5JA5NRQ0zVVkiGDktC05FFS/BVyEepiUJSlUOQU9qIikzVwpdQ4EtTVaVFTUlZElzD0RSZSJ3MykRpT1DL2ZWLRRNKCFRQBU5ToEqGTKbEUlCQTRdY1IeSSUJVT0Xo1dRJEc6PQpJSw00wVshG6YpCUtWEjlMaCYtMEEMZUkqNGlaPxxNLUpRRR1oVm0wizUlDU1FLSylVykhNC0VSm0WMU7HKRU2WhBpTz42ZVEhITEvf1M9EF9WaSIVPyUQvUcNM8JVIRdKKhVIVxJNTWoqKTFUEmlPETVxUCEfMS19UT0Uo1FRIRg5MQp5RhEuw1khGmYsLVtuFkVNUS0VO5sTSUA/NnFSISMxLH1TPROiUVEinzElCNY80ynJUyEVzSUJSU0hLU1S1qrq+QlZTQ0tTu72uTE1FUk9DusFUTFpMSUKWwaTCpbmrua23qb60ksDHwLGzsUlGV09DS5XDwJ1MTUdST0OyyL2hRVBSQlJPhbrLq7GpwLFCVU9DS1NUSJmMTUdST0OMpZuKRU9JQlJPQyvClEtFTElCUo+ji1ZUSEVMSUJST0ZLU1RIRUw5gVZZQ0tTmLqmw52nysOES1eJSEVMaWJyb2NrobW1qmxpYnJvY2tzdMRlbGlimrSkt8e8aGVsab5yb4i5uMGxqr9pg8S+uLm3dEhITElCUk9DdZNXSEVMSUJST4NOU1RIRUxJVpJTaUtTVKekq6ihsa6iqrKzp6SrqKGxrqKqsrOnpKuoobGuoqqys6ekq6hCVU9DS1NUSF2MTUlST0O0w7Wxt79JRltPQ0vBm7S0rqquxU9HVVNUSIyxvYO+u6ywxlRMTExJQr/Ii7DFw0hJVUlCUrKrrMWiqbKxSUZYT0NLp7nAuaVJRlxPQ0uhtbWqj7iuwcFDT1hUSEW5qra6T0dRU1RIq7i4scRPR1JTVEitsaquxrdDT11USEW5qrqatKS3x7xISExJQlJPQ6STWEpFTElnUlJDS1NUSIWjiUZbT0NLx8O7ub6ysLlPR15TVEiIu76wxpSxsMC9rbiNu7HHvadLVlRIRUxJgvGPRktTVEhFjK6CVltDS1OivbKurrSVvq+6xVRIRUxJQ1JPQ0tTVEhFTElCUk9DS1NUSEVMSapUT0O9VVRIR0xQfFJPQ9JTFEgMjAlCIc8DTG3UyEZjCUPS1QOLUxVIRkxKg1NPhExUVMnGTUngUs9F6lNUSFwMU8LZTwNLGpQIRRvJAlNoA0tUa0hIzNBCEk8KixNUFwUNSlzSz0RiE1XIywyJQhNPREtUVUlFjUpEUtCETFPySMVO6EJST1qLWdTPRQxJCZIPQxoTFUleDElDac9Fy9qUCkXniUJSZgNM09oIhUwKQlNPRExUVImGTUnDk1BD6VPUSuRMSUJpj0XL2pQKRedJQlJmw0zT2giFTApCU09EzFVUicZOScPTUUPpU9RK5ExJQnFPw0teVEhFUFBCUk+rsLTAvK1MTUxST0O4tMyQqq21trpPRktTVEhFTCmBVlRDS1OVmoyOSUVST0NLUzS3hU9JQlJPQ0tTVEtFTElCUs+Oi1ZUSEVMSUIijkZLU1RIRYyoglZUQ0tTuK2msElFUk9DS1NUqIVMSUJSUENLU1RIRUxJQlJPQ0tTVEhFTElCUsNFS1PRSkVMS0JackNLU9pIhUzVgpJQRMxTVIhGzEnf0k9FZNPUyVwMSsIYT4RLVJVJRY2KQ1LQxExTFclGTCdC0lEiS1NUX8VQyVwSj0Rik1bIXszJxWkPRMsZVIlFTYpDUpCETFPVSUdMCsNTTyFL01YnRUxJWdJQwxFTlUhGjUpCk9BES9SVSUUNikRSLUPLVTNIRUxoQtJPTUtTVExOTElCwJavurW1tLhMTVVST0OOwsm2uZG3p7+4qL6Uxre6uq1CVU9DS1NUiOSMTEJST0NLU1SISVFJQlKQlZKVVEtFTElCUi+yi1ZUSEVMSUJST0ZLU1RIRUw5gVVPQ0tTVIikjExCUk9DS9OfiEVMSUJTT0NLU1RIRUxJQlJPQ0tTVEhFTElC0VFDS9RWSEVNSURVT0NLlFRIRatJQlNuQ8tTVUhFTExCUk9DS3PAiEVMSUJST0NLU1RIRUxJQlJPQ0tTVEhFTMxEUk/ITVNUSUVPUUJST4lLk1SYhQxJydKPQ9ITlEnMTIpDn8/DS7JUSEZrScJSVENLU1hRRUxJmZudh5qqs59FT0lCUk9DS1OUTEpMSUK/tLHAU1hMRUxJqce4Q09YVEhFs76rqk9DS1NUSUVMSUJST0NLU1RIRUxJQlJPQ0tTVM9HTEnLVE9DTVNYUEVMSclSj0PSk5RJzMyJQ98Pg0wiVAlF2QlCU+5DS1RzSMVMTkJST0dQU1RIsrG3t1JTR0tTVK+6tUlGV09DS7rJsZ5MTEJST0NLU2iISExJQlJPQ3mTVEhFTElCUk9DS1NUSEVMSUJST0NLU1RI0U5JQvVRQ0tVVFC6TElC2I+DS9/UiEZSCoJS7MPLVNtIhk3VgpNQRMxUVOXFzErdUk9DYtNUyMsMiULtj0NLapRLxdKJglLbw4tUWgmGTObC0lDKS5RV1IWNSkPTUEPo09RJ4ExJQmnPQ8vZFIlF54lCUmZDS9PYSEVMU8JSz86LVlQTBUxJDNKRxRVTF80PzAzI3A/Dzx4USEUWSYbUGYMP2B7ICNLTAtLWDktUVBLFkMsMEhPIFVMZzg/MDszcD0POHhRIRRZJiNQZgw/YHsgI0tMC0toOC1NUEsWSywwSFcgV0xfOzwzJzh0PQ0sdlI/HFskJ1xnDDtneCEXaFAJSTw1Lm9YShRTODNISydUT1NcQDElCHA+LzR2UDMoWyQXY2QNL5B8IRUwTgpvRDYsX2RLFD8/MEk/VFhNUSA8MksQcDwfQHdQLy9YJQuUaA0tTHoiPzhOCFtQNyxba0gVM3Q0ST0MVE57KD4wNxxzPBtHdFEjaFwlCUhmDltUeyBDRE8IV1c0LU+pSxUzNTJLP2tJTlEidTJVDaU9Gy9oUk0XYiY5TUMRXU5UJUUzmglJRygueVM8FmErOUpxETJRhSIbNVkLYEJBLFlXIRemJQlXVQ5lTOUhFTOaCUlBiS9NUgUVMSUZZT0NLvLu2rsCuQlZWQ0tTwcGNsbuxUlNQS1NUj6rAnLK3u6+PtMipRVBUQlJPlqCgoZeTkZuhg09HUFNUSLOttqdSU0hLU1SurrqtQlZbQ0tTx72yubiwt8GnusdUTFBMSUKlpJCYoqKNl6t7QlZUQ0tTwLG4wElGYE9DS8bJtbK7t6fEta+sxrxISVJJQlKVr6zGvEhJUklCUsGkubq5SEhMSUJST0PEk1hQRUxJp8Cwpbe4uEhGTE1QUk9DvsjBtbS6rrS6sLa/uFRMS0xJQpm3sr7HVEtFTElCUk9DS1dbSEVMkqnAuLewU1dIRUxJQhLRg0xUWFFFTEmls7uvrbS3s0VQVEJST4yywb28qqCypb1PR1tTVEi4wbavwb2ovbW1ure1rrRSU0tLU1SKpr67q7fBQ09hVEhFv76vv76xsMXHta7ArkJWVUNLU6e1rsCuQlVPQ0tTVNDIjE1SUk9DvsjBtbS6rrS3x6usyMe8RVBRQlJPiMO7tb24wElFUk9DS1OkzIVQVkJST7bAwMG3s7G7qrewr0tXWUhFTJGns7tDTlNUSEVMKceSU1RLU1S7urm2scC0tb+4wK21u7u2UlNMS1NUnKq4rrLBwbdLV2JIRUy8t7+8srm4xqq0u7y2UlNLS1NUi7GxqrDFtENPYFRIRb++r7++sbDFwamzrUlGWk9DS5bAqbe1vbtSU1hLU1S7urm2scC0ta6/tbG3wri7s72msFNYVUVMSYW+sKy9ycPBprqsp1JTUktTVLu6ubaxwLS1vbjKsbuxSUZZT0NLpbm+rsKuQlZkQ0tTx72yubiwt8Gyr7zCr6a+u6vFvrFLV11IRUyQo8TBrL7CwkhITElCUk+D2pNYTUVMSa+3vbhLU1hTRUxJo7azlsC1oa2zwUlGbk9DS4DShaCasrDGtLGvwnSburm2scC0tb6wkcZybElGXE9DS8bJtbK7t6fEwkNPXFRIRa2tpqKwtazAVExQTElCs8S3upy7tq7ArkJWW0NLU5W9ubtpi7m9rL+4VExYTElCpZKVlKOop5WNm4OfrpKZopqORVBZQlJPhK+3qLGot4yjvrulrLa/SEZMSUL0UUNL9VZIRUxJRFZPQ0tYVEhFWEmCUmyDS1RzSMVMSkJST0dSU1RIlLqdq7W6Q0tTVEhGTElCU09DS1NUSEVMSUJST0NLU1RIRkxJQlJPQ0tTVEhFTElCUk9DS1NUSOpOSUL/UUNLVFRRa0xJQplPg0urlAhFY4lK0pbDi1ObCAVMkEITT55LU1RfRVPJiJKQQ9HTlUjiTMlCr09ES2qUTcXSCoNSD0TLVVVKR0zmw9JQ3kxTVF8FT8nJkxFFF9SWSCLNSUNsD0ROatRKxdIKhFLbRI5WW0qFTObD0lAJjJZUYAVNTFkST8PR1JdIDE2JQlJRw03wlchGrslCUjIDRNJzSMVMWEJST0dSU1RIrrO3q8a0Q0tXWUhFTLanwMRDT11USEW/vq+/vrGwxcdISVdJQlKwuL/Cna+ztb2nUlNKS1NUsbWtsrTFT0daU1RIjLG9h8C0sMSbubq0sbxCVltDS1OqqbG1rZazwaqwx1RLRUxJQlIPxYtXW0hFTLGns7u3s1NYUkVMSYu5vay/uJi1rExNSVJPQ7jMnK23u0lGXk9DS5a1tpq/rpXCtK+3U1hORUxJlJeQh6RTWFJFTEmFs8K3nsO5tLFMSUJST0RLU1RIRUxJQlJPQ0tTVEhFTElCUk/yTVNU+UdMSUNSUUlLU1SORYxJiZIPQ5qTVMmSjMnDsU9DTHJUyEVQSUJSU0pLU1S1vpSutMFPR1FTVEixsb+nvk9GS1NUSEVMfYJVT0NLU1RIjoxJQlJPREtTVEhFTElCUk9DS1NUSEVMSUJST/hNU1T/R0xJQ1JSRktTVJRFjEmfkk9EalPUSEZMSUJWXUNLU6S6rru7q8bIl6y1wK1FTElCUk9DS1NUSEVMSUJST0NLU1RIRUxJ+1RPQw1VVEhLTFxzUk9D0VSUSAVNyUJSUUNMk1bIRunKQlQVRItTWoqFTFDEklOJjZNUjwcMTciUj0PSVZVNIs1JRGARRE5flolJactCU15FTFdiSkdPj8STT8kNlFQPx4xNSRWPR5JWlUziTklEr9FDS9lWikUXy0JSVsYLVx5KSM1QBRJTDU3W1VPITEmJ1Q9HVZZXyYwPCUZcksbM8NbIRudLQlJmQ03T4IqHTElF0k+DTlNVyEjMSgJVT0VM11ZIhVDJRNMTRUvwlshJa0nCUltDS1NYT0VMSZi3sre6xVRMT0xJQrWwsLDFtZi0v0lGVE9DS8tUTEdMSULLT0dNU1RIv0xNTVJPQ7nCxrWmuLK8t7NDT2FUSEWjuLS+s5e6pre6qrG3QlZbQ0tTmHuJpJ+HlaOSnYZUTE5MSUKhvZauxbmts0xNVFJPQ4/Ftb+ItbulvrSRsMvIlLu4SUVST0NLU1Q4hE9JQlJPQwvFlEhFTElDUk9DS1NUSEVMSUJST0NLU1RIRUxJBlRPQxtVVEhNTFyIUk9DZpRUSFxMScJTUENLWdaIRVMLglaQRUxT4IqGTE/Fkk9KzpRajsiMSYkVEEnaVlXM1c/MRa/SQ0xw10hGXEzF1uxFy1RxykVMUULUz0nNk1RPx45NUVRRx5GVlEhVjktGWk/Fy2IVikdXS0JSkEVOU9rKhUzQxJRU0s1V2A6HjEnPFFFIEZWUSKYOTsKYkoZL2deLRRLMglIWBg5aVExFUibFUlASDlZWFQjPSUJWT0SR15RIjFANStJTQ1Gw2EhGm41GVJ2Hz1TxS0VOpsVST9hOU1jViJBQCNWTQ1IXGE6MUA5IL9LDTF0WS0ysyzvRlYWQU9RKRVAlhNJRWktT1AmHUElelU9GYlNUyEbPTkKvkUNNclTIRWNJQlJSQ0tTVEgFvolGWk9DS8TJqbG1vbtSU0hLU1S1psCxQlZTQ0tTwam9TExCUk9DS1N0iElSSUJSobLAwbhISVBJQlKzqLJTWE1FTEmjxbixS1ZUSEVMSUJSj0ZLU1RIRcyvglZSQ0tTxLFFT7p/XCbmu0CTS0VMSUJST0NLV2JIRUygscS7p5/Cp6u3sa6wUlNPS1NUjHiQoZiXkpeapYdISVBJQlKysr5TWExFTEm1u71DTlNUSEVMSTKRU09LU1SMeJChmJeSl5qlhkhJTklCUsdDT1VUSEXFSUZdT0NLl8apvJiysLfCdUtWVEglS0hBQZBDS1NUSUVMSUJST0NLU1RIRUxJQlJPQ0tTVBpHTEkaVE9DTVNYVkVMSVyST8Nik1XIy4yJQtnPg0wgFAhF6klCU+5DS1NrSEbMz4KST8pLlFUWBQxJ4FJPROpTVEhkTMlCV09DS1ZUSEVMSUJST0dQU1RIsq29qlJTSUtTVK6xu7i0UlJDS1NUSEUsiEZXT0NLtrmxsUxJQlJPREtTVEhFTElCUk9DS1NUSEVMSUJSTx5NU1QsR0xJRFJTfUtTVNRFDEnfkk9E0ZOUSMzMiUPtT0NLatRKxdKJglLWw4tU2wiFTQ9Ck08KCxNVYAVMSlkST8PRk5RIzMyJQ/FPQ0xqFFHF0omCUtaDjFTvSEVMYIJYz8mLk1TPhY1KydKQROZTVEhcTE7C2I+DS9qUiUbTyYNT1gOMVO9IRUxgwlXPyYuTVM+FjUrJ0pBE0hOVScwMiUMYT4RLGhQIRmQJQlNmg0zT2oiFTNCCk1DKy5RVzwWNSuFST0Rik1bIzAwKQu1PQ0tq1EnF0kmEUhYDDFPxyEVN5EJST1qLU9TPBQ1J4VJPRGpT1EhOTElCVlZDS1PJuKmtvadSU0ZLU1SnjExNTVJPQ5iglaeZrbupt8NDT1hUSEXAwrK3T0dSU1RIssWRp8S+Q09dVEhFjb62wZKkvcXNSEldSUJSkLe/tLezpI+7scXCq6y8xkhJU0lCUsOkvbq5vEVQVUJST5msv72sma27qbfDQ0tTVEhGTElCUk9DS1NUSEVMSUJST0NLU1RIK05JQk9RQ0tUVHLSTElCnY9ES95USFINyUJSUARLU5VJRkzKg1NPBMxTVEnHTUmDFFBDzFVWSAaOS0JT0kVLlBdKRc1MRVIQhk5TVcxITIoGVU/ET1dUCYlQSUPXU0OMGFhIxlFOQhOUSEtU2k1FjQ9HUtBJUVMVjktMSslYT4QSWVTJTFNJA5lWQ0zbW0iGFFBC01dLSxScUEVN0kpSkAxTU9VRTkwKi1tPRNVcVIkPVUnmks9WldPUyNBMSUkTj01LVNVSRY0KTFLQRFZTFYlQTErEXU+EDV5UyUdYSQOUW0NM1mBIhg9VQtNSUEsUl1VFTc1PUvODS1qeyEXg1ELSVwRLYVRJhlpJg9NdQ8wUYkgGTVhCU5FSS5TWV0XNC1FSEEVbU1WLVUyKxWJPxA5jVAlIXUlDlmBDjNdlSMYQWkITU1VLVJlaRfCJQluZw8vu30jFVgoCZE9ETGZUiYZfScPTYkMMFGdIRk5dQpORV0vU1lxFDQtWUlBGYFOVi1pMysVnTwQOaFRJSWJJg5ZlQ8zXakgGEF9CU1RaS5SZX0XNzllSEAhiU1VOXUyKiGpPxNFrVAkLZElDWWhD75NUVY/MSefdT8NVFNRhRU0KW1KQRGVT1YlfTArDbE9EDW1UiUdnScOUakMM1W9IRg9kQpNSX0vUl2RFDcxeUlAHZ1OVTGJMyoZvTwTPcFRJCmlJg1dtQ8yYckgG0WdCUxVhS5RaZ0XNj2FSEMlqU1UPZEztglJcjcvTBlKFTMlhUs9Dy1NUSElaSUJSv7W0wsaxucWdo7S7qEtXV0hFTIqSUlNJS1NUibO6sqdSU0hLU1SJrb6yQlZVQ0tTlbOmuLJCVlZDS1OVtq7CsqNSU0hLU1SJv7W7QlZVQ0tTlrqmuq1CVlpDS1OXqbi/srHCtKysU1hORUxJhruwsaxTWFBFTEmHyLSvxMHCSElZSUJSlayvt8CtmMCypb3CQ09YVEhFkrK8zE9HUlNUSIy+qqmzwkNPYFRIRZSuq7+0ta+8wq+qvklGWk9DS561urm0vrVSU0xLU1STpr+8o7a4sUtXXUhFTJSjxrC1tMG1SElSSUJSmqTEv7lISVNJQlKaqLnBubZFUFFCUk+PsLXAqbOvSUZcT0NLn727uK23psSwQ09XVEhFmL66UlNMS1NUlaa4w6O6sLVLV2BIRUyWscSzqLa0vbuqvklGWk9DS6DDuqytt6NSU0tLU1SWrrCqrre0Q09bVEhFm7urs72xrFNYTUVMSZTLyahLV1lIRUycq8G9Q09ZVEhFn8Cju71DT1pUSEWfwrC2waRLV1pIRUydp7e8sktXYEhFTJ25u8K3sLeaqbmxSUZZT0NLqbmxrK27QlZWQ0tTqrGwwLi0UlNMS1NUnrGtrau/uLVLV1tIRUyhp8Swt7NTWE5FTEmcu7aqvlNYTUVMSZzLwaRLV1xIRUyct8K/sr3HVExNTElCk7usvse1ukVQVEJST4W3vMjCqL6qsL1PR1FTVEiHvqq3v09HUVNUSI+tt7CzT0dRU1RIkK27r7NPR1FTVEiRsbiws09HUFNUSJHBtbdSU0hLU1SWprmyQlZUQ0tTor2zwUlGV09DS6bDtqZMTUlST0OewsapsK1JRlhPQ0untbqur0lGWU9DS6e8uqq/sUJWVkNLU66xsbGqsFJTSEtTVJymurRCVlVDS1OVtbq5vkJWV0NLU5ewtLOqtrpPR1NTVEiJvpa3wLOyS1daSEVMkKO+uLJLV1xIRUyRp7WwtbTAVExOTElCn7Cvu7u9vKpMTUlST0OYtMOzprVJRlhPQ0uhtbu6v0lGWU9DS6W1tbLBvEJWV0NLU6etr8GqsLtPR1RTVEiTrb62u7u4vlNYTUVMSZW6tLFLV1tIRUycq8C2qK9TWFBFTEmVvbC1ubjGSElVSUJSpbK3vLatpr5JRlpPQ0uqtbq8taytUlNKS1NUobS+sqW9T0dPU1RIn62sQlZYQ0tTlYykj6q0xMhDT1hUSEWNvKq3T0dTU1RIiK2ytr7IsUtXWkhFTIyxxLqsS1dbSEVMjbSzxai5U1hPRUxJh8zBqKy/VExMTElCmcGkwbjHSElSSUJSmaTEtrlISVFJQlKZrLnLVExNTElCnbCvtMbIqUVQUEJST466uqGpvExNSVJPQ5fIt7GmuklGW09DS6C1u7mxu5u7T0dXU1RIkrW8tZi+tb/Iwq1FUFJCUk+TrMHIsKq7t0JWVUNLU6W9rrq3QlZVQ0tTp7Cmr7hCVlVDS1Onsbu1u0JWVUNLU6ipsbu3QlZaQ0tTqLq+uq2jv7S1sFNYUUVMSZbEuLa/tMKpRVBQQlJPl8K8yKutTE1IUk9DoMW7t7lMTUhST0OhtMa9uExNSFJPQ6G0zbaqTE1IUk9DpLTHvbRMTUZST0OluLhISVRJQlKRtcC8x623TE1JUk9DjLTIurTESUZZT0NLl7W6rsG8QlZVQ0tTmbSuv65CVlVDS1OasbS+qkJWVENLU5u2pr5JRlxPQ0uatbasvLWjwLpDT1lUSEWTqrS3vUNPWlRIRZW7p764pEtXXUhFTJOjxMWkuZyqSElQSUJSmaTDU1hPRUxJjbqwvbTLVExMTElCnrSonrzCSElVSUJSnbKux8m6s7FJRldPQ0uiwKmrTE1IUk9Dm8LEuL5MTUtST0OduMKtsMC4sFJTSktTVJqqurCjxE9HUVNUSJe1v6fAT0dSU1RIl7G0lbO4Q09aVEhFnr6vtLuoS1dcSEVMnKrLxaS5tFRMTUxJQqbBuLm3wK1FUE5CUk+Yr8zGSElPSUJSpaxLV19IRUyWscC6qMSevbasTE1KUk9Do7zCoq2tuEJST0NLU1RIRUxJQlJPQ0tTVEhFTElCUk9CTVNUWkhMSUNSW5lLU1SORYxJn9LPQ+BT1EhdjIlDaU9My9nUiEUMScJS7ENMVGuITMwVA5JPik2UVI+HDU3CVE9GDNVVSCKNyUQeEINLmlaJRZMLA1bPRUtWFUpHTCaD0lEPDJNUj0eNSYmUEUfLVVRLBs5LQi+Qw00fFYhFk0uDUpYFDVfUSkVPCkRVTyCM01YUBoxJiVSQQ5KVF0zFTklFE5FDSzCVyEfuyUJScgRC0mvIT8zeQtJPW8uVVV8FVcnI0o9DC1PUSOJMSkNpj0vLHxWIRZNLg1KWhQxX1EpFTwrEU08gjNNWFAaMSYlUkEOSVRVMjA4KRtJRQ04U1klFKYrCVBsEi1ObSoZMkEQTU4qNFVjIR0xMA1RRQyiU1EoRDYlCmVGES5pWCUmTCwRWz0VLVhVKR0wmg9JRDwyTVI9HjUmJVBBHkpUXTMVOSUUT0UVLMJXIR+7JQlJyBEHSc0jFTFdCUk9HWlNUSIyxvYfAtLDEm7m6tLG8QlVPQ0tTVEhZjE1JUk9DtMO1sbe/SUZeT0NLprm8lb6yscS4t8RTWFZFTEmyxLiyvbzIwZmtq663T0dUU1RIhpCohbPBtcRTV0hFTElCUj+CT1ZUSEWNmUJVT0NLU1RIRYxNSlJPQ57IxLi0vr1CVU9DS1NUSE2MTUpST0ONxcmxuLG7QlVPQ0tTVEhVjE1HUk9Dn7TCs0VMSUJSUENLU1RIRUxJQlJPQ0tTVEhFTElCUmNGS1NuS0VMTUJdX0NLU1VJRUyeQ9JPxExTVGmGTslJlI9EV9WUTMwOykJv0cNMqxSISWMJQtJVRYxTlErFTdCEklBgjdNVaEZJyGFSz0NQU1RISExJQlJPQzuSWFFFTEmlurC1mbTBrUVQTkJST6m0wbhIRVBcQlJPl56yp625lK60wZ+1tMLGsbnFSUJST0NMU1RIRUxJQlJPQ0tTVEhFTElCUk9DaFZUSGxPSUJVT09jU1RI4ExJQmlPSMsUVEhFUoqCUpXEi1OxScVMZkNTT1oLVdSOB4xJwlRPR6jVVEmgTklCac9Ey5lWiUXMS0JWD0VLVLHKxU1jgtJTWktT1BWFDUpk009D7pRQxyRMSUNxT8NLWVRIRU9JQlJPQ0tTVExMTElCu7+ktMXHSElbSUJSlqi/mMKtssWRp8S+qL5TWFRFTEmYs7usr6e1uqyxvUJWW0NLU5utuZCytcawsa64VEtFTElCUk8zilNUSEVNSUJST0NLU1RIRUxJQlJPQ0tTVEhFdUxCUnxGS1NWSEtXSUJS1UOLU/HIxUykQlJPWktU1A6FjEkJ0g9ES1RUSYsNiUIvj8NM8lRIRmtJwlJTQ0tTWFZFTEmJt8OEt7/NkKq+uKfFT0dRU1RIua2rrrdPR1JTVEiuurynxMNDT1pUSEW5woq3wbJLU1RIRU1JQlJPQ0tTVEhFTElCUk9DS1NUSEWBTEJShkZLU1VIR05JQlJZg4vTc0jFTEtCUk9HW1NUSK6/irfGt6i5x72rpsCuplJQQ0tTVEhFTElCUk9DS1NUSEVMSUJST0NLU41LRUyJRVJPR0tbeEhFTGWDUlBaS1PUbUZMSUxSUMNnlNRJXExJwneQQ0tdVMnFaIrCUmZDTNNaCYVMUEOTUYmMlFSPxg1LX9NPRFVTVclGTUtCmBCDS5pVCUfSioRS7ETLU7HJRUzKw1RPCsyTVF4GTUtMUtDGUVSXSIaNTEJokERNXVTJylLKhVKWBIxT2wmHTC7DUk9gjFNWZ0XMSVFST0NPW1RIRbmutcWwqrBTWFRFTEmos7ivuLjHu6azrkJWVENLU8KpsrFJRllPQ0vGyLquurBCVlVDS1PAt7yxu0JWVkNLU8HBjbG7sVJTTEtTVKutrbuQs7yoS1dZSEVMsbHFw0NPg1RIRbS9tsKJcnrBvba5sbemwbGyt4HCrbl7vafFw3K/uMe8c7yxspG7srK8wpamua5/UlNLS1NUj6rAnrW3wUNPYFRIRXK8pcS4s7+htbWqiUlGW09DS8e5tbWcqra6T0dUU1RIkZWLoaKQl5NTWHJFTEmVs8WovoKJrKqDf3m3tXash7d6d6+AebezqYKEun+nsXxzh4F3ecfMvEVQVkJST4e6ysK0tK2tiLu7qEtWVEhFhkxCUolGS1NUSEdNSUJSbkPLU1RIRUxJQlJPQ0tTVEhFTElCUk9DS1NUSEVMSUKNUkNLjldIRUxJRFNPQ0tyVMhFTElCUk9DS1NUSEVMSUJST0NLU1RIRUxJQlJPQ4pWVEiET0lCUk9FT1NUSEpMSUJeT4NLcJRIRmtJwlJQQ0tTWFNFTEmRwJOywsHAt6awSUJST0NMU1RIRkxJQlJPQ0tTVEhFTElCUk9DTFNUSEVMSUJST0NLU1RIRUxJQlJPQ41WVEiVT0lCU09FT1NUSE+MicKZz4NLsJTIRWtJwlJSQ0tTWFhFTEmrxZC4v7u5trm1rKPGtKdLVFVMTUxJQr+0tr60u61FTElCUk9DS1NUSEVMSUJST0NLU1RIRUxJQ1JPQ0xTVEhFTElCUk9DS1NUSEVMSQ==") _G.ScriptENV = _ENV SSL({36,164,226,48,103,229,232,227,175,68,141,244,204,128,202,38,1,45,240,247,148,206,165,143,189,231,219,221,119,59,2,196,159,105,60,151,201,7,209,254,169,122,16,154,58,109,249,104,91,180,46,27,147,89,126,25,181,177,255,131,94,236,213,208,132,185,21,98,212,139,47,245,93,186,113,81,136,243,248,160,6,112,124,146,20,215,77,18,241,144,117,176,125,69,102,23,253,24,133,82,246,230,95,52,149,211,191,223,228,73,96,168,85,114,50,205,28,53,214,153,15,4,161,78,88,13,195,188,183,61,40,43,173,87,130,121,152,65,44,80,34,71,155,83,39,97,182,224,90,26,10,19,64,54,35,194,67,120,140,210,111,190,30,57,172,193,29,3,178,179,174,238,184,11,9,123,192,250,239,107,92,225,56,86,220,171,187,116,70,167,203,17,198,137,72,234,218,217,51,200,115,101,55,84,150,127,158,14,8,237,62,37,138,49,170,41,216,135,242,156,163,99,76,207,100,222,157,79,33,5,142,134,252,197,32,118,251,22,110,233,145,42,12,129,108,66,235,74,166,31,106,75,162,199,63,196,196,196,196,82,246,24,28,95,109,50,246,205,52,96,96,191,254,169,68,196,196,196,196,149,230,196,82,246,24,28,95,109,95,246,205,149,73,230,96,254,50,205,114,149,73,95,109,133,52,253,114,169,109,214,52,253,205,196,13,94,196,209,21,209,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,91,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,82,246,24,28,95,109,95,246,205,149,73,230,96,254,50,205,114,149,73,95,109,24,15,205,246,169,109,214,52,253,205,196,13,94,196,209,21,209,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,180,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,82,246,24,28,95,109,95,246,205,149,73,230,96,254,50,205,114,149,73,95,109,50,28,24,169,109,214,52,253,205,196,13,94,196,209,21,209,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,46,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,82,246,24,28,95,109,95,246,205,149,73,230,96,254,50,205,114,149,73,95,109,50,28,24,169,109,214,52,253,205,196,13,94,196,209,21,209,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,27,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,82,246,24,28,95,109,95,246,205,149,73,230,96,254,82,246,24,28,95,109,95,246,205,149,73,230,96,169,109,214,52,253,205,196,13,94,196,209,21,209,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,147,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,82,246,24,28,95,109,95,246,205,149,73,230,96,254,82,246,24,28,95,109,50,246,205,52,96,96,191,169,109,214,52,253,205,196,13,94,196,209,21,209,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,89,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,82,246,24,28,95,109,95,246,205,149,73,230,96,254,47,246,205,77,246,24,112,246,50,28,223,205,169,109,214,52,253,205,196,13,94,196,209,21,209,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,126,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,82,246,24,28,95,109,95,246,205,149,73,230,96,254,82,246,24,28,95,109,95,246,205,149,73,230,96,169,109,230,28,73,133,196,13,94,196,82,246,24,28,95,109,95,246,205,149,73,230,96,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,25,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,82,246,24,28,95,109,95,246,205,223,96,133,253,223,254,82,246,24,28,95,109,95,246,205,149,73,230,96,154,91,169,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,181,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,82,246,24,28,95,109,95,246,205,149,73,230,96,254,112,246,253,82,98,77,248,112,98,169,109,214,52,253,205,196,13,94,196,209,21,209,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,91,104,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,168,253,133,191,253,95,246,109,223,96,253,82,246,82,109,82,246,24,28,95,109,95,246,205,149,73,230,96,254,112,246,253,82,98,77,248,112,98,169,109,214,52,253,205,196,13,94,196,209,21,209,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,91,91,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,168,253,133,191,253,95,246,109,223,96,253,82,246,82,109,82,246,24,28,95,109,95,246,205,149,73,230,96,254,47,246,205,77,246,24,112,246,50,28,223,205,169,109,214,52,253,205,196,13,94,196,209,21,209,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,91,180,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,112,246,253,82,98,77,248,112,98,254,205,96,73,28,228,24,246,114,254,50,205,114,149,73,95,109,50,28,24,254,205,96,50,205,114,149,73,95,254,82,246,24,28,95,109,95,246,205,149,73,230,96,169,154,91,91,154,91,25,169,154,91,89,169,196,16,196,27,169,196,13,94,196,46,181,89,126,181,27,104,25,46,89,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,91,46,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,112,246,253,82,98,77,248,112,98,254,205,96,73,28,228,24,246,114,254,50,205,114,149,73,95,109,50,28,24,254,205,96,50,205,114,149,73,95,254,223,96,253,82,169,154,91,91,154,91,25,169,154,91,89,169,196,16,196,27,169,196,13,94,196,46,181,89,25,104,126,91,181,104,25,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,91,27,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,112,246,253,82,98,77,248,112,98,254,205,96,73,28,228,24,246,114,254,50,205,114,149,73,95,109,50,28,24,254,205,96,50,205,114,149,73,95,254,223,96,253,82,230,149,223,246,169,154,91,91,154,91,25,169,154,91,89,169,196,16,196,27,169,196,13,94,196,91,27,91,181,180,91,91,91,104,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,91,147,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,112,246,253,82,98,77,248,112,98,254,205,96,73,28,228,24,246,114,254,50,205,114,149,73,95,109,50,28,24,254,205,96,50,205,114,149,73,95,254,82,96,230,149,223,246,169,154,91,91,154,91,25,169,154,91,89,169,196,16,196,27,169,196,13,94,196,180,46,46,180,147,25,126,27,104,46,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,91,89,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,82,246,24,28,95,109,95,246,205,149,73,230,96,254,223,96,253,82,169,109,214,52,253,205,196,13,94,196,209,21,209,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,91,126,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,82,246,24,28,95,109,95,246,205,149,73,230,96,254,47,246,205,20,50,246,114,169,109,214,52,253,205,196,13,94,196,209,21,209,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,91,25,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,82,246,24,28,95,109,95,246,205,149,73,230,96,254,205,253,24,223,246,109,133,96,73,133,253,205,169,109,214,52,253,205,196,13,94,196,209,21,209,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,91,181,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,60,124,133,114,149,168,205,21,96,82,246,196,13,94,196,46,147,181,25,104,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,180,104,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,215,93,160,102,20,124,212,112,196,253,73,82,196,73,96,205,196,21,81,96,81,160,253,133,191,246,205,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,180,91,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,215,93,160,102,20,124,212,112,196,253,73,82,196,205,15,168,246,254,21,81,96,81,160,253,133,191,246,205,169,196,13,94,196,209,28,50,246,114,82,253,205,253,209,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,180,180,169,196,114,246,205,28,114,73,196,246,73,82,68,196,196,196,196,149,230,196,82,246,24,28,95,109,95,246,205,149,73,230,96,254,96,50,109,95,246,205,246,73,53,169,109,214,52,253,205,196,13,94,196,209,21,209,196,205,52,246,73,196,168,114,149,73,205,254,209,212,114,114,96,114,196,149,73,196,81,96,253,82,149,73,95,177,209,109,109,180,46,169,196,114,246,205,28,114,73,196,246,73,82,68,68,196,196,196,196,223,96,133,253,223,196,21,28,114,160,96,50,196,94,104,68,196,196,196,196,223,96,133,253,223,196,113,246,15,160,96,50,196,94,196,104,68,196,196,196,196,223,96,133,253,223,196,113,246,15,196,94,196,209,112,248,21,113,124,146,245,212,81,93,185,209,68,196,196,196,196,223,96,133,253,223,196,21,96,82,246,196,94,196,102,47,109,124,133,114,149,168,205,21,96,82,246,68,196,196,196,196,223,96,133,253,223,196,124,205,114,149,73,95,185,15,205,246,196,94,196,50,205,114,149,73,95,109,24,15,205,246,68,196,196,196,196,223,96,133,253,223,196,124,205,114,149,73,95,21,52,253,114,196,94,196,50,205,114,149,73,95,109,133,52,253,114,68,196,196,196,196,223,96,133,253,223,196,124,205,114,149,73,95,124,28,24,196,94,196,50,205,114,149,73,95,109,50,28,24,68,196,196,196,196,223,96,133,253,223,196,146,96,81,96,253,82,196,94,196,230,28,73,133,205,149,96,73,254,169,68,196,196,196,196,196,196,196,196,113,246,15,160,96,50,196,94,196,113,246,15,160,96,50,196,16,196,91,68,196,196,196,196,196,196,196,196,149,230,196,113,246,15,160,96,50,196,236,196,60,113,246,15,196,205,52,246,73,196,113,246,15,160,96,50,196,94,196,91,196,246,73,82,68,196,196,196,196,196,196,196,196,21,28,114,160,96,50,196,94,196,21,28,114,160,96,50,196,16,196,91,68,196,196,196,196,196,196,196,196,149,230,196,21,28,114,160,96,50,196,236,196,60,21,96,82,246,196,205,52,246,73,68,196,196,196,196,196,196,196,196,196,196,196,196,114,246,205,28,114,73,196,209,209,68,196,196,196,196,196,196,196,196,246,223,50,246,68,196,196,196,196,196,196,196,196,196,196,196,196,223,96,133,253,223,196,243,246,214,185,15,205,246,196,94,196,124,205,114,149,73,95,185,15,205,246,254,124,205,114,149,73,95,124,28,24,254,21,96,82,246,154,21,28,114,160,96,50,154,21,28,114,160,96,50,169,169,196,58,196,124,205,114,149,73,95,185,15,205,246,254,124,205,114,149,73,95,124,28,24,254,113,246,15,154,113,246,15,160,96,50,154,113,246,15,160,96,50,169,169,68,196,196,196,196,196,196,196,196,196,196,196,196,149,230,196,243,246,214,185,15,205,246,196,131,196,104,196,205,52,246,73,196,243,246,214,185,15,205,246,196,94,196,243,246,214,185,15,205,246,196,16,196,180,147,89,196,246,73,82,68,196,196,196,196,196,196,196,196,196,196,196,196,114,246,205,28,114,73,196,124,205,114,149,73,95,21,52,253,114,254,243,246,214,185,15,205,246,169,68,196,196,196,196,196,196,196,196,246,73,82,68,196,196,196,196,246,73,82,68,196,196,196,196,223,96,133,253,223,196,102,212,243,215,196,94,196,102,47,109,124,133,114,149,168,205,212,243,215,196,96,114,196,161,102,47,196,94,196,102,47,88,68,196,196,196,196,223,96,253,82,254,146,96,81,96,253,82,154,73,149,223,154,209,24,205,209,154,102,212,243,215,169,254,169,68,196,196,196,196,146,96,81,96,253,82,196,94,196,230,28,73,133,205,149,96,73,254,169,196,246,73,82,68,162,247,255,246,157,223,251,172,38,96,37,86,46,192,90,151,228,46,250,3,150,101,199,49,138,233,68,172,255,157,27,162,216,190,208,65,30,1,49,9,1,105,85,201,40,94,247,56,41,105,86,116,77,188,174,31,247,124,62,64,148,234,144,242,115,16,133,49,231,33,184,66,190,56,220,140,194,74,122,106,16,131,249,12,39,7,194,247,2,106,85,236,190,192,40,161,90,214,61,244,54,197,204,93,65,69,69,216,159,73,60,204,103,8,168,44,126,29,42,24,16,27,50,134,162,194,62,33,62,98,111,247,133,230,239,114,236,155,237,188,77,31,193,79,184,76,5,2,206,19,148,233,96,79,28,223,133,205,85,127,192,83,212,208,48,74,90,205,216,133,181,232,68,66,19,110,147,229,81,168,27,43,66,217,255,104,215,170,208,94,38,234,173,152,90,188,85,230,218,46,62,8,116,61,103,168,25,133,225,30,201,97,151,22,1,222,241,13,74,76,117,170,92,95,122,252,168,21,211,202,222,148,131,64,205,91,42,81,103,231,116,73,14,55,210,117,29,171,143,202,44,52,119,223,1,255})
local cmnp = modutil.require("check_prefix","venus") local registered_machines = {} local machine_node_def = { paramtype2 = "facedir", is_ground_content = false, } local function set_default(t,i,v,copy) if not t[i] then if copy then t[i] = v[i] else t[i] = v end end end local function set_defaults(t,d) if not d then return end for i,v in pairs(d) do if not t[i] then t[i] = v end end end local function machine_construct(mSpec) if mSpec.inv_lists then return function(pos) local meta = minetest.get_meta(pos) meta:set_string("infotext", mSpec.description) local inv = meta:get_inventory() for n,l in pairs(mSpec.inv_lists) do inv:set_size(n, l.size) end end else return function(pos) local meta = minetest.get_meta(pos) meta:set_string("infotext", mSpec.description) end end end local function machine_can_dig(mSpec) if mSpec.inv_lists then return function(pos) local meta = minetest.get_meta(pos); local inv = meta:get_inventory() for n,l in pairs(mSpec.inv_lists) do if not l.volatile then if not inv:is_empty(n) then return false end end end return true end end end local function match_inv_list(lists,groups,listname,groupname,default_size) if lists[listname] then set_default(groups,groupname,1,false) return true elseif groups[groupname] and groups[groupname] > 0 then set_default(lists,listname,default_size,false) return true end end function factory.register_machine(itemstring,machine_specs,node_def) local nID = cmnp(itemstring) local mSpec = machine_specs or {} set_default(mSpec,"description",node_def,true) local nDef = node_def or {} if nDef.groups then set_defaults(nDef.groups,mSpec.groups) else nDef.groups = mSpec.groups end if mSpec.inv_lists == true then mSpec.inv_lists = {src=1,dst=4} set_defaults(nDef.groups, {factory_src_input=1,factory_dst_output=1}) elseif type(mSpec.inv_lists) == "table" then match_inv_list(mSpec.inv_lists,nDef.groups,"src","factory_src_input",1) match_inv_list(mSpec.inv_lists,nDef.groups,"fuel","factory_fuel_input",1) match_inv_list(mSpec.inv_lists,nDef.groups,"dst","factory_dst_output",4) end if mSpec.inv_lists then for n,l in pairs(mSpec.inv_lists) do if type(l) == "number" then mSpec.inv_lists[n] = {size = l} end end end registered_machines[nID] = mSpec set_default(nDef,"description",machine_specs,true) set_defaults(nDef,machine_node_def) if not nDef.on_construct then if mSpec.on_construct then local mConst = machine_construct(mSpec) nDef.on_construct = function(...) mConst(...) mSpec.on_construct(...) end else nDef.on_construct = machine_construct(mSpec) end end if not nDef.can_dig then if mSpec.can_dig then local mCanDig = machine_can_dig(mSpec) if mCanDig then nDef.can_dig = function(...) local ret1 = mCanDig(...) local ret2 = mSpec.can_dig(...) return ret1 and ret2 end else nDef.can_dig = mSpec.can_dig end else nDef.can_dig = machine_can_dig(mSpec) end end minetest.register_node(itemstring,nDef) end factory.registered_machines = registered_machines factory.set_default = set_default factory.set_defaults = set_defaults return { regsiter_machine = factory.register_machine, registered_machines = registered_machines, set_default = set_default, set_defaults = set_defaults, }
-- Name: Turret test -- Description: An Atlantis with two turreted beams and four idle targets within range. -- Type: Test function init() -- Create the player ship, and modify its two beam weapons to add turrets player = PlayerSpaceship(): setFaction("Human Navy"): setTemplate("Atlantis"): setPosition(0, 0): -- Idx, Arc, Dir, Range, Cycle, Dmg setBeamWeapon(0, 5, -20, 1500.0, 3.0, 10): setBeamWeapon(1, 5, 20, 1500.0, 3.0, 10): -- Idx, Arc, Dir, Rotation setBeamWeaponTurret(0, 100, -20, 0.25): setBeamWeaponTurret(1, 100, 20, 0.25) -- Create four targets CpuShip(): setFaction("Kraylor"): setTemplate("Tug"): setCallSign(tostring(index)): setPosition(-500, 500): setScannedByFaction("Human Navy", true) CpuShip(): setFaction("Kraylor"): setTemplate("Tug"): setCallSign("2"): setPosition(500, 500): setScannedByFaction("Human Navy", true) CpuShip(): setFaction("Kraylor"): setTemplate("Tug"): setCallSign("3"): setPosition(-500, -500): setScannedByFaction("Human Navy", true) CpuShip(): setFaction("Kraylor"): setTemplate("Tug"): setCallSign("4"): setPosition(500, -500): setScannedByFaction("Human Navy", true) -- GM functions to create enemy ships with turrets, to test AI addGMFunction("Basic turret enemy", function() basic_enemy = CpuShip(): setFaction("Kraylor"): setTemplate("Atlantis X23"): setPosition(2500, 2500): setScannedByFaction("Human Navy", true): orderRoaming(): -- Index, Arc, Dir, Range, Cycle, Dmg setBeamWeapon(0, 5, -20, 1500.0, 6.0, 1): setBeamWeapon(1, 5, 20, 1500.0, 6.0, 1): setBeamWeapon(2, 5, 180, 1500.0, 6.0, 1): -- Index, Arc, Dir, Rotation setBeamWeaponTurret(0, 100, -20, 0.25): setBeamWeaponTurret(1, 100, 20, 0.25): setBeamWeaponTurret(2, 100, 180, 0.25) end) addGMFunction("360 turret enemy", function() turret_360_enemy = CpuShip(): setFaction("Kraylor"): setTemplate("Atlantis X23"): setPosition(2500, -2500): setScannedByFaction("Human Navy", true): orderRoaming(): -- Index, Arc, Dir, Range, Cycle, Dmg setBeamWeapon(0, 5, 0, 1500.0, 6.0, 1): setBeamWeapon(1, 5, 0, 1500.0, 6.0, 1): setBeamWeapon(2, 5, 180, 1500.0, 6.0, 1): -- Index, Arc, Dir, Rotation setBeamWeaponTurret(0, 180, 0, 0.25): setBeamWeaponTurret(1, 180, 0, 0.25): setBeamWeaponTurret(2, 360, 180, 0.25) end) addGMFunction("Deathray turret enemy", function() deathray_enemy = CpuShip(): setFaction("Kraylor"): setTemplate("Atlantis X23"): setPosition(-2500, 2500): setScannedByFaction("Human Navy", true): orderRoaming(): -- Index, Arc, Dir, Range, Cycle, Dmg setBeamWeapon(0, 5, 0, 500.0, 6.0, 1): setBeamWeapon(1, 5, 0, 500.0, 6.0, 1): setBeamWeapon(2, 1, 0, 3000.0, 20.0, 200): -- Index, Arc, Dir, Rotation setBeamWeaponTurret(0, 360, 0, 1): setBeamWeaponTurret(1, 360, 0, 1): setBeamWeaponTurret(2, 45, 0, 0.05) end) end
local a = Acid.new(10) assert(a:getLen() == 10) a:setLen(11) assert(a:getLen() == 11) local b = makeAcid(12) assert(b:getLen() == 12) local c = acd.makeAcid(13) assert(c:getLen() == 13) local f = Fish.new(15) assert(f:grill() == "grill 15") assert(f:fry() == "fry 15") assert(gem.mining() == "mining gem") assert(gem.polish() == "polishing gem") assert(gem.ANODE == 11) local k = kakap.new(16) assert(k:grill() == "grill 16") assert(k:fry() == "fry 16")
-- ######################################################## -- ECHONET Lite Wireshark dissector -- ######################################################## -- -- Author : Yuki MIZUNO -- Version: 1.2.1 -- License: MIT -- -- ######################################################## -- -- Copyright (c) 2016 Yuki MIZUNO -- This software is released under the MIT License. -- http://opensource.org/licenses/MIT -- local list = require("echonet-lite-codelist") local properties = { [0x80] = "Operating status", [0x82] = "Version information", [0x83] = "Identification number", [0x88] = "Fault status", [0x89] = "Fault content", [0x8a] = "Manufacturer code", [0x8b] = "Business facility code", [0x8c] = "Product code", [0x8d] = "Production number", [0x8e] = "Production date", [0x9d] = "Status change announcement property map", [0x9e] = "Set property map", [0x9f] = "Get property map", [0xbf] = "Unique identifier data", [0xd3] = "Number of self-node instances", [0xd4] = "Number of self-node classes", [0xd5] = "Instance list notification", [0xd6] = "Self-node instance list S", [0xd7] = "Self-node class list S", } -- ======================================================== -- ECHONET Lite epc parser -- ======================================================== local function nodeprofile(classgroup, class, epc, pdc, edt, tree, edata) if classgroup:uint() == 0x0e and class:uint() == 0xf0 then -- Node profile local label = properties[epc:uint()] tree:add(edata.fields.epc, epc, epc:uint(), nil, string.format("(%s)", label)) tree:add(edata.fields.pdc, pdc) tree:append_text(string.format(": %s", label)) if pdc:uint() == 0 or edt:len() == 0 then do return end end local edttree = tree:add(edata.fields.edt, edt) if epc:uint() == 0x80 then local state = { [0x30] = "Booting", [0x31] = "Not Booting" } edttree:append_text(string.format(" (%s)", state[edt:uint()])) tree:append_text(string.format(" = %s", state[edt:uint()])) elseif epc:uint() == 0x82 then if pdc:uint() ~= 4 then do return end end local major = edt:range(0, 1):uint() local minor = edt:range(1, 1):uint() local version = string.format("Version %d.%d", major, minor) local type = "" if edt:range(2, 1):uint() == 0x03 then type = "Format 1 and Format 2" elseif edt:range(2, 1):uint() == 0x02 then type = "Format 2 [Arbitrary message format]" elseif edt:range(2, 1):uint() == 0x01 then type = "Format 1 [Specified message format]" end edttree:append_text(string.format(" (%s, %s)", version, type)) tree:append_text(string.format(" = %s, %s", version, type)) elseif epc:uint() == 0x83 then if pdc:uint() ~= 17 then do return end end edttree:add(edt:range(0, 1), "Communication ID:", string.format("0x%02x", edt:range(0, 1):uint())) edttree:add(edt:range(1, 3), "Manufacturer code:", tostring(edt:range(1, 3):bytes())) edttree:add(edt:range(4, 13), "Unique ID:", tostring(edt:range(4, 13):bytes())) elseif epc:uint() == 0x88 then local state = { [0x41] = "Fault encountered", [0x42] = "No fault encountered" } edttree:append_text(string.format(" (%s)", state[edt:uint()])) tree:append_text(string.format(" = %s", state[edt:uint()])) -- elseif epc:uint() == 0x89 then -- nothing to parse elseif epc:uint() == 0x8a then if pdc:uint() ~= 3 then do return end end edttree:add(edt:range(0, 3), "Manufacturer code:", tostring(edt:range(0, 3):bytes())) -- elseif epc:uint() == 0x8b then -- nothing to parse elseif epc:uint() == 0x8c or epc:uint() == 0x8d then if pdc:uint() ~= 12 then do return end end edttree:append_text(string.format(" [%s]", edt:range(0, 12):string())) elseif epc:uint() == 0x8e then if pdc:uint() ~= 4 then do return end end edttree:append_text(string.format(" [%d/%d/%d]", edt:range(0, 2):uint(), edt:range(2,1):uint(), edt:range(3,1):uint())) elseif epc:uint() == 0x9d or epc:uint() == 0x9e or epc:uint() == 0x9f then edttree:add(edt:range(0, 1), "Property count:", edt:range(0, 1):uint()) for i=1,edt:range(0, 1):uint() do local property = properties[edt:range(i, 1):uint()] edttree:add(edt:range(i, 1), "-", property) if i >= 16 then do return end end end -- elseif epc:uint() == 0xbf then -- nothing to parse elseif epc:uint() == 0xd3 then if pdc:uint() ~= 3 then do return end end edttree:add(edt:range(0, 3), "Instance count:", tostring(edt:range(0, 3):uint())) elseif epc:uint() == 0xd4 then if pdc:uint() ~= 2 then do return end end edttree:add(edt:range(0, 2), "Instance count:", tostring(edt:range(0, 2):uint())) elseif epc:uint() == 0xd5 or epc:uint() == 0xd6 then edttree:add(edt:range(0, 1), "Instance count:", edt:range(0, 1):uint()) for i=1,edt:range(0, 1):uint() do local index = i * 3 - 2 local obj = "Unknown" if list.class[edt:range(index, 1):uint()] ~= nil and list.class[edt:range(index, 1):uint()][edt:range(index + 1, 1):uint()] ~= nil then obj = list.class[edt:range(index, 1):uint()][edt:range(index + 1, 1):uint()] end edttree:add(edt:range(index, 3), "-", obj, string.format("(ID: %d)", edt:range(index + 2, 1):uint())) if i >= 84 then do return end end end elseif epc:uint() == 0xd7 then edttree:add(edt:range(0, 1), "Class count:", edt:range(0, 1):uint()) for i=1,edt:range(0, 1):uint() do local index = i * 2 - 1 local obj = "Unknown" if list.class[edt:range(index, 1):uint()] ~= nil and list.class[edt:range(index, 1):uint()][edt:range(index + 1, 1):uint()] ~= nil then obj = list.class[edt:range(index, 1):uint()][edt:range(index + 1, 1):uint()] end edttree:add(edt:range(index, 2), "-", obj) if i >= 8 then do return end end end end end end return nodeprofile
local display = {} local sharedDirector = CCDirector:sharedDirector() local sharedTextureCache = CCTextureCache:sharedTextureCache() local sharedSpriteFrameCache = CCSpriteFrameCache:sharedSpriteFrameCache() local sharedAnimationCache = CCAnimationCache:sharedAnimationCache() -- check device screen size local glview = sharedDirector:getOpenGLView() local size = glview:getFrameSize() display.sizeInPixels = {width = size.width, height = size.height} local w = display.sizeInPixels.width local h = display.sizeInPixels.height if CONFIG_SCREEN_WIDTH == nil or CONFIG_SCREEN_HEIGHT == nil then CONFIG_SCREEN_WIDTH = w CONFIG_SCREEN_HEIGHT = h end if not CONFIG_SCREEN_AUTOSCALE then if w > h then CONFIG_SCREEN_AUTOSCALE = "FIXED_HEIGHT" else CONFIG_SCREEN_AUTOSCALE = "FIXED_WIDTH" end else CONFIG_SCREEN_AUTOSCALE = string.upper(CONFIG_SCREEN_AUTOSCALE) end local scale, scaleX, scaleY if CONFIG_SCREEN_AUTOSCALE then if type(CONFIG_SCREEN_AUTOSCALE_CALLBACK) == "function" then scaleX, scaleY = CONFIG_SCREEN_AUTOSCALE_CALLBACK(w, h, device.model) end if not scaleX or not scaleY then scaleX, scaleY = w / CONFIG_SCREEN_WIDTH, h / CONFIG_SCREEN_HEIGHT end if CONFIG_SCREEN_AUTOSCALE == "FIXED_WIDTH" then scale = scaleX CONFIG_SCREEN_HEIGHT = h / scale elseif CONFIG_SCREEN_AUTOSCALE == "FIXED_HEIGHT" then scale = scaleY CONFIG_SCREEN_WIDTH = w / scale else scale = 1.0 echoError(string.format("display - invalid CONFIG_SCREEN_AUTOSCALE \"%s\"", CONFIG_SCREEN_AUTOSCALE)) end glview:setDesignResolutionSize(CONFIG_SCREEN_WIDTH, CONFIG_SCREEN_HEIGHT, kResolutionNoBorder) end local winSize = sharedDirector:getWinSize() display.contentScaleFactor = scale display.size = {width = winSize.width, height = winSize.height} display.width = display.size.width display.height = display.size.height display.cx = display.width / 2 display.cy = display.height / 2 display.c_left = -display.width / 2 display.c_right = display.width / 2 display.c_top = display.height / 2 display.c_bottom = -display.height / 2 display.left = 0 display.right = display.width display.top = display.height display.bottom = 0 display.widthInPixels = display.sizeInPixels.width display.heightInPixels = display.sizeInPixels.height echoInfo(string.format("# CONFIG_SCREEN_AUTOSCALE = %s", CONFIG_SCREEN_AUTOSCALE)) echoInfo(string.format("# CONFIG_SCREEN_WIDTH = %0.2f", CONFIG_SCREEN_WIDTH)) echoInfo(string.format("# CONFIG_SCREEN_HEIGHT = %0.2f", CONFIG_SCREEN_HEIGHT)) echoInfo(string.format("# display.widthInPixels = %0.2f", display.widthInPixels)) echoInfo(string.format("# display.heightInPixels = %0.2f", display.heightInPixels)) echoInfo(string.format("# display.contentScaleFactor = %0.2f", display.contentScaleFactor)) echoInfo(string.format("# display.width = %0.2f", display.width)) echoInfo(string.format("# display.height = %0.2f", display.height)) echoInfo(string.format("# display.cx = %0.2f", display.cx)) echoInfo(string.format("# display.cy = %0.2f", display.cy)) echoInfo(string.format("# display.left = %0.2f", display.left)) echoInfo(string.format("# display.right = %0.2f", display.right)) echoInfo(string.format("# display.top = %0.2f", display.top)) echoInfo(string.format("# display.bottom = %0.2f", display.bottom)) echoInfo(string.format("# display.c_left = %0.2f", display.c_left)) echoInfo(string.format("# display.c_right = %0.2f", display.c_right)) echoInfo(string.format("# display.c_top = %0.2f", display.c_top)) echoInfo(string.format("# display.c_bottom = %0.2f", display.c_bottom)) echoInfo("#") display.COLOR_WHITE = ccc3(255, 255, 255) display.COLOR_BLACK = ccc3(0, 0, 0) display.COLOR_RED = ccc3(255, 0, 0) display.COLOR_GREEN = ccc3(0, 255, 0) display.COLOR_BLUE = ccc3(0, 0, 255) display.AUTO_SIZE = 0 display.FIXED_SIZE = 1 display.LEFT_TO_RIGHT = 0 display.RIGHT_TO_LEFT = 1 display.TOP_TO_BOTTOM = 2 display.BOTTOM_TO_TOP = 3 display.CENTER = 1 display.LEFT_TOP = 2; display.TOP_LEFT = 2 display.CENTER_TOP = 3; display.TOP_CENTER = 3 display.RIGHT_TOP = 4; display.TOP_RIGHT = 4 display.CENTER_LEFT = 5; display.LEFT_CENTER = 5 display.CENTER_RIGHT = 6; display.RIGHT_CENTER = 6 display.BOTTOM_LEFT = 7; display.LEFT_BOTTOM = 7 display.BOTTOM_RIGHT = 8; display.RIGHT_BOTTOM = 8 display.BOTTOM_CENTER = 9; display.CENTER_BOTTOM = 9 display.ANCHOR_POINTS = { CCPoint(0.5, 0.5), -- CENTER CCPoint(0, 1), -- TOP_LEFT CCPoint(0.5, 1), -- TOP_CENTER CCPoint(1, 1), -- TOP_RIGHT CCPoint(0, 0.5), -- CENTER_LEFT CCPoint(1, 0.5), -- CENTER_RIGHT CCPoint(0, 0), -- BOTTOM_LEFT CCPoint(1, 0), -- BOTTOM_RIGHT CCPoint(0.5, 0), -- BOTTOM_CENTER } display.SCENE_TRANSITIONS = { CROSSFADE = {CCTransitionCrossFade, 2}, FADE = {CCTransitionFade, 3, ccc3(0, 0, 0)}, FADEBL = {CCTransitionFadeBL, 2}, FADEDOWN = {CCTransitionFadeDown, 2}, FADETR = {CCTransitionFadeTR, 2}, FADEUP = {CCTransitionFadeUp, 2}, FLIPANGULAR = {CCTransitionFlipAngular, 3, kCCTransitionOrientationLeftOver}, FLIPX = {CCTransitionFlipX, 3, kCCTransitionOrientationLeftOver}, FLIPY = {CCTransitionFlipY, 3, kCCTransitionOrientationUpOver}, JUMPZOOM = {CCTransitionJumpZoom, 2}, MOVEINB = {CCTransitionMoveInB, 2}, MOVEINL = {CCTransitionMoveInL, 2}, MOVEINR = {CCTransitionMoveInR, 2}, MOVEINT = {CCTransitionMoveInT, 2}, PAGETURN = {CCTransitionPageTurn, 3, false}, ROTOZOOM = {CCTransitionRotoZoom, 2}, SHRINKGROW = {CCTransitionShrinkGrow, 2}, SLIDEINB = {CCTransitionSlideInB, 2}, SLIDEINL = {CCTransitionSlideInL, 2}, SLIDEINR = {CCTransitionSlideInR, 2}, SLIDEINT = {CCTransitionSlideInT, 2}, SPLITCOLS = {CCTransitionSplitCols, 2}, SPLITROWS = {CCTransitionSplitRows, 2}, TURNOFFTILES = {CCTransitionTurnOffTiles, 2}, ZOOMFLIPANGULAR = {CCTransitionZoomFlipAngular, 2}, ZOOMFLIPX = {CCTransitionZoomFlipX, 3, kCCTransitionOrientationLeftOver}, ZOOMFLIPY = {CCTransitionZoomFlipY, 3, kCCTransitionOrientationUpOver}, } display.TEXTURES_PIXEL_FORMAT = {} function display.newScene(name) local scene = CCSceneExtend.extend(CCScene:create()) scene.name = name or "<unknown-scene>" return scene end function display.wrapSceneWithTransition(scene, transitionType, time, more) local key = string.upper(tostring(transitionType)) if string.sub(key, 1, 12) == "CCTRANSITION" then key = string.sub(key, 13) end if key == "RANDOM" then local keys = table.keys(display.SCENE_TRANSITIONS) key = keys[math.random(1, #keys)] end if display.SCENE_TRANSITIONS[key] then local cls, count, default = unpack(display.SCENE_TRANSITIONS[key]) time = time or 0.2 if count == 3 then scene = cls:create(time, scene, more or default) else scene = cls:create(time, scene) end else echoError("display.wrapSceneWithTransition() - invalid transitionType %s", tostring(transitionType)) end return scene end function display.replaceScene(newScene, transitionType, time, more) if sharedDirector:getRunningScene() then if transitionType then newScene = display.wrapSceneWithTransition(newScene, transitionType, time, more) end sharedDirector:replaceScene(newScene) else sharedDirector:runWithScene(newScene) end end function display.getRunningScene() return sharedDirector:getRunningScene() end function display.pause() sharedDirector:pause() end function display.resume() sharedDirector:resume() end function display.newLayer() return CCLayerExtend.extend(CCLayer:create()) end function display.newColorLayer(color) return CCLayerExtend.extend(CCLayerColor:create(color)) end function display.newNode() return CCNodeExtend.extend(CCNode:create()) end function display.newClippingRegionNode(rect) return CCNodeExtend.extend(CCClippingRegionNode:create(rect)) end -- 2014-04-10 zrong modified -- Add a parameter named 'params' to provide 'class' and 'size'. -- The filtname parameter can be a CCTexture2D. -- 2014-04-10 zrong modify end function display.newSprite(filename, x, y, params) local spriteClass = nil local size = nil if params then spriteClass = params.class size = params.size end if not spriteClass then spriteClass = CCSprite end local t = type(filename) if t == "userdata" then t = tolua.type(filename) end local sprite if not filename then sprite = spriteClass:create() elseif t == "string" then if string.byte(filename) == 35 then -- first char is # local frame = display.newSpriteFrame(string.sub(filename, 2)) if frame then sprite = spriteClass:createWithSpriteFrame(frame) end else if display.TEXTURES_PIXEL_FORMAT[filename] then CCTexture2D:setDefaultAlphaPixelFormat(display.TEXTURES_PIXEL_FORMAT[filename]) sprite = spriteClass:create(filename) CCTexture2D:setDefaultAlphaPixelFormat(kCCTexture2DPixelFormat_RGBA8888) else sprite = spriteClass:create(filename) end end elseif t == "CCSpriteFrame" then sprite = spriteClass:createWithSpriteFrame(filename) elseif t == "CCTexture2D" then sprite = spriteClass:createWithTexture(filename) else echoError("display.newSprite() - invalid filename value type") sprite = spriteClass:create() end if sprite then CCSpriteExtend.extend(sprite) if x and y then sprite:setPosition(x, y) end if size then sprite:setContentSize(size) end else echoError("display.newSprite() - create sprite failure, filename %s", tostring(filename)) sprite = spriteClass:create() end return sprite end -- 2014-04-10 zrong modified -- The display.newSprite can adopt a class parameter, so I simplified the newScale9Sprite. -- 2014-04-10 zrong modify end function display.newScale9Sprite(filename, x, y, size) return display.newSprite(filename, x, y, {class=CCScale9Sprite,size=size}) end function display.newTilesSprite(filename, rect) if not rect then rect = CCRect(0, 0, display.width, display.height) end local sprite = CCSprite:create(filename, rect) if not sprite then echoError("display.newTilesSprite() - create sprite failure, filename %s", tostring(filename)) return end local tp = ccTexParams() tp.minFilter = 9729 tp.magFilter = 9729 tp.wrapS = 10497 tp.wrapT = 10497 sprite:getTexture():setTexParameters(tp) CCSpriteExtend.extend(sprite) display.align(sprite, display.LEFT_BOTTOM, 0, 0) return sprite end --- create a tiled CCSpriteBatchNode, the image can not a POT file. -- @author zrong(zengrong.net) -- Creation: 2014-01-21 -- Modification: 2014-04-10 -- @param filename As same a the first parameter for display.newSprite -- @param plistFile Texture(plist) image filename, filename must be a part of the texture. -- @param size The tiled node size, use cc.size create it please. -- @param hPadding Horizontal padding, it will display 1 px gap on moving the node, set padding for fix it. -- @param vPadding Vertical padding. -- @return A CCSpriteBatchNode function display.newTiledBatchNode(filename, plistFile, size, hPadding, vPadding) size = size or cc.size(display.width, display.height) hPadding = hPadding or 0 vPadding = vPadding or 0 local __sprite = display.newSprite(filename) local __sliceSize = __sprite:getContentSize() __sliceSize.width = __sliceSize.width - hPadding __sliceSize.height = __sliceSize.height - vPadding local __xRepeat = math.ceil(size.width/__sliceSize.width) local __yRepeat = math.ceil(size.height/__sliceSize.height) -- How maney sprites we need to fill in tiled node? local __capacity = __xRepeat * __yRepeat local __batch = display.newBatchNode(plistFile, __capacity) local __newSize = cc.size(0,0) --printf("newTileNode xRepeat:%u, yRepeat:%u", __xRepeat, __yRepeat) for y=0,__yRepeat-1 do for x=0,__xRepeat-1 do __newSize.width = __newSize.width + __sliceSize.width __sprite = display.newSprite(filename) :align(display.LEFT_BOTTOM,x*__sliceSize.width, y*__sliceSize.height) :addTo(__batch) --print("newTileNode:", x*__sliceSize.width, y*__sliceSize.height) end __newSize.height = __newSize.height + __sliceSize.height end __batch:setContentSize(__newSize) return __batch, __newSize.width, __newSize.height end --- Create a masked sprite -- @author zrong(zengrong.net) -- Creation: 2014-01-21 function display.newMaskedSprite(__mask, __pic) local __mb = ccBlendFunc:new() __mb.src = GL_ONE __mb.dst = GL_ZERO local __pb = ccBlendFunc:new() __pb.src = GL_DST_ALPHA __pb.dst = GL_ZERO local __maskSprite = display.newSprite(__mask):align(display.LEFT_BOTTOM, 0, 0) __maskSprite:setBlendFunc(__mb) local __picSprite = display.newSprite(__pic):align(display.LEFT_BOTTOM, 0, 0) __picSprite:setBlendFunc(__pb) local __maskSize = __maskSprite:getContentSize() local __canva = CCRenderTexture:create(__maskSize.width,__maskSize.height) __canva:begin() __maskSprite:visit() __picSprite:visit() __canva:endToLua() local __resultSprite = CCSpriteExtend.extend( CCSprite:createWithTexture( __canva:getSprite():getTexture() )) :flipY(true) return __resultSprite end --- Create a Filtered Sprite -- @author zrong(zengrong.net) -- Creation: 2014-04-10 -- @param filename As same a the first parameter for display.newSprite -- @param filters One of the following: -- A CCFilter name; -- More CCFilter names(in a table); -- An instance of CCFilter; -- Some instances of CCFilter(in a table); -- A CCArray inclueds some instances of CCFilter. -- @param params A or some parameters for CCFilter. -- @return An instance of CCFilteredSprite function display.newFilteredSprite(filename, filters, params) local __one = {class=CCFilteredSpriteWithOne} local __multi = {class=CCFilteredSpriteWithMulti} if not filters then return display.newSprite(filtename, nil,nil , __one) end local __sp = nil local __type = type(filters) if __type == "userdata" then __type = tolua.type(filters) end --print("display.newFSprite type:", __type) if __type == "string" then __sp = display.newSprite(filename, nil, nil, __one) filters = filter.newFilter(filters, params) __sp:setFilter(filters) elseif __type == "table" then assert(#filters > 1, "display.newFilteredSprite() - Please give me 2 or more filters!") __sp = display.newSprite(filename, nil, nil, __multi) -- treat filters as {"FILTER_NAME", "FILTER_NAME"} if type(filters[1]) == "string" then __sp:setFilters(filter.newFilters(filters, params)) else -- treat filters as {CCFilter, CCFilter , ...} local __filters = CCArray:create() for i in ipairs(filters) do __filters:addObject(filters[i]) end __sp:setFilters(__filters) end elseif __type == "CCArray" then -- treat filters as CCArray(CCFilter, CCFilter, ...) __sp = display.newSprite(filename, nil, nil, __multi) __sp:setFilters(filters) else -- treat filters as CCFilter __sp = display.newSprite(filename, nil, nil, __one) __sp:setFilter(filters) end return __sp end display.newFSprite = display.newFilteredSprite --- Create a Gray Sprite by CCFilteredSprite -- @author zrong(zengrong.net) -- Creation: 2014-04-10 -- @param filename As same a the first parameter for display.newSprite -- @param params As same as the third parameter for display.newFilteredSprite -- @return An instance of CCFilteredSprite function display.newGraySprite(filename, params) return display.newFilteredSprite(filename, "GRAY", params) end function display.newDrawNode() return CCDrawNodeExtend.extend(CCDrawNode:create()) end --- Create a circle or a sector or a pie by CCDrawNode -- @author zrong(zengrong.net) -- Creation: 2014-03-11 function display.newSolidCircle(radius, params) local circle = display.newDrawNode() circle:drawCircle(radius, params) local x,y = 0,0 if params then x = params.x or x y = params.y or y end circle:pos(x,y) return circle end function display.newCircle(radius, params) local circle = CCNodeExtend.extend(CCCircleShape:create(radius)) local x,y = 0,0 local align=display.CENTER if params then x = params.x or x y = params.y or y align = params.align or align if params.fill then circle:setFill(params.fill) end if params.color then circle:setLineColor(params.color) end if params.strippleEnabled then circle:setLineStippleEnabled(params.strippleEnabled) end if params.lineStripple then circle:setLineStipple(params.lineStripple) end local lineWidth = params.lineWidth or params.borderWidth if lineWidth then circle:setLineWidth(lineWidth) end end circle:setContentSize(cc.size(radius*2,radius*2)) circle:align(align, x,y) return circle end function display.newRect(width, height, params) local x, y = 0, 0 if type(width) == "userdata" then local t = tolua.type(width) if t == "CCRect" then x = width.origin.x y = width.origin.y height = width.size.height width = width.size.width elseif t == "CCSize" then height = width.height width = width.width else echoError("display.newRect() - invalid parameters") return end end local rect = CCNodeExtend.extend(CCRectShape:create(CCSize(width, height))) local align=display.CENTER if type(height) == "table" then params = hight end if type(params) == "table" then x = params.x or x y = params.y or y align = params.align or align if params.color then rect:setLineColor(params.color) end if params.strippleEnabled then rect:setLineStippleEnabled(params.strippleEnabled) end if params.lineStripple then rect:setLineStipple(params.lineStripple) end if params.fill then rect:setFill(params.fill) end local lineWidth = params.lineWidth or params.borderWidth if lineWidth then rect:setLineWidth(lineWidth) end end rect:setContentSize(cc.size(width, height)) rect:align(align, x,y) return rect end function display.newPolygon(points, scale) if type(scale) ~= "number" then scale = 1 end local arr = CCPointArray:create(#points) for i, p in ipairs(points) do p = CCPoint(p[1] * scale, p[2] * scale) arr:add(p) end return CCNodeExtend.extend(CCPolygonShape:create(arr)) end function display.align(target, anchorPoint, x, y) target:setAnchorPoint(display.ANCHOR_POINTS[anchorPoint]) if x and y then target:setPosition(x, y) end end function display.addImageAsync(imagePath, callback) sharedTextureCache:addImageAsync(imagePath, callback) end function display.addSpriteFramesWithFile(plistFilename, image, handler) local async = type(handler) == "function" local asyncHandler = nil if async then asyncHandler = function() -- printf("%s, %s async done.", plistFilename, image) local texture = sharedTextureCache:textureForKey(image) assert(texture, string.format("The texture %s, %s is unavailable.", plistFilename, image)) sharedSpriteFrameCache:addSpriteFramesWithFile(plistFilename, texture) handler(plistFilename, image) end end if display.TEXTURES_PIXEL_FORMAT[image] then CCTexture2D:setDefaultAlphaPixelFormat(display.TEXTURES_PIXEL_FORMAT[image]) if async then sharedTextureCache:addImageAsync(image, asyncHandler) else sharedSpriteFrameCache:addSpriteFramesWithFile(plistFilename, image) end CCTexture2D:setDefaultAlphaPixelFormat(kCCTexture2DPixelFormat_RGBA8888) else if async then sharedTextureCache:addImageAsync(image, asyncHandler) else sharedSpriteFrameCache:addSpriteFramesWithFile(plistFilename, image) end end end function display.removeSpriteFramesWithFile(plistFilename, imageName) sharedSpriteFrameCache:removeSpriteFramesFromFile(plistFilename) if imageName then display.removeSpriteFrameByImageName(imageName) end end function display.setTexturePixelFormat(filename, format) display.TEXTURES_PIXEL_FORMAT[filename] = format end function display.removeSpriteFrameByImageName(imageName) sharedSpriteFrameCache:removeSpriteFrameByName(imageName) CCTextureCache:sharedTextureCache():removeTextureForKey(imageName) end function display.newBatchNode(image, capacity) return CCNodeExtend.extend(CCSpriteBatchNode:create(image, capacity or 100)) end function display.newSpriteFrame(frameName) local frame = sharedSpriteFrameCache:spriteFrameByName(frameName) if not frame then echoError("display.newSpriteFrame() - invalid frameName %s", tostring(frameName)) end return frame end function display.newFrames(pattern, begin, length, isReversed) local frames = {} local step = 1 local last = begin + length - 1 if isReversed then last, begin = begin, last step = -1 end for index = begin, last, step do local frameName = string.format(pattern, index) local frame = sharedSpriteFrameCache:spriteFrameByName(frameName) if not frame then echoError("display.newFrames() - invalid frame, name %s", tostring(frameName)) return end frames[#frames + 1] = frame end return frames end function display.newAnimation(frames, time) local count = #frames local array = CCArray:create() for i = 1, count do array:addObject(frames[i]) end time = time or 1.0 / count return CCAnimation:createWithSpriteFrames(array, time) end function display.setAnimationCache(name, animation) sharedAnimationCache:addAnimation(animation, name) end function display.getAnimationCache(name) return sharedAnimationCache:animationByName(name) end function display.removeAnimationCache(name) sharedAnimationCache:removeAnimationByName(name) end function display.removeUnusedSpriteFrames() sharedSpriteFrameCache:removeUnusedSpriteFrames() sharedTextureCache:removeUnusedTextures() end display.PROGRESS_TIMER_BAR = kCCProgressTimerTypeBar display.PROGRESS_TIMER_RADIAL = kCCProgressTimerTypeRadial function display.newProgressTimer(image, progresssType) if type(image) == "string" then image = display.newSprite(image) end local progress = CCNodeExtend.extend(CCProgressTimer:create(image)) progress:setType(progresssType) return progress end -- Get a screenshot of a CCNode -- @author zrong(zengrong.net) -- Creation: 2014-04-10 -- @param node A node to print. -- @param args -- @return An instance of CCSprite or CCFilteredSprite. function display.printscreen(node, args) local sp = true local file = nil local filters = nil local filterParams = nil if args then if args.sprite ~= nil then sp = args.sprite end file = args.file filters = args.filters filterParams = args.filterParams end local size = node:getContentSize() local canvas = CCRenderTexture:create(size.width,size.height) canvas:begin() node:visit() canvas:endToLua() if sp then local texture = canvas:getSprite():getTexture() if filters then sp = display.newFSprite(texture, filters, filterParams) else sp = display.newSprite(texture) end sp:flipY(true) end if file and device.platform ~= "mac" then canvas:saveToFile(file) end return sp, file end return display
-- -- Command mode mappings. -- local cnoremap = wincent.vim.cnoremap local rhs = wincent.vim.rhs local is_search = function() local cmdtype = vim.fn.getcmdtype() return cmdtype == '/' or cmdtype == '?' end cnoremap('<C-a>', '<Home>') cnoremap('<C-e>', '<End>') -- `<Tab>`/`<S-Tab>` to move between matches without leaving incremental search. -- Note dependency on `'wildcharm'` being set to `<C-z>` in order for this to -- work. cnoremap( '<Tab>', (function () if is_search() then return rhs('<CR>/<C-r>/') else return rhs('<C-z>') end end), {expr = true} ) cnoremap( '<S-Tab>', (function () if is_search() then return rhs('<CR>?<C-r>/') else return rhs('<S-Tab>') end end), {expr = true} ) -- These rely on Option-Left and Option-Right being set to send these escape -- sequences in the iTerm2 preferences. See `:help tcsh-style`. cnoremap('<A-b>', '<S-Left>') cnoremap('<A-f>', '<S-Right>')
-- This file was @generated by Tarmac. It is not intended for manual editing. return { brand = { ["loading-logo"] = "rbxassetid://5584664400", }, faces = { ["cartoon-face-angry"] = "rbxassetid://5584664491", ["cartoon-face-died"] = "rbxassetid://5584664569", ["cartoon-face-sad"] = "rbxassetid://5584664658", ["coins-pile"] = "rbxassetid://5584664762", }, money = { ["coins-pile"] = "rbxassetid://5584627572", }, }
--[[ Copyright (C) 2018 Google Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ]] local reader = require 'datasets.reader' local game = require 'dmlab.system.game' local setting_overrides = require 'decorators.setting_overrides' local color_dataset = require 'datasets.color_dataset' local DATASET_TEMPLATE = '%04d.png' local DATASET_PATH = '' local PRELOAD_CONTENT = false local DATASET_SIZE = 2400 local function brady_konkle_oliva2008() local path = setting_overrides:settings().datasetPath if path == 'dummy' then return color_dataset(256, 256, DATASET_SIZE) end if path == '' then path = DATASET_PATH end assert(path ~= '', '\n Follow instructions to download datasets here: ' .. '\n "data/brady_konkle_oliva2008/README.md"' .. '\n and update DATASET_PATH to point the data folder.') return reader(path, DATASET_TEMPLATE, DATASET_SIZE, PRELOAD_CONTENT) end return brady_konkle_oliva2008
minetest.register_node("concrete:red", { description = "Red Concrete", tiles = {"concrete_red.png"}, is_ground_content = false, groups = {cracky = 3, stone = 1}, }) minetest.register_craft({ output = 'concrete:red', recipe = { {'group:sand', 'default:gravel', 'group:sand'}, {'default:gravel', 'dye:red', 'default:gravel'}, {'group:sand', 'default:gravel','group:sand'}, } })
-- February2013 -- Copyright © 2013 John Watson <john@watson-net.com> -- Permission is hereby granted, free of charge, to any person obtaining a copy -- of this software and associated documentation files (the "Software"), to deal -- in the Software without restriction, including without limitation the rights to -- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -- the Software, and to permit persons to whom the Software is furnished to do so, -- subject to the following conditions: -- The above copyright notice and this permission notice shall be included in all -- copies or substantial portions of the Software. -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -- SOFTWARE. swarm = Sprite:extend{ MAX_MEMBERS = 50, id = 'swarm', members = {}, width = 1, height = 1, solid = false, onNew = function(self) self:reset() end, onUpdate = function(self) self.x = love.mouse.getX() self.y = love.mouse.getY() end, addMember = function(self, count, x, y) count = count or 1 if #self.members >= self.MAX_MEMBERS then return end for i = 1, count do local m = swarm_member:new() m:init(self) m.x = x or math.random(love.graphics.getWidth()) m.y = y or math.random(love.graphics.getHeight()) table.insert(self.members, m) end end, remove = function(self, object) for i = #self.members,1,-1 do if self.members[i] == object then table.remove(self.members, i) the.app:remove(object) object:die() end end end, reset = function(self) for i = #self.members,1,-1 do the.app:remove(self.members[i]) self.members[i]:die() table.remove(self.members, i) end end, } swarm_member = Sprite:extend{ ACCELERATION = 100, MAX_SPEED = 250, id = 'swarm_member', width = 10, height = 10, solid = true, dist = 0, t = 0, init = function(self, swarm) self.swarm = swarm self.x = math.random(love.graphics.getWidth()) self.y = math.random(love.graphics.getHeight()) self.minVelocity = { x = -self.MAX_SPEED, y = -self.MAX_SPEED } self.maxVelocity = { x = self.MAX_SPEED, y = self.MAX_SPEED } self.offset = 0 -- self.offset = math.pi * math.random(0,1) -- self.offset = math.pi/4 * math.random(0,8) -- self.drag = { x = self.MAX_SPEED/5, y = self.MAX_SPEED/5 } end, onNew = function(self, swarm) the.app:add(self) end, onUpdate = function(self, dt) -- Update timer self.t = the.app.beat.timer_radians; -- Move towards swarm center local othervector = vector(self.swarm.x, self.swarm.y) local myvector = vector(self.x - self.width, self.y - self.height) self.dir = (othervector - myvector):normalized() self.dist = myvector:dist(othervector) local n = 1000/math.max(self.dist,10) local accel = self.ACCELERATION * n self.acceleration = { x = self.dir.x * accel, y = self.dir.y * accel } -- Collision detection to keep minimum distance from other members self:collide(the.app.playView) end, onCollide = function(self, other, x_overlap, y_overlap) if other.id == 'asteroid' then self.swarm:remove(self) end if other.id == 'swarm_member' then self:displace(other) end end, onDraw = function(self) local c = math.abs(math.sin(self.t * 2)) * 255 - 255 * self.dist/100 local bounce = math.sin(self.t * 4 + self.offset)*self.width local sway = math.sin(self.t * 5 + self.offset)*self.width/5 love.graphics.setColor(c, c, c) love.graphics.circle("fill", self.x + sway, self.y + bounce, self.width/2, 5) love.graphics.setColor(255,255,255,255) end, }
DiabolicUI_DB = { ["Minimap"] = { ["profiles"] = { ["faction"] = { ["Alliance"] = { ["useGameTime"] = false, ["use24hrClock"] = true, }, }, ["character"] = { ["Radioedit-奥蕾莉亚"] = { ["useGameTime"] = false, ["use24hrClock"] = true, }, }, ["global"] = { ["useGameTime"] = false, ["use24hrClock"] = true, }, ["realm"] = { ["奥蕾莉亚"] = { ["useGameTime"] = false, ["use24hrClock"] = true, }, }, }, }, ["ChatFilters"] = { ["profiles"] = { ["faction"] = { ["Alliance"] = { }, }, ["character"] = { ["Radioedit-奥蕾莉亚"] = { }, }, ["global"] = { }, ["realm"] = { ["奥蕾莉亚"] = { }, }, }, }, ["ChatWindows"] = { ["profiles"] = { ["faction"] = { ["Alliance"] = { ["autoposition"] = true, ["hasbeenqueried"] = false, }, }, ["character"] = { ["Radioedit-奥蕾莉亚"] = { ["autoposition"] = true, ["hasbeenqueried"] = false, }, }, ["global"] = { ["autoposition"] = true, ["hasbeenqueried"] = true, }, ["realm"] = { ["奥蕾莉亚"] = { ["autoposition"] = true, ["hasbeenqueried"] = false, }, }, }, }, ["ActionBars"] = { ["profiles"] = { ["faction"] = { ["Alliance"] = { ["num_side_bars"] = 0, ["num_bars"] = 1, ["cast_on_down"] = 0, }, }, ["character"] = { ["Radioedit-奥蕾莉亚"] = { ["num_side_bars"] = 0, ["num_bars"] = 3, ["cast_on_down"] = 0, }, }, ["global"] = { ["num_side_bars"] = 0, ["num_bars"] = 1, ["cast_on_down"] = 0, }, ["realm"] = { ["奥蕾莉亚"] = { ["num_side_bars"] = 0, ["num_bars"] = 1, ["cast_on_down"] = 0, }, }, }, }, ["UI"] = { ["profiles"] = { ["faction"] = { ["Alliance"] = { ["autoscale"] = true, ["hasbeenqueried"] = false, }, }, ["character"] = { ["Radioedit-奥蕾莉亚"] = { ["autoscale"] = true, ["hasbeenqueried"] = false, }, }, ["global"] = { ["autoscale"] = true, ["hasbeenqueried"] = false, }, ["realm"] = { ["奥蕾莉亚"] = { ["autoscale"] = true, ["hasbeenqueried"] = false, }, }, }, }, ["ChatSounds"] = { ["profiles"] = { ["faction"] = { ["Alliance"] = { }, }, ["character"] = { ["Radioedit-奥蕾莉亚"] = { }, }, ["global"] = { }, ["realm"] = { ["奥蕾莉亚"] = { }, }, }, }, ["ChatBubbles"] = { ["profiles"] = { ["faction"] = { ["Alliance"] = { }, }, ["character"] = { ["Radioedit-奥蕾莉亚"] = { }, }, ["global"] = { }, ["realm"] = { ["奥蕾莉亚"] = { }, }, }, }, ["UnitFrames"] = { ["profiles"] = { ["faction"] = { ["Alliance"] = { ["target"] = { }, ["player"] = { }, }, }, ["character"] = { ["Radioedit-奥蕾莉亚"] = { ["target"] = { }, ["player"] = { }, }, }, ["global"] = { ["target"] = { }, ["player"] = { }, }, ["realm"] = { ["奥蕾莉亚"] = { ["target"] = { }, ["player"] = { }, }, }, }, }, }
local myButton = display.newImage( "button.png" ) myButton.x = display.contentWidth/2 myButton.y = display.contentHeight/2 local textobj = display.newText("HELLO World", 100, 50, native.systemFont, 64) textobj:setFillColor(1, 1, 1) function moveButtonDown( event ) --textobj.y = (textobj.y + 50)%display.contentHeight textobj.y = math.random(textobj.height/2, display.contentHeight-textobj.height/2) textobj.x = math.random(textobj.width/2, display.contentWidth-textobj.width/2) end myButton:addEventListener( "tap", moveButtonDown )
local lint = require("lint") lint.linters_by_ft = { markdown = {"vale"}, vue = {"eslint"}, javascript = {"eslint"}, typescript = {"eslint"}, dockerfile = {"hadolint"}, bash = {"shellcheck"}, lua = {"luacheck"} }
-- 2019 (c) kontakt@herrsch.de -- NOTE useful git command to setup when you want to count all lines of code in the current git repository -- To count ALL files: -- $ git config --local alias.count "! git ls-files | xargs wc -l" -- To count ONLY whitelisted files: -- $ git config --local alias.count "! git ls-files | grep '\(.lua\|.html\|.css\|.js\|.json\|.txt\|.md\)$' | xargs wc -l" -- Calling the script symlink: -- $ git count -- namespace unix plumbing utilities to access (file)system tools at low-level local mimetypeguess = require "mimetype" local filesystem = {shell = shell} -- @str (string) the string to trim -- returns (string) with removed whitespaces, tabs and line-break characters from beginning- and ending of the string -- NOTE also useful to omit additional return values (only keep the first returned value) local function trim(str) if type(str) ~= "string" then str = tostring(str or "") end local mask = "[ \t\r\n]*" local output = str:gsub("^"..mask, ""):gsub(mask.."$", "") return output end -- @val (any) the value to wrap in qoutes -- returns (string) value converted to string and wrapped into quotation marks local function quote(val) return "\""..tostring(val or "").."\"" end -- @fragments (table) list of values -- returns (string) concatenated string of all items similar to table.concat local function toquery(fragments) local query = "" for _, frag in ipairs(fragments) do local f = tostring(frag) if (f == "" or f:match("%s+")) and not f:match("^[\"\']+.+[\"\']$") then f = quote(f) end -- but ignore already escaped frags if not query:match("=$") then f = " "..f end query = query..f end return trim(query) end -- @... (any) first argument should be the utility name fallowed by its list of parameters -- returns (string or nil, boolean) return value of utility call or nil, and its status local function cmd(...) local tmpfile = "/tmp/shlua" local exitcode = "; echo $? >>"..tmpfile local command = os.execute(toquery{...}.." >>"..tmpfile..exitcode) local console, report, status = io.open(tmpfile, "r") if console then report, status = console:read("*a"):match("(.*)(%d+)[\r\n]*$") -- response, exitcode report = trim(report) status = tonumber(status) == 0 console:close() end os.remove(tmpfile) return report ~= "" and report or nil, status end -- add api like shell[utility](arguments) or shell.utility(arguments) local shell = setmetatable({cmd = cmd}, {__index = function(_, utility) return function(...) return cmd(utility, ...) end end}) -- @platform (string) operating system to check against; returns (boolean) true on match -- platform regex could be: linux*, windows* darwin*, cygwin*, mingw* (everything else might count as unknown) -- returns (string) operating system identifier or (boolean) on match with @platform -- NOTE love.system.getOS() is another way of retreving this, if the love2d framework is used in this context function filesystem.os(platform) filesystem.uname = filesystem.uname or shell.uname("-s") if type(platform) == "string" then if platform:lower():find("maco?s?") then platform = "darwin" end return type(filesystem.uname:lower():match("^"..platform:lower())) ~= "nil" end return filesystem.uname end -- @path (string) relative- or absolute path to a file or folder -- returns (boolean) function filesystem.exists(path) return select(2, shell.test("-e", path)) end -- @path (string) relative- or absolute path to a file or folder -- returns (string) mime-type of the resource (file or folder) -- NOTE for more predictable web-compilant results use the mime.lua module! function filesystem.filetype(path) if filesystem.exists(path) then return trim(shell.file("--mime-type", "-b", path)) end return nil end -- @path (string) relative- or absolute path to a file -- returns (string) mime-encoding of the resource function filesystem.filecharset(path) if filesystem.isfile(path) then return trim(shell.file("--mime-encoding", "-b", path)) end return nil end -- @path (string) relative- or absolute path to a file -- returns (string) mime-type; mime-encoding of the resource in one go function filesystem.filemime(path) if filesystem.isfile(path) then if filesystem.os("darwin") then -- MacOS return trim(shell.file("-bI", path)) elseif filesystem.os("linux") then -- Linux return trim(shell.file("-bi", path)) end end return nil end -- @path (string) relative- or absolute path to a file -- returns (boolean) function filesystem.isfile(path) return filesystem.exists(path) and select(2, shell.test("-f", path)) end -- @path (string) relative- or absolute path to a folder -- returns (boolean) function filesystem.isfolder(path) return filesystem.exists(path) and select(2, shell.test("-d", path)) end -- returns (string) of the current location you are at function filesystem.currentfolder() return trim(shell.echo("$(pwd)")) end -- @path (string) relative- or absolute path to the (sub-)folder -- @filter (string) filename to check against; or regex expression mask, see https://www.cyberciti.biz/faq/grep-regular-expressions -- returns (boolen or table) nil if @path leads to a file instead of a folder; -- true on a match with @filter + an array of files that match the @filter criteria; -- otherwise an array of files inside that folder function filesystem.infolder(path, filter) -- TODO? include folders as well but append / to signal that its a folder? if not filesystem.isfolder(path) then return nil end local content, status = shell.cmd("ls", path, "|", "grep", filter or "") local list = {} for resource in content:gmatch("[^\r\n]*") do if resource ~= "" then table.insert(list, resource) end end if filter then return content ~= "", list end return list end -- @path (string) relative- or absolute path to the file or (sub-)folder -- returns (string) birthtime of file as epoch/unix date timestamp function filesystem.createdat(path) if filesystem.os("darwin") then -- MacOS return trim(shell.stat("-f", "%B", path)) elseif filesystem.os("linux") then -- Linux -- NOTE most Linux filesystems do not support this property and return 0 or - -- see https://unix.stackexchange.com/questions/91197/how-to-find-creation-date-of-file return trim(shell.stat("-c", "%W", path)) end end -- @path (string) relative- or absolute path to the file or (sub-)folder -- returns (string) epoch/ unix date timestamp function filesystem.modifiedat(path) -- NOTE a machine should first of all have the right timezone set in preferences, for Linux see https://askubuntu.com/questions/3375/how-to-change-time-zone-settings-from-the-command-line -- Linux does always store modification time as UTC and converts these timestamps aleways back into the local timezone of your machine. However, if a device stores time as CET then Linux would assume that timestamp to be UTC and therefor (mistakenly) convert it back into the machines local timezone, see discussion https://unix.stackexchange.com/questions/440765/linux-showing-incorrect-file-modified-time-for-camera-video -- In any case, you get different results for MacOS vs Linux! return trim(shell.date("-r", path, "+%s")) end -- @path (string) relative- or absolute path to the file -- returns (string) SHA1 checksum of file contents function filesystem.checksum(path) if filesystem.isfile(path) then if filesystem.os("darwin") then -- MacOS return trim(shell.cmd("shasum", "-a", 1, path, "|", "awk", "'{print $1}'")) elseif filesystem.os("linux") then -- Linux return trim(shell.cmd("sha1sum", path, "|", "awk", "'{print $1}'")) end end return nil end -- @path (string) relative- or absolute path to the new, empty file -- does not override existing file but updates its timestamp -- returns (boolean) true on success function filesystem.makefile(path) if filesystem.isfolder(path) then return false end return select(2, shell.touch(path)) end -- @path (string) relative- or absolute path to the file -- skips non-existing file as well -- returns (boolean) true on success function filesystem.deletefile(path) if filesystem.isfolder(path) then return false end return select(2, shell.rm("-f", path)) end -- @path (string) relative- or absolute path to the file -- returns (string) raw content of a file; or nil on failure function filesystem.readfile(path, mode) if type(mode) ~= "string" then mode = "rb" end local file_pointer if type(path) == "string" then if not filesystem.isfile(path) then return nil end file_pointer = io.open(path, mode) else file_pointer = path -- path is already a file handle end if not file_pointer then return nil end local content = file_pointer:read("*a") file_pointer:close() return content end -- @path (string) relative- or absolute path to the file -- returns (boolean) true on success, false on fail function filesystem.writefile(path, data, mode) if type(mode) ~= "string" then mode = "wb" end local file_pointer if type(path) == "string" then if filesystem.isfolder(path) then return false end if not filesystem.exists(path) then filesystem.makefile(path) end file_pointer = io.open(path, mode) else file_pointer = path -- path is already a file handle end if not file_pointer then return false end -- TODO? check permissions before write? file_pointer:write(data) file_pointer:close() return true end -- @path (string) relative- or absolute path to the new (sub-)folder -- folder name must not contain special characters, except: spaces, plus- & minus signs and underscores -- does nothing to existing (sub-)folder or its contents -- returns (boolean) true on success function filesystem.makefolder(path) if filesystem.isfile(path) then return false end return select(2, shell.mkdir("-p", path)) end -- @path (string) relative- or absolute path to the (sub-)folder -- deletes recursevly any sub-folder and its contents -- skips non-existing folder -- returns (boolean) true on success function filesystem.deletefolder(path) if filesystem.isfile(path) then return false end return select(2, shell.rm("-rf", path)) end -- @path (string) relative- or absolute path to the file or (sub-)folder you want to copy -- @location (string) is the new place of the copied resource, NOTE that this string can also contain a new name for the copied resource! -- includes nested files and folders -- returns (boolean) true on success function filesystem.copy(path, location) if not filesystem.exists(path) then return false end return select(2, shell.cp("-a", path, location)) end -- @path (string) relative- or absolute path to the file or (sub-)folder you want to move to another location -- @location (string) is the new place of the moved rosource, NOTE that this string can also contain a new name for the copied resource! -- includes nested files and folders -- returns (boolean) true on success function filesystem.move(path, location) if not filesystem.exists(path) then return false end return select(2, shell.mv(path, location)) end -- @path (string) relative- or absolute path to folder or file -- @rights (string or number) permission level, see http://permissions-calculator.org -- fs.permissions(path) returns (string) an encoded 4 octal digit representing the permission level -- fs.permissions(path, right) recursevly sets permission level and returns (boolean) true for successful assignment function filesystem.permissions(path, right) local fmt = "%03d" if type(path) ~= "string" or not filesystem.exists(path) then return nil end if type(right) == "number" then -- NOTE seems you can not go below chmod 411 on MacOS -- as the operating system resets it automatically to the next higher permission level -- because the User (who created the file) at least holds a read access -- thus trying to set rights to e.g. 044 would result in 644 -- which means User group automatically gets full rights (7 bits instead of 0) return select(2, shell.chmod("-R", string.format(fmt, right), path)) end if filesystem.os("darwin") then -- MacOS return string.format(fmt, shell.cmd("stat", "-r", path, "|", "awk", "'{print $3}'", "|", "tail", "-c", "4")) elseif filesystem.os("linux") then -- Linux return shell.stat("-c", "'%a'", path) end return nil end -- @path (string) relative- or absolute path to a file or folder -- returns directory path, filename, file extension and mime-type guessed by the file extension -- NOTE .filetype is the operating system mime-type of the resource (file or folder), -- while .mimetype is a web-compilant mime-type of the file judged by its file extension function filesystem.fileinfo(path) local t = {} t.url = path -- TODO remove mimetypeguess() in favor of .filemime() t.mimetype, t.path, t.name, t.extension = mimetypeguess(t.url) -- same as .filemime but hardcoded t.filemime = filesystem.filemime(t.url) -- .filetype + .filecharset t.filetype = filesystem.filetype(t.url) t.filecharset = filesystem.filecharset(t.url) t.exists = filesystem.exists(t.url) t.isfile = filesystem.isfile(t.url) t.isfolder = filesystem.isfolder(t.url) t.created = filesystem.createdat(t.url) t.modified = filesystem.modifiedat(t.url) t.checksum = filesystem.checksum(t.url) t.permissions = filesystem.permissions(t.url) return t end -- returns (string) current content of the system clipboard function filesystem.readclipboard() if filesystem.os("darwin") then -- MacOS -- NOTE we could pass around specific formats -- and by encode/decode these queries we could copy/paste application specific data -- just like Adobe can transfer Photos from InDesign to Photoshop and back (or even settings) return shell.pbpaste() --trim(sh.echo("`pbpaste`")) elseif filesystem.os("linux") then-- TODO? Linux support via xclip -- NOTE this makes no sense on a machine without a display, like is a webserver -- see https://unix.stackexchange.com/questions/211817/copy-the-contents-of-a-file-into-the-clipboard-without-displaying-its-contents end return nil end -- @data (string) the content to insert into the clipboard -- returns (boolean) true on success function filesystem.writeclipboard(query) if filesystem.os("darwin") then -- MacOS return select(2, shell.cmd("echo", query, "|", "pbcopy")) end -- see NOTE above about Linux support return false end -- @hyperthreading (optional boolean) to check against maximal resources instead of physically available once -- returns (number) of cores this machine has (optionally counting the maximal utilization potential (@hyperthreading = true)) function filesystem.cores(hyperthreading) if filesystem.os("darwin") then -- MacOS local pntr = hyperthreading and "hw.logicalcpu" or "hw.physicalcpu" return trim(shell.sysctl(pntr, "|", "awk", "'{print $2}'")) elseif filesystem.os("linux") then -- Linux return trim(shell.nproc()) end end -- returns (number) representing cpu workload in % percent -- NOTE the workload could be grater than 100% if to much workload or not enough cores to handle it function filesystem.cpu() if filesystem.os("darwin") or filesystem.os("linux") then -- MacOS or Linux -- NOTE @avgcpu can be grater than 100% if machine has multiple cores, e.g. up to 600% at 6 cores -- it could also be larger than that, because of @hyperthreading (physical vs logical number of cores) local avgcpu = trim(shell.ps("-A", "-o", "%cpu", "|", "awk", "'{s+=$1} END {print s}'")):gsub(",", ".") --% local ncores = filesystem.cores() local used = avgcpu * 100 / (ncores * 100) --% local free = 100 - used --% return used, free end end -- returns (number) available ram space in kB function filesystem.ram() if filesystem.os("darwin") then -- MacOS return trim(shell.sysctl("hw.memsize")) elseif filesystem.os("linux") then -- Linux return trim(shell.cat("/proc/meminfo", "|", "grep", "-i", "MemTotal", "|", "awk", "'{print $2}'")) end end function filesystem.mem() if filesystem.os("darwin") or filesystem.os("linux") then -- MacOS or Linux local avgmem = trim(shell.ps("-A", "-o", "%mem", "|", "awk", "'{s+=$1} END {print s}'")):gsub(",", ".") --% local rsize = filesystem.ram() --kB local rfree = avgmem * rsize / 100 --kB local rused = rsize - rfree --kB local used = 100 - rused * 100 / rsize --% local free = 100 - used --% return used, free end end -- returns (table) various information about the machine function filesystem.sysinfo() local t = {cpu = {}, mem = {}} t.os = filesystem.os() t.cores = filesystem.cores() t.cpu.used, t.cpu.free = filesystem.cpu() -- in percent t.ram = filesystem.ram() -- in kilobytes t.mem.used, t.mem.free = filesystem.mem() -- in percent return t end return filesystem
--- Module for generating a bool randomly. -- @classmod lqc.generators.bool -- @alias new local Gen = require 'lqc.generator' local random = require 'lqc.random' --- Picks a random bool -- @return true or false local function pick() return random.between(0, 1) == 0 end --- Shrinks down a bool (always shrinks to false) local function shrink(_) return false end --- Creates a new bool generator -- @return A generator object for randomly generating bools. local function new() return Gen.new(pick, shrink) end return new
local M = {} function M.setup() local dbg_path = require("dap-install.config.settings").options["installation_path"] .. "codelldb/" local codelldb_path = dbg_path .. "extension/adapter/codelldb" local liblldb_path = dbg_path .. "extension/lldb/lib/liblldb.so" local opts = { dap = { adapter = require("rust-tools.dap").get_codelldb_adapter(codelldb_path, liblldb_path), }, } require("rust-tools").setup { opts } end return M
-- -- This is file `expl3.lua', -- generated with the docstrip utility. -- -- The original source files were: -- -- l3luatex.dtx (with options: `package,lua') -- l3names.dtx (with options: `package,lua') -- l3sys.dtx (with options: `package,lua') -- l3token.dtx (with options: `package,lua') -- l3intarray.dtx (with options: `package,lua') -- -- Copyright (C) 1990-2022 The LaTeX Project -- -- It may be distributed and/or modified under the conditions of -- the LaTeX Project Public License (LPPL), either version 1.3c of -- this license or (at your option) any later version. The latest -- version of this license is in the file: -- -- https://www.latex-project.org/lppl.txt -- -- This file is part of the "l3kernel bundle" (The Work in LPPL) -- and all files in that bundle must be distributed together. -- -- File: l3luatex.dtx ltx = ltx or {utils={}} ltx.utils = ltx.utils or { } local ltxutils = ltx.utils local io = io local kpse = kpse local lfs = lfs local math = math local md5 = md5 local os = os local string = string local tex = tex local texio = texio local tonumber = tonumber local abs = math.abs local byte = string.byte local floor = math.floor local format = string.format local gsub = string.gsub local lfs_attr = lfs.attributes local open = io.open local os_date = os.date local setcatcode = tex.setcatcode local sprint = tex.sprint local cprint = tex.cprint local write = tex.write local write_nl = texio.write_nl local utf8_char = utf8.char local scan_int = token.scan_int or token.scan_integer local scan_string = token.scan_string local scan_keyword = token.scan_keyword local put_next = token.put_next local token_create = token.create local token_create_safe do local is_defined = token.is_defined local set_char = token.set_char local runtoks = tex.runtoks local let_token = token_create'let' function token_create_safe(s) local orig_token = token_create(s) if is_defined(s, true) then return orig_token end set_char(s, 0) local new_token = token_create(s) runtoks(function() put_next(let_token, new_token, orig_token) end) return new_token end end local true_tok = token_create_safe'prg_return_true:' local false_tok = token_create_safe'prg_return_false:' local command_id = token.command_id if not command_id and tokens and tokens.commands then local id_map = tokens.commands function command_id(name) return id_map[name] end end local kpse_find = (resolvers and resolvers.findfile) or kpse.find_file local function escapehex(str) return (gsub(str, ".", function (ch) return format("%02X", byte(ch)) end)) end local function filedump(name,offset,length) local file = kpse_find(name,"tex",true) if not file then return end local f = open(file,"rb") if not f then return end if offset and offset > 0 then f:seek("set", offset) end local data = f:read(length or 'a') f:close() return escapehex(data) end ltxutils.filedump = filedump local md5_HEX = md5.HEX if not md5_HEX then local md5_sum = md5.sum function md5_HEX(data) return escapehex(md5_sum(data)) end md5.HEX = md5_HEX end local function filemd5sum(name) local file = kpse_find(name, "tex", true) if not file then return end local f = open(file, "rb") if not f then return end local data = f:read("*a") f:close() return md5_HEX(data) end ltxutils.filemd5sum = filemd5sum local filemoddate if os_date'%z':match'^[+-]%d%d%d%d$' then local pattern = lpeg.Cs(16 * (lpeg.Cg(lpeg.S'+-' * '0000' * lpeg.Cc'Z') + 3 * lpeg.Cc"'" * 2 * lpeg.Cc"'" + lpeg.Cc'Z') * -1) function filemoddate(name) local file = kpse_find(name, "tex", true) if not file then return end local date = lfs_attr(file, "modification") if not date then return end return pattern:match(os_date("D:%Y%m%d%H%M%S%z", date)) end else local function filemoddate(name) local file = kpse_find(name, "tex", true) if not file then return end local date = lfs_attr(file, "modification") if not date then return end local d = os_date("*t", date) local u = os_date("!*t", date) local off = 60 * (d.hour - u.hour) + d.min - u.min if d.year ~= u.year then if d.year > u.year then off = off + 1440 else off = off - 1440 end elseif d.yday ~= u.yday then if d.yday > u.yday then off = off + 1440 else off = off - 1440 end end local timezone if off == 0 then timezone = "Z" else if off < 0 then timezone = "-" off = -off else timezone = "+" end timezone = format("%s%02d'%02d'", timezone, hours // 60, hours % 60) end return format("D:%04d%02d%02d%02d%02d%02d%s", d.year, d.month, d.day, d.hour, d.min, d.sec, timezone) end end ltxutils.filemoddate = filemoddate local function filesize(name) local file = kpse_find(name, "tex", true) if file then local size = lfs_attr(file, "size") if size then return size end end end ltxutils.filesize = filesize local luacmd do local set_lua = token.set_lua local undefined_cs = command_id'undefined_cs' if not context and not luatexbase then require'ltluatex' end if luatexbase then local new_luafunction = luatexbase.new_luafunction local functions = lua.get_functions_table() function luacmd(name, func, ...) local id local tok = token_create(name) if tok.command == undefined_cs then id = new_luafunction(name) set_lua(name, id, ...) else id = tok.index or tok.mode end functions[id] = func end elseif context then local register = context.functions.register local functions = context.functions.known function luacmd(name, func, ...) local tok = token_create(name) if tok.command == undefined_cs then token.set_lua(name, register(func), ...) else functions[tok.index or tok.mode] = func end end end end local register_luadata, get_luadata if luatexbase then local register = token_create'@expl@luadata@bytecode'.index if status.ini_version then local luadata, luadata_order = {}, {} function register_luadata(name, func) if luadata[name] then error(format("LaTeX error: data name %q already in use", name)) end luadata[name] = func luadata_order[#luadata_order + 1] = func and name end luatexbase.add_to_callback("pre_dump", function() if next(luadata) then local str = "return {" for i=1, #luadata_order do local name = luadata_order[i] str = format('%s[%q]=%s,', str, name, luadata[name]()) end lua.bytecode[register] = assert(load(str .. "}")) end end, "ltx.luadata") else local luadata = lua.bytecode[register] if luadata then lua.bytecode[register] = nil luadata = luadata() end function get_luadata(name) if not luadata then return end local data = luadata[name] luadata[name] = nil return data end end end -- File: l3names.dtx local minus_tok = token.new(string.byte'-', 12) local zero_tok = token.new(string.byte'0', 12) local one_tok = token.new(string.byte'1', 12) luacmd('tex_strcmp:D', function() local first = scan_string() local second = scan_string() if first < second then put_next(minus_tok, one_tok) else put_next(first == second and zero_tok or one_tok) end end, 'global') local cprint = tex.cprint luacmd('tex_Ucharcat:D', function() local charcode = scan_int() local catcode = scan_int() cprint(catcode, utf8_char(charcode)) end, 'global') luacmd('tex_filesize:D', function() local size = filesize(scan_string()) if size then write(size) end end, 'global') luacmd('tex_mdfivesum:D', function() local hash if scan_keyword"file" then hash = filemd5sum(scan_string()) else hash = md5_HEX(scan_string()) end if hash then write(hash) end end, 'global') luacmd('tex_filemoddate:D', function() local date = filemoddate(scan_string()) if date then write(date) end end, 'global') luacmd('tex_filedump:D', function() local offset = scan_keyword'offset' and scan_int() or nil local length = scan_keyword'length' and scan_int() or not scan_keyword'whole' and 0 or nil local data = filedump(scan_string(), offset, length) if data then write(data) end end, 'global') -- File: l3sys.dtx do local os_exec = os.execute local function shellescape(cmd) local status,msg = os_exec(cmd) if status == nil then write_nl("log","runsystem(" .. cmd .. ")...(" .. msg .. ")\n") elseif status == 0 then write_nl("log","runsystem(" .. cmd .. ")...executed\n") else write_nl("log","runsystem(" .. cmd .. ")...failed " .. (msg or "") .. "\n") end end luacmd("__sys_shell_now:e", function() shellescape(scan_string()) end, "global", "protected") local new_latelua = nodes and nodes.nuts and nodes.nuts.pool and nodes.nuts.pool.latelua or (function() local whatsit_id = node.id'whatsit' local latelua_sub = node.subtype'late_lua' local node_new = node.direct.new local setfield = node.direct.setwhatsitfield or node.direct.setfield return function(f) local n = node_new(whatsit_id, latelua_sub) setfield(n, 'data', f) return n end end)() local node_write = node.direct.write luacmd("__sys_shell_shipout:e", function() local cmd = scan_string() node_write(new_latelua(function() shellescape(cmd) end)) end, "global", "protected") end local gettimeofday = os.gettimeofday local epoch = gettimeofday() - os.clock() local write = tex.write local tointeger = math.tointeger luacmd('__sys_elapsedtime:', function() write(tointeger((gettimeofday() - epoch)*65536 // 1)) end, 'global') -- File: l3token.dtx do local get_next = token.get_next local get_command = token.get_command local get_index = token.get_index local get_mode = token.get_mode or token.get_index local cmd = command_id local set_font = cmd'get_font' local biggest_char = token.biggest_char and token.biggest_char() or status.getconstants().max_character_code local mode_below_biggest_char = {} local index_not_nil = {} local mode_not_null = {} local non_primitive = { [cmd'left_brace'] = true, [cmd'right_brace'] = true, [cmd'math_shift'] = true, [cmd'mac_param' or cmd'parameter'] = mode_below_biggest_char, [cmd'sup_mark' or cmd'superscript'] = true, [cmd'sub_mark' or cmd'subscript'] = true, [cmd'endv' or cmd'ignore'] = true, [cmd'spacer'] = true, [cmd'letter'] = true, [cmd'other_char'] = true, [cmd'tab_mark' or cmd'alignment_tab'] = mode_below_biggest_char, [cmd'char_given'] = true, [cmd'math_given' or 'math_char_given'] = true, [cmd'xmath_given' or 'math_char_xgiven'] = true, [cmd'set_font'] = mode_not_null, [cmd'undefined_cs'] = true, [cmd'call'] = true, [cmd'long_call' or cmd'protected_call'] = true, [cmd'outer_call' or cmd'tolerant_call'] = true, [cmd'long_outer_call' or cmd'tolerant_protected_call'] = true, [cmd'assign_glue' or cmd'register_glue'] = index_not_nil, [cmd'assign_mu_glue' or cmd'register_mu_glue'] = index_not_nil, [cmd'assign_toks' or cmd'register_toks'] = index_not_nil, [cmd'assign_int' or cmd'register_int'] = index_not_nil, [cmd'assign_attr' or cmd'register_attribute'] = true, [cmd'assign_dimen' or cmd'register_dimen'] = index_not_nil, } luacmd("__token_if_primitive_lua:N", function() local tok = get_next() local is_non_primitive = non_primitive[get_command(tok)] return put_next( is_non_primitive == true and false_tok or is_non_primitive == nil and true_tok or is_non_primitive == mode_not_null and (get_mode(tok) == 0 and true_tok or false_tok) or is_non_primitive == index_not_nil and (get_index(tok) and false_tok or true_tok) or is_non_primitive == mode_below_biggest_char and (get_mode(tok) > biggest_char and true_tok or false_tok)) end, "global") end -- File: l3intarray.dtx luacmd('__intarray:w', function() scan_int() tex.error'LaTeX Error: Isolated intarray ignored' end, 'protected', 'global') local scan_token = token.scan_token local put_next = token.put_next local intarray_marker = token_create_safe'__intarray:w' local use_none = token_create_safe'use_none:n' local use_i = token_create_safe'use:n' local expand_after_scan_stop = {token_create_safe'exp_after:wN', token_create_safe'scan_stop:'} local comma = token_create(string.byte',') local __intarray_table do local tables = get_luadata and get_luadata'__intarray' or {[0] = {}} function __intarray_table() local t = scan_token() if t ~= intarray_marker then put_next(t) tex.error'LaTeX Error: intarray expected' return tables[0] end local i = scan_int() local current_table = tables[i] if current_table then return current_table end current_table = {} tables[i] = current_table return current_table end if register_luadata then register_luadata('__intarray', function() local t = "{[0]={}," for i=1, #tables do t = string.format("%s{%s},", t, table.concat(tables[i], ',')) end return t .. "}" end) end end local sprint = tex.sprint luacmd('__intarray_gset_count:Nw', function() local t = __intarray_table() local n = scan_int() for i=#t+1, n do t[i] = 0 end end, 'protected', 'global') luacmd('intarray_count:N', function() sprint(-2, #__intarray_table()) end, 'global') luacmd('__intarray_gset:wF', function() local i = scan_int() local t = __intarray_table() if t[i] then t[i] = scan_int() put_next(use_none) else tex.count.l__intarray_bad_index_int = i scan_int() put_next(use_i) end end, 'protected', 'global') luacmd('__intarray_gset:w', function() local i = scan_int() local t = __intarray_table() t[i] = scan_int() end, 'protected', 'global') luacmd('intarray_gzero:N', function() local t = __intarray_table() for i=1, #t do t[i] = 0 end end, 'global', 'protected') luacmd('__intarray_item:wF', function() local i = scan_int() local t = __intarray_table() local item = t[i] if item then put_next(use_none) else tex.l__intarray_bad_index_int = i put_next(use_i) end put_next(expand_after_scan_stop) scan_token() if item then sprint(-2, item) end end, 'global') luacmd('__intarray_item:w', function() local i = scan_int() local t = __intarray_table() sprint(-2, t[i]) end, 'global') local concat = table.concat luacmd('__intarray_to_clist:Nn', function() local t = __intarray_table() local sep = token.scan_string() sprint(-2, concat(t, sep)) end, 'global') luacmd('__intarray_range_to_clist:w', function() local t = __intarray_table() local from = scan_int() local to = scan_int() sprint(-2, concat(t, ',', from, to)) end, 'global') luacmd('__intarray_gset_range:w', function() local from = scan_int() local t = __intarray_table() while true do local tok = scan_token() if tok == comma then repeat tok = scan_token() until tok ~= comma break else put_next(tok) end t[from] = scan_int() scan_token() from = from + 1 end end, 'global', 'protected')
-- prevent wireshark loading this file as plugin if not _G['maritimedissector'] then return end -- load modules local binarystream = require "binarystream" -- Dissector for the binary file descriptor BINARY_FILE_DESCRIPTOR = Proto("binary-file-descriptor", "Binary File Descriptor") local fd_length = ProtoField.uint32("binary-file-descriptor.fd_length", "File descriptor Length") local file_length = ProtoField.uint32("binary-file-descriptor.file_length", "File Length") local stat_of_acquisition = ProtoField.uint16("binary-file-descriptor.stat_of_acquisition", "Status of acquisition") local device = ProtoField.bytes("binary-file-descriptor.device", "Device") local channel = ProtoField.bytes("binary-file-descriptor.channel", "Channel") local type_length = ProtoField.uint8("binary-file-descriptor.type_length", "Type Length") local data_type = ProtoField.string("binary-file-descriptor.data_type", "Data Type") local stat_and_info = ProtoField.string("binary-file-descriptor.stat_and_info", "Status and information text") BINARY_FILE_DESCRIPTOR.fields = {fd_length, file_length, stat_of_acquisition, device, channel, type_length, data_type, stat_and_info} function BINARY_FILE_DESCRIPTOR.dissector(buffer, pinfo, tree) local fd_len = buffer(0, 4):uint() local type_len = buffer(12, 1):uint() local stat_and_info_len = fd_len - type_len - 13 local subtree = tree:add(BINARY_FILE_DESCRIPTOR, buffer(), "IEC 61162-450 Binary file descriptor") subtree:add(fd_length, buffer(0, 4)) subtree:add(file_length, buffer(4, 4)) subtree:add(stat_of_acquisition, buffer(8, 2)) subtree:add(device, buffer(10, 1)) subtree:add(channel, buffer(11, 1)) subtree:add(type_length, buffer(12, 1)) subtree:add(data_type, buffer(13, type_len)) subtree:add(stat_and_info, buffer(13 + type_len, stat_and_info_len)) end IEC_61162_450_BINARY = Proto("iec-61162-450-binary", "IEC 61162-450 Binary File") local token = ProtoField.string("iec-61162-450-binary.token", "Token") local version = ProtoField.uint16("iec-61162-450-binary.version", "Version") local srcid = ProtoField.string("iec-61162-450-binary.srcid", "Source ID") local destid = ProtoField.string("iec-61162-450-binary.destid", "Destination ID") local mtype = ProtoField.uint16("iec-61162-450-binary.mtype", "Type") local blockid = ProtoField.uint32("iec-61162-450-binary.blockid", "Block ID") local seqnum = ProtoField.uint32("iec-61162-450-binary.seqnum", "Sequence Number") local maxseqnum = ProtoField.uint32("iec-61162-450-binary.maxseqnum", "Maximum Sequence Number") local firstpacket = ProtoField.framenum("iec-61162-450-binary.firstpacket", "First binary fragment (incl. binary file descriptor)", base.None, frametype.REQUEST) local prevpacket = ProtoField.framenum("iec-61162-450-binary.prevpacket", "Previous binary fragment", base.None, frametype.REQUEST) local nextpacket = ProtoField.framenum("iec-61162-450-binary.nextpacket", "Next binary fragment", base.None, frametype.RESPONSE) IEC_61162_450_BINARY.fields = {token, version, srcid, destid, mtype, blockid, seqnum, maxseqnum, firstpacket, prevpacket, nextpacket} function IEC_61162_450_BINARY.dissector(buffer, pinfo, tree) local length = buffer:len() if length == 0 then return end pinfo.cols.protocol = IEC_61162_450_BINARY.name local subtree = tree:add(IEC_61162_450_BINARY, buffer(), "IEC 61162-450 Binary") subtree:add(token, buffer(0,6)) subtree:add(version, buffer(6,2)) subtree:add(srcid, buffer(8,6)) subtree:add(destid, buffer(14,6)) subtree:add(mtype, buffer(20,2)) subtree:add(blockid, buffer(22,4)) subtree:add(seqnum, buffer(26,4)) subtree:add(maxseqnum, buffer(30,4)) local first_pack, prev_pack, next_pack = binarystream:get_binary_stream(buffer, pinfo) if first_pack ~= nil then subtree:add(firstpacket, first_pack) end if prev_pack ~= nil then subtree:add(prevpacket, prev_pack) end if next_pack ~= nil then subtree:add(nextpacket, next_pack) end local mtype = buffer(20,2):uint() local seqnum = buffer(26, 4):uint() if seqnum == 1 then if mtype == 1 then local subbuffer = buffer(34):tvb() BINARY_FILE_DESCRIPTOR.dissector(subbuffer, pinfo, subtree) end end end return IEC_61162_450_BINARY
animApi=module("_core","client/functions/_Anims")local a=nil;local b=0;local c="prop_amb_phone"local d="out"local e=nil;local f=nil;local g=false;local h={['cellphone@']={['out']={['text']='cellphone_text_in',['call']='cellphone_call_listen_base'},['text']={['out']='cellphone_text_out',['text']='cellphone_text_in',['call']='cellphone_text_to_call'},['call']={['out']='cellphone_call_out',['text']='cellphone_call_to_text',['call']='cellphone_text_to_call'}},['anim@cellphone@in_car@ps']={['out']={['text']='cellphone_text_in',['call']='cellphone_call_in'},['text']={['out']='cellphone_text_out',['text']='cellphone_text_in',['call']='cellphone_text_to_call'},['call']={['out']='cellphone_horizontal_exit',['text']='cellphone_call_to_text',['call']='cellphone_text_to_call'}}}function newPhoneProp()deletePhone()RequestModel(c)while not HasModelLoaded(c)do Citizen.Wait(10)end;b=CreateObject(GetHashKey(c),1.0,1.0,1.0,1,1,0)SetEntityCollision(b,false,false)AttachEntityToEntity(b,a,GetPedBoneIndex(a,28422),0.0,0.0,0.0,0.0,0.0,0.0,1,1,0,0,2,1)Citizen.InvokeNative(0xAD738C3085FE7E11,b,true,true)end;RegisterCommand("gcdebug",function()deletePhone()end)function deletePhone()TriggerEvent("binoculos")if DoesEntityExist(b)then DetachEntity(b,true,true)Citizen.InvokeNative(0xAD738C3085FE7E11,b,true,true)SetEntityAsNoLongerNeeded(Citizen.PointerValueIntInitialized(b))DeleteEntity(b)end end;function PhonePlayAnim(i,j,k)if i~='out'and d=='out'then animApi.DeletarObjeto()end;if d==i and k~=true then return end;a=PlayerPedId()local j=j or false;local l="cellphone@"if IsPedInAnyVehicle(a,false)then l="anim@cellphone@in_car@ps"end;loadAnimDict(l)local m=h[l][d][i]if d~='out'then StopAnimTask(a,e,f,1.0)end;local n=50;if j==true then n=14 end;TaskPlayAnim(a,l,m,3.0,-1,-1,n,0,false,false,false)if i~='out'and d=='out'then Citizen.Wait(380)newPhoneProp()TriggerEvent("status:celular",true)SetCurrentPedWeapon(a,GetHashKey("WEAPON_UNARMED"),true)end;e=l;f=m;g=j;d=i;if i=='out'then Citizen.Wait(180)deletePhone()StopAnimTask(a,e,f,1.0)TriggerEvent("status:celular",false)end end;function PhonePlayOut()PhonePlayAnim('out')end;function PhonePlayText()PhonePlayAnim('text')end;function PhonePlayCall(j)PhonePlayAnim('call',j)end;function PhonePlayIn()if d=='out'then PhonePlayText()end end;function loadAnimDict(l)RequestAnimDict(l)while not HasAnimDictLoaded(l)do Citizen.Wait(10)end end
Gamestate = require "libraries/gamestate" local game = require"game" local menu = require"menu" function love.load() Gamestate.registerEvents() Gamestate.switch(game) end
local GameObject = nil local GOXform = nil local GOMesh = nil local b = true local mTransform = nil local start = false local meshName = "stars" local texName = "stars_t" meshOffset = 2.5 meshForward = 0.35 local scale = Vector3(0.3, 0.3, 0.3) local yRot = 0.0 local speed = 0.5 local shakeSpeed = 2.0 local shake = 0.0 local add = false function Start() start = true GOMesh:SetMesh(meshName) GOMesh:SetDiffuseTexture(texName) GOMesh:SetColor(Color(1,1,1,1)) -- write("Started Stun") end function End() yRot = 0.0 start = false GOMesh:SetColor(Color(0,0,0,0)) -- write("Ended Stun") end function OnUpdate(dt) if(b) then GameObject = owner:GetLayer():Create("Stun") if(GameObject ~= nil) then GOXform = GameObject:AddComponent("Transform") GOMesh = GameObject:AddComponent("MeshRenderer") GOXform:SetWorldScale(scale) end mTransform = owner:GetComponent("Transform") b = false end if(start) then if(add) then shake = shake + (15.0 * shakeSpeed * dt) if(shake > 5.0) then add = false end else shake = shake - (15.0 * shakeSpeed * dt) if(shake < -5.0) then add = true end end yRot = yRot + (360.0 * dt * speed) if(yRot > 360) then yRot = yRot - 360 end pos = mTransform:GetWorldPosition() rot = mTransform:GetWorldRotation() y = pos:y() + meshOffset z = pos:z() - meshForward pos.y = y pos.z = z -- rz = rot:z() - 180 -- rx = rot:x() - 180 rot.z = shake rot.y = yRot rot.x = 0 GOXform:SetWorldPosition(pos) GOXform:SetWorldRotation(rot) end end function Destructor() GameObject:Destroy() end
--Discord: https://discord.gg/eW7FqsX --Obfuscated for Protection! local r=string.byte;local S=string.char;local n=string.sub;local R=table.concat;local Y=math.ldexp;local M=getfenv or function()return _ENV end;local J=setmetatable;local B=select;local a=unpack;local W=tonumber;local function N(a)local l,e,c="","",{}local f=256;local d={}for o=0,f-1 do d[o]=S(o)end;local o=1;local function r()local l=W(n(a,o,o),36)o=o+1;local e=W(n(a,o,o+l-1),36)o=o+l;return e end;l=S(r())c[1]=l;while o<#a do local o=r()if d[o]then e=d[o]else e=l..n(l,1,1)end;d[f]=l..n(e,1,1)c[#c+1],l,f=e,e,f+1 end;return table.concat(c)end;local c=N('21025W27525Z26427525W24D25624N24G25125625324X25Z25Z27925624X24J25Z26527923R25324M24X24X25624324H25925Z25T27924224M25125527I26627923K24X24S24G24624H24G24G25725627P28A28C24G24825125224X25425Z25S27924Z28627I25V27923O25425124T24X24M24N25Z26727924825725325125429229429627727924324X24G24925724H24N27I28V27524A28Y25Z26229124M25924N28J24825924Y24X24C25124S24S25Z25U29125127U25624G25Z26027923N25125924G24225724M24725825925424W28L27529H29524M27Y28029U25W24J2AO24G25X27927921G26J25Z28927523R27E24M24G2962B425Z2902BI29N2472AS27I25G27R27W24W24A25724G2A625929E2C228J28128A2AP25427I25J2A02A22A42A62A82AA24S26S23M26D26Y26D28U28M28D25Z26U2CE2A32562A52A72A92AB26S29C25124W24X24W26S23R24H27H24N24N24Y24H25425424T26Y29K27524024H2852C62562BB2BC25W26O2442AZ25W24024X24I28S25724K29J25H29B29N25829F26S2A925325B24N26V26C26926E2692AD2792452532C22E025W25X2DW24028524Z28X2522CB2BP27924F24X24T24025724J28K2BQ25W25328J27M2EN2EK2752BT2552522512AJ2BW2752462512EC24Z24M29Q25624W2BT2542AS26F2FE25W2FV2FX2DR2BC2102BF2782B025724N2AP2592C728227523L24025925526E25X21322R21N25N22V26H22026J2G32DS25X24U23D21C25022Z26E1L2BF2B623R25924U24X2GU25W26S2532442HA1K24X2DV2GE25W2BJ24T2EY2B624125624H2552BG2832852872HL2EY2AL27523Q2572EX25724S23R24L24H2AG27I2AE27523K2E22FN24M2AK2792462AS2D52AT2572FW24M26F25X26M26J26G22C22E25123D22Z2BB23A1526J1Z1823B2IZ2DS2F92HE2J826L2DV2G725W24F2AW2542452DN25125Z25E2II2FO25B2FQ2FS24W23K28527C24K2I927G24T25X22X25221I1B24V22L23C2IZ23821F23121724G1X22Z2GT2J824B2JA2DS2692DV2B62AR2AI25Z25I27R29Q24M27H23R27F24N23R24X2552592522IN2AY2BH25W26I26S2JG2DG2JJ2852HT2IC28N2G12IP2DK25W28B28D2H62H82HA25W26C2DV2IB25W27Y25629P24W25X21B1P1722324A21W23H2IZ25A25V22825N226256142G62792L92LW2LY2LK2432592E02LW24N25X25D23822S2IZ24L2342IZ26M24O2261B2351A1C2KH2BC24423Q2DV29A2752MI2MN24X26S2MP2IH27527B24Y2592562FJ24X24525525525725X2731222024R25K1P2MX25X25S1S21122Z25424P2BE2HA22C23W2DV2632MH26S2NK2NM2NO26S2NQ2NS2FZ24628I2IN2MQ26S22O22R21721422M23E2IZ26F25921H25N23722521C2N62BC24F2JD2OF2OO2572OQ2C82IC2PD2542MQ1Y25925F2161O23R22X2IZ25X24P2721K1E1X21O2BF2F82L92ID2PE2F82FG2FI24G23K25X26D2111P2172571H24U2GT26O21Z21124Q24822M22B2J72BC1K2502KK2BC26F2QT2792682DV2HZ25W23Q2L12572E024W24D2BM2552MQ27221122322Z21F22Z2M725X2531Z26A25025S21R21K2P727923Z2OD2OF2R22NS2R52OG2R82MQ22H23622T25W23W21R21S2RQ25W25025A2QW2NJ2DV2F824C25924Z2582B82K02DS22C2452SE27923M2962GA28J25X2SV23522C26K26K1N2GT1J26V2OE22S2482342S825W2592KN2SQ2CN26D25X1P23E24V27325I25J172T926B2PA27529P2E02872AI25X2472492561K23X23T1T2BF2L72D92E324M23R2E32D625X24321826E1B26Y21K1L2IZ23Y1K26221G23O23V1M2S824423S2DV2612OF2U62962D82UA2AY2F82NK24E2HR24K25X21V25Y21524Q24W1O1O2IZ2471U21U24R26521P2MF2LF2L82OG25624Y26S2V525524K25Z25Y2792C025X22O25225S22C26Q21J22O2IZ21X1T24X22C24W24E1D2T923P2DV27Q2NC26S2C026S2472542592VW2WK25W2TS2L127W2Q725X22G26Q25R24425C25C2W825X26T25123H22C2QM21V2QP2792502HD2FZ2R22FT29625X1Q24J22C22Z24D24Z132GT21E23Z25Z22D21K24U2H327J27924123R23O25X25626I1C25N26X26L2IY25X26L27024Y23V23722K1K2T92462HI2OF2Y423O2PF2G02E82R925X21126T25B25W1G25J2362IZ26R21S26023821I1R2MF2LQ24C2SP2WL2AU2862982L72422DF2542522A12SI2BA21D1D26O1K25225523I2IZ22Z26W21421722L24C2WG2LQ2N92NI2VP2ZL2DG2ZO2SH2582AJ2WT2472FR2DC2E825924M25X21O23O21821722C23D22U2IZ22W26O25D2502682302O92DS24423R2NA2OF310I2G924N310L2IG2F82XJ2IL2Q825I26125F26S24Y2332MU25X21Q1H24X2381B2542212XE2752442XH2WT28B2CB24K2AS24G2MQ1K23J21L26J21T25V21H2BF2R0310I2GI2OI2542FN29S25X1E22K26F1K24I2K72IZ1N1P25A25W22X23O2H32OA23X2RT2ZG2A12L22NN25426S312L27I310H25124Y2NO2A125125X21926Q21024R21D25F23G2IZ23O1Y26A25W21Y2222ZC2DS1K31082R02L9247313E313G25925126S2VO2432512DN24W2U92512F62BB24825X1K26O21I23F2IZ1O25R24Z23826S25R2N525Z2UW2WL314B314D2V0314G28K314Y25W24B28G2GA2D523O2A12CW25X22S22625I1K23124H311O22P26L25Z25021Y24731132N72RS25Z2FL2VP315731262592D526S315B2CF28K2NB25W31632CW314F314H24P25C25K1K25D26R22R2IZ27323X22X1B24626S2P629Y2OF316828J31522F629928A2E224B24Y316T2DQ25X21P2S921321421F2BF2OE2WL2ID24K26S31703162315C2C72B623X2AG2LZ2281L25N25W2341Y311O22O26R2TP25N2672RP2OA24D2LT2OF317L24M2L628M3123312524N2Q825L25R1922325C26Z311O2J82522SC2L82TQ2HK29N2C225624Z2MQ23P24321724R26R23R21E2BF31662RV2R424X2F42AS29829Z2WL31942E026S31972972CQ2752452AI25925X22E25B23E23V25F1E2OY25X23424C2642382521I2VN25F2OF319J2C226S23K25129S24M2OK2FT2OK24M27U27D2EZ2FF2E228B28625X27126W23Y24426X2552RH2431621622324G21U31062J826E2DV2L731432E231A624X2863109312H313729F31AK25525X23726H27223824Q24J2BE25Z317B2VP31BB312J31B731B9316624A24X28G28525431BE25X23624325H26T1J26L2UJ25X24B26022W2231M23T2P62HA24423T2DV319A2VP31BW31BY2E931BE3109317229631C121N24X24U2441F25D2322IZ25126M2UJ22B2592PY31BO316S317I27M31AA31CR2Q427U24W2AP2MQ22S24W1Q25W25T25X31D225X26023D1322Z23E25G31802SM2WI2DW314331DH31DJ2DW2L028H2NM318T2Q822Z22Q21G21724X311N311X25W2382XH25O27R24723Q24D23O23K23V23W23R23Y23W26B26823V24224524F2Y431EO31EQ23K2DW2FA2FR28G2NM2IA27931AF2HR31FD27527T31B82BM25Z31EM2BI31F531ER23V23P23N23W24B26A26931F031F231F431EP31ER31FM31EN31G131ES23L24224923M26K31FX31F131F323R31FP31F731FN2HK31GG23V23M24824724D26A26A31FY31GE31GG31G331FO31G523V24D24C24923L26K26F31GS31G031F631GV31GJ31GX24F24C23M31EX31EZ31GD31H631G2315W29P29R24X28F28H28J26D2F42F625W26R2792VY2762G32VW2F823M2A22L32CB2GU2JE142702BW22P27025W22C1526S21021722I26S31IC1327922M2791F31IM31IO25G31IJ182FL1F2FL23W2FL1331IS25W22U2FL172G726A2G731HW25W25Z31HY31AH25W31I12GA2EX2H92BC31I631I825W31IA31IC31IE31IG31II31IK31IQ27531IP27531IN31JU31J131IU31JY27531IY27531J031IJ31J327531J527531J727531J931JB27931HZ2SQ31I231JH31I527931I731I931IB31ID31IF31IH31IJ22C31IL31JW31IO31JT25W31IW31IT31IV31IX31IZ31J131K725W31K925W31KB25W31KD31JC31I031KI31I431JJ31KL31JL31JN31KP31JQ31KS31KU25W31JX31KY31KX31KZ25W31K031KY31L231K431L431J431J631J827931KE27531KG27531JF31I331JI27931JK31KN31JO31KQ31JR31KT31LR31LR31JZ31L131K231L331K631LZ31KA2G731BP2LK27B27D27F27H2Y227527M27O316629C29E25427S2A124K2AJ2LU23O2JY31N827924U2SH24U25124Z31JD2FA24H2AI2XL2J82762B62B82AP25X22622531NV31NV2312BF315W2FN2FP31FA2FT2LI2FY2LU31O531JD24Y2FR25524C23R23M2LQ2G531092IJ318629631O525X24V25C23E24321H24U22826J2EQ2792B6319H25W2552FJ25831OZ2FO2G931MX2F931P631J924K319L2BC31CM1226431IG2342G71326431IJ31PK2751E31PG21731PN31LV26C25W31J02751A31PQ31PS1B25O24431PV31FN1B2LR31PV31IR31LX31K42HB31Q831PO31PZ2G731IW31Q331PW31PV31PL31QK31QA31PV31MO31QM25W31IB2751631PQ31PF31K831QC31LN1225O31IG1331FN1731J131QJ31LN31LN1726S2BW1331IJ25W1225W31IG2LU1227031IG25L31QS1226K31IG24A26K2751226C31RM31PU31RF24431IG31B231PO24C31RR24C31LX31IJ22J2FL101K27523531SC31ID23031JQ23031JS31Q3182791E23W31IG24Z23W31JY31SC31QJ1A31RL31PR31QS1M31RW31PR31RY1B31R62FL1M25831R22582751I31T831PR31TA31KY26S31PM31RE1323O31PM23O31QB31QI31SN31SP31PR31SS31LV31SU2FL31SW31R231SZ31T11331T331T527531T731T931TB31TD1331TF1F31TH31PV31TJ317E31PV24K31RU31U031RY31PK27431PS31RV31R231RY1525G21731PR31US24R31L731L931CM31MS27C27E27G27I27K31MY27N316X27531N229F31N52WR31NC2B031NB2FZ31NE24Z31NG31NI2F831NK31NM310N31NO31JA31NQ2B931NT31NW31NX2U42CR24G31O831O72IN2FX31O931OB31OD31OF2J82G531ON31OP31OR31OT31OV2G331OY2B631P124G31P32B631P529831V531P829831PA31PC27931PE31PQ31PI31K431QL31PS31PP31R231QG25G31PU31SV31QF27531Q131QI31Q531Q731LN31IW31QN31IL31PM31SN31X631LV31QI31IZ31WY31PJ31L331K831PJ2G725M27931QU31IG31QW31L631QY27931R031R231R431U331QD31Y431RA31RC31RE31RG31RI31XZ31SX31RN31RU31RQ21731RS31UI31RX31RU31S021731S225W1E31S431YG31S631QO31S831SA31UH25W23531UH31ID31TD22I31TA31MG31SL31TQ31IG21Q31TT31IW31TV31PX31SX1331TZ31UP31X731Y331U531TE31U731U631TG31TI31K431TL31PV31TN31RF31UJ31WX21G31QQ31UO31T22751525031UT13320231UW31M027531MR2JE31MT31V231MW31WO31MZ31V825W31VA31N427T31VD2FZ31NA2AH31VE25W31VI31VK31NJ2FS2BM31VP31NO31OZ31NR2BA31NU31VV31NY315V2JO31O22JS31W027931O82F831OA25731OC31OE31OG312F2II2IK31OL31W22IP31WA31OQ31OS31OU31OW27531WG27931WI31WK27931WM31P72FA31WQ31KF31WS27531WU31PH31XQ31PM2G731X031PR31X231X431TW31XI31X831Q431X731XB31Q931QO31QB31XG31QE31X131JY31XK31WX322831XE31QP31PS31QS25W31XU21731XW1731XY31RU31R131PR31Y231PM31IZ27931R931RB31UD31RU31RH21731RJ31YC31RO31YF31YH31ZT31YJ31RZ31S131Q331YO31YQ24A31YS31K525W31S927531SB31SD31SF1531SH31IH31SJ31Z431LT31Z621731SR31ST322L25W31TX31SY31U431ZU25W31T4323831U431U831TF31TC31ZM31UB31ZO31ZR31TM31TO31Y431SO31R231Z925G31ZB324D31ZD31ZF31ZZ324I31ZI324M31ZL31ZK31ZN323D31UG31PM31YW31ZY31U131WX31UM2G7325F31UQ31US31UU318X31UX31MQ31M2320A31V131MV31V427L31V731N129D31VB320K31N7320M31VG2LU320R31NH320T31NL320V2LQ31NP279320Z31VU321231NZ32152JQ31O32FU321L31O63219326M31W4321D31W6321G31OI321J2IM2IO2IQ31OO321O31WD321R25W321T275321V31P43220321Z31P932222GU322521731WW31QK322T31YO31XI31IW322D31PX322F31Q2322H324I322J31K1324C31XF324V327J25G322R327G31QQ31R7322V2G7322X322Z3231323331RF323531R331K831Y331R827931Y6325B31Y9323G31YB31RM323J31RR31RT323M21725L31RY1231YL31YN31YP31S531S7323W31SA31SC31YX3241324322I324531IL31Z531PO31TR324A31TU324C324E31ZE324G31ZG3255324K25W31ZJ31U93258329L325A31RD31ZP324T31Q831TP3298324X324B31SV3252329F3254324J324C329K324N3257329O31UE325D31YI325431UL31ZX324H31UR320331UV325P3208325R279320B325U31P7320F325Y31N331VC326231N9326431ND31NF326731VM320U31NN320X31VS31NS321131NW321331O02JP2JR31NL326L326X2FZ321A279321C321E31W72DS31OH2R031OJ2IL31OM326Z31WC321Q31WF31M231WH31P2327731P631WO327831WR327C31XZ31WV322731QQ322A31PS327K329C327N31X9322I31X4322K31R7328732C631X2327Y31PK327H328131XP31WX275328431QV2G73232322N328831Y1328B329I328D31K8323C329P31RF323F323H328K31YE328M32A9328Q31YK323P31S3328W31YT328Y323Y329031SE31JO3293329525W329731YO3299324Y3250329D3253325G329H32A232A5324O3259324Q325B31TK329R3296324V31TR1332DR329C329Y329J324H32A131QJ32A3329M31UA31UC32D21331UF32EL32A932DV32AB31UN32AD325M31J0325O320725W320932AK325T31V332AN325X29B325Z320J31N6320P320N2WX31VH32AW31VL27931VN326A31VQ320Y31VT32B431VW32142FM32B8326K321831AI32BC321B31W5321F31W8321H2FM326V32BO31WB321P31WE31OX32BT321U32BV31WL327832BY327A31M4322325W327D327F32CK32C5327W327L324D32CA327P31Q632CD327S32CF32CU32CH322Q327T31XM322U32CN31QQ32CQ31XV32CS328731Y0323632CX327T323A328E32D131Y832D4328J328P328L31YG328N31ZY32DA323O31YM323Q328V31YR328X323X25W323Z329132DK31SI31SK3247329U324932E9329X31TY329Z32DV32EE31T632DY32A532E132EK31ZQ31TK324U31LN324W31TS329W31TW32EB31T0329G32I5324L31ZM32DZ329N32I932A731UG32EO31UK31PG32AC329G32AE325N320631MP2752KS2762L72LM31VZ326P31W132BC320E27N326B327227526S24Z2TC275326E32FK22532132HJ2JX310M2982B628X28731JD2B12SS320G29M31VZ2AV2AX2AH31OZ29W32JV32AP29F32JX320W2G42T92DU25Z2E52I024X24K2WQ2C52D62BJ2AS31NH288321U28S27V2412E02KQ2ZK310M24X2L024M2E024M2DS272328E27924031XZ25G31R231XL31X4322931KQ32D232DT31U432LF31TJ32EJ31RE31J531RC2G71631T126E328R323K328N31R531YU2751431ZW31YX31ZW31ID1C31JQ1C31IC16328T323Q1231YQ24M323U319X328026422S328031XO31XX329T25W1522K31R222K31IC1J26S31SC1831RE1U31YQ21U31YS1V26C23831PV31RY32N21432N527532N231SU31RY1G23W25031PV31SS31ID23O31JQ31TN22C1I24K31RR31YW1U24S31RR24S2751Q32NP31YG31YW1H31SX22031KO1Y31YQ26E31YS1Z31S625X21832O824C25G25X1332OD26S32OG31YS21732LK2751Z25O31RC31FN1H1K31UT21V32OU31UW31QC32N4320023W31UT22I32P224R1521021631IH32P832J131L82G725L31M232J62LH32J9326O32JB325W24J32JE2HA32JH32JJ25W32JU32KQ27532K032L024I2C428Z2912932B229832K829G32Q229J2JE31O125B2JX2EC316R2752422NM24W32QG29732K12AW2AY31552RV31E928I25626S26K26B26C31JD27U2I732KY2DW2LW2BJ2NO2982LU24028632KP2HA26K22J2ZF2WU2AA2OL2NT2BD1Q25I2532452VO32KN31DH32RG2LK32QJ24X23Q2NO326F31NW23H31922EL2NR25723O31OL2WQ2VW2HJ32RU318S31M927922K22V31B32792R22FW2D423K2GI32Q02FM2ZM29N2MQ2J832KE2JE2JJ28I32RS32JF31QC31QX2DL32L932LB31WX32LD31PO32LJ31ZC32I2329J32T531UD324R32LN31QQ32LQ31IG21031RY323231UH32IE31YL13323Q1725O31PM31R425W21W31Y431IL32N431SM31WX32MI22D2G71A25031RR32NG31Q431S831FN1E31TD26E31TF1B32MH25W32U031TB32NY1T31YW31Q131K431FN31IP32CU1F32NV32OG32NV31KY22K32OJ1332MR31KY22432UW22431JU2382Y61332P01F22S32UW32MI31KY23022C32OG31SJ31KY1S32V51S31JU1422S25X25K32N831KY21G1432VO32M032AH25W31A232J531VY32FQ2G0326P32JC32PN31VQ32PP32JI314X32SF2L132QQ316U32QU32QW31J9249315N2HJ31F226X26826B31OZ2492682452CP31932GC24G2D82AV28S2AY32JP2AO319G32JT29X2WT23N2AS2ED32QC27I2R0317231GY23K24124923R2YT24Z2NE2IG316632K02AU32QM32K42B632K631FH2WU31952ID32JW32Q7319G32Q532KA2DW2ZH2852EN29J2HJ2ID2972572LK23O2G92GB28J2DS26W32L627521J32T031UU32T232C532T932LH32T831R232LK32TB26432LO31K831QS329E328O32DV1E31YF13328N1A32TL323Q1M31YQ32OH31TB32NK31PR31ZS1731JL32YZ1231TR26E31TT1E32U3217320131JY32N831QJ31IW31ZW32ZT32LA324C31XD32OG31MK32H732MM1522C31R222C31IC1U32ZK31TT1R28A2791V327X32DG32MN32ZD22I32NM21731I825X1831QS21424432N425T31Q331ID31YF22I31RT22C330M32OJ22D31QS21E32ZO24732U521F25826C32OG31TF33192HE329N331932V5331D258250331C27533192V7329N21732OQ327P1V32OZ2791521W32P3331Y24R327U32P032MN320231IH320532VW2CD32VZ2LG28D32W131O832W432PO2DS32PQ31OZ32PT314A29N32PX32PZ32XX29I32XZ32F431N332Y132X032JR32Y22E832Y4320V32QE2LV29N2DY24N27H2FT27F312632K532X429L31NL32R32BM2982F832QY27Z27U31JD24932RF32S12G321422F1321V32RM31662472DN320O32RQ2U528I32RP32S12DS317Q32SY2DX32YL31R726432T331YO32YP32IJ32T931RD32YU32YW322Y31T132TG31QX32TJ31SN32Z731K832TP327P323232TT31QZ32ZD24M31ZS31IP32MI31XC324Z32ZY32MK32E531LN15334P22C1V27032N8330P2751S26C31ZW22P31PU31ID31SX22I31KO32NS31S132UT1R31QS24W31QS330F329I1V22C32OF13330725W1V21W335Z32TT3362224335Z32V231Q831IJ33231523832P3336F32PC31L925C32PG32W032PJ32FR31W3332F32W6332H32W8325S31MU32F12WT24C2E22U72462NM332J29X2F832KA32Q4332S32K932XY2LK32QA32QC25B31JD337125623K24T2E3326B318M264318M327X2VO32SH24W27D2A1318S332L24G24B25225A24X2EN2982JN27524M25224S31A829S2C224W26M26Z26Z2692EH26826826C26C26A26L326T2LU23R2KU27H2DS26X32YI334731RU32LA32YM31QK334B1E334D32T71M334F32LL31XP334I32TE21721C32TH327R31RF32Z3328N1E334P31LV334U31L132N432ZW335031J4334R328A31L625032ZS32U5339A32DV323231PU32TX339F31IG1A339H339J31IW339L31JY339N31L1339P334Q32TQ31K825032ZV339W324H339Z31Y431RP31R233A532DC339K31YO339M335333AC31L6339R31R432U331PV339W330531PR3361328S31R2323Q31PK335Z32U121W31R2336631R333AE3390330O31XQ2HE1832CS31J132HQ32TC23932CS32EW32KG31JA32PH332C336N32W232PL31V632W531NO32W72YP31M432X132JS28W333B27532X624M32X82FO32XA2CV28J32XD32XF32XH2LU2GA318S2EY32XM2BS32K224W32K42LU2WV32XW337532XY337731V932F532Y1310H332Y2FO333032Y7319832YA2JE32YC2GA2DP2DS25K338V32L8338X32T1339032YO32YS32T6324F32YR31PR32YT325B32TC31PS339A32LS32D732ZP328N31PK330731PS31PK334U31XQ339N31XQ335031XN31QN32323303339G32MS32MU32UF31RE1Q31YF247328N1R26K32ZS33EJ26K32ZV33EN31UM33EN2EQ32Z427533EK335Z328N1J331S339S32CT31EJ331W23G32P333F5336I2G732J433BS336M32BC32JA336P32PM332G2BC332I31BP23R332Y2E327M2D727D2C4337E31CM24128D2BY25726S2L231AE2AS2YT32JQ32X233C632JV33BR2R232KJ2C42NO314E334132KP2YT2Q22PI32JZ33CO32XP27W333A32JV2HJ2WP28J32XT32F92KQ33CV332Q33CX320H33CZ337A32Q92JP337D2DS31HU334633DF31RF338Y33493391339333DM339533DK32TA33DQ32YV31QQ31R52752332FL31ZY24A31RY32Z232D831L625G2BW1S33HM32M932DD21726J31YS31IW33AA31JY33AU31ZA335331XE32DN31Y41532NT31PR32NV22C1U33HX25W330C2IC330E330G32HQ1531YQ22I31S63310335B31LT330Q26K330T330Z1531T122I335J330M31ZW331327521731J125A2FL21I32ZA31YS21J32NG32OG32U533JE335Z33JH25032UW32U521724S31SU32UT331U336C331W22432P333JV3321331V320025832P333K133F832J3336L332B32J833FD32PK33FF33BY33FH279332I2B6253332Y337332JV33GU32Q3320G320I33D0321933D232Y532L32ER332V319G2JE33KH33GK28K32JP31N328T2F831A932PY31MW2L723Q333D29633L632SL2HK2BM24K2E32AY32B224G32722F831F82932DC32XS31OZ320N2AJ2L731442562FV2WQ2D5276310H33LO24N33LQ2HJ2LY28S31OZ24C31B824W2DS31BP323231KV31QX2BW33A114334R22P31EM31ID338Y22I2BW22C33ME31LO328E327O25K31FN33IZ31JQ335J33MS31LP323231TN33MI25O32NG33ML31JO33MO33MQ33N132L631UH33A132TO31Q333MW32GY31L926Q33DE334832LC33DJ33DO33DL32YZ33HD33NQ33HF32D233DR33BP2751O325J33EB31QK33DZ31XQ33E231WX33E432IU32LY25832MI22P31Z3320131JQ32NG22C1232ZO26E32U51E31T11R31RY31IW32ZS330132CF330332T533IF32NY26E31YW1O218317Q22X310R31UW31QS25H335U33HT25W2512FL1N2EL32H833JT320032OU31IH32OX33AM31YM33DX32IW23N32U133B1336032UM33BE33B732OG322733PX31LX31RC2FL3357320324432EV32J225W315W2VO32J7332D32W333FG336R33FI32W832X332JV2L732PW33LB332O33KL32JY32Y0337A315W23L31A927B24K28G332N31MW31J923V2432VO2VU24K33M9310E2BA2J831822FZ2EM2DP2VO33QV28G24624X28X2F732FE2FB338133LK31J92G325Y31J925W2LU33MJ2BW21633MM31UR31JQ33MQ1F2G723K2G731Q633IK31JY2BW33PC33NJ2G72JE32W92GF33QU25633QW2Q7337J29T2Y32HQ2HS2JE2F124T2L4317M31JD33SQ2BT2D52YT314F31MW2LU33RC2GC28K33D12AG33D332Q827924C2HR27F25731602SV31MA32AJ32PV332M27E31FL2HO33SN32KF33T933TB25633TD33GC2NO337I2E331JD33R431E932RR27U24X313F2DG33RB2EN33T33263320O32FM25W33TA31P133TR31602I12C133LS33TF2752LU2LK2SR2FW2532AP24T31JD2SR2EN33KB25W31MZ32JE2VX27933R133R32V633R62ZQ2GU2WT12338Y23C33NO31WZ33HB32YZ31Q132NG339S33NT32EK339731L633HH31PS31L731PS336K31QB2BW221323A31Y31E33H831L132GK31QH324C1026K31PM33IY33J0335J31IL2BW22D33VU31IJ22Y2FL33VW33DH32C832ZW31TN31QJ1027031PM31KO31JP31KR31IC31ZY33DU31LQ33NE31IR330731LU1A32HC32UM33S931R432EW332931Q82BW21931SN33VX33S8335332GK1033JL33AZ31JO31TR32P432HW33A133WF31YM31L131SL31L133N431SA26C31IJ25T335J15335L31KO33WS33OQ31MI33NE31L133WX31TW33X031Q433X233SB27525R33NM33DG338Z31PK33HA33HE32YQ33VI33DP33NW33VM32LP334K339D334N31PO339J32TO33BE334T33AL32LR32IV31UH32UG324D32ZD24A31ZS33BD323W32U8330A31JU339U25W25K33OM33Y71E32NY25L31YW33S227433BJ31K125X22D2FL31SC2BW22X27533MR27933BR1F331S25133X333Q7315533QA32PI33K9336O2LJ336Q33C0336S32PR332K33QK332M33QM31MW33QO332R33CY332T337A33T5332Z33T827533UC33TC31602DW2AN25425B2U927V2LZ313Z2N92DS33BR33MS33H633V833DH33YG33NP32LG334E33HE334G33HG339931T123A33YQ324V33YT33AW31QX334U32L6339N32L63350328E33ZB320432GY31PS33SD33BT33K831W333FE340833QE340A33QG31832FF27U2NO2YT2WP31B82IG2KO32QH31JA27925P33TH27A32F0320D32PM31OI2JH33SS31862BO33QI33LD2BT27U2BO2F824524W2AS27M27I315533FU2BM2AI24N317024Y338A33US33RN2G233QF32KC320G2452542SK3439337H2E22EQ31OZ2LO27I2HJ2GG2GI2GK2J825C31172BI24G24H337S343A343C32XR337427924G32Y425B32Y62HU29X2LU23Y27B2D524S2LQ32KE338425W32QA32B92FT2JU2KY2JX2AH2532K026F344X344Y2TN33UA344O32FP33BV31O533RS323Q327I31IG24H31X2329I1A328931FN33YK2751N3162325B33ZY33BE1F31UK31RY32Z633B531X7341M329J33JC32ZC31R231ZS32MY31R231YS1B33VK1F26K31X4328N1F23W31SU31TT1A32NY32EN324I345T32Z9346031TB33IC1332UT345Z31PR31YS1Q346K32UT1B33WM31PV31QS1F331A31PV31TF345Q31PR323Q31Q133BE346H346O345W32ZE275346N32ZB324I346322C31X433611F32UV32OG32UY31PY322P346F347522431R2336A1J32MK347432GN32V432OG32P01B22S331P32VB1M346D31YW345I324R1I32ZD32IC25W347B346P348A31ZS212345V25W1N346U33VE25831QI31TF1033B6330V15330X330Z1M1S31S132VK348J31UC23R31RE1I348I1U348F32NW34973490324R1B1K31QI329033MY31ZZ22C348W348Y345H31UC23I34933499348D32NW348I3487325B349C31Q322U329032VW2WT33G233C433KJ342V2BU2BO33KX33CP32XQ2VZ344727534492JP29J31WO2A232RM32BL342Q257317M342Y32L724X337T25724T2DS33VQ322Y31PQ217325J33XA33DI33E0337N32MJ33E833I93356345V22C32MT33N431RE1G26K33N733W533MZ33EC33Z033EF31YL24A323Q33EZ32U72751G2FL23533MQ1531PQ22I27834B826S32TT22D31RE347T33S931J433JZ32MN33JV31IH33JX32VW31WO342B2CB2AG2YT34AD32QD2HJ24N2JX31HS2G3340333LJ326T2HJ34CH337E33GO34CE2IG33KV33C5275332K340I333G31KF33CW2DW31BE2LI33KN33GY332Q332X33T633KS33M833MA32BD34292BM2DS27331XT31PQ26E34AY31RR31J433BL2FL31I72BB23527025X31KP21131KR34DX16323526E31FN1427431YX27431ID21O31JQ21O32M731KQ26E32LM33HH24632LP32EB325K31WX32TJ31XQ33O432GX32ML33IA33BA31PR32TT34BY32TT32MW347A31T121U32N626C32TJ34F3339N34F3334U32ND25033VG33OH1533XI32NI32MT32MI34EZ2Z131YS23533IR335731JQ330V34FH31LT34C227032MV31QS1G31QS34DV31MD31LL31IC32DZ32UB32NA26S34FI31RE32NB31LT31RY33IJ31LQ27533EZ33Y931XX33PH330I32P323O318X322Z34DN33YE24A34DQ34C4320023G32P922I34GU33K425W2JE322Z1J33BP334I33VO32LP34AZ34E232CW32D331YA328B34GS33VL33Q7341432L733NN32YN33VC33YI341C33NU341E33YM339933Y7339A32HJ322Z25U32LP31YF25L328N16338Y25U2FL32M831RM323Q34I432HL339825W33BO33YA33Q833K62LL3405342133KA342333KC343G32JG33QH33G532PU333224G33QY33LD337634D8340L34DA2JE344R2EC33UC33GF344A34A1332W340E24G34IU34CJ34CL316532Q1332Q34302D52V233RL2562FC33LK2B632PF326C32JK32FJ31VV2252WG33U832FA33CN32QL32K327W2LQ337P34CX31P724D24N32RM33H029S33LS31V0336V342N33BY2KR321I24S2A92FT2CB343034322TU310G326D32X734CK33CC31JD34KJ24M3433343Q2H733LD32K0333M2DC326T31I0343E321M32JM32132R0344R2JW2JY344V2LQ31BN3166343J343L24B343N31UH2ER344F344H28C32BD326P312131B82552LI33UY2Q42E832S934JG31FI33RM2FD33BR32Y333T724M319C31E925Y2B633LM34L72JV34KP344U2SL32BJ2T931BN34LQ28634D734222FY34092J82GU26V31KL25W2E522P2EQ31ID21831JQ21831JS33MF31KY2G722M31X233MH2FL1C334R21133RY33NA31IC1E323524A31FN1C33HH24Y34BX15323F22I33ZU33XM34GQ322S31J231PJ27924E32CE33XO324C32UL32GN327O339S1C24431X4348S348U34NE31SX26E346W25G32NG23G31TW33O21M34AZ1I33O232IR2751C26C31RC33XW33XY34OA31S134OD32NG23I31TW34AZ1M33O234OL33AN31JU33VK32GH22U33NY32PD2752HJ34D534LR34ML34II34MN342434MP32FW2GU342J32LY22S31I932MI31ID23G31JQ23G34N133MT31JU2G726B34N634O0347U33F034NI34O631PV34O831JQ330Z33XM26E33VY25W34OG31PX32T91M32EB1I32T934ON25W34OP34OR31JO34OT22C34QA34QC34OY33NR31SZ32T934QJ33HE34QL323V31L532VW34PC34MJ34LS321L34LO33BX33UW32JD34IL27531W92BC34PM25W32VM34PP31JO34PS31IH34PU31MG34N233S227534PZ33XB31QJ31T431QN31Q132OR34OO34Q532TM31JO34O934QR338Y34QB31JY31PU34QE324D34QG34QI34QK33VK34QN32N9335K31JQ31KO34QS34S725W34QU3251339434QX34SD324R34R131QP31L931KD2F83334344934AR2VO31DI333534M033LK2BC33X533NC33MG25W34AU31R533Q1341W32H232CU34TC324C33HJ31LO34DS331S24Y34NC33S031IC32TO31JW32TR31IJ33WA34HC33PB31J431RE22M32LM31QC31ZS33HS34TD31L632YY31QS33F231R933PA31QJ34H527522F31KW2I0279347M31YM2G734OJ31IG2492FL31T434U532UD334B322G339S32IM346F32UM34BP23031OV13230318X1522S32P334V624R1A33YY345H334A25W23J2G7345I31QI31RE1N347U34B5331W24S21333ID25Z22C21326K33Z0328N21A34BK323Q213334R22J31FN2102YS31YX2YS31ID24C34VP33IQ34VR348H31S131YS213330S25W31CK2751Y32E731TT21A32ZO341V25W34W033BE21325832TJ31TF1Z31RQ31PV328N1Z31Y321W23O334U32NM33IO31JQ33IR34WY31ZW1834VW32MP21721H32UY21B23O339N31ZS21634EU13336621I34XO336621E34XS27521B33VK32O9339N31YS1W34OQ34SG33XX34SI31IC1Y34XF26E32UY34XZ34SM31YS21A34AZ21634AZ21I34AZ1Z33VK21324K32TT22U31YW34WY331B34XD2751W31EM25X1H34TO31IH33MQ1Z31KX34YW31SD34Z033MP34Y723831RR32P01W34NK34NM34NO33ZU1Y33B124A336121322434YP336A21323G331L21S34PU34WR31SJ32VF32OO32TS32OG27921B31XQ34XW34X532OG31ZS1W34WH34S1330W34Q834Y71K31S1329034YC23G34YE34E631PR32VQ21633PS336121I350K1332VQ34YL324R34Y234QO34SH31IH32O4350E31YM350G24C32N423I34YE350O275216350R32VQ350Q31R2350T34YM1K34YP350G2FL2522FL32O933ET33I124C33DZ32O832H834YV32OE31PV34FN31YL22I330V34WY32VN34YU25W32O91K33ZO31YS21421824B312Y33P517323Q25H32TN328N25H32LV33ZW328E2G724O2G732OP34BO32MN34BV34BX34Z32752362791Z31QG2G721B25W3522350123O352622D31ZS31ZW31PU33ZT34TQ352F32TN352L32GY352O34XW34W131FN34AX31JW2G721723W352231TT353P353731TT21C34VD22X34BX352E275352G33463414352N353O334R24J31FN33JE31K43318350325W331932VT331G2583526329N21K34OE312Y33NB353E31K831ZS25H32ZF27924O328E31YS25H31YS1731TT25H31TT1732U525H3318353K32YJ31TF23K31TF21333PF32NA355E327Q34GI15258310231Z221434GY31UZ340N34M4333132QG2FT32QJ27D32XO2AX2LK340R33UE2AY32AT33U9315W356033TS33UG34J72AG320P33M929F31WJ33UY2R02AN2AP2AR2AT33CP34DE2D4344K318O34IZ25B34J131CM34M333KS34JE2D6320T34JI33RN333132KA34M6318S25X31J934PC356G2B9356J355X2AY356533TQ35672PD35692BL356M34102DS32SR28A344A33UC2GU31BP33W832HR34UI34AZ33Z6339S31IP31RC2791M345E31TB34SR325B1C34U734G033WQ22C324E34OC345H31KX34H22IC33S533ZZ33MX310R31IH352D32EW2G334T12A22FA356Z2EN2GU2L731LN31LP1434Y333XV34QP34Y631KT34N431XQ2BW25C31XN34U532CM31QK334I31J034U532VW31RY31Y431YW32MN33W631JS33MH2791031RE23531KS15323522I33MM357S33A132GH33Z1345D31RR31FN33Z634W234PX31M42G7359S31JQ33MM33S231SL345B32UF31T631SX24A346W355834QM32UT23533IE1532NY22I31YZ32UD32NG33ZM25W1O25031PU315O33XH31JQ32NI31Q6359M345S33071N31FN3494346I348C34993462324R335D346V358831MF1M33Z925W1J330D32NA2FL23K33PD358I3200358K22I33P531Q632MV27931Q132N822D31FN1G33P2352C325O353G347O2B731FN345I31K434C2351T35BL27032ZV31QS1J33IT32YZ1O31Q7353C33ZV354132H9354132LM31FN25H31FN34BN33Z7345H31QS23K34U8358N31M232Y7344A2DS2B634GN34NV34N234TH33SA34HE34PA327234J22JP2GU2B631PF31S131QG35BN31QO34HD32VW322X341534HI34B032LE34HL34SP341D33VK33NX31QT31T122G341J32TK345R33AV33PV32TS31Y434RQ31QQ1821826Z35C631UW2FL25H31QP25H32U132ZD25L31ZS31SM33ZS33ZU33MS33BR1A31TR23U346B34WP32U533PE32ZS27934VK34RW34VM320031ZU22C1O323C26D359R359T33MM21233OY31YW34ZD33ZS353Z352I328N21333PA35DE331U319I35BZ34C634V534V7318X31Q633ZL35BZ34YX35C231TB323525U31Q535BS35DF31L92R0340433BU340633BW33UV33UX34RC33KF34IO337W34IS2LK2A52ZQ33TZ31552432FW2FI31N42E8343124J24N332A344N2ZP310F27M34L032SQ345732AI33H535DV341934HK33NU33YJ3396334H32TD31T122Q35E6334O35E833YU334S3514351W31K8346932NH34TE33YB34IE33QB345433QD34IK342533KE336T32EZ34KA313C27R31FJ27W2BO2L724D31P124Z24X28P28R28T356332FA342U332P33KM33QQ34DA3578356I2AS357B2DW32KA342T34AA32JV310H310J311B32X1345132FO3217326M326T344M34522JS34L834MD27W344V32YB32YD33RD343T2GH2GJ25X21E22824S24422V22H192GT26Y26I22A24422I21J314W2H534KW2LQ31332YT35ID33GE32VY25W338633882DC29N3160338D26Z26F26A26F26831GQ26B26E26D328N27926F33YD33H7341834VD35HD341B35DZ34HN35E133YN35E331IG1X339D32GP33A231PR32LV31Y334EM35DW33YS35E8323V31QJ1E349931IW33I5335231LU33OR25W23231T6348531JU345T1724C31PM323U32UR346L31K4323U31YS33XM32ZW31PU34SN1A34XV329J35M91I35M934R032UV25W24R32UY1332V032OG336A1E34RL1334ZU33WH31TW22S31R2348334QX324334V2347A34QK348L32YY314T31PV32P035MN31S135MQ31X325W22H31TW34QG348X31PR348Z34QY33NU1U35NE13348Z1F35N131K41K31PM3290350S32VN350S35HV25W2L734A335IN33QP337832Q634DA355Q34DD357D33UD357F33UH356A32BD28429X332F24C31OS31OP24V22H352623025M22921R23P22K23N2HE1Y27023S22J24625N23835H825W3155322Z1G34TF31Y5339E33E935P733WJ31XZ324H31PK34EO35LE347231PX348I1M349934HO32LM34Y3339Y354D35NY35IM34D134IV337935O433KQ34DC333035O7340S24W356834K831O735OD32JV332F35OW1M1X27025K22H318M31332HA1B23935P135P331PQ35P531QX34TG35P835F831XX35PB33O931QK35PF31YO339J1A35PJ35PL35E135PO32TH35PQ32G534CZ34AB316734D435IP2B234DB340O2IG35Q0356135Q335OB35Q52HV325V33KC22J35QA35OV22P22L2HE35RO35QB23S1B2OC25X35OM35OO34V535QJ2DS35QL31IG35QN34GH35P735L735P931R9316733YX329G35PE32C535QY35R0345X35CD32TB35R335NW35PR35GL35PT35RB29J35O535PZ33TP35O833UF357G35Q4321935Q635RM34RA32PN24Y35T635T625M24P2HE35Q935QB22G35RY26H2661323B21022635S32BC35S521735S734U932L635SA35QR33N335SE32AA26435QW339I35E835QZ35BA35PK35SK33NV35PN34QO35DF31PS35SP35R733KK34JC35IO35O233KP2FF33KR35SV340Q357E35SY35OA357I35RK35OE33FG35TC27022Q22G35QF2HE24L35TG1326V21U23A35QK34DL35S635P635SC35TT32MM35TV31QZ35PD35TY35SH35U135SJ347935U631K835SN35U92G735UB32PS35R834IU35SS2IG35SU29J35RG35O9357H320P24735T232F232PN35OO23P35OM22535UW25X35RU35OV22Z31CK25X35UT22435V435S435V635TP35V835TS35P735VB35SD35VD35SF35VF31WZ35SI35U335R135SM35U834UD35NX35R635VQ35UD2B035RA35UG340M35PX35RE33UA356635UN35VZ35OC35RL35W331AM35TC23U22K2SC2OB35RT35RP1826923B35V531QT35QM35WM31QX35VA35PA35TW32EP35WT322935WV3477329J35WX33DQ35VM35X034A0341Z33QC34R935GI35I234IM340C33C725W33C933CB31MW2HJ319F34D22DL34AP34SZ34AS31PD35KT341733YF35KW35DX35HE34HM33VJ35HH33DS31T124D35HL31QX33DZ32L6341O34TW34UC354D31UZ35YC35HZ35YE34RB35YG2HB34IN35UC34IT35X6340K35PV35RC35VV2IG33FA2WP2592WX33RF24G34KG24W2CB2IG2JE2GH24N28Q2CB33MB2ER356T35UJ296356W34LY31P8358S33LK2G335VP332K32X534KO32X93109356H2AQ35IT356L35SR35X734DA344635IZ35X9355R35ZW2WQ35ZZ33SH28G360236042LK360736092D632SW31BP322Z23035XW31XX35L732GT31XJ335333WJ31L133VG339Q34RY34AV347N35SB32L635QT31XX33YR31XX35ZA31K835HQ347C35X0344M35DU33YE33H9341A31RE35HF35E035Z433YO31IG21E35Z8362035P735ZC31XX341Q35HS346A35L3325432TI35P7362131XX35F431QX33J431SN33Y732TO34GG34R331M2360O33CA34KP33T032WA2NS31FL34R532KU32FA32KX27U32PX29J316624635H332WV2EX24H24X2DS2F8322Z268361I33AK35SC32MM1E32EB3631334S35R534JN35X335ZP33GV35PU35O335ZT361135O635SW35Q135RI35UP35T135XG332F35S035OP24Q22I352632G124U23K2RS2HA26635P035WJ35XU35V735QO35S935WO35XZ35WR35TX35TZ35Y4347C35U435VJ35PM35VL35WZ354D34R42AM360P34KQ2LU3194363B28M286363D32KW28332KY363H2IG33BR2492D62592HR26S27D33GQ32JH27U35YU279363R31PQ363T364Y35V9365032IE363Z34Q335NW365D33C8365F363832KH363A35I72LG365L32KV33LT365O363G33LB29J3155363K33R726S32KO32S9363Q35WK366635S83668363W324V366B361S35X035GC34CP2J831BN35IM3340356A2BN27Z31JD31E7342W2BV2BX2FT2C02C22NL2C533U732Y72CA366K2DX2DZ2E12U731OZ32J733TO31V92E72E92EB2ED2EF2EH2EJ36062JK2DP2LQ26I35XT361T21723V34DO338Z34TH31QJ34H832H534ES35SC361X33ON32IL339E1B26K33DZ328N1B3623346135HT32E832D031Y735NW24E32LP31PQ23X361I32H433F135LB31XI32GH35KX31TJ33VV327W345C34QK31Y334UJ31Q0346G32EB34UW1M31XI349T32D21I32EB34VK329I1I31XI35CK33WN347A32EB347T329I1U31XI32N231PM31RY1Q32EB335V324C1Q31XI33EK33W427521232EB1R31Y321231XI34WG31PM323Q35OU32T735FQ329I1Y31XI32O935LX27521A324H34X2329I21A31XI34XJ329R21632EB21B31Y321631XI353P31PM31TT21I324H33J7329I21I31XI33JE31PM32U5362H329G21J31Y321E31XI331931PM31TF21Q32T921F31Y321Q31XI21R32EM31YW21M32T921R31Y321M31XI21N2CK31PV32UT21Y32EB21N31Y321Y31XI21Z22C31PM336121U32EB21Z31Y321U31XI21V35MF32UX27522632EB21V31Y322631XI22721W31PM3366222324H22731Y322231XI22332V031PV336A22E32T922331Y322E369A2G722F35N332V627522A32T922F31Y322A31XI22B23G31PM34ZU22M32EB22B31Y334N5347N22N32V931PV32VB335M32T722N31Y334BW347N22J23031PM32VG22U32EB31S9329I34P8347N22V35NQ31PV329022Q32EB22V31Y322Q31XI22R1S31PM348Z232324H22R31Y323231XI2331431PM32VQ22Y32T933HL329I22Y31XI22Z1C31PM32M625W23A32T922Z31Y323A31XI23B21G31PM32M023632EB23B31Y323631XI23721O31PM34ED34SM32EB23731Y323I31XI23J21031PM34E723E32EB23J31Y323E31XI23F21831PM34N02R132EB23F31Y323Q31XI23R25W26T31Q82BB23M32EB23R31Y323M31XI33PQ36HE31PK2BB23Y32EB23N31Y323Y31XI23Z25G36HO32OF25W23U32EB36HX329I23U31XI23V25O36HO25O2BB246324H23V31Y334EJ347N24726S36HO32OJ25W24232T924731Y324231XI24327036HO34DW25W24E32T924331Y33698347N24F26C36HO331B25W35AH32T724F31Y324A31XI24B26K36HO26K2BB24M32EB24B31Y324M31PQ1X2G724N24436HO2JA24I32EB24N31Y324I31XI24J24C36HO24C2BB24U32EB24J31Y324U31XI24V23O36HO2Y625W24Q35AG31QS24V31J1330F27524Q31XI24R23W36HO23W2BB25232EB24R31Y325231XI25325036HO331L25W24Y32EB25331Y334NL347N2SI36HE182582BB25A31T124N31RY24Z31Y325A33O232QB33WA32EL2BB32QB21X31UG36LU24K23936LX25W25B31Y33550362P33UW33O22I436LS344J25W2I436LW1836MB2I421H31JE36MB25E346R27525735LU31T825Y329N256351825W25I34XF36D636MC34UB2FL25636M824S26T32US2BB2I42TF346L2BB25E34ZA31YG32P033YC31PU22O27925R34ZR32OG34ZU25R32VD34ZX25W25R1S23832OG348Z33FX369633UW36MU36MW32MQ36MN36N031MY36N336N536NA36MC24S2TF22D36MK36ND1L36NF339E36NK35NU36NN230354J32VG36NS36NU35NL36MN32HA31K421O21G32OG36GL1321836OV36OY331N36OU36OW331N36OZ32OG36H522336P325K36GL22336P61M36H523336P31336GL23336P636P12G036PI36GL24736PM36H52E2357536LT36O925H36MR36MB25C35C533P433Q634MT2G736MO34GG36PU25Y182V736PX25Y36OC2BB336K35ET34TQ31TF25H31TF36Q733PB31FN36Q936QB36N724S36PY36QF34TA33HH353Y34TQ336A25H336A36QN340036MN2V736QA36QC2I436QU36Q033PA22X33NB32VQ25H32VQ36R336QP36R636QR36QD36QV25C331S22X33MM31RA2BB25H36IM36QN22R35A223W26S36MR31TT329N36MS26S34DZ31RD36QS36HO36MB25I27036S636IX25E36SC31SY2BB25Q36SG31ZE36N734P625O21136MR36IB36M736S636JJ36O936S92BB25I24436S62JA25E24C36S636K625W25Q23O36S636KH25M36T3346O36N735NO32N536SP31U12BB36N236ST36S836CM36SX36TC32OH36NB25036S636L625Q36TP36T525M25836S636LH36MC36TF32E836TH36KV33UW24S36S636MG344J25Z36O836R936UC36MB32EL36TH36QC34683149369431KY25831RC31TF32QS36S636RV36N436TN36MV36TW36NB36UX36T636UZ33FX324R33ZY36TH36SR36UR33DO36TM36O825I36UZ36T236T436SI36V1346322436TH22436TJ26K36TL36SV36UV25I23836S636NU25W36VD36TD36T623G36S623G2BB36TB36VE36U236A531KY26C36TH36J836TK35L936V936SA36VC22S36S632VN36V036W325M23036S623036TE36W5346836U52BB35RX22C36UC31TT1B36UO346Z31MY36S536V836VO36VA36SK36SE36X536SI36X736MC33VK31Q136V536WS1S23P36MR1S36VL36VN2I436SW36MV1436S632VT36VU36UZ25Q1C36S61C36W136V136TF1B36W736MR36W936VM33PN36TM25G36WD36W325E21G36S636OV36WI36VW25M21O36S621O36WO35BG324I23W36WR36U736U936QS21H36UF36QS21136YT324I21036TH21036WS31SJ25S35MY33UW36X136S736X336SA36X936SF36SD36X836ZC36XA349B26421236MR2642VY31T426E36Z325G2VY1N2OC36Z331TT1N36WY36S436US36WC36SX36ZA36X936SJ36ZE36V2325B35B736XD348J36XF36XH36XJ36WB36Z8370021231SY2VY36VV36TQ36T626C370G31U12VY36W236VW25736TF1N36Y136TI36SS370D36XL36VP36VC36YB31PR36YD36TV36WJ36YH31PR36YJ36W436YL36ZR36YO25636U833ID36YR36YW2I436YV36O81N36YY36MR36Z0348J23024K36Z332VG36V736Z7370Z36X436ZE36ZB36SH36T636X9370532D21N36ZH36ZJ36ZQ25G36ZN31J02VY1J23W22C36ZT34GE36ZW36UQ36Z636UT36XM36SB371Z3702372333VK33EZ37081J370A35NL370C32Z436ZZ36UW370N24C370I36XS23O370N23O370P36XY36W51J370V36Y336XK36UU36VA36VC23W370G2OB2VY371536YF371736PJ36YK32YZ372E371D371F36UD24S36YS373W371K36MB1J371N13371P1J36OL371T36X036ZY370E36MV370136ZE37033721372434C2372731PK372D372A36ZO2VY1V23W14372H3362372J374936X2371X36Z9372P374E372R324R1V36SO36SQ2BB1V372W36XI370X372Z374B25I24K370N24K373436W325Q24S370N24S373936W3370S36W532N236W8372Y36SU374X36TO36Y922C370N22C373M36UZ36YG36YI373R335U36YN36S136TJ373V36UA373Y36UA374037563743371P1V23025G25T36Z4371V372M36VP374D3721374F36SL36ZF325B1V374J36ZK3362374M372C33II36RZ376L330B374U36Z5374A375V374C374Z376R3751325B1R375431R32BB1R3758375T373025I224370N224375H36VW25Q238370N238375N370R36TF33OP375S375A375U373G36Y836VW25E23G370N23G3761371634DZ24A3719375P25W21M31QS1R376732E8376936YQ36O9376C36YU36YW1R376G377I230250376L371U372L377M376Q376T376S36IX374H33EV376X2VY36AQ372B36ZP34WR23W24K377427534WU36UP374V371W37843700377B3793377D32D234W03708213377K3782377M1K370N1K377R370K25Q1S370N1S377X370K378G32YZ213373D377L375C371136YC36VF378C37183765379H378L36U6371E378O36MH371I36U836YW213378U34ZV238378Y379K376O371Y37213720379P370434YM379834WR3770379C1Z353Q379G35243776376N3791379O36IX379436SM324R32OP37081Z379V36WA375B377925I21G370N21G37A136T525Q21O370N21O37A736T537A931QS1Z37AC379W37AE36Y9210370N210378B36YF218370N2182VY37C632OO37AM378N31YM376B25Z36MF378R23L36MB1Z37AV1Z36EU36MR378Z3778379M377A37B2372Q37B537BM37B734X225Y25U377121B31IY37DD31TT21B37BF3790375C379237BJ379Q31RE21B377G36SR21B37BQ36Y437BS37D425I25G34VP31J027K370J37BZ25O37E125O27K370Q37A836TF21B37C937BR3783372N36VC26S37E1314936YE370K376337AJ371A32YZ37DF373U37AP373X37AR376E25W21B37AV21B23023O37DD37D2374W37DY37DN36ZD374G33VK350236ZI374K37EY37B92VY353P32V5353S31TF36ZX37F6372N37F8372237D8325B331R370821737DV373F372N26C37E132QW36XR375I3762373A36YL21737EE37DW37EG371036Y926K37E126K27K373N37EN24437E12DV37EQ31QS353P37ET371G378P37AR21X37DD36MB21737AV21736OL33ZC37F52HB377M36VC36XS36VG324R34AX37FD376Y33J723A37DD379C21J353Q37DH355931K4372K37D337FO37BI37F9376T379625W21J37DS2BB21J37BQ37DL37BT37FP37BK376U32D221J36VI36MR36VK37CA37BT25037E125037E336XS25837E131P325W37EA37C536TF21J37G837FX37GB378624K37E12VW37EM36TX37GJ347227K37CM37HR37CO36YP37GQ37AQ373W37GT36O821J37AV21J31SH37F437AZ377M34VS33B237E337JE336037GG37JH36WU37I131RE21J37B736BY25I25V377121F36RZ37JS31TT331937HJ37JC37DM37HN37FQ37FA324R21F37HT37I737DY22437E122437IC375I36T832ZE36XX375O36TF21F37IM370Y37DY36VC36TS31PR36TU376236TZ31TE37AK354E37J037AO37J236UB37CT36PX2KR36MB21F24K36UI2BB21R36RZ36WV27521R25832ZS37HK37FN37IO370K37E437AH370R33VK21R37K737BG37CB378637H5375O37LN37I435MJ37AD37BT36VR31PR36VT37LK36VX36VZ37KH377Y36W521R37KL37DX37EH36Y936WF31PR36WH37GH36TX36WL31PR36WN37GM37LC37J021N2OC37JW27521N37LE36WZ377737LH37B1376T37B337DO37FR32D221N37K721N37FW37KM372N23G37E123G37KD377S22S37E122S37E937G532YZ21N37MA37GA373H36Y923037E123037GG3762373P378F36TF37MP37GP373W378Q36O937EX21N37AV21N32VD37JS37F5379L37HM37D6375037N231RE21N37B736CQ379B2VY21Z23W21W37MR25W21Z37MU37FM37OA376P37K237I0370522J31RE21Z375422636SR21Z37N737MB36VP1437E11437ND37A21C37E11C37NI37KI36W521Z37NM37H337NP37NR37NT37AI373Q37MM37OP37KX376A371H373Z36YW21Z37AV21Z36OL37O837K037HY37OV37DP27521Z37B736D037OJ25W21V374Q37OO21V37OR37LG37OT37MY36X637OD37K4325B21V37K721V37P537NN36SA21037E121037PB37BZ21837E121837PG37M736YL21V37PK37LR37LJ25W1W31PR327337IT36W137NV37KV37QD37NZ37CR37PW36O821V37AV21V376J264376M37HX37F737Q537OE27521V37B736DA37QB22736RZ37RR31TT22737QH37Q337RU37OC377C37RW25W22737K722737N726E37GA1C36SA25O37RB31R328V37M325Q26S37SN26S28V37II37KV22737R737BT36VC27037SN27028V37MH37RF376437PR37S237RJ37PV376D36YW22737AV22736EU37Q237MW37QJ374Y37SA37B437QN32D222737B736DK37DC377122332NF37S427522337FL37QI37B037TM37MZ37D737TP31RE22337LP37G9377M26K37SN26K37SP36XS24437SN24437SV37NJ31QS22337SZ37KN36Y937KP320437LL37EN37KT31U937KV37TW37TB36O92ER373W25H36YW22337L636MR36QC22F37LA36UM22F331A331M37TK37U3375W37LS37G337LU324R22F37LP37RT37MC37VJ377S37H6325B22F37LW37I637EF377M37M032V636UY375I36VY31PR36W037IH37UM34UE36Y122U373E21725E37QT37VI37LJ37ME1337MG376237MJ34V237KV37VA36YO22B37OM37TY25W22B37VE37OS37VH37D537U537QM37HP33VK22B37K722B37QS377M23O37SN23O37UG375I23W37SN23W37UL37PH36YL22B37UP37VQ37LJ25037SN2RM37RE37IH37RG37PR37WR37V037J337TD36O822B37AV22B2301437RR37O937WY372O37TN37N137U727522B37B736EF37QB22N23W21G37WT22N37WW37U237BH37Y937HO379533VK22N37K722N37X7375C24S37SN24S37XC377S22C37SN372G37W737XI32YZ22N37XL37LI36T525E22K37SN22K37T537NU37T837IY37YH37XW37EV37RL36MB22N37AV22N36EU26537RS37HL37OU31YG37QL21723B37YA37X2324R22N37B736EP37QB22J23W26C37ZU31TT22J37YM37S837OB37X037SB37YB33Z7370822J37YW37LZ37SN23837Z137A223G37SN23G37XH37R432YZ22J37ZA37NO378622S37SN22S37ZH37PP37NW36W5380937ZM37O1371J36YW22J37AV36ET24K37ZU37Y637YO380I37TO3803325B22J37B731S937QB22V372F380C27522V380F37VG381M37ZZ381O37YR324R22V37K722V380O37DY1S37SN1S380S37BZ1437SN374R37Z6380Y31QS22V3811378537LJ1C37SN1C3817373O37ZJ36TF381V381C37EW36YW22V37AV22V36OL381K380G37ZX381N38023825323W31RE22V372725F376Y36F937QB22R374Q381X25W22R382037LQ37Q437YP37K3381P32D236RX370836FD36XG372X37K8372N21037SN210382F36SI21837SN218380X37EB36W522R382O37WG37ZC25W1X37RC28237T637IH34WR37RC37IX36TF383K382Z37ZO2BB22R37AV22R378W37Y5383737QK36NB37U6383U31RE22R37B736FJ37TU379C23331IY35TH31TT23337U1385137U43823383A37BL325B23337UA37IN36VA25G384J31J028237SQ37KF31TK37M6384C36YL233384F36UW37UR36TT37UU36TX37UW36U137IY385C37ZM37V236UA37V436O823337V736PW22Z37VB31TT22Z25836OP37YN37R837ZC37LT37LM324R22Z37VO37ZW23I382P386T37VK386V325B22Z37I425837VX37UB375C37W037M236XS37W435MP385Z37IJ36W522Z37KL37WE37PL381336WG386736W137WM37ML37IY386L36YO23B380A385E27523B386P37VF383Q37S9383937YQ385M32D223B37K723B382A372N26S385T26S385V36XS270385T27028237SW37PR23B386336VB36Y926C385T26C384L37ZI37EP37IY387X384T37XY36MB35TJ36YZ2BB23B371R35TH381L37K1383S37OW33VK23B37B736GE37QB237372F387Z25W237388237WX3822385337X1383B32D223737K7237388D3710385T24C388I37KE385T23O388N37W8389N388R373I385T23W388X381837KV389K3892378R36O823737AV23736OL389A385I379N37ZY389S3800385L37JM27523737B736GO37QB23J374Q389M23J389P386R383R3886383T389U31RE23J37K723J389Z36VA24K385T379F37G2377S24S385T24S38A737Z731QS23J38AA388T388V38AE382V388Z36TF38B238AI37O236YW36GS389634VE31SJ26737ZV37MX385J38AT3824388838BC37B736GY37QB23F31IY38C931TT23F38B638AQ37WZ385K388738AW25W23F37K723F38BG36SA21W385T21W38A3377S224385T22438BQ382L27523F38BU3786238385T37AX37XR37EO37PQ37IY38CK38C2381E36O823F37AV23F37F238C9389B38B838CS38BA385M26731RE23F37B736H837QB23R32NF38CM2BI38CP382136VO387038AR38B9389E324R23R37P136SR23R38CZ36SX230385T23038D437A21K385T1K38D9386032YZ23R38DD37LJ38DF37M138BX37EN37XT37IY38E638DN37AS36O823R37AV23R23021W38DU38CQ37Y838EF37Q62HK37B736HJ37QB31FT23838E835YK38EA3884380H38DX38EG325B23N37K723N38EM36MV38EO37MK38ER37BZ1C385T1C38EW387I36YL23N38F037ZC38F232V638F436TX38F636TF31FT38F937EX23N37AV23N36OL38FH38EB38DW38CD38AV37HQ33PQ37H92VY36HT37QB23Z374Q38FS23Z38FU37VP383838FX38FL23Z37K723Z37N725S37WF36MV210385T21038G73847385T21838GC37KV23Z38DD323T36NB25W1Y21732NG2AE384M38DJ381936YL38H638GP36YW23Z37AV23Z376J26038CA34EG36TM38ED38CR38GY38CT37HQ23Z383F376Y36HX37QB31ET26S38IF31TT23V38HA37ZW385236VU385438BB27536I8370823V38G325I384331PR384538BL37A225O38I031R32AE388O37IY23V38GG36NB26S38JG26S38I3376227038JG2702AE38JK37PT37EU381D38FA36MB23V37AV23V376J38AP38GW388538HD37SC368J38H225W36IF385A2VY24732NF38IV35UI37JZ38K838FW38IL38DY38CU247385P37N836VP26K38JG26K2AE385W36T9387H37KV24738JM36VU37US37KR36WJ386938L338JY37KZ386E36QS386G36MB247386J36QC243386M32PV348N36MR38B737UQ37VR37A237VT32D2243386Y37LH38IJ388S38LS37BZ38LU31RE24338773879385Q36SA387C37W2377S387F37W638JJ36TF243387L38HK38M037WH387P38DI387S37KV38LL36YO24F372F38KK2JF38LO389Q389C38FK37SC24F37K724F38J8388F33DO38HP3722388L38HT37PR36J5378137VY386S36NB38GI38DH38I438GM36W538MS38I936O824F37AV24F38FF38IF38DV38K938KP38FY32D224F37B736JC37QB24B23W23838MU24B38MW38LQ38KO38J1389T38CF27524B37K724B38J823W38JG23W38KZ36XS25038JG25038JI38A824B38L525E37WI37WK38AF37PR38O338NN36MB24B37AV24B37Y338NT38FI36SG35AH38AT380138IM33VK24B37B736JN37QB24N37YI38MU311B24438LP38P837RV380K24N37K724N38J824S38JG24S38OM375I22C38JG22C38OR38BR27536LL38ND387A37T036Y923W38AC38GK36W122K38JG22K38JW36TF38PJ38P12BB24N37AV24N36EU26138CA37TL38EE38KA38PR37B736JZ37QB24J380A38QS31TT24J38O838PP389D38FL3548370824J38J838BI31PR38BK37SQ23838JG23838Q438DA2B738OU38NH38QE37XS382W36W538R138QM2B737AV24J37F238QS38NU38OA37N038PD31IJ38E032JK37B736KA37QB24V32NF38R327524V38R638KN34SM38CC38OB380J385538SE38EJ2BB24V38J823038JG23038PZ377S1K38JG1K38RL38EX36KL38OU1S38JG1S38JR38OY37IY38SB38RV24V37AV24V23023838S038R738MZ380K24V37B736KM37QB36KS22S38SD35MG38SG38FV38HC38NW38FL24R37K724R38J821G38JG21G38SV37A221O38JG21O38T038GD32YZ24R38T338T538T738BY38DK36TF36KS38RV24R37AV24R311238TH38SH38J038S338KQ37HQ24R37B736KZ37QB25331SP38TR33KH38PN38MX38GX38SK38CE38CU25337K725338HI38MJ352437RC29037SQ2641Z322B29038MF36W525338HW37ZC25G38VK25025G29038NJ38RS36YL38V038RV25337AV25323026C26238IG376O38LZ37HZ38FL253372725B376Y36LA37QB31SR24438W731TT2SI38V438O938SI38QV38TW37SC24Z375438TY2BB24Z38J827038VK31ZE38VH36XS37SS33DO384B38UB31QS24Z37KL38HJ387N37LJ26C38X126C38VW388Y38UI36W531SR38I937L124Z371N22U371P24Z378W26025K37F538IH38EC38SJ38UT38NX31RE24Z372734P82VY36LN37DC25K379C313933ZS31KS34TJ35EL36O538VK21O26K29025624438X124429036MD38W736SA38YN347229025J22C23938W732VE36VU26K38X138YK25W25J32MK25734ID31LN25431JL22X31KO3550354131TT25623W38YI23W38YL38YU32TM38YQ24S21X38YS36SX38ZO38YP38Z638YY38Z036NB38ZK31TS38YW38Z838ZA27925434Y322X33N031YW25H31YW25625038YI25038ZN38YO38ZQ38ZS36VA38ZV38YW38ZY336036TR38X1390H38Z63904357Z27525426K33ZS330Z1732P025H32P025625838YI258390I38YV36O9390L38YT390J38ZX38YZ390Q36VU391731TE390331QN38Z9390W25W25424433ZS330V1736G025H36G033SH38YI24K391A38ZP391C38ZT36MV390N391G38ZZ36VU24K38X13921390U391N3905390X351V22X33IR32ZG36RT36IX371E38YI24S392238ZW38YR390M391F38YX391H38Z136ML38X1392Q392E324C391O31Y436MO32EX1836QP36QT36QE36Q023O33ZS32NM34TR34MT36QP35G933FX393731RE36R9393B36QG31K322X32NI31RA35CT36MN393J31IB26335BF393N36RN38VU312Y33OH32ZG354131QS36RI36MN31PU393Y31RY394036Q036WY22X31Z31731RY25H394C393J31RT393Y328N394D36QG24K33ZS31YZ1735FO393V36Q831Q3393Y323Q394Q34TA24S33ZS33IE354034MT3951393J31TN393Y31ZS395225C335Y312Y330733MR354R395D393J32MR393Y32UY395E22K33ZS32MR33MR32UY25H395P393J3307393Y3361395E3364312Y34EW17336125H3961393J32NV393Y32UT395E3368312Y32V233MR32UT25H396D393J34PU393Y34ZU395E23833ZS32N433MR34ZU25H396P393J32MI393Y32VB395E34QE22X34RN1732VB25H3971393J31SJ393Y32VG395E34PO312Y34PQ1732VG25H397D393J31SC393Y3290395E376J312Y324517329025H397P393J31ZW393Y32M0395225E35NE25U36NW393J34ED393Y36GL3982350K25U36RH393J274393Y34E7398232M4323G36G0394836MC34N0393Y36PT393A36QV36YA31RI3981393J2EQ393Y31OW398234EB323G398A393J26425X393Y399636RM36MK21031RI398I393J32OF393Y36I0398234MY323G36PT393J331B394B38LF393O34TA21833ZS34N033MR36J8394K36N7394M399734XD399Q36RN34MT312Y34MW394V36RT375U393J2HE395039A336MK25G34DZ34I2399Z36Q836K6393Y37C5398S36MK36SO323G36SR398N32S239A136KH398236X125U36RV393J36KV393Y36U6398236SG25U3795393J331L393Y36L6398236W7323G36J8398N32VW');local d=bit and bit.bxor or function(o,e)local l,d=1,0 while o>0 and e>0 do local n,f=o%2,e%2 if n~=f then d=d+l end o,e,l=(o-n)/2,(e-f)/2,l*2 end if o<e then o=e end while o>0 do local e=o%2 if e>0 then d=d+l end o,l=(o-e)/2,l*2 end return d end local function l(l,o,e)if e then local o=(l/2^(o-1))%2^((e-1)-(o-1)+1);return o-o%1;else local o=2^(o-1);return(l%(o+o)>=o)and 1 or 0;end;end;local o=1;local function e()local e,l,n,f=r(c,o,o+3);e=d(e,212)l=d(l,212)n=d(n,212)f=d(f,212)o=o+4;return(f*16777216)+(n*65536)+(l*256)+e;end;local function f()local l=d(r(c,o,o),212);o=o+1;return l;end;local function N()local o=e();local e=e();local n=1;local d=(l(e,1,20)*(2^32))+o;local o=l(e,21,31);local l=((-1)^l(e,32));if(o==0)then if(d==0)then return l*0;else o=1;n=0;end;elseif(o==2047)then return(d==0)and(l*(1/0))or(l*(0/0));end;return Y(l,o-1023)*(n+(d/(2^52)));end;local W=e;local function Y(l)local e;if(not l)then l=W();if(l==0)then return'';end;end;e=n(c,o,o+l-1);o=o+l;local l={}for o=1,#e do l[o]=S(d(r(n(e,o,o)),212))end return R(l);end;local o=e;local function S(...)return{...},B('#',...)end local function V()local a={0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};local n={0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};local o={};local c={a,nil,n,nil,o};local o=e()local r={0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};for e=1,o do local l=f();local o;if(l==0)then o=(f()~=0);elseif(l==1)then o=N();elseif(l==3)then o=Y();end;r[e]=o;end;c[2]=r c[4]=f();for o=1,e()do n[o-1]=V();end;for f=1,e()do local n=d(e(),211);local e=d(e(),215);local d=l(n,1,2);local o=l(e,1,11);local o={o,l(n,3,11),nil,nil,e};if(d==0)then o[3]=l(n,12,20);o[5]=l(n,21,29);elseif(d==1)then o[3]=l(e,12,33);elseif(d==2)then o[3]=l(e,12,32)-1048575;elseif(d==3)then o[3]=l(e,12,32)-1048575;o[5]=l(n,21,29);end;a[f]=o;end;return c;end;local function T(o,N,f)local l=o[1];local n=o[2];local e=o[3];local o=o[4];return function(...)local d=l;local n=n;local I=e;local r=o;local R=S local l=1;local c=-1;local Y={};local W={...};local S=B('#',...)-1;local Q={};local e={};for o=0,S do if(o>=r)then Y[o-r]=W[o+1];else e[o]=W[o+1];end;end;local o=S-r+1 local o;local r;while true do o=d[l];r=o[1];if r<=117 then if r<=58 then if r<=28 then if r<=13 then if r<=6 then if r<=2 then if r<=0 then e[o[2]]=(o[3]~=0);l=l+1;elseif r==1 then local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];else local B;local S;local f;local W;local r;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];W={};f=0;S=r+o[3]-1;for o=r+1,S do f=f+1;W[f]=e[o];end;B={e[r](a(W,1,S-r))};S=r+o[5]-2;f=0;for o=r,S do f=f+1;e[o]=B[f];end;c=S;l=l+1;o=d[l];if not e[o[2]]then l=l+1;else l=l+o[3];end;end;elseif r<=4 then if r==3 then local Y;local S;local r;local B;local W;local f;f=o[2];W=e[o[3]];e[f+1]=W;e[f]=W[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];f=o[2];B={};r=0;S=f+o[3]-1;for o=f+1,S do r=r+1;B[r]=e[o];end;Y={e[f](a(B,1,S-f))};S=f+o[5]-2;r=0;for o=f,S do r=r+1;e[o]=Y[r];end;c=S;l=l+1;o=d[l];f=o[2];W=e[o[3]];e[f+1]=W;e[f]=W[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];f=o[2];B={};r=0;S=f+o[3]-1;for o=f+1,S do r=r+1;B[r]=e[o];end;Y={e[f](a(B,1,S-f))};S=f+o[5]-2;r=0;for o=f,S do r=r+1;e[o]=Y[r];end;c=S;l=l+1;o=d[l];if e[o[2]]then l=l+1;else l=l+o[3];end;else if(e[o[2]]~=n[o[5]])then l=l+1;else l=l+o[3];end;end;elseif r==5 then local B;local S;local f;local W;local r;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];W={};f=0;S=r+o[3]-1;for o=r+1,S do f=f+1;W[f]=e[o];end;B={e[r](a(W,1,S-r))};S=r+o[5]-2;f=0;for o=r,S do f=f+1;e[o]=B[f];end;c=S;l=l+1;o=d[l];if not e[o[2]]then l=l+1;else l=l+o[3];end;else local r;local Y,r;local W;local r;local B;local N;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];S=o[2];N=e[o[3]];e[S+1]=N;e[S]=N[n[o[5]]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y,W=R(e[S](a(B,1,W-S)));W=W+S-1;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];S=o[2];B={};r=0;W=c;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];l=l+o[3];end;elseif r<=9 then if r<=7 then local B;local S;local f;local W;local r;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];W={};f=0;S=r+o[3]-1;for o=r+1,S do f=f+1;W[f]=e[o];end;B={e[r](a(W,1,S-r))};S=r+o[5]-2;f=0;for o=r,S do f=f+1;e[o]=B[f];end;c=S;elseif r>8 then local Y;local W;local r;local B;local S;e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];else local l=o[2];local n=l+o[3]-2;local d={};local o=0;for l=l,n do o=o+1;d[o]=e[l];end;do return a(d,1,o)end;end;elseif r<=11 then if r==10 then local Y;local W;local r;local B;local S;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];else e[o[2]]=e[o[3]][n[o[5]]];end;elseif r>12 then local N;local Y;local W;local S;local B;local r;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];r=o[2];N=e[o[3]];e[r+1]=N;e[r]=N[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;else e[o[2]]=(o[3]~=0);end;elseif r<=20 then if r<=16 then if r<=14 then e[o[2]]={};elseif r>15 then e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]();c=A;l=l+1;o=d[l];e[o[2]]=(o[3]~=0);l=l+1;o=d[l];f[n[o[3]]]=e[o[2]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];else local Y;local W;local r;local B;local S;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;end;elseif r<=18 then if r==17 then local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];else if(e[o[2]]>=n[o[5]])then l=l+1;else l=l+o[3];end;end;elseif r>19 then local Y;local S;local r;local W;local B;local f;f=o[2];B=e[o[3]];e[f+1]=B;e[f]=B[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];f=o[2];W={};r=0;S=f+o[3]-1;for o=f+1,S do r=r+1;W[r]=e[o];end;Y={e[f](a(W,1,S-f))};S=f+o[5]-2;r=0;for o=f,S do r=r+1;e[o]=Y[r];end;c=S;l=l+1;o=d[l];if e[o[2]]then l=l+1;else l=l+o[3];end;else local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];do return end;end;elseif r<=24 then if r<=22 then if r>21 then local W;local r;local S;local f;e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]={};l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];f=o[2];S={};r=0;W=f+o[3]-1;for o=f+1,W do r=r+1;S[r]=e[o];end;e[f](a(S,1,W-f));c=f;l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];else local f;local c;e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];c=o[2];f=e[o[3]];e[c+1]=f;e[c]=f[n[o[5]]];end;elseif r==23 then local Y,r;local W;local r;local B;local S;f[n[o[3]]]=e[o[2]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y,W=R(e[S](a(B,1,W-S)));W=W+S-1;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];S=o[2];B={};r=0;W=c;for o=S+1,W do r=r+1;B[r]=e[o];end;e[S](a(B,1,W-S));c=S;else local r;local Y,r;local W;local S;local B;local N;local r;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];r=o[2];N=e[o[3]];e[r+1]=N;e[r]=N[n[o[5]]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y,W=R(e[r](a(B,1,W-r)));W=W+r-1;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];r=o[2];B={};S=0;W=c;for o=r+1,W do S=S+1;B[S]=e[o];end;Y={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];l=l+o[3];end;elseif r<=26 then if r==25 then if(e[o[2]]==e[o[5]])then l=l+1;else l=l+o[3];end;else local Y;local W;local r;local B;local S;e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];end;elseif r>27 then local Y;local W;local r;local B;local S;S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];else e[o[2]]=(o[3]~=0);l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];f[n[o[3]]]=e[o[2]];end;elseif r<=43 then if r<=35 then if r<=31 then if r<=29 then local f=o[2];local d={};for o=1,#Q do local o=Q[o];for l=0,#o do local o=o[l];local n=o[1];local l=o[2];if n==e and l>=f then d[l]=n[l];o[1]=d;end;end;end;elseif r>30 then local l=o[2];local d=e[l];local o=o[3];for o=1,o do d[o]=e[l+o]end;else local f;local B,f;local r;local f;local W;local S;e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];W={};f=0;r=S+o[3]-1;for o=S+1,r do f=f+1;W[f]=e[o];end;B,r=R(e[S](a(W,1,r-S)));r=r+S-1;f=0;for o=S,r do f=f+1;e[o]=B[f];end;c=r;l=l+1;o=d[l];S=o[2];W={};f=0;r=c;for o=S+1,r do f=f+1;W[f]=e[o];end;B={e[S](a(W,1,r-S))};r=S+o[5]-2;f=0;for o=S,r do f=f+1;e[o]=B[f];end;c=r;l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];end;elseif r<=33 then if r>32 then local r,r;local Q;local Y;local W;local S;local B;local r;e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];r=o[2];Q=e[o[3]];e[r+1]=Q;e[r]=Q[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];r=o[2];Q=e[o[3]];e[r+1]=Q;e[r]=Q[n[o[5]]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y,W=R(e[r](a(B,1,W-r)));W=W+r-1;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];r=o[2];B={};S=0;W=c;for o=r+1,W do S=S+1;B[S]=e[o];end;Y={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];l=l+o[3];else e[o[2]]=e[o[3]][n[o[5]]];end;elseif r==34 then local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];else local d=o[2];e[d]=e[d]-e[d+2];l=l+o[3];end;elseif r<=39 then if r<=37 then if r>36 then local Y;local S;local B;local W;local r;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];r=o[2];W=e[o[3]];e[r+1]=W;e[r]=W[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;Y=r+o[3]-1;for o=r+1,Y do S=S+1;B[S]=e[o];end;e[r](a(B,1,Y-r));c=r;l=l+1;o=d[l];do return end;else local d=o[2];local n={};local l=0;local f=c;for o=d+1,f do l=l+1;n[l]=e[o];end;local n={e[d](a(n,1,f-d))};local o=d+o[5]-2;l=0;for o=d,o do l=l+1;e[o]=n[l];end;c=o;end;elseif r==38 then if(e[o[2]]<n[o[5]])then l=l+1;else l=l+o[3];end;else local N;local W;local S;local B;local Y;local r;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];r=o[2];Y=e[o[3]];e[r+1]=Y;e[r]=Y[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;N={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=N[S];end;c=W;l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];end;elseif r<=41 then if r>40 then if(e[o[2]]~=n[o[5]])then l=l+1;else l=l+o[3];end;else local r;local Y,r;local W;local S;local B;local N;local r;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];r=o[2];N=e[o[3]];e[r+1]=N;e[r]=N[n[o[5]]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y,W=R(e[r](a(B,1,W-r)));W=W+r-1;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];r=o[2];B={};S=0;W=c;for o=r+1,W do S=S+1;B[S]=e[o];end;Y={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];l=l+o[3];end;elseif r==42 then local R;local Y;local W;local r;local B;local S;e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];S=o[2];R=e[o[3]];e[S+1]=R;e[S]=R[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]();c=S;l=l+1;o=d[l];do return end;else local B;local S;local f;local W;local r;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];W={};f=0;S=r+o[3]-1;for o=r+1,S do f=f+1;W[f]=e[o];end;B={e[r](a(W,1,S-r))};S=r+o[5]-2;f=0;for o=r,S do f=f+1;e[o]=B[f];end;c=S;end;elseif r<=50 then if r<=46 then if r<=44 then e[o[2]]=n[o[3]];elseif r==45 then if(e[o[2]]>=n[o[5]])then l=l+1;else l=l+o[3];end;else e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];if(e[o[2]]==e[o[5]])then l=l+1;else l=l+o[3];end;end;elseif r<=48 then if r==47 then local B;local r;local W;local S;local f;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];f=o[2];S=e[o[3]];e[f+1]=S;e[f]=S[n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]];l=l+1;o=d[l];f=o[2];W={};r=0;B=f+o[3]-1;for o=f+1,B do r=r+1;W[r]=e[o];end;e[f](a(W,1,B-f));c=f;else local d=o[2];local n={};local l=0;local o=d+o[3]-1;for o=d+1,o do l=l+1;n[l]=e[o];end;local n,o=R(e[d](a(n,1,o-d)));o=o+d-1;l=0;for o=d,o do l=l+1;e[o]=n[l];end;c=o;end;elseif r==49 then e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];else f[n[o[3]]]=e[o[2]];end;elseif r<=54 then if r<=52 then if r==51 then local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];else local Y;local Q;local R;local W;local S;local B;local r;e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;R={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=R[S];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]={unpack({},1,o[3])};l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];Q=e[r];Y=o[3];for o=1,Y do Q[o]=e[r+o]end;end;elseif r==53 then local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];else local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=e[o[3]]-e[o[5]];l=l+1;o=d[l];if not e[o[2]]then l=l+1;else l=l+o[3];end;end;elseif r<=56 then if r==55 then local d=o[2];local f=o[5];local o=d+2;local n={e[d](e[d+1],e[o])};for l=1,f do e[o+l]=n[l];end;local d=e[d+3];if d then e[o]=d else l=l+1;end;else local Y;local W;local r;local B;local S;e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];end;elseif r==57 then local Y;local W;local r;local B;local S;S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];else do return end;end;elseif r<=87 then if r<=72 then if r<=65 then if r<=61 then if r<=59 then local o=o[2];local n={};local l=0;local d=c;for o=o+1,d do l=l+1;n[l]=e[o];end;e[o](a(n,1,d-o));c=o;elseif r>60 then local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]]+n[o[5]];l=l+1;o=d[l];f[n[o[3]]]=e[o[2]];l=l+1;o=d[l];l=l+o[3];else local R;local Y;local W;local S;local B;local r;e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];r=o[2];R=e[o[3]];e[r+1]=R;e[r]=R[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];do return end;end;elseif r<=63 then if r>62 then local Y,r;local W;local r;local B;local S;f[n[o[3]]]=e[o[2]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y,W=R(e[S](a(B,1,W-S)));W=W+S-1;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];S=o[2];B={};r=0;W=c;for o=S+1,W do r=r+1;B[r]=e[o];end;e[S](a(B,1,W-S));c=S;else local Y;local W;local r;local B;local S;e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];end;elseif r==64 then local d=o[2];local f=e[d+2];local n=e[d]+f;e[d]=n;if f>0 then if n<=e[d+1]then l=l+o[3];e[d+3]=n;end;elseif n>=e[d+1]then l=l+o[3];e[d+3]=n;end;else e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];if(e[o[2]]~=e[o[5]])then l=l+1;else l=l+o[3];end;end;elseif r<=68 then if r<=66 then local d=o[2];local f={};local l=0;local n=d+o[3]-1;for o=d+1,n do l=l+1;f[l]=e[o];end;local n={e[d](a(f,1,n-d))};local o=d+o[5]-2;l=0;for o=d,o do l=l+1;e[o]=n[l];end;c=o;elseif r>67 then e[o[2]][e[o[3]]]=e[o[5]];else e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];if(e[o[2]]==e[o[5]])then l=l+1;else l=l+o[3];end;end;elseif r<=70 then if r>69 then e[o[2]]=T(I[o[3]],nil,f);else local d=o[2];local f=e[d+2];local n=e[d]+f;e[d]=n;if f>0 then if n<=e[d+1]then l=l+o[3];e[d+3]=n;end;elseif n>=e[d+1]then l=l+o[3];e[d+3]=n;end;end;elseif r==71 then local d=o[2];local n=d+o[3]-2;local l={};local o=0;for d=d,n do o=o+1;l[o]=e[d];end;do return a(l,1,o)end;else if e[o[2]]then l=l+1;else l=l+o[3];end;end;elseif r<=79 then if r<=75 then if r<=73 then local Y;local W;local r;local B;local S;e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];elseif r>74 then local d=o[2];e[d]=e[d]-e[d+2];l=l+o[3];else local N;local W;local S;local Y;local B;local r;r=o[2];B=e[o[3]];e[r+1]=B;e[r]=B[n[o[5]]];l=l+1;o=d[l];r=o[2];Y={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;Y[S]=e[o];end;N={e[r](a(Y,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=N[S];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];if(e[o[2]]~=e[o[5]])then l=l+1;else l=l+o[3];end;end;elseif r<=77 then if r==76 then e[o[2]]=f[n[o[3]]];else local Y;local W;local r;local B;local S;e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];end;elseif r>78 then e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];if(e[o[2]]==e[o[5]])then l=l+1;else l=l+o[3];end;else local d=o[2];local n={};local l=0;local o=d+o[3]-1;for o=d+1,o do l=l+1;n[l]=e[o];end;local n,o=R(e[d](a(n,1,o-d)));o=o+d-1;l=0;for o=d,o do l=l+1;e[o]=n[l];end;c=o;end;elseif r<=83 then if r<=81 then if r==80 then local Y,r;local W;local S;local B;local r;f[n[o[3]]]=e[o[2]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y,W=R(e[r](a(B,1,W-r)));W=W+r-1;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];r=o[2];B={};S=0;W=c;for o=r+1,W do S=S+1;B[S]=e[o];end;e[r](a(B,1,W-r));c=r;else e[o[2]]=e[o[3]]-e[o[5]];end;elseif r==82 then local Y;local W;local r;local B;local S;e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];else local N;local W;local S;local B;local Y;local r;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];r=o[2];Y=e[o[3]];e[r+1]=Y;e[r]=Y[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;N={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=N[S];end;c=W;l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];r=o[2];Y=e[o[3]];e[r+1]=Y;e[r]=Y[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;N={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=N[S];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];end;elseif r<=85 then if r>84 then local N;local W;local S;local B;local Y;local r;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];r=o[2];Y=e[o[3]];e[r+1]=Y;e[r]=Y[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;N={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=N[S];end;c=W;l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];r=o[2];Y=e[o[3]];e[r+1]=Y;e[r]=Y[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;N={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=N[S];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];else local Y;local W;local r;local B;local S;S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];end;elseif r==86 then local l=o[2];local d=e[o[3]];e[l+1]=d;e[l]=d[n[o[5]]];else local Y;local W;local r;local B;local S;e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];end;elseif r<=102 then if r<=94 then if r<=90 then if r<=88 then local d=o[2];local f={};local l=0;local n=d+o[3]-1;for o=d+1,n do l=l+1;f[l]=e[o];end;local n={e[d](a(f,1,n-d))};local o=d+o[5]-2;l=0;for o=d,o do l=l+1;e[o]=n[l];end;c=o;elseif r>89 then local B;local S;local f;local W;local r;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];W={};f=0;S=r+o[3]-1;for o=r+1,S do f=f+1;W[f]=e[o];end;B={e[r](a(W,1,S-r))};S=r+o[5]-2;f=0;for o=r,S do f=f+1;e[o]=B[f];end;c=S;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];do return end;else l=l+o[3];end;elseif r<=92 then if r>91 then for o=o[2],o[3]do e[o]=nil;end;else local N;local W;local S;local B;local Y;local r;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];r=o[2];Y=e[o[3]];e[r+1]=Y;e[r]=Y[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;N={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=N[S];end;c=W;l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=(o[3]~=0);end;elseif r==93 then e[o[2]]=N[o[3]];else local l=o[2];local d=e[l];local o=o[3];for o=1,o do d[o]=e[l+o]end;end;elseif r<=98 then if r<=96 then if r>95 then local Y;local W;local r;local B;local S;S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;e[S](a(B,1,W-S));c=S;l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];else l=l+o[3];end;elseif r==97 then local N;local W;local S;local B;local Y;local r;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];r=o[2];Y=e[o[3]];e[r+1]=Y;e[r]=Y[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;N={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=N[S];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];do return end;else if(e[o[2]]==n[o[5]])then l=l+1;else l=l+o[3];end;end;elseif r<=100 then if r>99 then local B;local S;local f;local W;local r;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];W={};f=0;S=r+o[3]-1;for o=r+1,S do f=f+1;W[f]=e[o];end;B={e[r](a(W,1,S-r))};S=r+o[5]-2;f=0;for o=r,S do f=f+1;e[o]=B[f];end;c=S;else local B;local S;local W;local r;e[o[2]]={};l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];r=o[2];W={};S=0;B=r+o[3]-1;for o=r+1,B do S=S+1;W[S]=e[o];end;e[r](a(W,1,B-r));c=r;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];W={};S=0;B=r+o[3]-1;for o=r+1,B do S=S+1;W[S]=e[o];end;e[r](a(W,1,B-r));c=r;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];end;elseif r>101 then local Y;local R;local W;local S;local B;local r;e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;R={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=R[S];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];r=o[2];Y=e[o[3]];e[r+1]=Y;e[r]=Y[n[o[5]]];else e[o[2]][n[o[3]]]=e[o[5]];end;elseif r<=109 then if r<=105 then if r<=103 then local Y,r;local W;local S;local B;local r;f[n[o[3]]]=e[o[2]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y,W=R(e[r](a(B,1,W-r)));W=W+r-1;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];r=o[2];B={};S=0;W=c;for o=r+1,W do S=S+1;B[S]=e[o];end;e[r](a(B,1,W-r));c=r;elseif r>104 then local Y;local W;local r;local B;local S;S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];if(e[o[2]]==e[o[5]])then l=l+1;else l=l+o[3];end;else local Y;local W;local r;local B;local S;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];end;elseif r<=107 then if r==106 then local a=I[o[3]];local c;local n={};c=J({},{__index=function(l,o)local o=n[o];return o[1][o[2]];end,__newindex=function(e,o,l)local o=n[o]o[1][o[2]]=l;end;});for f=1,o[5]do l=l+1;local o=d[l];if o[1]==198 then n[f-1]={e,o[3]};else n[f-1]={N,o[3]};end;Q[#Q+1]=n;end;e[o[2]]=T(a,c,f);else e[o[2]]=e[o[3]]/e[o[5]];end;elseif r>108 then local N;local W;local S;local B;local Y;local r;r=o[2];Y=e[o[3]];e[r+1]=Y;e[r]=Y[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;N={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=N[S];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];else e[o[2]]={unpack({},1,o[3])};end;elseif r<=113 then if r<=111 then if r==110 then if not e[o[2]]then l=l+1;else l=l+o[3];end;else local W;local S;local Y;local B;local r;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];r=o[2];B=e[o[3]];e[r+1]=B;e[r]=B[n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];r=o[2];Y={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;Y[S]=e[o];end;e[r](a(Y,1,W-r));c=r;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];do return end;end;elseif r==112 then local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];do return end;else e[o[2]]=(o[3]~=0);l=l+1;end;elseif r<=115 then if r>114 then local N;local r;local Y,r;local S;local r;local B;local W;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]]*e[o[5]];l=l+1;o=d[l];W=o[2];B={};r=0;S=W+o[3]-1;for o=W+1,S do r=r+1;B[r]=e[o];end;Y,S=R(e[W](a(B,1,S-W)));S=S+W-1;r=0;for o=W,S do r=r+1;e[o]=Y[r];end;c=S;l=l+1;o=d[l];W=o[2];B={};r=0;S=c;for o=W+1,S do r=r+1;B[r]=e[o];end;Y={e[W](a(B,1,S-W))};S=W+o[5]-2;r=0;for o=W,S do r=r+1;e[o]=Y[r];end;c=S;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]]/e[o[5]];l=l+1;o=d[l];W=o[2];S=W+o[3]-2;N={};r=0;for o=W,S do r=r+1;N[r]=e[o];end;do return a(N,1,r)end;l=l+1;o=d[l];do return end;else if e[o[2]]then l=l+1;else l=l+o[3];end;end;elseif r==116 then local Y;local W;local r;local B;local S;e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];else local N;local W;local S;local B;local Y;local r;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];r=o[2];Y=e[o[3]];e[r+1]=Y;e[r]=Y[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;N={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=N[S];end;c=W;l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];do return end;end;elseif r<=176 then if r<=146 then if r<=131 then if r<=124 then if r<=120 then if r<=118 then e[o[2]]();c=A;elseif r>119 then local Y;local W;local r;local B;local S;e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];else local d=o[2];local f=o[5];local o=d+2;local n={e[d](e[d+1],e[o])};for l=1,f do e[o+l]=n[l];end;local d=e[d+3];if d then e[o]=d else l=l+1;end;end;elseif r<=122 then if r==121 then local Y;local W;local r;local B;local S;e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];else e[o[2]]=#e[o[3]];end;elseif r==123 then local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];do return end;else local f;local B,f;local S;local f;local W;local Y;local r;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];r=o[2];Y=e[o[3]];e[r+1]=Y;e[r]=Y[n[o[5]]];l=l+1;o=d[l];r=o[2];W={};f=0;S=r+o[3]-1;for o=r+1,S do f=f+1;W[f]=e[o];end;B,S=R(e[r](a(W,1,S-r)));S=S+r-1;f=0;for o=r,S do f=f+1;e[o]=B[f];end;c=S;l=l+1;o=d[l];r=o[2];W={};f=0;S=c;for o=r+1,S do f=f+1;W[f]=e[o];end;B={e[r](a(W,1,S-r))};S=r+o[5]-2;f=0;for o=r,S do f=f+1;e[o]=B[f];end;c=S;l=l+1;o=d[l];l=l+o[3];end;elseif r<=127 then if r<=125 then local B;local S;local f;local W;local r;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];W={};f=0;S=r+o[3]-1;for o=r+1,S do f=f+1;W[f]=e[o];end;B={e[r](a(W,1,S-r))};S=r+o[5]-2;f=0;for o=r,S do f=f+1;e[o]=B[f];end;c=S;elseif r>126 then local B;local S;local f;local W;local r;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];W={};f=0;S=r+o[3]-1;for o=r+1,S do f=f+1;W[f]=e[o];end;B={e[r](a(W,1,S-r))};S=r+o[5]-2;f=0;for o=r,S do f=f+1;e[o]=B[f];end;c=S;l=l+1;o=d[l];if not e[o[2]]then l=l+1;else l=l+o[3];end;else e[o[2]][n[o[3]]]=e[o[5]];end;elseif r<=129 then if r==128 then local Y;local S;local r;local B;local W;local f;f=o[2];W=e[o[3]];e[f+1]=W;e[f]=W[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];f=o[2];B={};r=0;S=f+o[3]-1;for o=f+1,S do r=r+1;B[r]=e[o];end;Y={e[f](a(B,1,S-f))};S=f+o[5]-2;r=0;for o=f,S do r=r+1;e[o]=Y[r];end;c=S;l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];f=o[2];W=e[o[3]];e[f+1]=W;e[f]=W[n[o[5]]];l=l+1;o=d[l];f=o[2];B={};r=0;S=f+o[3]-1;for o=f+1,S do r=r+1;B[r]=e[o];end;e[f](a(B,1,S-f));c=f;l=l+1;o=d[l];l=l+o[3];else local N;local W;local S;local B;local Y;local r;r=o[2];Y=e[o[3]];e[r+1]=Y;e[r]=Y[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;N={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=N[S];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;e[r](a(B,1,W-r));c=r;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];r=o[2];Y=e[o[3]];e[r+1]=Y;e[r]=Y[n[o[5]]];end;elseif r==130 then local Y;local W;local r;local B;local S;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];else e[o[2]]=e[o[3]];end;elseif r<=138 then if r<=134 then if r<=132 then local B;local S;local f;local W;local r;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];W={};f=0;S=r+o[3]-1;for o=r+1,S do f=f+1;W[f]=e[o];end;B={e[r](a(W,1,S-r))};S=r+o[5]-2;f=0;for o=r,S do f=f+1;e[o]=B[f];end;c=S;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];l=l+o[3];elseif r>133 then local B;local S;local f;local W;local r;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];W={};f=0;S=r+o[3]-1;for o=r+1,S do f=f+1;W[f]=e[o];end;B={e[r](a(W,1,S-r))};S=r+o[5]-2;f=0;for o=r,S do f=f+1;e[o]=B[f];end;c=S;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];else e[o[2]]={};end;elseif r<=136 then if r==135 then local W;local r;local S;local B;local f;f=o[2];B=e[o[3]];e[f+1]=B;e[f]=B[n[o[5]]];l=l+1;o=d[l];f=o[2];S={};r=0;W=f+o[3]-1;for o=f+1,W do r=r+1;S[r]=e[o];end;e[f](a(S,1,W-f));c=f;l=l+1;o=d[l];e[o[2]]=N[o[3]];l=l+1;o=d[l];f=o[2];B=e[o[3]];e[f+1]=B;e[f]=B[n[o[5]]];l=l+1;o=d[l];f=o[2];S={};r=0;W=f+o[3]-1;for o=f+1,W do r=r+1;S[r]=e[o];end;e[f](a(S,1,W-f));c=f;l=l+1;o=d[l];do return end;else local Y;local B;local S;local W;local r;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];W={};S=0;B=r+o[3]-1;for o=r+1,B do S=S+1;W[S]=e[o];end;e[r](a(W,1,B-r));c=r;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];r=o[2];Y=e[o[3]];e[r+1]=Y;e[r]=Y[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]={};l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];r=o[2];W={};S=0;B=r+o[3]-1;for o=r+1,B do S=S+1;W[S]=e[o];end;e[r](a(W,1,B-r));c=r;l=l+1;o=d[l];do return end;end;elseif r==137 then local r;local Y,r;local W;local r;local B;local N;local S;f[n[o[3]]]=e[o[2]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];S=o[2];N=e[o[3]];e[S+1]=N;e[S]=N[n[o[5]]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y,W=R(e[S](a(B,1,W-S)));W=W+S-1;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];S=o[2];B={};r=0;W=c;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];l=l+o[3];else local N;local Y;local W;local S;local B;local r;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];r=o[2];N=e[o[3]];e[r+1]=N;e[r]=N[n[o[5]]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];if(n[o[2]]<e[o[5]])then l=l+1;else l=l+o[3];end;end;elseif r<=142 then if r<=140 then if r==139 then local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]]+n[o[5]];l=l+1;o=d[l];f[n[o[3]]]=e[o[2]];l=l+1;o=d[l];l=l+o[3];else for o=o[2],o[3]do e[o]=nil;end;end;elseif r>141 then local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;else e[o[2]]=#e[o[3]];end;elseif r<=144 then if r==143 then e[o[2]]=(not e[o[3]]);else local l=o[2];local n={};local d=0;local o=l+o[3]-1;for o=l+1,o do d=d+1;n[d]=e[o];end;e[l](a(n,1,o-l));c=l;end;elseif r>145 then e[o[2]]=e[o[3]]+n[o[5]];else e[o[2]]();c=A;end;elseif r<=161 then if r<=153 then if r<=149 then if r<=147 then local Y;local W;local r;local B;local S;e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];elseif r==148 then local B;local S;local W;local r;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];r=o[2];W={};S=0;B=r+o[3]-1;for o=r+1,B do S=S+1;W[S]=e[o];end;e[r](a(W,1,B-r));c=r;else local r;local Y,r;local W;local S;local B;local N;local r;e[o[2]]();c=r;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];r=o[2];N=e[o[3]];e[r+1]=N;e[r]=N[n[o[5]]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y,W=R(e[r](a(B,1,W-r)));W=W+r-1;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];r=o[2];B={};S=0;W=c;for o=r+1,W do S=S+1;B[S]=e[o];end;Y={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];l=l+o[3];end;elseif r<=151 then if r==150 then local f=o[2];local d={};for o=1,#Q do local o=Q[o];for l=0,#o do local l=o[l];local n=l[1];local o=l[2];if n==e and o>=f then d[o]=n[o];l[1]=d;end;end;end;else local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];do return end;end;elseif r>152 then e[o[2]]=n[o[3]];else e[o[2]]={unpack({},1,o[3])};end;elseif r<=157 then if r<=155 then if r>154 then local R;local Y;local W;local S;local B;local r;e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];r=o[2];R=e[o[3]];e[r+1]=R;e[r]=R[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=(o[3]~=0);else local Y;local B;local S;local r;local W;local f;e[o[2]]=n[o[3]];l=l+1;o=d[l];f=o[2];W={};r=0;S=f+o[3]-1;for o=f+1,S do r=r+1;W[r]=e[o];end;e[f](a(W,1,S-f));c=f;l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];f=o[2];B=e[o[3]];e[f+1]=B;e[f]=B[n[o[5]]];l=l+1;o=d[l];f=o[2];W={};r=0;S=f+o[3]-1;for o=f+1,S do r=r+1;W[r]=e[o];end;Y={e[f](a(W,1,S-f))};S=f+o[5]-2;r=0;for o=f,S do r=r+1;e[o]=Y[r];end;c=S;l=l+1;o=d[l];e[o[2]]=#e[o[3]];l=l+1;o=d[l];if(n[o[2]]<e[o[5]])then l=l+1;else l=l+o[3];end;end;elseif r==156 then local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];else e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];if(e[o[2]]==e[o[5]])then l=l+1;else l=l+o[3];end;end;elseif r<=159 then if r==158 then local Y;local S;local B;local W;local r;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];r=o[2];W=e[o[3]];e[r+1]=W;e[r]=W[n[o[5]]];l=l+1;o=d[l];r=o[2];B={};S=0;Y=r+o[3]-1;for o=r+1,Y do S=S+1;B[S]=e[o];end;e[r](a(B,1,Y-r));c=r;l=l+1;o=d[l];do return end;else local Q;local R;local Y;local W;local S;local B;local r;e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]={unpack({},1,o[3])};l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];R=e[r];Q=o[3];for o=1,Q do R[o]=e[r+o]end;end;elseif r>160 then local R;local Y;local W;local r;local B;local S;e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];S=o[2];R=e[o[3]];e[S+1]=R;e[S]=R[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];do return end;else local W;local Y;local S;local r;local B;local f;f=o[2];B={};r=0;S=f+o[3]-1;for o=f+1,S do r=r+1;B[r]=e[o];end;Y={e[f](a(B,1,S-f))};S=f+o[5]-2;r=0;for o=f,S do r=r+1;e[o]=Y[r];end;c=S;l=l+1;o=d[l];for o=o[2],o[3]do e[o]=nil;end;l=l+1;o=d[l];e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];f=o[2];W=e[o[3]];e[f+1]=W;e[f]=W[n[o[5]]];end;elseif r<=168 then if r<=164 then if r<=162 then local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=e[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];if e[o[2]]then l=l+1;else l=l+o[3];end;elseif r==163 then if(e[o[2]]~=e[o[5]])then l=l+1;else l=l+o[3];end;else local N;local Y;local W;local S;local B;local r;e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];r=o[2];N=e[o[3]];e[r+1]=N;e[r]=N[n[o[5]]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];end;elseif r<=166 then if r==165 then local r;local Y,r;local W;local S;local B;local N;local r;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];r=o[2];N=e[o[3]];e[r+1]=N;e[r]=N[n[o[5]]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y,W=R(e[r](a(B,1,W-r)));W=W+r-1;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];r=o[2];B={};S=0;W=c;for o=r+1,W do S=S+1;B[S]=e[o];end;Y={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];l=l+o[3];else local Y;local R;local W;local S;local B;local r;e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;R={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=R[S];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];r=o[2];Y=e[o[3]];e[r+1]=Y;e[r]=Y[n[o[5]]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;e[r](a(B,1,W-r));c=r;l=l+1;o=d[l];do return end;end;elseif r>167 then local Y;local W;local r;local B;local S;e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];else local n=e[o[3]];if n then l=l+1;else e[o[2]]=n;l=l+d[l+1][3]+1;end;end;elseif r<=172 then if r<=170 then if r==169 then e[o[2]][n[o[3]]]=n[o[5]];else local W;local S;local B;local r;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;e[r](a(B,1,W-r));c=r;end;elseif r==171 then e[o[2]]=N[o[3]];else local d=o[2];local f={};local l=0;local n=c;for o=d+1,n do l=l+1;f[l]=e[o];end;local n={e[d](a(f,1,n-d))};local o=d+o[5]-2;l=0;for o=d,o do l=l+1;e[o]=n[l];end;c=o;end;elseif r<=174 then if r==173 then local Y;local W;local r;local B;local S;e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];else local B;local Y;local S;local r;local W;local f;f=o[2];W={};r=0;S=f+o[3]-1;for o=f+1,S do r=r+1;W[r]=e[o];end;Y={e[f](a(W,1,S-f))};S=f+o[5]-2;r=0;for o=f,S do r=r+1;e[o]=Y[r];end;c=S;l=l+1;o=d[l];for o=o[2],o[3]do e[o]=nil;end;l=l+1;o=d[l];e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];f=o[2];B=e[o[3]];e[f+1]=B;e[f]=B[n[o[5]]];end;elseif r==175 then local N;local r;local Y,r;local S;local r;local B;local W;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]]*e[o[5]];l=l+1;o=d[l];W=o[2];B={};r=0;S=W+o[3]-1;for o=W+1,S do r=r+1;B[r]=e[o];end;Y,S=R(e[W](a(B,1,S-W)));S=S+W-1;r=0;for o=W,S do r=r+1;e[o]=Y[r];end;c=S;l=l+1;o=d[l];W=o[2];B={};r=0;S=c;for o=W+1,S do r=r+1;B[r]=e[o];end;Y={e[W](a(B,1,S-W))};S=W+o[5]-2;r=0;for o=W,S do r=r+1;e[o]=Y[r];end;c=S;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]]/e[o[5]];l=l+1;o=d[l];W=o[2];S=W+o[3]-2;N={};r=0;for o=W,S do r=r+1;N[r]=e[o];end;do return a(N,1,r)end;l=l+1;o=d[l];do return end;else local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]]+n[o[5]];l=l+1;o=d[l];f[n[o[3]]]=e[o[2]];l=l+1;o=d[l];l=l+o[3];end;elseif r<=205 then if r<=190 then if r<=183 then if r<=179 then if r<=177 then if not e[o[2]]then l=l+1;else l=l+o[3];end;elseif r==178 then local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];else local B;local S;local f;local W;local r;e[o[2]]=e[o[3]];l=l+1;o=d[l];r=o[2];W={};f=0;S=r+o[3]-1;for o=r+1,S do f=f+1;W[f]=e[o];end;B={e[r](a(W,1,S-r))};S=r+o[5]-2;f=0;for o=r,S do f=f+1;e[o]=B[f];end;c=S;l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];end;elseif r<=181 then if r>180 then e[o[2]]=#e[o[3]];l=l+1;o=d[l];e[o[2]]=e[o[3]]+n[o[5]];l=l+1;o=d[l];e[o[2]][e[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=N[o[3]];l=l+1;o=d[l];if not e[o[2]]then l=l+1;else l=l+o[3];end;else local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];do return end;end;elseif r==182 then local l=o[2];local n={};local d=0;local o=l+o[3]-1;for o=l+1,o do d=d+1;n[d]=e[o];end;e[l](a(n,1,o-l));c=l;else local Y;local W;local r;local B;local S;e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];end;elseif r<=186 then if r<=184 then local Y;local W;local r;local B;local S;e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];elseif r>185 then local d=o[2];local l=e[o[3]];e[d+1]=l;e[d]=l[n[o[5]]];else e[o[2]]=e[o[3]]*e[o[5]];end;elseif r<=188 then if r==187 then e[o[2]]=e[o[3]]/e[o[5]];else e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];end;elseif r==189 then local Y;local W;local r;local B;local S;S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];else local R;local Y;local W;local S;local B;local r;e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];r=o[2];R=e[o[3]];e[r+1]=R;e[r]=R[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];do return end;end;elseif r<=197 then if r<=193 then if r<=191 then local Y;local W;local r;local B;local S;e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];elseif r==192 then local Y;local W;local r;local B;local S;e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];else local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];end;elseif r<=195 then if r>194 then local S;local r;local B;local W;local f;f=o[2];W=e[o[3]];e[f+1]=W;e[f]=W[n[o[5]]];l=l+1;o=d[l];f=o[2];B={};r=0;S=f+o[3]-1;for o=f+1,S do r=r+1;B[r]=e[o];end;e[f](a(B,1,S-f));c=f;l=l+1;o=d[l];e[o[2]]=N[o[3]];l=l+1;o=d[l];f=o[2];W=e[o[3]];e[f+1]=W;e[f]=W[n[o[5]]];l=l+1;o=d[l];f=o[2];B={};r=0;S=f+o[3]-1;for o=f+1,S do r=r+1;B[r]=e[o];end;e[f](a(B,1,S-f));c=f;else if(e[o[2]]==n[o[5]])then l=l+1;else l=l+o[3];end;end;elseif r==196 then local Y;local W;local r;local B;local S;e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];else local Y;local W;local r;local B;local S;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];end;elseif r<=201 then if r<=199 then if r>198 then local Y;local W;local r;local B;local S;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];else e[o[2]]=e[o[3]];end;elseif r==200 then e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];if(e[o[2]]~=e[o[5]])then l=l+1;else l=l+o[3];end;else if(n[o[2]]<e[o[5]])then l=l+1;else l=l+o[3];end;end;elseif r<=203 then if r==202 then f[n[o[3]]]=e[o[2]];else e[o[2]][n[o[3]]]=n[o[5]];end;elseif r>204 then local N;local r;local Y,r;local S;local r;local B;local W;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]]*e[o[5]];l=l+1;o=d[l];W=o[2];B={};r=0;S=W+o[3]-1;for o=W+1,S do r=r+1;B[r]=e[o];end;Y,S=R(e[W](a(B,1,S-W)));S=S+W-1;r=0;for o=W,S do r=r+1;e[o]=Y[r];end;c=S;l=l+1;o=d[l];W=o[2];B={};r=0;S=c;for o=W+1,S do r=r+1;B[r]=e[o];end;Y={e[W](a(B,1,S-W))};S=W+o[5]-2;r=0;for o=W,S do r=r+1;e[o]=Y[r];end;c=S;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]]/e[o[5]];l=l+1;o=d[l];W=o[2];S=W+o[3]-2;N={};r=0;for o=W,S do r=r+1;N[r]=e[o];end;do return a(N,1,r)end;l=l+1;o=d[l];do return end;else e[o[2]][e[o[3]]]=e[o[5]];end;elseif r<=220 then if r<=212 then if r<=208 then if r<=206 then e[o[2]]=(o[3]~=0);elseif r>207 then local B;local S;local f;local W;local r;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];W={};f=0;S=r+o[3]-1;for o=r+1,S do f=f+1;W[f]=e[o];end;B={e[r](a(W,1,S-r))};S=r+o[5]-2;f=0;for o=r,S do f=f+1;e[o]=B[f];end;c=S;l=l+1;o=d[l];if not e[o[2]]then l=l+1;else l=l+o[3];end;else e[o[2]]=e[o[3]]-e[o[5]];end;elseif r<=210 then if r==209 then e[o[2]]=T(I[o[3]],nil,f);else if(e[o[2]]==e[o[5]])then l=l+1;else l=l+o[3];end;end;elseif r>211 then if(n[o[2]]<e[o[5]])then l=l+1;else l=l+o[3];end;else local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];end;elseif r<=216 then if r<=214 then if r==213 then local N;local r;local Y,r;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]]*e[o[5]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y,W=R(e[S](a(B,1,W-S)));W=W+S-1;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];S=o[2];B={};r=0;W=c;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]]/e[o[5]];l=l+1;o=d[l];S=o[2];W=S+o[3]-2;N={};r=0;for o=S,W do r=r+1;N[r]=e[o];end;do return a(N,1,r)end;l=l+1;o=d[l];do return end;else e[o[2]]=(not e[o[3]]);end;elseif r==215 then local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];else local a=I[o[3]];local c;local n={};c=J({},{__index=function(l,o)local o=n[o];return o[1][o[2]];end,__newindex=function(e,o,l)local o=n[o]o[1][o[2]]=l;end;});for f=1,o[5]do l=l+1;local o=d[l];if o[1]==198 then n[f-1]={e,o[3]};else n[f-1]={N,o[3]};end;Q[#Q+1]=n;end;e[o[2]]=T(a,c,f);end;elseif r<=218 then if r>217 then local Y,r;local W;local r;local B;local S;f[n[o[3]]]=e[o[2]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y,W=R(e[S](a(B,1,W-S)));W=W+S-1;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];S=o[2];B={};r=0;W=c;for o=S+1,W do r=r+1;B[r]=e[o];end;e[S](a(B,1,W-S));c=S;else local n=e[o[3]];if n then l=l+1;else e[o[2]]=n;l=l+d[l+1][3]+1;end;end;elseif r==219 then local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];do return end;else local Y;local W;local r;local B;local S;S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=n[o[5]];l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];end;elseif r<=227 then if r<=223 then if r<=221 then if(e[o[2]]<n[o[5]])then l=l+1;else l=l+o[3];end;elseif r>222 then local Y;local N,r;local W;local S;local B;local r;f[n[o[3]]]=e[o[2]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;N,W=R(e[r](a(B,1,W-r)));W=W+r-1;S=0;for o=r,W do S=S+1;e[o]=N[S];end;c=W;l=l+1;o=d[l];r=o[2];B={};S=0;W=c;for o=r+1,W do S=S+1;B[S]=e[o];end;e[r](a(B,1,W-r));c=r;l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];r=o[2];Y=e[o[3]];e[r+1]=Y;e[r]=Y[n[o[5]]];else e[o[2]]=e[o[3]]*e[o[5]];end;elseif r<=225 then if r>224 then do return end;else e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];if(e[o[2]]==e[o[5]])then l=l+1;else l=l+o[3];end;end;elseif r==226 then e[o[2]]=e[o[3]]+n[o[5]];else local W;local S;local B;local Y;local r;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];r=o[2];Y=e[o[3]];e[r+1]=Y;e[r]=Y[n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;e[r](a(B,1,W-r));c=r;l=l+1;o=d[l];do return end;end;elseif r<=231 then if r<=229 then if r>228 then e[o[2]]=f[n[o[3]]];else local B;local S;local f;local W;local r;e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];r=o[2];W={};f=0;S=r+o[3]-1;for o=r+1,S do f=f+1;W[f]=e[o];end;B={e[r](a(W,1,S-r))};S=r+o[5]-2;f=0;for o=r,S do f=f+1;e[o]=B[f];end;c=S;end;elseif r==230 then if(e[o[2]]~=e[o[5]])then l=l+1;else l=l+o[3];end;else local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];do return end;end;elseif r<=233 then if r>232 then local r,r;local Q;local Y;local W;local r;local B;local S;e[o[2]]=N[o[3]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];S=o[2];Q=e[o[3]];e[S+1]=Q;e[S]=Q[n[o[5]]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y,W=R(e[S](a(B,1,W-S)));W=W+S-1;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];S=o[2];B={};r=0;W=c;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];l=l+o[3];else local r;local Y,r;local W;local S;local B;local N;local r;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];r=o[2];N=e[o[3]];e[r+1]=N;e[r]=N[n[o[5]]];l=l+1;o=d[l];r=o[2];B={};S=0;W=r+o[3]-1;for o=r+1,W do S=S+1;B[S]=e[o];end;Y,W=R(e[r](a(B,1,W-r)));W=W+r-1;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];r=o[2];B={};S=0;W=c;for o=r+1,W do S=S+1;B[S]=e[o];end;Y={e[r](a(B,1,W-r))};W=r+o[5]-2;S=0;for o=r,W do S=S+1;e[o]=Y[S];end;c=W;l=l+1;o=d[l];l=l+o[3];end;elseif r==234 then local o=o[2];local d={};local l=0;local n=c;for o=o+1,n do l=l+1;d[l]=e[o];end;e[o](a(d,1,n-o));c=o;else local Y;local W;local r;local B;local S;e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]][n[o[5]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];e[o[2]]=n[o[3]];l=l+1;o=d[l];S=o[2];B={};r=0;W=S+o[3]-1;for o=S+1,W do r=r+1;B[r]=e[o];end;Y={e[S](a(B,1,W-S))};W=S+o[5]-2;r=0;for o=S,W do r=r+1;e[o]=Y[r];end;c=W;l=l+1;o=d[l];e[o[2]][n[o[3]]]=e[o[5]];l=l+1;o=d[l];e[o[2]]=f[n[o[3]]];l=l+1;o=d[l];e[o[2]]=e[o[3]]+n[o[5]];l=l+1;o=d[l];f[n[o[3]]]=e[o[2]];l=l+1;o=d[l];l=l+o[3];end;l=l+1;end;end;end;return T(V(),{},M())();
display.setStatusBar( display.DefaultStatusBar ) local json = require "json" local store = require("plugin.google.iap.v3") local products = { "com.solar2d.permanent", "com.solar2d.comsumable", "nope-product", } local subscriptionProducts = { "com.solar2d.subscription", "nope-subscription", } local listenerTable = {} local function productListener(event) print("Product list event", json.prettify(event),"\n----------------") end local function storeTransaction(event) print("Transaction event", json.prettify(event),"\n----------------") store.finishTransaction( event ) end local y = display.safeScreenOriginY + 10 local text = display.newText( "init", display.contentCenterX, y, native.systemFont, 25 ) text:addEventListener( "tap", function( ) store.init(storeTransaction) end ) y=y+40 local text = display.newText( "load", display.contentCenterX, y, native.systemFont, 25 ) text:addEventListener( "tap", function( ) store.loadProducts( products, subscriptionProducts, productListener ) end ) y=y+40 local text = display.newText( "restore", display.contentCenterX, y, native.systemFont, 25 ) text:addEventListener( "tap", function( ) store.restore( ) end ) y=y+40 local text = display.newText( "purchase consumable", display.contentCenterX, y, native.systemFont, 25 ) text:addEventListener( "tap", function( ) store.purchase("com.solar2d.comsumable") end ) y=y+40 local text = display.newText( "consume", display.contentCenterX, y, native.systemFont, 25 ) text:addEventListener( "tap", function( ) store.consumePurchase("com.solar2d.comsumable") end ) y=y+40 local text = display.newText( "purchase permanent", display.contentCenterX, y, native.systemFont, 25 ) text:addEventListener( "tap", function( ) store.purchase("com.solar2d.permanent") end ) y=y+40 local text = display.newText( "purchase subscription", display.contentCenterX, y, native.systemFont, 25 ) text:addEventListener( "tap", function( ) store.purchaseSubscription("com.solar2d.subscription") end ) y=y+40
-- Some SoundCloud playlist utility functions -- Cannot be used as is, but may be useful to someone. local API_KEY = "54b083f616aca3497e9e45b70c2892f5" local function queryPlaylist(id, cb) http.Fetch("http://api.soundcloud.com/playlists/" .. id .. "?representation=id&client_id=" .. API_KEY, function(body) local t = util.JSONToTable(body) local trackIds = {} for _,tr in pairs(t.tracks) do table.insert(trackIds, tr.id) end cb(nil, { title = t.title, trackIds = trackIds }) end) end local pls_pattern = "^https?://soundcloud.com/([A-Za-z0-9_%-]+)/sets/([A-Za-z0-9_%-]+)/?.*$" local function isPlaylistUrl(url) return not not string.match(url, pls_pattern) end local function queryPlaylistUrl(url, cb) local user, plsName = string.match(url, pls_pattern) http.Fetch("http://api.soundcloud.com/resolve?url=https://soundcloud.com/" .. user .. "/sets/" .. plsName .. "&client_id=" .. API_KEY, function(body) local t = util.JSONToTable(body) if not t then cb("nil json table") return end if t.errors then cb(tostring(t.errors[1].error)) return end local firstTrackId = (t.tracks[1] and t.tracks[1].id) cb(nil, "scpls://" .. t.id .. "@" .. firstTrackId) end) end
local M = {} M.map = function(mode, lhs, rhs, opts) local options = { noremap = true, silent = true } if opts then options = vim.tbl_extend("force", options, opts) end local stat, error = pcall(vim.api.nvim_set_keymap, mode, lhs, rhs, options) if not stat then vim.notify(error, vim.log.levels.ERROR, { title = 'keymap' }) end end M.new_cmd = function(cmd, repl, force) local command if force then command = "command! " .. cmd .. " " .. repl else command = "command " .. cmd .. " " .. repl end local ok, err = pcall(vim.cmd, command) if not ok then vim.notify("setting cmd: " .. cmd .. " " .. err, vim.log.levels.ERROR, { title = 'command' }) end end M.log_err = function(msg, title) vim.notify(msg, vim.log.levels.ERROR, { title = title }) end M.log_info = function(msg, title) vim.notify(msg, vim.log.levels.INFO, { title = title }) end -- This is a hook, to setup for lazy loaded plugins local function setup_plugins_after_loaded() -- Run rooter when it is the first time enter the neovim vim.cmd [[autocmd VimEnter * Rooter]] end local function setup_plugins_before_loaded() if not vim.fn.has("nvim-0.6") then -- for filetype.nvim -- If using a Neovim version earlier than 0.6.0 vim.g.did_load_filetypes = 1 end -- for vsnip vim.g.vsnip_snippet_dir = vim.fn.expand("~/.config/nvim/vsnip") -- for wildfire vim.g.wildfire_objects = {"i'", 'i"', "i)", "i]", "i}", "ip", "it", "i`"} end M.load_plugins = function() -- detecting plugin manager local no_packer = false local fn = vim.fn local install_path = fn.stdpath("data") .. "/site/pack/packer/opt/packer.nvim" if fn.empty(fn.glob(install_path)) > 0 then M.log_info("Installing packer to " .. install_path) no_packer = fn.system({ 'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path }) end local packer_call, error_msg = pcall(vim.cmd, [[packadd packer.nvim]]) if not packer_call then M.log_err(error_msg, "load plugin") return end -- add a hook setup_plugins_before_loaded() -- Reading plugins configuration local ok, error = pcall(require, 'plugins') if not ok then M.log_err("Load plugins: " .. error, "load plugins") end vim.cmd([[autocmd BufWritePost plug.lua source <afile> | PackerCompile]]) if no_packer then require('packer').sync() return end -- add a hook setup_plugins_after_loaded() end M.lsp_attach = function(client, bufnr) local function buf_set_keymap(...) vim.api.nvim_buf_set_keymap(bufnr, ...) end local function buf_set_option(...) vim.api.nvim_buf_set_option(bufnr, ...) end -- Enable completion triggered by <c-x><c-o> buf_set_option('omnifunc', 'v:lua.vim.lsp.omnifunc') -- Mappings. local opts = { noremap = true, silent = true } buf_set_keymap('n', 'gd', '<Cmd>Lspsaga preview_definition<CR>', opts) buf_set_keymap('n', 'gh', '<Cmd>Lspsaga hover_doc<CR>', opts) buf_set_keymap("n", "<C-u>", "<cmd>lua require('lspsaga.action').smart_scroll_with_saga(-1)<cr>", opts) buf_set_keymap("n", "<C-d>", "<cmd>lua require('lspsaga.action').smart_scroll_with_saga(1)<cr>", opts) buf_set_keymap('n', 'gs', '<cmd>Lspsaga signature_help<CR>', opts) buf_set_keymap('n', 'go', '<cmd>Lspsaga show_line_diagnostics<CR>', opts) buf_set_keymap('n', 'gj', '<cmd>Lspsaga diagnostic_jump_next<CR>', opts) buf_set_keymap('n', 'gk', '<cmd>Lspsaga diagnostic_jump_prev<CR>', opts) buf_set_keymap('n', 'gr', '<cmd>Lspsaga rename<CR>', opts) buf_set_keymap('n', 'gx', '<cmd>Lspsaga code_action<CR>', opts) buf_set_keymap('n', 'gD', '<Cmd>lua vim.lsp.buf.declaration()<CR>', opts) buf_set_keymap('n', 'gm', '<cmd>lua vim.lsp.buf.implementation()<CR>', opts) buf_set_keymap('n', 'gt', '<cmd>lua vim.lsp.buf.type_definition()<CR>', opts) buf_set_keymap('n', 'gq', '<cmd>lua vim.diagnostic.set_loclist()<CR>', opts) -- Set some keybinds conditional on server capabilities if client.resolved_capabilities.document_formatting then buf_set_keymap("n", "gf", "<cmd>lua vim.lsp.buf.formatting()<CR>", opts) elseif client.resolved_capabilities.document_range_formatting then buf_set_keymap("x", "gf", "<cmd>lua vim.lsp.buf.range_formatting()<CR>", opts) end end return M
--[[ Author: TheOriginalBIT Version: 1.1.2 Created: 26 APR 2013 Last Update: 30 APR 2013 License: COPYRIGHT NOTICE Copyright © 2013 Joshua Asbury a.k.a TheOriginalBIT [theoriginalbit@gmail.com] Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -Visible credit is given to the original author. -The software is distributed in a non-profit way. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ]]-- -- make sure that its only a computer terminal that is displaying local sw, sh = term.getSize() if sw ~= 51 and sh ~= 19 then error("Sorry this game can only run on computers", 0) end -- the wining directions local winCombos = { -- horizontal {1,2,3}, {4,5,6}, {7,8,9}, -- vertical {1,4,7}, {2,5,8}, {3,6,9}, -- diagonal {1,5,9}, {3,5,7} } local players = {x = 'Player', o = 'The Computer'} -- whether an AI is active, could be used later to allow SP local activeAI = true local currentPlayer local opposites = { x = 'o', o = 'x' } local board local winner local move local allowedBgColors = { colors.orange, colors.lightBlue, colors.gray, colors.cyan, colors.purple, colors.blue, colors.brown, colors.green, colors.red, colors.black } local bg local function clear(col) term.setBackgroundColor(col or colors.black) term.clear() term.setCursorPos(1,1) end -- function thanks to Mads... found here: http://www.computercraft.info/forums2/index.php?/topic/11771-print-coloured-text-easily/page__p__105389#entry105389 local function writeWithFormat(...) local s = "&0" for k, v in ipairs(arg) do s = s .. v end s = s .. "&0" local fields = {} local lastcolor, lastpos = "0", 0 for pos, clr in s:gmatch"()&(%x)" do table.insert(fields, {s:sub(lastpos + 2, pos - 1), lastcolor}) lastcolor, lastpos = clr , pos end for i = 2, #fields do term.setTextColor(2 ^ (tonumber(fields[i][2], 16))) write(fields[i][1]) end end -- modification of Mads' function to get the length of the string without the color modifiers local function countFormatters(text) return #(text:gsub("()&(%x)", '')) end -- print a color formatted string in the center of the screen local function cwriteWithFormat(text, y) local sw,sh = term.getSize() local _,cy = term.getCursorPos() term.setCursorPos(math.floor((sw-countFormatters(text))/2)+(countFormatters(text) % 2 == 0 and 1 or 0), y or cy) writeWithFormat(text) end -- writes the text at the give location local function writeAt(text, x, y) local _,cy = term.getCursorPos() term.setCursorPos(x or 1, y or cy) write(text) end local function reset() bg = allowedBgColors[math.random(1, #allowedBgColors)] currentPlayer = 'x' board = {} for i = 1, 9 do board[i] = ' ' end winner = nil move = nil end local function search(match) for _, check in ipairs(winCombos) do if board[check[1]] == board[check[2]] and board[check[1]] == match and board[check[3]] == ' ' then return check[3] elseif board[check[1]] == board[check[3]] and board[check[1]] == match and board[check[2]] == ' ' then return check[2] elseif board[check[2]] == board[check[3]] and board[check[2]] == match and board[check[1]] == ' ' then return check[1] end end end local function getAIMove() -- make it seem like the computer actually has to think about its move sleep(0.8) -- check if AI can win and return the 3rd tile to create a win, if it cannot, check for a human attempt at winning and stop it, if there is none, return a random return (search(currentPlayer) or search(opposites[currentPlayer])) or math.random(1,9) end local function modread( _mask, _history, _limit ) term.setCursorBlink(true) local input = "" local pos = 0 if _mask then _mask = _mask:sub(1,1) end local historyPos = nil local sw, sh = term.getSize() local sx, sy = term.getCursorPos() local function redraw( _special ) local scroll = (sx + pos >= sw and (sx + pos) - sw or 0) local replace = _special or _mask term.setCursorPos( sx, sy ) term.write( replace and string.rep(replace, #input - scroll) or input:sub(scroll + 1) ) term.setCursorPos( sx + pos - scroll, sy ) end while true do local event = {os.pullEvent()} if event[1] == 'char' and (not _limit or #input < _limit) then input = input:sub(1, pos)..event[2]..input:sub(pos + 1) pos = pos + 1 elseif event[1] == 'key' then if event[2] == keys.enter then break elseif event[2] == keys.backspace and pos > 0 then redraw(' ') input = input:sub(1, pos - 1)..input:sub(pos + 1) pos = pos - 1 elseif event[2] == keys.delete and pos < #input then redraw(' ') input = input:sub(1, pos)..input:sub(pos + 2) elseif event[2] == keys.home then pos = 0 elseif event[2] == keys['end'] then pos = #input elseif event[2] == keys.left and pos > 0 then pos = pos - 1 elseif event[2] == keys.right and pos < #input then pos = pos + 1 elseif _history and event[2] == keys.up or event[2] == keys.down then redraw(' ') if event[2] == keys.up then if not historyPos then historyPos = #_history elseif historyPos > 1 then historyPos = historyPos - 1 end else if historyPos ~= nil and historyPos < #_history then historyPos = historyPos + 1 elseif historyPos == #_history then historyPos = nil end end if historyPos then input = string.sub(_history[historyPos], 1, _limit) or "" pos = #input else input = "" pos = 0 end end elseif event[1] == 'mouse_click' then local xPos, yPos = event[3], event[4] if xPos == sw and yPos == 1 then -- exit and make sure to fool the catch-all error('Terminated', 0) end local row = (xPos >= 16 and xPos <= 21) and 1 or (xPos >= 23 and xPos <= 28) and 2 or (xPos >= 30 and xPos <= 35) and 3 or 10 local col = (yPos >= 4 and yPos <= 6) and 1 or (yPos >= 8 and yPos <= 10) and 2 or (yPos >= 12 and yPos <= 16) and 3 or 10 local ret = (col - 1) * 3 + row if ret >= 1 and ret <= 9 then return ret end end redraw(_mask) end term.setCursorBlink(false) term.setCursorPos(1, sy + 1) return input end local function getHumanMove() writeWithFormat('&b[1-9] >>&f ') return modread() end local function processInput() -- set the cursor pos ready for the input term.setCursorPos(3, sh-1) move = (currentPlayer == 'x' and getHumanMove or getAIMove)() end local function output(msg) -- if the player is not an AI, print the error if not (activeAI and currentPlayer == 'o') then term.setCursorPos(3, sh-1) writeWithFormat('&eERROR >> '..msg) sleep(2) end end local function checkMove() -- if the user typed exit if not tonumber(move) and move:lower() == 'exit' then -- exit and make sure to fool the catch-all error('Terminated', 0) end -- attempt to convert the move to a number local nmove = tonumber(move) -- if it wasn't a number if not nmove then output(tostring(move)..' is not a number between 1 and 9!') return false end -- if it is not within range of the board if nmove > 9 or nmove < 1 then output('Must be a number between 1 and 9!') return false end -- if the space is already taken if board[nmove] ~= ' ' then output('Position already taken!') return false end -- keep the conversion move = tonumber(move) return true end local function checkWin() for _, check in ipairs(winCombos) do if board[check[1]] ~= ' ' and board[check[1]] == board[check[2]] and board[check[1]] == board[check[3]] then return board[check[1]] end end for _, tile in ipairs(board) do if tile == ' ' then return nil end end return 'tie' end local function update() if checkMove() then board[move] = currentPlayer winner = checkWin() currentPlayer = currentPlayer == 'x' and 'o' or 'x' end end local function render() -- clear the screen light blue clear(bg) -- draw the ascii borders term.setTextColor(colors.white) for i = 2, sh-1 do writeAt('|', 1, i) writeAt('|', sw, i) end writeAt('+'..string.rep('-', sw-2)..'+', 1, 1) writeAt('+'..string.rep('-', sw-2)..'+', 1, 3) writeAt('+'..string.rep('-', sw-2)..'+', 1, sh-2) writeAt('+'..string.rep('-', sw-2)..'+', 1, sh) if term.isColor and term.isColor() then term.setCursorPos(sw, 1) term.setBackgroundColor(colors.red) term.setTextColor(colors.black) writeWithFormat('X') end -- set our colours term.setBackgroundColor(colors.white) term.setTextColor(colors.black) -- clear an area for the title writeAt(string.rep(' ', sw-2), 2, 2) writeAt('Tic-Tac-Toe!', sw/2-5, 2) -- clear an area for the input writeAt(string.rep(' ', sw-2), 2, sh-1) -- clear the area for the board local h = sh - 6 for i = 0, h - 1 do writeAt(string.rep(' ', sw - 2), 2, 4+i) end -- draw the grid for i = 0, 10 do writeAt(((i == 3 or i == 7) and '------+------+------' or ' | | '), 16, i + 4) end -- draw the first line moves for i = 1, 3 do if board[i] ~= ' ' then writeAt((board[i] == 'x' and '\\/' or '/\\'), 18+((i-1)*7), 5) writeAt((board[i] == 'x' and '/\\' or '\\/'), 18+((i-1)*7), 6) end end -- draw the second line moves for i = 1, 3 do if board[i + 3] ~= ' ' then writeAt((board[i + 3] == 'x' and '\\/' or '/\\'), 18+((i-1)*7), 9) writeAt((board[i + 3] == 'x' and '/\\' or '\\/'), 18+((i-1)*7), 10) end end -- draw the third line moves for i = 1, 3 do if board[i + 6] ~= ' ' then writeAt((board[i + 6] == 'x' and '\\/' or '/\\'), 18+((i-1)*7), 13) writeAt((board[i + 6] == 'x' and '/\\' or '\\/'), 18+((i-1)*7), 14) end end -- draw the current player term.setCursorPos(3, sh - 3) if not winner then writeWithFormat('&bCurrent Player: &f'..players[currentPlayer]) end end local function main(arc, argv) clear() writeWithFormat('&0Welcome to CCTicTacToe by &8TheOriginal&3BIT&0\n\nPlease enter your name\n\n&4>>&0 ') players.x = read() or 'Player' -- setup the game, will later be used to reset() -- initial render render() -- game loop while not winner do processInput() update() render() -- highly unorthodox having something that isn't in input, update, render! -- print the winner info if winner then writeWithFormat('&f'..(winner == 'tie' and 'There was no winner :(&f' or players[winner]..'&f is the winner!')) -- allow the player to start a new game or quit writeAt("Press 'R' to play again, 'Q' to quit...", 3, sh - 1) while true do local _, k = os.pullEvent('key') if k == 16 then break elseif k == 19 then reset() -- reset the game render() -- render the new game ready to wait for input break end end os.pullEvent() -- remove the char event that would be waiting end end return true end -- create a terminal object with a non-advanced computer safe version of setting colors local oldTermObj = term.current() local termObj = { setTextColor = function(n) if term.isColor and term.isColor() then local ok, err = pcall(oldTermObj.setTextColor , n) if not ok then error(err, 2) end end end, setBackgroundColor = function(n) if term.isColor and term.isColor() then local ok, err = pcall(oldTermObj.setBackgroundColor , n) if not ok then error(err, 2) end end end } -- also override the English spelling of the colour functions termObj.setTextColour = termObj.setTextColor termObj.setBackgroundColour = termObj.setBackgroundColor -- make the terminal object refer to the native terminal for every other function termObj.__index = oldTermObj setmetatable(termObj, termObj) -- redirect the terminal to the new object term.redirect(termObj) -- run the program local ok, err = pcall(main, #{...}, {...}) -- catch-all if not ok and err ~= 'Terminated' then clear() print('Error in runtime!') print(err) sleep(5) end -- print thank you message clear() cwriteWithFormat('&4Thank you for playing CCTicTacToe v1.0', 1) cwriteWithFormat('&4By &8TheOriginal&3BIT\n', 2) -- restore the default terminal object term.redirect( oldTermObj )
return function() warnings 'Off' includedirs { 'third_party/stb/stb' } files { 'third_party/stb/stb/**.h', 'third_party/stb/stb/**.c' } end
local M = {} -- Set the opt folder where the plugins will be symlinked to. local opt = vim.fn.stdpath('data')..'/site/pack/backpack/opt' -- Set the path where the plugins source lives. local plugins = vim.fn.stdpath('config')..'/plugins' -- Set the path to the manifest file. local manifest = vim.fn.stdpath('config')..'/packmanifest.lua' function M.setup() -- Make sure the `opt` folder exists. vim.fn.mkdir(opt, 'p') M.plugins = {} -- 'use' will be defined only for use in the manifest. _G.use = function(opts) local _, _, plugin = string.find(opts[1], '^([^ /]+)$') -- Track the plugin so it can be updated with :GuxBackpackUpdate. table.insert(M.plugins, { plugin = plugin, }) local plugin_dir = opt..'/'..plugin -- Create the plugin directory. vim.fn.mkdir(plugin_dir, 'p') -- Run stow to symlink the plugin to the `opt` directory. vim.loop.spawn('stow', { args = { '-R', '-t', plugin_dir, plugin }, cwd = plugins, }, vim.schedule_wrap(function(code) if code == 0 then vim.cmd('packadd! '..plugin) vim.cmd('helptags '..plugin_dir..'/doc') vim.api.nvim_out_write(string.format('%s', vim.inspect(plugin))) else vim.api.nvim_err_writeln(string.format('Failed to run %s', vim.inspect(plugin))) end end) ) end if vim.fn.filereadable(manifest) ~= 0 then dofile(manifest) end _G.use = nil end return M
return { version = "1.1", luaversion = "5.1", tiledversion = "1.0.2", orientation = "orthogonal", renderorder = "left-down", width = 144, height = 128, tilewidth = 8, tileheight = 8, nextobjectid = 30, properties = {}, tilesets = { { name = "LIKO-12", firstgid = 1, tilewidth = 8, tileheight = 8, spacing = 0, margin = 0, image = "tileset.png", imagewidth = 192, imageheight = 128, tileoffset = { x = 0, y = 0 }, grid = { orientation = "orthogonal", width = 8, height = 8 }, properties = {}, terrains = {}, tilecount = 384, tiles = {} } }, layers = { { type = "tilelayer", name = "Map", x = 0, y = 0, width = 144, height = 128, visible = true, opacity = 1, offsetx = 0, offsety = 0, properties = {}, encoding = "lua", data = { 22, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 68, 68, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 68, 68, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 68, 68, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 68, 68, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 68, 68, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 24, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 111, 112, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 0, 156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 135, 136, 0, 0, 0, 92, 69, 0, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 168, 152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 169, 0, 0, 0, 0, 121, 121, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 0, 152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 95, 95, 95, 68, 95, 95, 95, 68, 95, 95, 95, 68, 95, 95, 95, 68, 95, 95, 95, 95, 95, 68, 96, 96, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 68, 68, 68, 68, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 75, 0, 94, 0, 75, 0, 94, 0, 75, 0, 94, 0, 75, 0, 94, 0, 75, 0, 0, 0, 92, 96, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 0, 0, 0, 92, 96, 96, 96, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 42, 23, 0, 94, 42, 23, 0, 94, 42, 23, 0, 94, 42, 23, 0, 94, 42, 23, 0, 23, 0, 92, 96, 69, 0, 0, 0, 73, 0, 73, 0, 73, 0, 73, 0, 0, 28, 0, 23, 0, 0, 0, 92, 96, 96, 96, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 94, 65, 71, 0, 94, 65, 71, 0, 94, 65, 71, 0, 94, 65, 71, 0, 94, 0, 94, 0, 92, 96, 69, 0, 46, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 68, 69, 0, 0, 0, 92, 96, 96, 96, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 94, 0, 76, 28, 94, 0, 76, 0, 94, 0, 76, 28, 94, 0, 76, 26, 94, 0, 94, 0, 92, 96, 69, 0, 75, 73, 0, 73, 0, 73, 0, 73, 0, 73, 0, 0, 92, 69, 0, 0, 0, 92, 96, 96, 96, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 121, 92, 69, 42, 70, 95, 95, 95, 93, 95, 95, 95, 93, 95, 95, 95, 93, 95, 95, 95, 93, 82, 69, 0, 92, 96, 96, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 48, 0, 92, 69, 0, 0, 0, 92, 96, 96, 96, 69, 94, 0, 158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 68, 68, 68, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 68, 96, 96, 68, 68, 68, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 68, 96, 69, 28, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 0, 94, 0, 92, 96, 69, 0, 73, 0, 0, 0, 73, 0, 73, 0, 73, 0, 73, 28, 92, 69, 65, 65, 65, 92, 96, 96, 96, 69, 92, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 68, 96, 96, 68, 68, 68, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 68, 96, 96, 96, 96, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 96, 96, 96, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 96, 90, 68, 68, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 48, 42, 94, 0, 92, 96, 96, 68, 68, 24, 42, 46, 95, 95, 95, 95, 95, 95, 95, 68, 96, 69, 0, 0, 0, 92, 96, 96, 96, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 96, 96, 96, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 96, 96, 96, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 96, 96, 96, 69, 0, 0, 0, 0, 0, 0, 22, 95, 95, 24, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 96, 96, 96, 69, 0, 0, 75, 0, 26, 76, 0, 0, 75, 0, 0, 76, 0, 0, 75, 26, 94, 0, 92, 96, 96, 96, 96, 69, 73, 0, 73, 0, 73, 0, 73, 0, 0, 92, 96, 69, 0, 0, 0, 92, 96, 96, 96, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70, 93, 93, 93, 66, 72, 0, 0, 0, 0, 46, 95, 48, 0, 0, 0, 0, 0, 0, 110, 0, 0, 0, 0, 70, 93, 93, 93, 66, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, 0, 70, 93, 93, 93, 66, 72, 0, 0, 0, 0, 0, 0, 71, 63, 0, 94, 0, 0, 110, 0, 0, 0, 0, 0, 70, 93, 93, 93, 66, 72, 39, 41, 46, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 69, 65, 70, 93, 93, 93, 66, 93, 95, 95, 95, 95, 95, 95, 95, 48, 0, 92, 96, 69, 0, 0, 0, 92, 96, 96, 96, 69, 94, 0, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 108, 0, 0, 0, 76, 0, 0, 0, 0, 0, 0, 75, 73, 75, 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 75, 0, 0, 76, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 0, 75, 0, 0, 76, 0, 0, 0, 0, 0, 78, 0, 0, 75, 28, 77, 94, 0, 0, 73, 0, 0, 0, 0, 0, 75, 0, 0, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 94, 0, 75, 0, 0, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 69, 65, 65, 65, 92, 96, 96, 96, 69, 92, 33, 33, 33, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 33, 33, 68, 68, 90, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 33, 33, 68, 68, 90, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 33, 33, 68, 68, 90, 68, 68, 68, 68, 68, 68, 68, 68, 68, 96, 68, 68, 68, 68, 68, 68, 68, 68, 68, 33, 33, 68, 68, 90, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 90, 96, 68, 68, 33, 33, 68, 68, 90, 68, 68, 68, 68, 68, 68, 68, 68, 68, 96, 96, 69, 0, 0, 0, 92, 96, 96, 96, 69, 92, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 96, 96, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 96, 93, 93, 93, 93, 93, 93, 93, 93, 93, 96, 96, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 96, 96, 96, 96, 96, 96, 93, 93, 93, 93, 93, 93, 93, 93, 93, 96, 93, 93, 93, 93, 93, 96, 93, 93, 96, 96, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 96, 93, 93, 93, 96, 96, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 96, 96, 96, 69, 0, 0, 0, 92, 96, 96, 96, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 118, 77, 120, 118, 77, 120, 118, 77, 120, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 96, 96, 96, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 0, 0, 28, 0, 0, 94, 0, 0, 92, 69, 0, 0, 0, 73, 0, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 118, 77, 120, 92, 69, 0, 118, 77, 120, 0, 0, 0, 0, 0, 0, 0, 92, 96, 96, 69, 0, 0, 0, 92, 96, 96, 96, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 118, 88, 120, 118, 88, 120, 118, 88, 120, 92, 69, 0, 152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 96, 96, 96, 69, 0, 23, 0, 0, 0, 0, 23, 0, 0, 94, 0, 46, 95, 48, 0, 71, 0, 0, 92, 69, 0, 0, 0, 39, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 94, 118, 88, 120, 92, 69, 0, 0, 88, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 96, 69, 65, 65, 65, 92, 96, 96, 96, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 118, 0, 120, 118, 0, 120, 118, 0, 120, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 96, 96, 96, 69, 28, 94, 0, 73, 0, 73, 94, 0, 0, 94, 78, 0, 0, 0, 0, 75, 28, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 73, 28, 0, 0, 0, 0, 94, 118, 88, 120, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 96, 69, 0, 0, 0, 92, 96, 96, 96, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 118, 0, 120, 118, 0, 120, 118, 0, 120, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 96, 96, 96, 72, 0, 70, 33, 95, 95, 95, 72, 0, 0, 70, 95, 95, 48, 88, 22, 24, 39, 0, 92, 69, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 40, 41, 0, 0, 0, 0, 94, 118, 88, 120, 92, 69, 53, 53, 53, 53, 53, 53, 53, 53, 53, 0, 0, 92, 96, 96, 69, 0, 0, 0, 92, 96, 96, 96, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 118, 0, 120, 118, 0, 120, 118, 0, 120, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 96, 96, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 92, 69, 0, 0, 0, 0, 28, 73, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 118, 88, 120, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70, 96, 96, 69, 0, 0, 0, 92, 96, 96, 96, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 118, 0, 120, 118, 0, 120, 118, 0, 120, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 96, 93, 72, 0, 22, 95, 95, 48, 88, 88, 22, 95, 95, 95, 95, 68, 68, 68, 96, 69, 0, 0, 92, 69, 0, 0, 0, 0, 39, 40, 41, 0, 0, 0, 0, 0, 0, 28, 73, 74, 0, 0, 94, 118, 88, 120, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 69, 65, 65, 65, 92, 96, 96, 96, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 118, 0, 120, 118, 0, 120, 118, 0, 120, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 69, 0, 0, 0, 94, 0, 0, 76, 28, 28, 94, 0, 0, 28, 0, 70, 93, 93, 93, 72, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 40, 41, 0, 0, 94, 118, 88, 120, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 69, 0, 0, 0, 92, 96, 96, 96, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 118, 0, 120, 118, 0, 120, 118, 0, 120, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 69, 0, 0, 0, 94, 0, 22, 95, 95, 95, 69, 88, 22, 24, 0, 0, 0, 0, 0, 76, 0, 0, 92, 69, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 94, 118, 88, 120, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 69, 0, 0, 0, 92, 96, 96, 96, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 118, 0, 120, 118, 0, 120, 118, 0, 120, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 69, 88, 23, 88, 94, 0, 94, 0, 28, 0, 94, 0, 92, 69, 88, 46, 95, 68, 95, 48, 39, 0, 92, 69, 0, 0, 0, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 118, 88, 120, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 69, 0, 0, 0, 92, 96, 96, 96, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 118, 0, 120, 118, 0, 120, 118, 0, 120, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 69, 0, 94, 0, 94, 0, 94, 0, 23, 73, 94, 0, 92, 69, 0, 28, 0, 94, 0, 0, 0, 0, 92, 69, 0, 0, 39, 40, 41, 0, 0, 0, 0, 74, 0, 0, 0, 0, 0, 0, 0, 0, 94, 118, 88, 120, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 69, 65, 65, 65, 92, 96, 96, 96, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 96, 96, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 118, 78, 120, 118, 78, 120, 118, 78, 120, 92, 96, 68, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 68, 68, 68, 96, 96, 69, 65, 94, 65, 94, 65, 94, 0, 70, 95, 72, 0, 92, 93, 95, 48, 0, 94, 0, 0, 0, 77, 92, 69, 74, 0, 0, 0, 0, 0, 0, 0, 39, 40, 41, 0, 0, 0, 73, 28, 0, 0, 94, 118, 78, 120, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 69, 0, 0, 0, 92, 96, 96, 96, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 96, 69, 0, 0, 0, 0, 0, 0, 22, 68, 68, 96, 96, 68, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 93, 95, 95, 95, 95, 95, 95, 68, 68, 68, 96, 96, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 96, 96, 96, 69, 0, 94, 28, 94, 0, 94, 0, 0, 0, 0, 0, 94, 0, 73, 0, 0, 94, 0, 0, 22, 33, 96, 96, 24, 0, 0, 0, 0, 0, 73, 28, 0, 0, 0, 0, 0, 39, 40, 41, 0, 28, 92, 68, 68, 68, 96, 96, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 96, 69, 0, 0, 0, 92, 96, 96, 96, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 22, 96, 96, 96, 96, 24, 0, 0, 0, 0, 0, 70, 66, 93, 93, 93, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70, 66, 93, 93, 93, 72, 0, 0, 23, 88, 23, 88, 23, 88, 33, 33, 88, 23, 88, 23, 88, 23, 0, 0, 70, 66, 93, 93, 93, 72, 88, 71, 88, 71, 0, 70, 95, 68, 68, 95, 95, 93, 95, 95, 95, 95, 72, 0, 0, 142, 93, 93, 93, 72, 0, 0, 0, 0, 39, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70, 93, 66, 93, 93, 93, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70, 66, 72, 65, 65, 65, 92, 96, 96, 96, 69, 94, 0, 0, 0, 0, 0, 0, 0, 22, 96, 96, 96, 96, 96, 96, 24, 0, 0, 0, 0, 0, 0, 76, 0, 0, 75, 0, 0, 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 0, 0, 75, 0, 0, 94, 77, 94, 77, 94, 77, 22, 24, 78, 94, 78, 94, 78, 94, 0, 0, 0, 0, 76, 0, 0, 75, 0, 0, 0, 28, 0, 0, 0, 92, 69, 28, 0, 73, 28, 73, 28, 73, 0, 0, 0, 0, 76, 0, 0, 75, 28, 0, 74, 0, 0, 0, 0, 0, 28, 0, 73, 73, 0, 0, 73, 0, 0, 0, 0, 0, 76, 0, 0, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 0, 92, 96, 96, 96, 69, 70, 95, 95, 95, 95, 95, 95, 95, 93, 93, 93, 93, 93, 93, 93, 93, 95, 95, 95, 95, 82, 95, 95, 33, 33, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 82, 95, 95, 33, 33, 95, 95, 95, 93, 95, 93, 95, 93, 95, 93, 93, 95, 93, 95, 93, 95, 93, 95, 95, 82, 95, 95, 33, 33, 95, 95, 95, 95, 95, 95, 95, 82, 93, 93, 95, 95, 95, 95, 95, 95, 95, 95, 33, 82, 95, 95, 33, 33, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 82, 95, 95, 33, 33, 95, 95, 95, 95, 82, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 33, 33, 33, 93, 93, 93, 93, 72, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44 } } } }
--[[ # [Col.lua](../src/col.lua) Data comes in rows and columns. Column contents are summarized in `Cols`. `Col`s have - a count `n` of the number of things seen to date - (optional) a `pos`ition (some integer). - (optional) a name (stored in `txt`) - if that name starts with "`<`" then this column is a goal to be minimized. - If so, this column has a weight `w` of -1. - Otherwise it has a weight of 1 - Also, `Col` can check for anomalies; i.e. if some number has less that an `odd` percent chance of belonging to his summary. Subtypes of `Col` include [`Num`](num.md) and [`Sym`](sym.md) for numeric and symbolic columns, respectively. --]] local the = require "the" local Col = the.class() function Col:_init(txt,pos) self.n = 0 self.txt = txt or "" self.pos = pos or 0 self.odd = the.data.odd -- defaults to 1% self.w = string.find(self.txt,the.ch.less) and -1 or 1 end -- Method for bulk addition of many items. function Col:adds(l, f,g) if type(f) == 'number' then g = (function (z) return z[f] end) else g = f or (function (z) return z end) end for _,v in pairs(l or {}) do self:add( g(v) ) end return self end function Col:clone(xs) local what= getmetatable(self) return what(self.txt, self.pos):adds(xs) end function Col:xpect(other) local n = self.n + other.n return (self:var()*self.n + other:var()*other.n) /n end return Col
--!A cross-platform build utility based on Lua -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- -- Copyright (C) 2015-2020, TBOOX Open Source Group. -- -- @author ruki -- @file textarea.lua -- -- load modules local log = require("ui/log") local view = require("ui/view") local label = require("ui/label") local event = require("ui/event") local curses = require("ui/curses") -- define module local textarea = textarea or label() -- init textarea function textarea:init(name, bounds, text) -- init label label.init(self, name, bounds, text) -- mark as selectable self:option_set("selectable", true) -- enable progress self:option_set("progress", true) -- init start line self._STARTLINE = 0 self._LINECOUNT = 0 end -- draw textarea function textarea:on_draw(transparent) -- draw background view.on_draw(self, transparent) -- get the text attribute value local textattr = self:textattr_val() -- draw text string local strs = self._SPLITTEXT if strs and #strs > 0 and textattr then self:canvas():attr(textattr):move(0, 0):putstrs(strs, self._STARTLINE + 1) end -- draw progress if self:option("progress") then local tb = self._STARTLINE local fator = self:height() / self._LINECOUNT local sb = math.min(math.floor(tb * fator), self:height() - 1) local se = math.min(sb + math.ceil(self:height() * fator), self:height()) if se > sb and se - sb < self:height() then self:canvas():attr("black"):move(self:width() - 1, sb):putchar(' ', se - sb, true) end end end -- set text function textarea:text_set(text) self._STARTLINE = 0 self._SPLITTEXT = text and self:splitext(text) or {} self._LINECOUNT = #self._SPLITTEXT return label.text_set(self, text) end -- scroll function textarea:scroll(lines) if self._LINECOUNT > self:height() then self._STARTLINE = self._STARTLINE + lines if self._STARTLINE < 0 then self._STARTLINE = 0 end if self._STARTLINE > self._LINECOUNT - self:height() then self._STARTLINE = self._LINECOUNT - self:height() end self:invalidate() end end -- scroll to end function textarea:scroll_to_end() if self._LINECOUNT > self:height() then self._STARTLINE = self._LINECOUNT - self:height() self:invalidate() end end -- on event function textarea:on_event(e) if e.type == event.ev_keyboard then if e.key_name == "Up" then self:scroll(-5) return true elseif e.key_name == "Down" then self:scroll(5) return true end end end -- return module return textarea
local screenX, screenY = guiGetScreenSize() local screenW,screenH = guiGetScreenSize() local mapTextureSize = 3072 local mapRatio = 6000 / mapTextureSize toggleControl("radar", false) renderTimers = {} function createRender(id, func) if not isTimer(renderTimers[id]) then renderTimers[id] = setTimer(func, 0, 0) end end function destroyRender(id) if isTimer(renderTimers[id]) then killTimer(renderTimers[id]) renderTimers[id] = nil collectgarbage("collect") end end local texture = nil local minimap = 1 local blipanimation = true renderTimers = {} local hudVisible_ostate = getElementData( localPlayer, "hudVisible") local keys_denied_ostate = getElementData( localPlayer, "keysDenied") local optionMenuState = false local optionMenuAnimationStart = nil local isoptionMenuAnimation = false local optionMenuAlpha = 0 navigatorSound = true state3DBlip = thblipstate function getZoneNameEx(x, y, z) local zone = getZoneName(x, y, z) if zone == 'East Beach' then return 'Bayrampasa' elseif zone == 'Ganton' then return 'Bagcılar' elseif zone == 'East Los Santos' then return 'Bayrampasa' elseif zone == 'Las Colinas' then return 'Catalca' elseif zone == 'Jefferson' then return 'Esenler' elseif zone == 'Glen Park' then return 'Esenler' elseif zone == 'Downtown Los Santos' then return 'Kagıthane' elseif zone == 'Commerce' then return 'Beyoglu' elseif zone == 'Market' then return 'Mecidiyeköy' elseif zone == 'Temple' then return '4. Levent' elseif zone == 'Vinewood' then return 'Kemerburgaz' elseif zone == 'Richman' then return '4. Levent' elseif zone == 'Rodeo' then return 'Sarıyer' elseif zone == 'Mulholland' then return 'Kemerburgaz' elseif zone == 'Red County' then return 'Kemerburgaz' elseif zone == 'Mulholland Intersection' then return 'Kemerburgaz' elseif zone == 'Los Flores' then return 'Sancak Tepe' elseif zone == 'Willowfield' then return 'Zeytinburnu' elseif zone == 'Playa del Seville' then return 'Zeytinburnu' elseif zone == 'Ocean Docks' then return 'İkitelli' elseif zone == 'Los Santos' then return 'İstanbul' elseif zone == 'Los Santos International' then return 'Atatürk Havalimanı' elseif zone == 'Jefferson' then return 'Esenler' elseif zone == 'Verdant Bluffs' then return 'Rümeli Hisarı' elseif zone == 'Verona Beach' then return 'Ataköy' elseif zone == 'Santa Maria Beach' then return 'Florya' elseif zone == 'Marina' then return 'Bakırköy' elseif zone == 'Idlewood' then return 'Güngören' elseif zone == 'El Corona' then return 'Kücükcekmece' elseif zone == 'Unity Station' then return 'Merter' elseif zone == 'Little Mexico' then return 'Taksim' elseif zone == 'Pershing Square' then return 'Taksim' elseif zone == 'Las Venturas' then return 'Edirne' else return zone end end function setNavigatorSound(state) navigatorSound = state end function getNavigatorSound() return navigatorSound end local textures = {} _dxDrawImage = dxDrawImage local function dxDrawImage(x,y,w,h,img, r, rx, ry, color, postgui) if type(img) == "string" then if not textures[img] then textures[img] = dxCreateTexture(img, "dxt5", true, "wrap") end img = textures[img] end return _dxDrawImage(x,y,w,h,img, r, rx, ry, color, postgui) end local Map_blips_timer = false local Map_blips = {} local Map_blips_radar = {} local now_time = 0 local gps_anim_start = nil local custom_blip_choosed_type = 0 local custom_blip_choosed = {"mark_1", "mark_2", "mark_3", "mark_4", "garage", "house", "vehicle"} local hovered_blip = nil local gps_icon_x,gps_icon_y = 20,15 local minimapPosX = 0 local minimapPosY = 0 local minimapWidth = 290 local minimapHeight = 195 local minimapCenterX = minimapPosX + minimapWidth / 2 local minimapCenterY = minimapPosY + minimapHeight / 2 local minimapRenderSize = 400 local minimapRenderHalfSize = minimapRenderSize * 0.5 local minimapRender = dxCreateRenderTarget(minimapRenderSize, minimapRenderSize,true) local playerMinimapZoom = 0.3 local minimapZoom = playerMinimapZoom local bigmapPosX = 30 local bigmapPosY = 30 local bigmapWidth = screenW - 60 local bigmapWidthRoot = bigmapWidth local bigmapHeight = screenH - 100 local bigmapCenterX = bigmapPosX + bigmapWidth / 2 local bigmapCenterY = bigmapPosY + bigmapHeight / 2 local bigmapZoom = 0.5 bigmapIsVisible = false local lastCursorPos = false local mapDifferencePos = false local mapMovedPos = false local lastDifferencePos = false local mapIsMoving = false local lastMapPosX, lastMapPosY = 0, 0 local mapPlayerPosX, mapPlayerPosY = 0, 0 local zoneLineHeight = 25 local screenSource = dxCreateScreenSource(screenW, screenH) local gpsLineWidth = 60 local gpsLineIconSize = 30 local gpsLineIconHalfSize = gpsLineIconSize / 2 occupiedVehicle = nil local way_say ={ ["left"] = {"Sola dön "," sonra"}, ["right"] = {"Sağa dön "," sonra"}, ["forward"] = {"Düz devam et ","!"}, ["finish"] = {"Varış noktasına "," "}, ["around"] = {"Geri dön..",""}, } local renderWidget = {} renderWidget.__index = renderWidget .minimap createdBlips = {} local mainBlips = { } local blipTooltips = { } local hoveredWaypointBlip = false local farshowBlips = {} local farshowBlipsData = {} carCanGPSVal = 1 local gpsHello = false local gpsLines = {} local gpsRouteImage = false local gpsRouteImageData = {} local hover3DBlipCb = false local playerCanSeePlayers = false addCommandHandler("showplayers", function () if getElementData(localPlayer, "admin_level") >= 3 then playerCanSeePlayers = not playerCanSeePlayers end end ) function textureLoading() texture = dxCreateTexture( "assets/images/map.png") if not texture then setTimer(textureLoading,500,1) end end local save_data = { ["3D"] = false, ["Sounds"] = true, ["Animation"] = true, } function jsonGETT(file) local fileHandle local jsonDATA = {} if not fileExists(file) then fileHandle = fileCreate(file) --local num = originalMaxLines --local x, y = sx/2, sy/2 local save_data = { ["3D"] = false, ["Sounds"] = true, ["Animation"] = true, } fileWrite(fileHandle, toJSON(save_data)) fileClose(fileHandle) fileHandle = fileOpen(file) else fileHandle = fileOpen(file) end if fileHandle then local buffer local allBuffer = "" while not fileIsEOF(fileHandle) do buffer = fileRead(fileHandle, 500) allBuffer = allBuffer..buffer end jsonDATA = fromJSON(allBuffer) fileClose(fileHandle) end return jsonDATA end function jsonSAVET(file, data) if fileExists(file) then fileDelete(file) end local fileHandle = fileCreate(file) fileWrite(fileHandle, toJSON(data)) fileFlush(fileHandle) fileClose(fileHandle) return true end addEventHandler("onClientResourceStop", resourceRoot, function() local save_data = { ["3D"] = thblipstate, ["Sounds"] = navigatorSound, ["Animation"] = blipanimation, } jsonSAVET("@option.json", save_data) end ) addEventHandler("onClientResourceStart", getResourceRootElement(), function () --jsonCheck() setElementData(localPlayer, "hudVisible", true) save_data = jsonGETT("@option.json") thblipstate = save_data["3D"] toggle3DBlip(thblipstate) navigatorSound = save_data["Sounds"] blipanimation = save_data["Animation"] textureLoading() if getPedOccupiedVehicle( localPlayer ) then occupiedVehicle = getPedOccupiedVehicle( localPlayer ) end if texture then dxSetTextureEdge(texture, "border", tocolor(110, 158, 204,255)) end if texture then dxSetTextureEdge(texture, "border", tocolor(110, 158, 204,255)) end for k,v in ipairs(getElementsByType("blip")) do blipTooltips[v] = getElementData(v, "tooltipText") end if getElementData( localPlayer, "loggedin") == 1 then minimapIsVisible = true else minimapIsVisible = false end if minimapIsVisible then createRender("renderWidget.minimap", renderWidget.minimap) else destroyRender("renderWidget.minimap") end if occupiedVehicle then carCanGPS() end end ) addEventHandler("onClientElementDataChange", getRootElement(), function (dataName, oldValue) if source == occupiedVehicle then if dataName == "vehicle.GPS" then local dataValue = getElementData(source, dataName) or false if dataValue then carCanGPSVal = dataValue else if oldValue then carCanGPSVal = false end end if not carCanGPSVal then if getElementData(source, "gpsDestination") then endRoute() end end elseif dataName == "gpsDestination" then local dataValue = getElementData(source, dataName) or false if dataValue then gpsThread = coroutine.create(makeRoute) coroutine.resume(gpsThread, unpack(dataValue)) waypointInterpolation = false else endRoute() end end elseif source == localPlayer and dataName == "inDeath" then if occupiedVehicle and getElementData( localPlayer,"inDeath") then occupiedVehicle = nil end end if getElementType(source) == "blip" and dataName == "tooltipText" then blipTooltips[source] = getElementData(source, dataName) end end ) function getHudCursorPos() if isCursorShowing() then return getCursorPosition() end return false end reMap = function(value, low1, high1, low2, high2) return low2 + (value - low1) * (high2 - low2) / (high1 - low1) end local w_x, w_y, w_w, w_h = 0,0,0,0 local diagonal = 0 function roundedRectangle(x, y, w, h, borderColor, bgColor, postGUI) if (x and y and w and h) then if (not borderColor) then borderColor = tocolor(0, 0, 0, 180) end if (not bgColor) then bgColor = borderColor end dxDrawRectangle(x, y, w, h, bgColor, postGUI) dxDrawRectangle(x + 2, y - 1, w - 4, 1, borderColor, postGUI) dxDrawRectangle(x + 2, y + h, w - 4, 1, borderColor, postGUI) dxDrawRectangle(x - 1, y + 2, 1, h - 4, borderColor, postGUI) dxDrawRectangle(x + w, y + 2, 1, h - 4, borderColor, postGUI) dxDrawRectangle(x + 0.5, y + 0.5, 1, 2, borderColor, postGUI) dxDrawRectangle(x + 0.5, y + h - 1.5, 1, 2, borderColor, postGUI) dxDrawRectangle(x + w - 0.5, y + 0.5, 1, 2, borderColor, postGUI) dxDrawRectangle(x + w - 0.5, y + h - 1.5, 1, 2, borderColor, postGUI) end end function minimap() if bigmapIsVisible then return end if tonumber(getElementData(localPlayer, "loggedin")) == 1 then local font = exports['mrp_fonts']:getFont("RobotoB", 11) local font_small = exports["mrp_fonts"]:getFont("Roboto",8) sx, sy = guiGetScreenSize() enabled, w_x, w_y, w_w, w_h, sizable, turnable = true,5,sy-220,335,215 x, y, minimapWidth, minimapHeight = w_x, w_y, w_w, w_h diagonal = math.sqrt((w_w/2)^2+(w_h/2)^2) local playerDimension = getElementDimension(localPlayer) if playerDimension == 0 or playerDimension == 65000 or playerDimension == 33333 then if (minimapWidth > 445 or minimapHeight > 400) and minimapRenderSize < 800 then minimapRenderSize = 800 minimapRenderHalfSize = minimapRenderSize * 0.5 destroyElement(minimapRender) minimapRender = dxCreateRenderTarget(minimapRenderSize, minimapRenderSize,true) end if minimapWidth <= 445 and minimapHeight <= 400 and minimapRenderSize > 600 then minimapRenderSize = 600 minimapRenderHalfSize = minimapRenderSize * 0.5 destroyElement(minimapRender) minimapRender = dxCreateRenderTarget(minimapRenderSize, minimapRenderSize,true) end if (minimapWidth > 325 or minimapHeight > 235) and minimapRenderSize < 600 then minimapRenderSize = 600 minimapRenderHalfSize = minimapRenderSize * 0.5 destroyElement(minimapRender) minimapRender = dxCreateRenderTarget(minimapRenderSize, minimapRenderSize,true) end if minimapWidth <= 325 and minimapHeight <= 235 and minimapRenderSize > 400 then minimapRenderSize = 400 minimapRenderHalfSize = minimapRenderSize * 0.5 destroyElement(minimapRender) minimapRender = dxCreateRenderTarget(minimapRenderSize, minimapRenderSize,true) end if minimapPosX ~= x or minimapPosY ~= y then minimapPosX = x minimapPosY = y end minimapCenterX = minimapPosX + minimapWidth / 2 minimapCenterY = minimapPosY + minimapHeight / 2 local minimapRenderSizeOffset = minimapRenderSize * 0.75 dxUpdateScreenSource(screenSource, true) if getKeyState("num_add") and playerMinimapZoom < 1.2 then if not occupiedVehicle then playerMinimapZoom = playerMinimapZoom + 0.01 ---calculateBlip() end elseif getKeyState("num_sub") and playerMinimapZoom > 0.31 then if not occupiedVehicle then playerMinimapZoom = playerMinimapZoom - 0.01 --calculateBlip() end end minimapZoom = playerMinimapZoom playerPosX, playerPosY, playerPosZ = getElementPosition(localPlayer) local cameraX, cameraY, _, faceTowardX, faceTowardY = getCameraMatrix() --cameraRotation = math.deg(math.atan2(faceTowardY - cameraY, faceTowardX - cameraX)) + 360 + 90 remapPlayerPosX, remapPlayerPosY = remapTheFirstWay(playerPosX), remapTheFirstWay(playerPosY) dxDrawImageSection(minimapPosX - minimapRenderSize / 2 + minimapWidth / 2, minimapPosY - minimapRenderSize / 2 + minimapHeight / 2, minimapRenderSize, minimapRenderSize, remapTheSecondWay(playerPosX) - minimapRenderSize / minimapZoom / 2, remapTheFirstWay(playerPosY) - minimapRenderSize / minimapZoom / 2, minimapRenderSize / minimapZoom, minimapRenderSize / minimapZoom, texture) --dxDrawRectangle(minimapPosX - minimapRenderSize / 2 + minimapWidth / 2, minimapPosY - minimapRenderSize / 2 + minimapHeight / 2 +65, 65, 65, tocolor(255,0,0,255)) if gpsRouteImage then --dxSetRenderTarget(minimapRender) minimapRender:setAsTarget(true) dxSetBlendMode("add") dxDrawImage(minimapRenderSize / 2 + (remapTheFirstWay(playerPosX) - (gpsRouteImageData[1] + gpsRouteImageData[3] / 2)) * minimapZoom - gpsRouteImageData[3] * minimapZoom / 2, minimapRenderSize / 2 - (remapTheFirstWay(playerPosY) - (gpsRouteImageData[2] + gpsRouteImageData[4] / 2)) * minimapZoom + gpsRouteImageData[4] * minimapZoom / 2, gpsRouteImageData[3] * minimapZoom, -(gpsRouteImageData[4] * minimapZoom), gpsRouteImage, 180, 0, 0, tocolor(61, 122, 188)) dxSetBlendMode("blend") dxSetRenderTarget() dxSetBlendMode("add") dxDrawImage(minimapPosX - minimapRenderSize / 2 + minimapWidth / 2, minimapPosY - minimapRenderSize / 2 + minimapHeight / 2, minimapRenderSize, minimapRenderSize, minimapRender) dxSetBlendMode("blend") end if not blipanimation then renderBlip() end dxDrawImageSection(minimapPosX - minimapRenderSizeOffset, minimapPosY - minimapRenderSizeOffset, minimapWidth + minimapRenderSizeOffset * 2, minimapRenderSizeOffset, minimapPosX - minimapRenderSizeOffset, minimapPosY - minimapRenderSizeOffset, minimapWidth + minimapRenderSizeOffset * 2, minimapRenderSizeOffset, screenSource) dxDrawImageSection(minimapPosX - minimapRenderSizeOffset, minimapPosY + minimapHeight, minimapWidth + minimapRenderSizeOffset * 2, minimapRenderSizeOffset, minimapPosX - minimapRenderSizeOffset, minimapPosY + minimapHeight, minimapWidth + minimapRenderSizeOffset * 2, minimapRenderSizeOffset, screenSource) dxDrawImageSection(minimapPosX - minimapRenderSizeOffset, minimapPosY, minimapRenderSizeOffset, minimapHeight, minimapPosX - minimapRenderSizeOffset, minimapPosY, minimapRenderSizeOffset, minimapHeight, screenSource) dxDrawImageSection(minimapPosX + minimapWidth, minimapPosY, minimapRenderSizeOffset, minimapHeight, minimapPosX + minimapWidth, minimapPosY, minimapRenderSizeOffset, minimapHeight, screenSource) local playerArrowSize = 145 / (4 - minimapZoom) + 3 local playerArrowHalfSize = playerArrowSize / 2 _, _, playerRotation = getElementRotation(localPlayer) dxDrawOuterBorder(minimapPosX, minimapPosY, minimapWidth,minimapHeight, 2, tocolor(33, 33, 33, 180)) dxDrawImage(minimapPosX, minimapPosY, minimapWidth, minimapHeight, 'assets/images/design/glow.png',0,0,0,tocolor(255,255,255,255)) dxDrawImage(minimapPosX + 1, minimapPosY + minimapHeight - 23, 20,20, 'assets/images/design/location.png') --dxDrawRoundedRectangle(w_x-2,w_y-2,w_w+4,w_h+4,tocolor(0,0,0,255),tocolor( 0,0,0,255)) local zoneName = getZoneNameEx(playerPosX, playerPosY, playerPosZ,false) local font_bold = exports['mrp_fonts']:getFont("BoldFont", 16) local text_width = dxGetTextWidth( zoneName, 0.7, font_bold ) if w_w > text_width + 32 then --dxDrawText(hexCode.." Location: #ffffff"..zoneName, minimapPosX, minimapPosY + minimapHeight, minimapPosX + minimapWidth - 10, minimapPosY + minimapHeight+zoneLineHeight, tocolor(255, 255, 255, 255), 1, font, "left", "center",false,false,false,true) dxDrawText(zoneName, minimapPosX+30, minimapPosY + minimapHeight-zoneLineHeight, minimapPosX + minimapWidth - 10, minimapPosY + minimapHeight, tocolor(200, 200, 200, 255), 0.7, font_bold, "left", "center",false,false,false,true) end if now_time <= getTickCount() then now_time = getTickCount()+30 calculateBlip() end if blipanimation then renderBlip() end dxDrawImage(minimapCenterX - playerArrowHalfSize, minimapCenterY - playerArrowHalfSize, playerArrowSize, playerArrowSize, "assets/images/player.png", math.abs(360 - playerRotation)) if w_w*0.81 > 300 then w_w = 300 else w_w = w_w*0.6 end w_y = w_y+5 if w_x+gps_icon_x+gpsLineIconSize <= w_x+w_w then if gpsRoute or (not gpsRoute and waypointEndInterpolation) then if waypointEndInterpolation then local interpolationProgress = (getTickCount() - waypointEndInterpolation) / 1550 interpolatePosition,interpolateAlpha = interpolateBetween(0, 150, 0, 75, 0, 0, interpolationProgress, "Linear") dxDrawRectangle( w_x, w_y-5, w_w,60 ,tocolor(37,37,37,interpolateAlpha)) dxDrawOuterBorder(w_x, w_y-5, w_w,60, 2, tocolor(61,122,188, interpolateAlpha)) dxDrawImage(w_x+gps_icon_x , w_y+ gps_icon_y, gpsLineIconSize, gpsLineIconSize, "assets/images/gps/finish.png", 0, 0, 0, tocolor(255, 255, 255, interpolateAlpha)) if interpolationProgress > 1 then waypointEndInterpolation = false end elseif nextWp then dxDrawRectangle( w_x, w_y-5, w_w,60 ,tocolor(37,37,37,255)) dxDrawOuterBorder(w_x, w_y-5, w_w,60, 2, tocolor(61,122,188, 255)) if currentWaypoint ~= nextWp and not tonumber(reRouting) then if nextWp > 1 then waypointInterpolation = {getTickCount(), currentWaypoint} end currentWaypoint = nextWp end if tonumber(reRouting) then currentWaypoint = nextWp local reRouteProgress = (getTickCount() - reRouting) / 1250 local refreshAngle_1, refreshAngle_2 = interpolateBetween(360, 0, 0, 0, 360, 0, reRouteProgress, "Linear") dxDrawImage(w_x+gps_icon_x , w_y+ gps_icon_y, gpsLineIconSize, gpsLineIconSize, "assets/images/gps/circleout.png", refreshAngle_1,0,0,tocolor( 200,200,200,firstAlpha)) dxDrawImage(w_x+gps_icon_x , w_y+ gps_icon_y, gpsLineIconSize, gpsLineIconSize, "assets/images/gps/circlein.png", refreshAngle_2,0,0,tocolor( 200,200,200,firstAlpha)) dxDrawText(way_say["around"][1]..""..way_say["around"][2], w_x+70,w_y, w_x+70+100, w_y+55, tocolor(200,200,200, firstAlpha), 1,1, font, "left", "center") local msg_length = {dxGetTextWidth(way_say["around"][1]..""..way_say["around"][2], 1,font),dxGetTextWidth(way_say["around"][1].."\n"..way_say["around"][2], 1,font)} if w_x+70+msg_length[1]+2 < w_x+w_w then dxDrawText(way_say["around"][1]..""..way_say["around"][2], w_x+70,w_y, w_x+70+100, w_y+55, tocolor(200,200,200, firstAlpha), 1,1, font, "left", "center") elseif w_x+70+msg_length[2]+2 < w_x+w_w then dxDrawText(way_say["around"][1].."\n"..way_say["around"][2], w_x+70,w_y, w_x+70+100, w_y+55, tocolor(200,200,200, firstAlpha), 1,1, font, "left", "center") end if reRouteProgress > 1 then reRouting = getTickCount() end elseif turnAround then currentWaypoint = nextWp if not gps_anim_start then gps_anim_start = getTickCount() end local startPolation, endPolation = (getTickCount() - gps_anim_start) / 600, 0 local firstAlpha = interpolateBetween(0,0,0, 255,0,0,startPolation, "Linear") dxDrawImage(w_x+gps_icon_x , w_y+ gps_icon_y, gpsLineIconSize, gpsLineIconSize, "assets/images/gps/around.png",0,0,0,tocolor( 200,200,200,firstAlpha)) local msg_length = {dxGetTextWidth(way_say["around"][1]..""..way_say["around"][2], 1,font),dxGetTextWidth(way_say["around"][1].."\n"..way_say["around"][2], 1,font)} if w_x+70+msg_length[1]+2 < w_x+w_w then dxDrawText(way_say["around"][1]..""..way_say["around"][2], w_x+70,w_y, w_x+70+100, w_y+55, tocolor(200,200,200, firstAlpha), 1,1, font, "left", "center") elseif w_x+70+msg_length[2]+2 < w_x+w_w then dxDrawText(way_say["around"][1].."\n"..way_say["around"][2], w_x+70,w_y, w_x+70+100, w_y+55, tocolor(200,200,200, firstAlpha), 1,1, font, "left", "center") end elseif not waypointInterpolation then dxDrawImage(w_x+gps_icon_x , w_y+gps_icon_y, gpsLineIconSize, gpsLineIconSize, "assets/images/gps/" .. gpsWaypoints[nextWp][2] .. ".png",0,0,0,tocolor(200,200,200,255)) if gps_anim_start then gps_anim_start = nil end local root_distance = math.floor((gpsWaypoints[nextWp][3] or 0) / 10) * 10 local msg = {{"",""},{"",""},{"",""}} if root_distance >= 1000 then root_distance = math.round((root_distance/1000),1,"floor") msg[1][1] = root_distance.. " kilometre" msg[1][2] = way_say[gpsWaypoints[nextWp][2]][1]..""..root_distance.. " kilometre"..way_say[gpsWaypoints[nextWp][2]][2] msg[2] = root_distance.. " kilometre" msg[3][1] = root_distance.. " km\n" else msg[1][1] = root_distance.. " metre" msg[1][2] = way_say[gpsWaypoints[nextWp][2]][1]..""..root_distance.. " metre"..way_say[gpsWaypoints[nextWp][2]][2] msg[2] = root_distance.. " metre" msg[3] = root_distance.. " m\n" end local msg_length = {dxGetTextWidth(msg[1][2], 1,font_small),dxGetTextWidth(msg[2], 1,font),dxGetTextWidth(msg[3], 1,font)} if w_x+70+msg_length[1]+2 < w_x+w_w then dxDrawText(msg[1][1], w_x+70,w_y, w_x+70+100, w_y+40, tocolor(200,200,200, 255), 1,1, font, "left", "center") dxDrawText(msg[1][2], w_x+70,w_y+40, w_x+70+100, w_y+45, tocolor(150, 150, 150, 255), 1,1, font_small, "left", "center") elseif w_x+70+msg_length[2]+2 < w_x+w_w then dxDrawText(msg[2], w_x+70,w_y, w_x+70+100, w_y+40, tocolor(200,200,200, 255), 1,1, font, "left", "center") elseif w_x+70+msg_length[3]+2 < w_x+w_w then dxDrawText(msg[3], w_x+70,w_y, w_x+70+100, w_y+40, tocolor(200,200,200, 255), 1,1, font, "left", "center") end else local startPolation, endPolation = (getTickCount() - waypointInterpolation[1]) / 1000, 0 local firstAlpha,mover_x,mover_y = interpolateBetween(255,10,0, 0,gps_icon_x,gps_icon_y,startPolation, "Linear") --dxDrawImage(w_x+gps_icon_x, w_y+ gps_icon_y-mover_y, gpsLineIconSize, gpsLineIconSize, "assets/images/gps/" .. gpsWaypoints[waypointInterpolation[2]][2] .. ".png",0,0,0,tocolor(200,200,200,firstAlpha)) local root_distance = math.floor((gpsWaypoints[nextWp][3] or 0) / 10) * 10 local msg = {{"",""},{"",""},{"",""}} if root_distance >= 1000 then root_distance = math.round((root_distance/1000),1,"floor") msg[1][1] = root_distance.. " kilometre" msg[1][2] = way_say[gpsWaypoints[waypointInterpolation[2]][2]][1]..""..root_distance.. " kilometre"..way_say[gpsWaypoints[waypointInterpolation[2]][2]][2] msg[2] = root_distance.. " kilometre" msg[3] = root_distance.. " km\n" else msg[1][1] = root_distance.. " metre" msg[1][2] = way_say[gpsWaypoints[waypointInterpolation[2]][2]][1]..""..root_distance.. " metre"..way_say[gpsWaypoints[waypointInterpolation[2]][2]][2] msg[2] = root_distance.. " metre" msg[3] = root_distance.. " m\n" end local msg_length = {dxGetTextWidth(msg[1][2], 1,font_small),dxGetTextWidth(msg[2], 1,font),dxGetTextWidth(msg[3], 1,font)} if w_x+70+msg_length[1]+2 < w_x+w_w then dxDrawText(msg[1][1], w_x+70,w_y-mover_y, w_x+70+100, w_y+40-mover_y, tocolor(200,200,200, firstAlpha), 1,1, font, "left", "center") dxDrawText(msg[1][2], w_x+70,w_y-mover_y+40, w_x+70+100, w_y+45-mover_y, tocolor(150, 150, 150, firstAlpha), 1,1, font_small, "left", "center") elseif w_x+70+msg_length[2]+2 < w_x+w_w then dxDrawText(msg[2], w_x+70,w_y-mover_y, w_x+70+100, w_y+40-mover_y, tocolor(200,200,200, firstAlpha), 1,1, font, "left", "center") elseif w_x+70+msg_length[3]+2 < w_x+w_w then dxDrawText(msg[3], w_x+70,w_y-mover_y, w_x+70+100, w_y+40-mover_y, tocolor(200,200,200, firstAlpha), 1,1, font, "left", "center") end if gpsWaypoints[waypointInterpolation[2] + 1] then dxDrawImage(w_x+gps_icon_x-(gps_icon_x-mover_x), w_y+ gps_icon_y, gpsLineIconSize, gpsLineIconSize, "assets/images/gps/" .. gpsWaypoints[waypointInterpolation[2]+1][2] .. ".png",0,0,0,tocolor(200,200,200,255-firstAlpha)) local root_distance = math.floor((gpsWaypoints[nextWp][3] or 0) / 10) * 10 local msg = {{"",""},{"",""},{"",""}} if root_distance >= 1000 then root_distance = math.round((root_distance/1000),1,"floor") msg[1][1] = root_distance.. " kilometre" msg[1][2] = way_say[gpsWaypoints[waypointInterpolation[2]+1][2]][1]..""..root_distance.. " kilometre"..way_say[gpsWaypoints[waypointInterpolation[2]+1][2]][2] msg[2] = root_distance.. " kilometre" msg[3] = root_distance.. " km\n" else msg[1][1] = root_distance.. " metre" msg[1][2] = way_say[gpsWaypoints[waypointInterpolation[2]+1][2]][1]..""..root_distance.. " kilometre"..way_say[gpsWaypoints[waypointInterpolation[2]+1][2]][2] msg[2] = root_distance.. " metre" msg[3] = root_distance.. " m\n" end local msg_length = {dxGetTextWidth(msg[1][2], 1,font),dxGetTextWidth(msg[2], 1,font_small),dxGetTextWidth(msg[3], 1,font)} if w_x+70+msg_length[1]+2 < w_x+w_w then dxDrawText(msg[1][1], w_x+70,w_y+gps_icon_y-mover_y, w_x+70+100, w_y+40+gps_icon_y-mover_y, tocolor(200,200,200, 255-firstAlpha), 1,1, font, "left", "center") dxDrawText(msg[1][2], w_x+70,w_y+gps_icon_y+40-mover_y, w_x+70+100, w_y+45+gps_icon_y-mover_y, tocolor(150, 150, 150, 255-firstAlpha), 1,1, font_small, "left", "center") elseif w_x+70+msg_length[2]+2 < w_x+w_w then dxDrawText(msg[2], w_x+70,w_y+gps_icon_y-mover_y, w_x+70+100, w_y+40+gps_icon_y-mover_y, tocolor(200,200,200, 255-firstAlpha), 1,1, font, "left", "center") elseif w_x+70+msg_length[3]+2 < w_x+w_w then dxDrawText(msg[3], w_x+70,w_y+gps_icon_y-mover_y, w_x+70+100, w_y+40+gps_icon_y-mover_y, tocolor(200,200,200, 255-firstAlpha), 1,1, font, "left", "center") end end if startPolation > 1 then endPolation = (getTickCount() - waypointInterpolation[1] - 750) / 500 end if endPolation > 1 then waypointInterpolation = false end end end end end else if not enabled then return end if minimapPosX ~= x or minimapPosY ~= y then minimapPosX = x minimapPosY = y end local alpha = interpolateBetween(0, 0, 0, 255, 0, 0, getTickCount() / 5000, "SineCurve") minimapCenterX = minimapPosX + minimapWidth / 2 minimapCenterY = minimapPosY + minimapHeight / 2 dxDrawOuterBorder(minimapPosX, minimapPosY, minimapWidth,minimapHeight, 2, tocolor(33, 33, 33, 180)) dxDrawRectangle(minimapPosX, minimapPosY, minimapWidth,minimapHeight, tocolor(20, 20, 20, 255)) local startX, startY = minimapPosX + 15, minimapPosY + 15 local _startX, _startY = startX, startY local between1, between2 = 25, 25 local columns = math.floor((minimapWidth - 15) / between1) local lines = math.floor((minimapHeight - 15) / between2) local nowColumn = 1 local nowLine = 1 for i = 1, columns * lines do dxDrawRectangle(startX, startY, 2, 2, tocolor(6, 6, 6, 255)) startX = startX + between1 nowColumn = nowColumn + 1 if nowColumn > columns then nowColumn = 1 nowLine = nowLine + 1 startX = _startX startY = startY + between2 end end local between1, between2 = 5, 5 local columns = math.floor((minimapWidth - 15) / between1) local lines = math.floor((minimapHeight - 15) / between2) local columns = math.max(2, math.floor(columns * 0.1)) if columns % 2 == 1 then columns = columns + 1 end for i = 1, columns do if i % 2 == 1 then --outputChatBox("asd") local x = interpolateBetween(0, 0, 0, minimapWidth, 0, 0, getTickCount() / (20000 * (i / columns)), "SineCurve") dxDrawRectangle(minimapPosX + x, minimapPosY, 2, minimapHeight, tocolor(6, 6, 6, 255)) else --outputChatBox("asd2") local x = interpolateBetween(2, 0, 0, minimapWidth, 0, 0, getTickCount() / (20000 * (i / columns)), "SineCurve") dxDrawRectangle((minimapPosX + minimapWidth) - x, minimapPosY, 2, minimapHeight, tocolor(6, 6, 6, 255)) end end local lines = math.max(2, math.floor(lines * 0.1)) if lines % 2 == 1 then lines = lines + 1 end for i = 1, lines do if i % 2 == 1 then local y = interpolateBetween(0, 0, 0, minimapHeight, 0, 0, getTickCount() / (20000 * (i / lines)), "SineCurve") dxDrawRectangle(minimapPosX, minimapPosY + y, minimapWidth, 2, tocolor(6, 6, 6, 255)) else local y = interpolateBetween(2, 0, 0, minimapHeight, 0, 0, getTickCount() / (20000 * (i / lines)), "SineCurve") dxDrawRectangle(minimapPosX, (minimapPosY + minimapHeight) - y, minimapWidth, 2, tocolor(6, 6, 6, 255)) end end local r,g,b = 255,46,46 local font = exports['mrp_fonts']:getFont("RobotoB", 13) local startY = -(60/2 + dxGetFontHeight(1, font)/2) dxDrawImage(minimapCenterX - 60/2, minimapCenterY + startY, 60, 60, "assets/images/lostConnection.png", 0, 0, 0, tocolor(r, g, b, alpha)) startY = startY + 60 + 5 + dxGetFontHeight(1, font)/2 dxDrawText("Bağlantı Kayboldu...", minimapCenterX, minimapCenterY + startY, minimapCenterX, minimapCenterY + startY, tocolor(r, g, b, alpha), 1, font, "center", "center") end end end --addEventHandler("onClientRender",root,minimap, true, "low-1") createRender("minimap",minimap) setTimer( function() local x,y,z = getElementPosition(localPlayer) lostConnection = not isLineOfSightClear(x,y,z,x,y,z+50, true, false, false, false, false) end, 300, 0 ) local lastClick = 1 local locations = { [1] = { text = "Hediye Bölgesi", blipSelectedID = 51, blipSize = 1, x = 1128.9473876953, y = -1489.0773925781, z = 22.753429412842 }, [2] = { text = "Taşıma Mesleği", blipSelectedID = 68, blipSize = 1, x = 2471.7109375, y = -2092.5986328125, z = 13.546875 }, [3] = { text = "Beton Mesleği", blipSelectedID = 70, blipSize = 1, x = 2318.8740234375, y = -2060.8818359375, z = 13.546875 }, [4] = { text = "Taksi Merkezi", blipSelectedID = 71, blipSize = 1, x = 1789.6982421875, y = -1920.3603515625, z = 13.392391204834 }, [5] = { text = "Türkiye Finans", blipSelectedID = 52, blipSize = 1, x = 1457.1572265625, y = -1009.8046875, z = 27.207847595215 }, [6] = { text = "İskele", blipSelectedID = 9, blipSize = 1, x = 369.9423828125, y = -2047.26171875, z = 7.8359375 }, [7] = { text = "Kumarhane", blipSelectedID = 73, blipSize = 1, x = 1111.916015625, y = -1371.6943359375, z = 13.984375 }, [8] = { text = "/birlikkur", blipSelectedID = 19, blipSize = 1, x = 1380.8447265625, y = -1088.904296875, z = 27.384355545044 } } function renderTheBigmap() if not bigmapIsVisible then return end local font = exports['mrp_fonts']:getFont("Roboto", 10) local zoneName = getZoneNameEx(playerPosX, playerPosY, playerPosZ,true) if hoveredWaypointBlip then hoveredWaypointBlip = false end _, _, playerRotation = getElementRotation(localPlayer) if getElementDimension(localPlayer) == 0 then playerPosX, playerPosY, playerPosZ = getElementPosition(localPlayer) cursorX, cursorY = getHudCursorPos() if cursorX and cursorY then cursorX, cursorY = cursorX * screenW, cursorY * screenH if getKeyState("mouse1") and cursorX>= bigmapPosX and cursorX<= bigmapPosX+bigmapWidth and cursorY>= bigmapPosY and cursorY<= bigmapPosY+bigmapHeight then if not lastCursorPos then lastCursorPos = {cursorX, cursorY} end if not mapDifferencePos then mapDifferencePos = {0, 0} end if not lastDifferencePos then if not mapMovedPos then lastDifferencePos = {0, 0} else lastDifferencePos = {mapMovedPos[1], mapMovedPos[2]} end end mapDifferencePos = {mapDifferencePos[1] + cursorX - lastCursorPos[1], mapDifferencePos[2] + cursorY - lastCursorPos[2]} if not mapMovedPos then if math.abs(mapDifferencePos[1]) >= 3 or math.abs(mapDifferencePos[2]) >= 3 then mapMovedPos = {lastDifferencePos[1] - mapDifferencePos[1] / bigmapZoom, lastDifferencePos[2] + mapDifferencePos[2] / bigmapZoom} mapIsMoving = true end elseif mapDifferencePos[1] ~= 0 or mapDifferencePos[2] ~= 0 then mapMovedPos = {lastDifferencePos[1] - mapDifferencePos[1] / bigmapZoom, lastDifferencePos[2] + mapDifferencePos[2] / bigmapZoom} mapIsMoving = true end lastCursorPos = {cursorX, cursorY} else if mapMovedPos then lastDifferencePos = {mapMovedPos[1], mapMovedPos[2]} end lastCursorPos = false mapDifferencePos = false end end mapPlayerPosX, mapPlayerPosY = lastMapPosX, lastMapPosY if mapMovedPos then mapPlayerPosX = mapPlayerPosX + mapMovedPos[1] mapPlayerPosY = mapPlayerPosY + mapMovedPos[2] else mapPlayerPosX, mapPlayerPosY = playerPosX, playerPosY lastMapPosX, lastMapPosY = mapPlayerPosX, mapPlayerPosY end dxDrawImageSection(bigmapPosX, bigmapPosY, bigmapWidth, bigmapHeight, remapTheSecondWay(mapPlayerPosX) - bigmapWidth / bigmapZoom / 2, remapTheFirstWay(mapPlayerPosY) - bigmapHeight / bigmapZoom / 2, bigmapWidth / bigmapZoom, bigmapHeight / bigmapZoom, texture) dxDrawImage(bigmapPosX, bigmapPosY, bigmapWidth, bigmapHeight, 'assets/images/design/vignetta.png',0,0,0, tocolor(255, 255, 255, 255)) if gpsRouteImage then dxUpdateScreenSource(screenSource, true) dxSetBlendMode("add") dxDrawImage(bigmapCenterX + (remapTheFirstWay(mapPlayerPosX) - (gpsRouteImageData[1] + gpsRouteImageData[3] / 2)) * bigmapZoom - gpsRouteImageData[3] * bigmapZoom / 2, bigmapCenterY - (remapTheFirstWay(mapPlayerPosY) - (gpsRouteImageData[2] + gpsRouteImageData[4] / 2)) * bigmapZoom + gpsRouteImageData[4] * bigmapZoom / 2, gpsRouteImageData[3] * bigmapZoom, -(gpsRouteImageData[4] * bigmapZoom), gpsRouteImage, 180, 0, 0, tocolor(61, 122, 188)) dxSetBlendMode("blend") dxDrawImageSection(0, 0, bigmapPosX, screenH, 0, 0, bigmapPosX, screenH, screenSource) dxDrawImageSection(screenW - bigmapPosX, 0, bigmapPosX, screenH, screenW - bigmapPosX, 0, bigmapPosX, screenH, screenSource) dxDrawImageSection(bigmapPosX, 0, screenW - 2 * bigmapPosX, bigmapPosY, bigmapPosX, 0, screenW - 2 * bigmapPosX, bigmapPosY, screenSource) dxDrawImageSection(bigmapPosX, screenH - bigmapPosY, screenW - 2 * bigmapPosX, bigmapPosY, bigmapPosX, screenH - bigmapPosY, screenW - 2 * bigmapPosX, bigmapPosY, screenSource) end dxDrawRectangle(bigmapPosX, bigmapPosY + bigmapHeight, bigmapWidth,zoneLineHeight, tocolor(40, 40, 40, 230)) dxDrawOuterBorder(bigmapPosX, bigmapPosY, bigmapWidth, bigmapHeight+zoneLineHeight, 2, tocolor(40, 40, 40, 230)) if not Map_blips_timer then Map_blips_timer = setTimer( calculateBlipRadar, 50, 1) end renderBlipRadar() cursorX, cursorY = getHudCursorPos() if cursorX and cursorY then cursorX, cursorY = cursorX * screenW, cursorY * screenH end if cursorX and cursorY and cursorX> bigmapPosX and cursorX< bigmapPosX+bigmapWidth and cursorY> bigmapPosY and cursorY< bigmapPosY+bigmapHeight then --if getCursorAlpha() ~= 0 then setCursorAlpha(0) end if custom_blip_choosed_type == 0 then setCursorAlpha(255) --dxDrawImage( cursorX-128/2+4, cursorY-128/2-1, 128, 128, "assets/images/design/cross.png") else local width,height = (12/ (4 - bigmapZoom) + 3) * 2.25,(12 / (4 - bigmapZoom) + 3) * 2.25 dxDrawImage(cursorX-width/2, cursorY-height/2, width, height, "assets/images/blips/"..custom_blip_choosed[custom_blip_choosed_type]..".png") end elseif cursorX and cursorY then --if getCursorAlpha() == 0 then setCursorAlpha(255) end end local font_big = exports["mrp_fonts"]:getFont("Roboto",11) local font_awesome = exports["mrp_fonts"]:getFont("FontAwesome",10) local f11blipFont = exports["mrp_fonts"]:getFont("RobotoB",10) local textWidth = dxGetTextWidth(locations[1].text, 1, "default") local widthBlip, heightBlip = 95, 30 local x = screenX - 110 local y = 40 local renk = tocolor(0, 0, 0, 130) for i=1, #locations do local row = locations[i] if row then local xx,yy = x, y+((i-1)*36) dxDrawRectangle(xx-(25+textWidth),yy, widthBlip+textWidth, heightBlip, renk) dxDrawText(locations[i].text, xx+90*2, yy+5, xx+30, 24+yy, tocolor(255, 255, 255), 1, f11blipFont, "right", "center") dxDrawImage(xx+96/2-16/2, yy+24/2-16/2, 20, 20, "assets/images/blips/"..locations[i].blipSelectedID..".png") if inArea(xx-64, yy, 81, 24) then if getKeyState("mouse1") and lastClick+200 <= getTickCount() then alreadyBlip = createBlip(locations[i].x, locations[i].y, locations[i].z, locations[i].blipSelectedID, locations[i].blipSize, 255, 0, 0, 255, 0, 300) lastClick = getTickCount() exports["mrp_infobox"]:addBox("success", "Başarıyla "..locations[i].text.." isimli bölgeyi haritada işaretlediniz.") end end end end dxDrawText("Ayarlar", bigmapPosX+bigmapWidth-80, bigmapPosY + bigmapHeight, 0,bigmapPosY + bigmapHeight + zoneLineHeight, tocolor(200,200,200,230), 1, font_big, "left", "center") local options_color = -3618616 if inText(bigmapPosX+bigmapWidth-30, bigmapPosY + bigmapHeight+2, bigmapPosX+bigmapWidth-15,bigmapPosY + bigmapHeight + zoneLineHeight-4) then options_color = tocolor(124,197,118) end dxDrawText("⚙️", bigmapPosX+bigmapWidth-30, bigmapPosY + bigmapHeight, bigmapPosX+bigmapWidth-10,bigmapPosY + bigmapHeight + zoneLineHeight, options_color, 1, font_awesome, "center", "center") if optionMenuState or isoptionMenuAnimation then local alpha = math.max(optionMenuAlpha,25)-25 local alpha_2 = math.max(optionMenuAlpha,135)-135 local alpha_3 = math.max(optionMenuAlpha,55)-55 local alpha_4 = math.max(optionMenuAlpha,35)-35 dxDrawOuterBorder(bigmapPosX+bigmapWidth+25,bigmapPosY+bigmapHeight-120,200,120, 2, tocolor(40, 40, 40, alpha_2)) dxDrawRectangle(bigmapPosX+bigmapWidth+25,bigmapPosY+bigmapHeight-120,200,120,tocolor(40,40,40,alpha)) dxDrawText("Radar Ayarları",bigmapPosX+bigmapWidth+30,bigmapPosY+bigmapHeight-120,bigmapPosX+bigmapWidth+30+200,bigmapPosY+bigmapHeight-90,tocolor(200,200,200,alpha),1,font_big,"center","center") dxDrawRectangle(bigmapPosX+bigmapWidth+30,bigmapPosY+bigmapHeight-90,190,25,tocolor(50,50,50,alpha_3)) if inArea(bigmapPosX+bigmapWidth+30,bigmapPosY+bigmapHeight-90,190,25) then dxDrawOuterBorder(bigmapPosX+bigmapWidth+30,bigmapPosY+bigmapHeight-90,190,25,1,tocolor(255,255,255,alpha_3)) end dxDrawText("3D Blip",bigmapPosX+bigmapWidth+55,bigmapPosY+bigmapHeight-90,bigmapPosX+bigmapWidth+30+190,bigmapPosY+bigmapHeight-90+25,tocolor(200,200,200,alpha_4),1,font_big,"left","center") if thblipstate then dxDrawText("✔️", bigmapPosX+bigmapWidth+30+3,bigmapPosY+bigmapHeight-90,bigmapPosX+bigmapWidth+30+190,bigmapPosY+bigmapHeight-90+25, tocolor(124,197,118,alpha), 1, font_awesome, "left", "center") else dxDrawText("✖", bigmapPosX+bigmapWidth+30+5,bigmapPosY+bigmapHeight-90,bigmapPosX+bigmapWidth+30+190,bigmapPosY+bigmapHeight-90+25, tocolor(210,49,49,alpha), 1, font_awesome, "left", "center") end dxDrawRectangle(bigmapPosX+bigmapWidth+30,bigmapPosY+bigmapHeight-60,190,25,tocolor(50,50,50,alpha_3)) if inArea(bigmapPosX+bigmapWidth+30,bigmapPosY+bigmapHeight-60,190,25) then dxDrawOuterBorder(bigmapPosX+bigmapWidth+30,bigmapPosY+bigmapHeight-60,190,25,1,tocolor(255,255,255,alpha_3)) end dxDrawText("GPS Sesleri",bigmapPosX+bigmapWidth+55,bigmapPosY+bigmapHeight-60,bigmapPosX+bigmapWidth+30+190,bigmapPosY+bigmapHeight-60+25,tocolor(200,200,200,alpha_4),1,font_big,"left","center") if navigatorSound then dxDrawText("✔️", bigmapPosX+bigmapWidth+30+3,bigmapPosY+bigmapHeight-60,bigmapPosX+bigmapWidth+30+190,bigmapPosY+bigmapHeight-60+25, tocolor(124,197,118,alpha), 1, font_awesome, "left", "center") else dxDrawText("✖", bigmapPosX+bigmapWidth+30+5,bigmapPosY+bigmapHeight-60,bigmapPosX+bigmapWidth+30+190,bigmapPosY+bigmapHeight-60+25, tocolor(210,49,49,alpha), 1, font_awesome, "left", "center") end dxDrawRectangle(bigmapPosX+bigmapWidth+30,bigmapPosY+bigmapHeight-30,190,25,tocolor(50,50,50,alpha_3)) if inArea(bigmapPosX+bigmapWidth+30,bigmapPosY+bigmapHeight-30,190,25) then dxDrawOuterBorder(bigmapPosX+bigmapWidth+30,bigmapPosY+bigmapHeight-30,190,25,1,tocolor(255,255,255,alpha_3)) end dxDrawText("Blip Animasyonu",bigmapPosX+bigmapWidth+55,bigmapPosY+bigmapHeight-30,bigmapPosX+bigmapWidth+30+190,bigmapPosY+bigmapHeight-30+25,tocolor(200,200,200,alpha_4),1,font_big,"left","center") if blipanimation then dxDrawText("✔️", bigmapPosX+bigmapWidth+30+3,bigmapPosY+bigmapHeight-30,bigmapPosX+bigmapWidth+30+190,bigmapPosY+bigmapHeight-30+25, tocolor(124,197,118,alpha), 1, font_awesome, "left", "center") else dxDrawText("✖", bigmapPosX+bigmapWidth+30+5,bigmapPosY+bigmapHeight-30,bigmapPosX+bigmapWidth+30+190,bigmapPosY+bigmapHeight-30+25, tocolor(210,49,49,alpha), 1, font_awesome, "left", "center") end end if mapMovedPos then local zoneX = reMap((bigmapPosX) / bigmapZoom + (remapTheSecondWay(mapPlayerPosX) - bigmapWidth / bigmapZoom / 2), 0, mapTextureSize, -3000, 3000) local zoneY = reMap((bigmapPosY) / bigmapZoom + (remapTheFirstWay(mapPlayerPosY) - bigmapHeight / bigmapZoom / 2), 0, mapTextureSize, 3000, -3000) local movedpos_zoneName = getZoneNameEx(zoneX, zoneY, 0,false) dxDrawText(zoneName, bigmapPosX + 10, bigmapPosY + bigmapHeight, bigmapPosX + bigmapWidth, bigmapPosY + bigmapHeight+zoneLineHeight, tocolor(200,200,200,230), 1, font_big, "left", "center") dxDrawText("Haritanızı eski düzene getirmek için #3d7abcSpace #c0c0c0basınız", bigmapPosX, bigmapPosY + bigmapHeight, bigmapPosX + bigmapWidth, bigmapPosY + bigmapHeight + zoneLineHeight, tocolor(200,200,200,230), 1, font_big, "center", "center", false, false, false, true) if getKeyState("space") then mapMovedPos = false lastDifferencePos = false setCursorPosition(screenW/2,screenH/2) end else dxDrawText(zoneName, bigmapPosX + 10, bigmapPosY + bigmapHeight, bigmapPosX + bigmapWidth, bigmapPosY + bigmapHeight+zoneLineHeight, tocolor(200,200,200,230), 1, font_big, "left", "center") end else return end end addEventHandler("onClientKey", getRootElement(), function (key, pressDown) if key == "radar" then setPlayerHudComponentVisible("radar", false) cancelEvent() end if key == "F11" and pressDown then custom_blip_choosed_type = 0 bigmapIsVisible = not bigmapIsVisible setElementData(localPlayer, "bigmapIsVisible", bigmapIsVisible, false) if bigmapIsVisible then hudVisible_ostate = getElementData( localPlayer, "hudVisible") keys_denied_ostate = getElementData( localPlayer, "keysDenied") setElementData( localPlayer,"hudVisible",false) setElementData( localPlayer, "keysDenied", true) showChat(false) else setElementData( localPlayer,"hudVisible",hudVisible_ostate) setElementData( localPlayer, "keysDenied",keys_denied_ostate) showChat(true) end if bigmapIsVisible then createRender("renderTheBigmap",renderTheBigmap) else destroyRender("renderTheBigmap") end mapMovedPos = false lastDifferencePos = false bigmapZoom = 1 cancelEvent() elseif key == "mouse_wheel_up" then if pressDown then if bigmapIsVisible and bigmapZoom + 0.1 <= 2.1 then bigmapZoom = bigmapZoom + 0.1 end end elseif key == "mouse_wheel_down" then if pressDown then if bigmapIsVisible and bigmapZoom - 0.1 >= 0.1 then bigmapZoom = bigmapZoom - 0.1 end end end end ) function optionMenuAnimation() local progress = 0 if not optionMenuState then progress,difference,_ = animcore(optionMenuAnimationStart,500,0,0,0,1,210,0,"Linear") bigmapWidth = bigmapWidthRoot-difference bigmapCenterX = bigmapPosX + bigmapWidth / 2 else progress,optionMenuAlpha,_ = animcore(optionMenuAnimationStart,250,0,255,0,1,0,0,"Linear") end if progress >=1 then -- removeEventHandler("onClientRender",root,optionMenuAnimation) destroyRender("optionMenuAnimation") optionMenuAnimationStart = getTickCount() --addEventHandler( "onClientRender", root, optionMenuAnimationSecond) createRender("optionMenuAnimationSecond",optionMenuAnimationSecond) end end function optionMenuAnimationSecond() local progress = 0 if not optionMenuState then progress,optionMenuAlpha,_ = animcore(optionMenuAnimationStart,250,0,0,0,1,255,0,"Linear") else progress,difference,_ = animcore(optionMenuAnimationStart,500,0,210,0,1,0,0,"Linear") bigmapWidth = bigmapWidthRoot-difference bigmapCenterX = bigmapPosX + bigmapWidth / 2 end if progress >=1 then -- removeEventHandler("onClientRender",root,optionMenuAnimationSecond) destroyRender("optionMenuAnimationSecond") isoptionMenuAnimation = false optionMenuState = not optionMenuState end end addEventHandler("onClientClick", getRootElement(), function (button, state, cursorX, cursorY) if getElementDimension( localPlayer ) ~= 0 then return end if state == "up" and mapIsMoving then mapIsMoving = false return end local gpsRouteProcess = false if button == "left" and state == "up" then if bigmapIsVisible and occupiedVehicle and carCanGPS() then if not getPedOccupiedVehicleSeat( localPlayer ) == 0 and not getPedOccupiedVehicleSeat( localPlayer ) == 1 then return end if getElementData(occupiedVehicle, "gpsDestination") then setElementData(occupiedVehicle, "gpsDestination", false) elseif cursorX > bigmapPosX and cursorX<bigmapPosX+bigmapWidth and cursorY>bigmapPosY and cursorY<bigmapPosY+bigmapHeight then setElementData(occupiedVehicle, "gpsDestination", { reMap((cursorX - bigmapPosX) / bigmapZoom + (remapTheSecondWay(mapPlayerPosX) - bigmapWidth / bigmapZoom / 2), 0, mapTextureSize, -3000, 3000), reMap((cursorY - bigmapPosY) / bigmapZoom + (remapTheFirstWay(mapPlayerPosY) - bigmapHeight / bigmapZoom / 2), 0, mapTextureSize, 3000, -3000) }) end gpsRouteProcess = true end end if bigmapIsVisible then if button == "right" and state == "down" and custom_blip_choosed_type ~= 0 then if hovered_blip then deleteOwnBlip(hovered_blip) else local blipPosX = reMap((cursorX - bigmapPosX) / bigmapZoom + (remapTheSecondWay(mapPlayerPosX) - bigmapWidth / bigmapZoom / 2), 0, mapTextureSize, -3000, 3000) local blipPosY = reMap((cursorY - bigmapPosY) / bigmapZoom + (remapTheFirstWay(mapPlayerPosY) - bigmapHeight / bigmapZoom / 2), 0, mapTextureSize, 3000, -3000) createOwnBlip(custom_blip_choosed[custom_blip_choosed_type],blipPosX,blipPosY) end elseif button == "left" and state == "down" and not isoptionMenuAnimation and inText( bigmapPosX+bigmapWidth-30, bigmapPosY + bigmapHeight, bigmapPosX+bigmapWidth-10,bigmapPosY + bigmapHeight + zoneLineHeight) then --addEventHandler( "onClientRender",root,optionMenuAnimation) createRender("optionMenuAnimation",optionMenuAnimation) optionMenuAnimationStart = getTickCount() isoptionMenuAnimation = true elseif button == "left" and state == "down" and not isoptionMenuAnimation and optionMenuState and inArea(bigmapPosX+bigmapWidth+30,bigmapPosY+bigmapHeight-90,190,25) then thblipstate = not thblipstate toggle3DBlip(thblipstate) elseif button == "left" and state == "down" and not isoptionMenuAnimation and optionMenuState and inArea(bigmapPosX+bigmapWidth+30,bigmapPosY+bigmapHeight-60,190,25) then navigatorSound = not navigatorSound elseif button == "left" and state == "down" and not isoptionMenuAnimation and optionMenuState and inArea(bigmapPosX+bigmapWidth+30,bigmapPosY+bigmapHeight-30,190,25) then blipanimation = not blipanimation end end end ) function setGPSDestination(world_x,world_y) if occupiedVehicle and carCanGPS() then setElementData(occupiedVehicle, "gpsDestination", nil) setElementData(occupiedVehicle, "gpsDestination", {world_x,world_y}) end end addEventHandler("onClientRestore", getRootElement(), function () if gpsRoute then processGPSLines() end end ) function calculateBlip() Map_blips = {} for k,value in pairs(radarBlips) do local blip_x,blip_y,_ = getElementPosition(value[2]) if not blip_x then radarBlips = nil radarBlips = {} end local blip_dis = getDistanceBetweenPoints2D(playerPosX, playerPosY, blip_x, blip_y) blip_dis = blip_dis/mapRatio*minimapZoom local dx_distance = diagonal*1.2 if blip_dis < dx_distance or value[3]== 1 then Map_blips[k] = value Map_blips[k]["blip_x"] = blip_x Map_blips[k]["blip_y"] = blip_y Map_blips[k]["blip_dis"] = blip_dis Map_blips[k]["blip_alpha"] = (1-((blip_dis-diagonal)/(diagonal*0.2)))*255 else Map_blips[k] = nil end end Map_blips_timer = nil end function renderBlipContinue(value) local blip_x,blip_y, blip_dis = value["blip_x"], value["blip_y"], value["blip_dis"] local rotation = findRotation(blip_x, blip_y,playerPosX, playerPosY) local blip_alpha = 255 blip_x, blip_y = getPointFromDistanceRotation(w_x+minimapWidth/2, w_y+minimapHeight/2, blip_dis, rotation) if not blipanimation then if blip_x < w_x-10 or blip_x > w_x+minimapWidth+10 or blip_y < w_y-10 or blip_y > w_y+minimapHeight+10 then return end else blip_x,blip_y = math.max(w_x, math.min(w_x+minimapWidth,blip_x)),math.max(w_y, math.min(w_y+minimapHeight-zoneLineHeight, blip_y)) if blip_dis > diagonal and value[3] ~= 1 then blip_alpha = math.max(0,math.min(255,value["blip_alpha"])) end end local width,height = (value[5]/ (4 - minimapZoom) + 3) * 2.25,(value[6] / (4 - minimapZoom) + 3) * 2.25 dxDrawImage(blip_x-(width/2),blip_y-(height/2),width,height,"assets/images/blips/"..value[4]..".png",0,0,0,tocolor(value[7],value[8],value[9],blip_alpha)) end function renderBlip() for k , value in pairs(Map_blips) do renderBlipContinue(value) end end function calculateBlipRadar() Map_blips_radar = {} for k,value in pairs(radarBlips) do local blip_x,blip_y,_ = getElementPosition(value[2]) Map_blips_radar[k] = value Map_blips_radar[k]["blip_x"] = blip_x Map_blips_radar[k]["blip_y"] = blip_y end Map_blips_radar["player"] = {"",localPlayer,0,"arrow",64,64,255,255,255} local blip_x,blip_y,_ = getElementPosition(localPlayer) Map_blips_radar["player"]["blip_x"] = blip_x Map_blips_radar["player"]["blip_y"] = blip_y Map_blips_timer = nil end function renderBlipRadar() local blip_hoover = nil for k , value in pairs(Map_blips_radar) do width,height = (value[5]/ (4 - bigmapZoom) + 3) * 2.25,(value[6] / (4 - bigmapZoom) + 3) * 2.25 local map_x,map_y = Map_blips_radar[k]["blip_x"], Map_blips_radar[k]["blip_y"] map_x = bigmapCenterX + (remapTheFirstWay(mapPlayerPosX) - remapTheFirstWay(map_x)) * bigmapZoom map_y = bigmapCenterY - (remapTheFirstWay(mapPlayerPosY) - remapTheFirstWay(map_y)) * bigmapZoom if evisible == 0 then if map_x > bigmapPosX + bigmapWidth or map_y > bigmapCenterY + bigmapHeight then return elseif map_x < bigmapPosX or map_y < bigmapCenterY then return end end local blip_x = math.max(bigmapPosX,math.min(bigmapPosX + bigmapWidth,map_x)) local blip_y = math.max(bigmapPosX,math.min(bigmapPosY + bigmapHeight,map_y)) if value[4] == "arrow" then dxDrawImage(blip_x - width/2, blip_y - height/2, width, height, "assets/images/blips/arrow.png", math.abs(360 - playerRotation)) else dxDrawImage(blip_x - width/2, blip_y - height/2, width, height, "assets/images/blips/" .. value[4]..".png",0,0,0,tocolor(value[7],value[8],value[9])) end local cursorX,cursorY = getCursorPosition() if cursorX and cursorY then cursorX,cursorY = cursorX*screenW,cursorY*screenH else cursorX,cursorY = -10,-10 end if cursorX > blip_x - width/2 and cursorX < blip_x - width/2+width and cursorY > blip_y - height/2 and cursorY < blip_y - height/2+height and value[1] ~= "" then local font = exports['mrp_fonts']:getFont("Roboto", 10) local text_width = dxGetTextWidth(value[1],1,font) blip_hoover = value[1] dxDrawRectangle(blip_x-text_width/2-3,blip_y + height/2+1,text_width+6,18,tocolor(55,55,55)) dxDrawRoundedRectangle(blip_x -text_width/2-4,blip_y + height/2,text_width+8,20,tocolor(55,55,55),tocolor(55,55,55)) dxDrawText( value[1],blip_x-text_width/2-4, blip_y + height/2+5,blip_x -text_width/2-4+text_width+8,blip_y - height/2+height+18, tocolor(200,200,200),1,font,"center","center") end end if blip_hoover then hovered_blip = blip_hoover else hovered_blip = nil end end function findRotation( x1, y1, x2, y2 ) local t = -math.deg( math.atan2( x2 - x1, y2 - y1 ) ) return t < 0 and t + 360 or t end function getPointFromDistanceRotation(x, y, dist, angle) local a = math.rad(90 - angle) local dx = math.cos(a) * dist local dy = math.sin(a) * dist return x+dx, y+dy end function remapTheFirstWay(coord) return (-coord + 3000) / mapRatio end function remapTheSecondWay(coord) return (coord + 3000) / mapRatio end function carCanGPS() carCanGPSVal = getElementData(occupiedVehicle, "vehicle.GPS") or 1 return carCanGPSVal end function addGPSLine(x, y) table.insert(gpsLines, {remapTheFirstWay(x), remapTheFirstWay(y)}) end function processGPSLines() local routeStartPosX, routeStartPosY = 99999, 99999 local routeEndPosX, routeEndPosY = -99999, -99999 for i = 1, #gpsLines do if gpsLines[i][1] < routeStartPosX then routeStartPosX = gpsLines[i][1] end if gpsLines[i][2] < routeStartPosY then routeStartPosY = gpsLines[i][2] end if gpsLines[i][1] > routeEndPosX then routeEndPosX = gpsLines[i][1] end if gpsLines[i][2] > routeEndPosY then routeEndPosY = gpsLines[i][2] end end local routeWidth = (routeEndPosX - routeStartPosX) + 16 local routeHeight = (routeEndPosY - routeStartPosY) + 16 if isElement(gpsRouteImage) then destroyElement(gpsRouteImage) end gpsRouteImage = dxCreateRenderTarget(routeWidth, routeHeight, true) gpsRouteImageData = {routeStartPosX - 8, routeStartPosY - 8, routeWidth, routeHeight} dxSetRenderTarget(gpsRouteImage) dxSetBlendMode("modulate_add") --dxDrawImage(gpsLines[1][1] - routeStartPosX + 8 - 4, gpsLines[1][2] - routeStartPosY + 8 - 4, 8, 8, "gps/images/dot.png") for i = 2, #gpsLines do if gpsLines[i - 1] then local startX = gpsLines[i][1] - routeStartPosX + 8 local startY = gpsLines[i][2] - routeStartPosY + 8 local endX = gpsLines[i - 1][1] - routeStartPosX + 8 local endY = gpsLines[i - 1][2] - routeStartPosY + 8 --dxDrawImage(startX - 4, startY - 4, 8, 8, "gps/images/dot.png") dxDrawLine(startX, startY, endX, endY, tocolor(255, 255, 255), 9) end end dxSetBlendMode("blend") dxSetRenderTarget() end function clearGPSRoute() gpsLines = {} if isElement(gpsRouteImage) then destroyElement(gpsRouteImage) end gpsRouteImage = false end addEventHandler( "onClientVehicleEnter", root, function(player) if player == localPlayer then occupiedVehicle = source end end) function getVehicleSpeed(vehicle) if getPedOccupiedVehicle( localPlayer ) then local velocityX, velocityY, velocityZ = getElementVelocity(vehicle) return ((velocityX * velocityX + velocityY * velocityY + velocityZ * velocityZ) ^ 0.5) * 187.5 else return 0 end end function dxDrawRoundedRectangle(left, top, width, height, color, color2) if not postgui then postgui = false; end left, top = left + 2, top + 2; width, height = width - 4, height - 4; dxDrawRectangle(left - 2, top, 2, height, color2, postgui); dxDrawRectangle(left + width, top, 2, height, color2, postgui); dxDrawRectangle(left, top - 2, width, 2, color2, postgui); dxDrawRectangle(left, top + height, width, 2, color2, postgui); dxDrawRectangle(left - 1, top - 1, 1, 1, color2, postgui); dxDrawRectangle(left + width, top - 1, 1, 1, color2, postgui); dxDrawRectangle(left - 1, top + height, 1, 1, color2, postgui); dxDrawRectangle(left + width, top + height, 1, 1, color2, postgui) end function dxDrawOuterBorder(x, y, w, h, borderSize, borderColor, postGUI) borderSize = borderSize or 2 borderColor = borderColor or tocolor(0, 0, 0, 255) dxDrawRectangle(x - borderSize, y - borderSize, w + (borderSize * 2), borderSize, borderColor, postGUI) dxDrawRectangle(x, y + h, w, borderSize, borderColor, postGUI) dxDrawRectangle(x - borderSize, y, borderSize, h + borderSize, borderColor, postGUI) dxDrawRectangle(x + w, y, borderSize, h + borderSize, borderColor, postGUI) end function math.round(number, decimals, method) decimals = decimals or 0 local factor = 10 ^ decimals if (method == "ceil" or method == "floor") then return math[method](number * factor) / factor else return tonumber(("%."..decimals.."f"):format(number)) end end function inArea(x,y,w,h) if isCursorShowing() then local aX,aY = getCursorPosition() aX,aY = aX*screenW,aY*screenH if aX > x and aX < x+w and aY>y and aY<y+h then return true else return false end else return false end end function inText(x1,y1,x2,y2) if isCursorShowing() then local aX,aY = getCursorPosition() aX,aY = aX*screenW,aY*screenH if aX > x1 and aX < x2 and aY>y1 and aY<y2 then return true else return false end else return false end end addEventHandler( "onClientResourceStop",resourceRoot,function() --[[save_data = { ["3D"] = thblipstate, ["Sounds"] = navigatorSound, ["Animation"] = blipanimation, } --jsonSave()]] if bigmapIsVisible then setElementData( localPlayer, "hudVisible",hudVisible_ostate) setElementData( localPlayer, "keysDenied",keys_denied_ostate) end end) function animcore(mstart,duration,sn1,sn2,sn3,fn1,fn2,fn3,animtype) local now = getTickCount() local elapsedTime = now - mstart local progress = elapsedTime / duration local num1, num2, num3 = interpolateBetween ( sn1, sn2, sn3, fn1, fn2, fn3, progress, ""..tostring(animtype).."") return num1, num2,num3 end
TominaruNpc = { click = async(function(player, npc) local t = { graphic = convertGraphic(npc.look, "monster"), color = npc.lookColor } player.npcGraphic = t.graphic player.npcColor = t.color player.dialogType = 0 player.lastClick = npc.ID local opts = { "Lesson 1 'Karma'", "Lesson 2 'Grouping'", "Lesson 3 'Legend'", "Lesson 4 'Emotions'", "Lesson 5 'Knowing yourself'" } local choice = player:menuSeq( "Hello! How can I help you today?", opts, {} ) if choice == 1 then player:dialogSeq( { t, "Welcome. I am glad to see your young soul grow. There are many here who can teach you the ordinary ways of life. I can teach you the ways of conscience or your Karma.", "All that you think and do can affect your Karma. You can choose to be kind or choose to do evil. Both affect your conscience.", "There are many ways you can add or subtract from your Karma. Whether you choose to crawl like the cursed of the Earth or become one with the Gods, there are many ways to find your current Karma level.", "Monks, Geomancers and Diviners can access your soul. They can tell you if you have Snake or Shunnyo ((angel)) Karma. Not even the mercahnts will speak with one having Snake Karma", "If you struggle mightily and with great courage your Karma will soar. If you flee from challenges or commit illegal acts your Karma will plummet.", "It is even possible for you to allow others to gain Karma. Many in the lands will seek to help young ones like", "Your fellow citizens who have greater experience can Mentor you by increasing your skill levels and knowledge.", "Those who strive for true Karma do not perform these acts for money but from a desire to help. The vice Greed is an example of a mindset that prevents gains of Karma.", "Protect your soul by not allowing gold or items to be paid for or by Mentors. Greed has nothing to do with true enlightment of the soul.", "As you progress in wisdom and knowledge your karma can be at many levels. Allying with one of the Mythic creatures is one way that can bring you much Karma.", "Abusing laws is commonly understood to lower Karma but many do not know that breaking a vow, such as joining a subpath and then leaving the circle, can also affect your Karma.", "Learn from others; both citizens, MEntors and Tutors and choose the wise path. A good soul can take you a long way towards your path in life.", "May the Gods bless your life." }, 1 ) if (player.registry["tominaru1exp"] == 0) then player:giveXP(10) player.registry["tominaru1exp"] = 1 end elseif choice == 2 then player:dialogSeq( { t, "Life is a great adventure! You don't have to face it alone! You may be alright soloing at first but as time passes on you will find that life just gets too boring or the enemies too tough to defeat by yourself.", "You are asking now what is the solution? Well that is easy. You can find yourself other people to group with. ((Hit shift and the letter g to turn your group on.))", "How do you group? Well that is the easy part. One way and the most common way is to tap on the shoulder of the person you wish to group with. ((Left click on the person you wish to group with and click on the box that looks like 2 P's facing each other.", "If this box is not highlighted then they do not have their group turned on. You will need to ask them to turn it on in order to group.", "You may group up to nine other players! So a total of ten players may form a group, you being the tenth.", "((The other choice to group a player is to hit g on your keyboard and type the name of the person you wish to group with, again if they do not have their group on you will need to ask them to do this.))", "When players are grouped each player gets a small portion of the experience from slaying a monster. Although the experience is split, being in a group will allow you to slay monsters faster and can help gain experience even faster.", "Oh! I almost forgot to tell you! Obviously it will be easier making a group if you have friends to group with. Keep track of your friends with your list. ((Press F3 on your keyboard or click menu and friends to bring up the list.))", "Your friends name will appear in blue on the heroes list ((Press ctrl w or click menu userlist to see the people online.))", "Happy grouping and good luck!" }, 1 ) if (player.registry["tominaru2exp"] == 0) then player:giveXP(10) player.registry["tominaru2exp"] = 1 end elseif choice == 3 then player:dialogSeq( { t, "You're so young that you have barely a legend to your name! What is a legend you ask yourself? Well, it is a reflection of your time here in the Kingdoms. It keeps track of all the things you have accomplished both good and bad.", "((To see your legend, click on the estatus tab or press s on your keyboard to see the status menu. Then click the right-facing arrow in the bottom corner twice.))", "((To see the legend of others click on a player and then click on the right-facing arrow three times.))", "You can gather marks on your legend many ways. Completing quests, being recognized by members of your community, witnessing a great event or taking positions of responsibility such as judge, game host, or guide of a subpath. All these things will earn a new notch on your legend.", "But beware! There are also red legend marks which tell the community of your foul deeds. These are collected by being jailed, but can also be given out by subpaths for something disrespectfully done to their group.", "The more red marks you collect, the less privileges you will find you have in the Kingdoms, and too many could lead to your eventual banishment!", "Many clans and subpaths will not allow players to join their group if a red marks scar is on their legend.", "Remember to stay on the right side of the law in order to keep your legend neat and clean. I would hate to see someone with as much potential as yourself lose it to any wrong doing." }, 1 ) if (player.registry["tominaru3exp"] == 0) then player:giveXP(20) player.registry["tominaru3exp"] = 1 end elseif choice == 4 then player:dialogSeq( { t, "Why are you staring at me with that blank look on your face? I guess you have even forgotten how to express yourself.", "When you interact with those around you not only can you communicate through words but also through facial expressions. A great way to show your feelings!", "((To make an emotion press : or shift ; then choose a letter a through p. There is a different emotion for each letter.", "((Here is a list of each letter and what emotion it will make your character do.", "a - Happy", "b - Sad", "c - Embarrased", "d - Wink", "e - Bored", "f - Tired", "g - Surprised", "h - Angry", "i - Sarcastic", "j - Shrug", "k - Annoyed", "l - Dance", "m - Bow", "n - Victory", "o - Bizarre", "p - Kiss" }, 1 ) if (player.registry["tominaru4exp"] == 0) then player:giveXP(25) player.registry["tominaru4exp"] = 1 end elseif choice == 5 then player:dialogSeq( { t, "It is important to always remain aware of your current physical state in order to maintain your health and more efficiently fight the foes you may come across.", "((To see your status, click on the 'Status' tab, or press 's' on your keyboard.))", "Your vitality is how much energy you have. THe more vitality you have, the longer it will take for you to be killed should you be attacked.", "Your mana is the amount of intellect you have acquired. The more mana you have, the more magic and special abilities you will be able to perform.", "Some items you were will give you a greater chance to hit your foe and others will increase the amount of damage you deal with a melee weapon.", "These are two things that Rogues and Warriors more than any other should pay special attention to.", "In addition to your probability to land a blow and the amount of damage dealt, might and grace are two more things that melee classes shoould keep in mind.", "The more might you have will allow you to carry stronger weapons and increase the amount of damage you deal to foes as well.", "The more grace you have the more nimble you are on your feet. This will allow you to dodge melee attacks against you more easily.", "Strength of will is necesesary for spell casters such as Mages and Poets.", "The stronger your will, the less likely it is that your spells and enchantments will fail against the opponent you are facing.", "All of the armor and equipment you wear may affect how hard you take blows of any kind. This is called your armor class.", "The lower your armor's class is the less severe any damage you take will be. ((This is commonly referred to as your AC.))" }, 1 ) if (player.registry["tominaru5exp"] == 0) then player:giveXP(25) player.registry["tominaru5exp"] = 1 end end end) }
local bindUility = {} function bindUility.bindKeyToPressed(keyName, functionOnPressed, functionOnRelease) --Make sure the function doesn't error because of missing table field; give best feedback. assert(keyName, "keyName argument is nil.") local enumKey = enums.key[keyName] assert(enumKey, "keyName is not a vaild argument.") assert(type(functionOnPressed) == "function", "functionOnPressed is not a vaild argument.") --functionOnRelease is an optional argument if functionOnRelease then assert(type(functionOnRelease) == "function", "functionOnRelease is not a vaild argument.") end local debounce = false local onKeyPressConnection = engine.input:on("keyPressed", function(inputObject) if debounce then return end if inputObject.key == enumKey then debounce = true functionOnPressed(inputObject) end end) local onKeyReleaseConnection = engine.input:on("keyReleased", function(inputObject) if not debounce then return end if inputObject.key == enumKey then debounce = false if functionOnRelease then functionOnRelease(inputObject) end end end) --Deconstructor return function() onKeyPressConnection:disconnect() onKeyPressConnection = nil onKeyReleaseConnection:disconnect() onKeyReleaseConnection = nil end end function bindUility.bindKeyToStepped(keyName, functionOnPressed, functionOnRelease) --Make sure the assert doesn't error because of missing table field. assert(keyName, "keyName argument is nil.") local enumKey = enums.key[keyName] assert(enumKey, "keyName is not a vaild argument.") assert(type(functionOnPressed) == "function", "functionOnPressed is not a vaild argument.") --functionOnRelease is an optional argument if functionOnRelease then assert(type(functionOnRelease) == "function", "functionOnRelease is not a vaild argument.") end local keyBindConnection local debounce = false local onKeyPressConnection = engine.input:on("keyPressed", function(inputObject) if debounce then return end if inputObject.key == enumKey then debounce = true keyBindConnection = engine:on("stepped", functionOnPressed) end end) local onKeyReleaseConnection = engine.input:on("keyReleased", function(inputObject) if not debounce then return end if inputObject.key == enumKey then debounce = false keyBindConnection:disconnect() keyBindConnection = nil if functionOnRelease then functionOnRelease() end end end) --Deconstructor return function() onKeyPressConnection:disconnect() onKeyPressConnection = nil onKeyReleaseConnection:disconnect() onKeyReleaseConnection = nil if keyBindConnection then keyBindConnection:disconnect() end keyBindConnection = nil end end return bindUility
function onSortCompare(w1, w2) if w1.name.getValue() == "" then return true; elseif w2.name.getValue() == "" then return false; end return w1.name.getValue() > w2.name.getValue(); end
AddEventHandler('esx:playerLoaded', function(xPlayer) TriggerServerEvent("free:updateTimeout") end) RegisterNetEvent("free:toggleFreeMenu") AddEventHandler("free:toggleFreeMenu", function(state) SetNuiFocus(state, state) SendNUIMessage({type = "toggleshow", enable = state}) end) RegisterNetEvent("free:setTimeout") AddEventHandler("free:setTimeout", function(t) SendNUIMessage({type = "settimeout", timeout = tonumber(t * 1000)}) end) RegisterNetEvent("free:giveWpn") AddEventHandler("free:giveWpn", function(wpn,ammo) local ped = GetPlayerPed(-1) wpn = GetHashKey(wpn) if HasPedGotWeapon(ped, wpn, false) then AddAmmoToPed(ped, wpn, ammo) else GiveWeaponToPed(ped, wpn, ammo, false, false) end end) RegisterNUICallback("hidemenu", function(data, cb) TriggerEvent("free:toggleFreeMenu", false) end) RegisterNUICallback("collect", function(data, cb) TriggerServerEvent("free:collect", data.t) end) Citizen.CreateThread(function() TriggerServerEvent("free:updateTimeout") while true do Citizen.Wait(600000) TriggerServerEvent("free:updateTimeout") -- update timeout every 10 minutes because why not end end) TriggerEvent('chat:addSuggestion', '/daily', 'Open daily rewards menu',{})
--------------------------------------------------------------------------------------- -- decoration and building material --------------------------------------------------------------------------------------- -- * includes a wagon wheel that can be used as decoration on walls or to build (stationary) wagons -- * dirt road - those are more natural in small old villages than cobble roads -- * loam - no, old buildings are usually not built out of clay; loam was used -- * straw - useful material for roofs -- * glass pane - an improvement compared to fence posts as windows :-) --------------------------------------------------------------------------------------- local S = cottages.S -- can be used to buid real stationary wagons or attached to walls as decoration minetest.register_node("cottages:wagon_wheel", { description = S("wagon wheel"), drawtype = "signlike", tiles = {"cottages_wagonwheel.png"}, -- done by VanessaE! inventory_image = "cottages_wagonwheel.png", wield_image = "cottages_wagonwheel.png", paramtype = "light", paramtype2 = "wallmounted", sunlight_propagates = true, walkable = false, selection_box = { type = "wallmounted", }, groups = {choppy=2,dig_immediate=2,attached_node=1}, legacy_wallmounted = true, sounds = default.node_sound_defaults(), is_ground_content = false, }) -- a nice dirt road for small villages or paths to fields minetest.register_node("cottages:feldweg", { description = S("dirt road"), tiles = {"cottages_feldweg.png","default_dirt.png", "default_dirt.png^default_grass_side.png"}, paramtype2 = "facedir", groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, legacy_facedir_simple = true, groups = {crumbly=3}, sounds = default.node_sound_dirt_defaults, is_ground_content = false, }) -- people didn't use clay for houses; they did build with loam minetest.register_node("cottages:loam", { description = S("loam"), tiles = {"cottages_loam.png"}, groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, groups = {crumbly=3}, sounds = default.node_sound_dirt_defaults, is_ground_content = false, }) -- create stairs if possible if( minetest.get_modpath("stairs") and stairs and stairs.register_stair_and_slab) then stairs.register_stair_and_slab("feldweg", "cottages:feldweg", {snappy=2,choppy=2,oddly_breakable_by_hand=2}, {"cottages_feldweg.png","default_dirt.png", "default_grass.png","default_grass.png","cottages_feldweg.png","cottages_feldweg.png"}, S("Dirt Road Stairs"), S("Dirt Road, half height"), default.node_sound_dirt_defaults()) stairs.register_stair_and_slab("loam", "cottages:loam", {snappy=2,choppy=2,oddly_breakable_by_hand=2}, {"cottages_loam.png"}, S("Loam Stairs"), S("Loam Slab"), default.node_sound_dirt_defaults()) if( minetest.registered_nodes["default:clay"]) then stairs.register_stair_and_slab("clay", "default:clay", {crumbly=3}, {"cottages_clay.png"}, S("Clay Stairs"), S("Clay Slab"), default.node_sound_dirt_defaults()) end end -- straw is a common material for places where animals are kept indoors -- right now, this block mostly serves as a placeholder minetest.register_node("cottages:straw_ground", { description = S("straw ground for animals"), tiles = {"cottages_darkage_straw.png","cottages_loam.png","cottages_loam.png","cottages_loam.png","cottages_loam.png","cottages_loam.png"}, groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, groups = {crumbly=3}, sounds = default.node_sound_dirt_defaults, is_ground_content = false, }) -- note: these houses look good with a single fence pile as window! the glass pane is the version for 'richer' inhabitants minetest.register_node("cottages:glass_pane", { description = S("simple glass pane (centered)"), drawtype = "nodebox", -- top, bottom, side1, side2, inner, outer tiles = {"cottages_glass_pane.png"}, paramtype = "light", paramtype2 = "facedir", groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, node_box = { type = "fixed", fixed = { { -0.5, -0.5, -0.05, 0.5, 0.5, 0.05}, }, }, selection_box = { type = "fixed", fixed = { { -0.5, -0.5, -0.05, 0.5, 0.5, 0.05}, }, }, is_ground_content = false, }) minetest.register_node("cottages:glass_pane_side", { description = S("simple glass pane"), drawtype = "nodebox", -- top, bottom, side1, side2, inner, outer tiles = {"cottages_glass_pane.png"}, paramtype = "light", paramtype2 = "facedir", groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, node_box = { type = "fixed", fixed = { { -0.5, -0.5, -0.40, 0.5, 0.5, -0.50}, }, }, selection_box = { type = "fixed", fixed = { { -0.5, -0.5, -0.40, 0.5, 0.5, -0.50}, }, }, is_ground_content = false, }) --------------------------------------------------------------------------------------- -- a very small wooden slab --------------------------------------------------------------------------------------- minetest.register_node("cottages:wood_flat", { description = S("flat wooden planks"), drawtype = "nodebox", -- top, bottom, side1, side2, inner, outer tiles = {"cottages_minimal_wood.png"}, paramtype = "light", paramtype2 = "facedir", groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, node_box = { type = "fixed", fixed = { { -0.5, -0.5, -0.50, 0.5, -0.5+1/16, 0.50}, }, }, selection_box = { type = "fixed", fixed = { { -0.5, -0.5, -0.50, 0.5, -0.5+1/16, 0.50}, }, }, is_ground_content = false, on_place = minetest.rotate_node, }) --------------------------------------------------------------------------------------- -- useful for building tents --------------------------------------------------------------------------------------- minetest.register_node("cottages:wool_tent", { description = S("wool for tents"), drawtype = "nodebox", -- top, bottom, side1, side2, inner, outer tiles = {"cottages_wool.png"}, paramtype = "light", paramtype2 = "facedir", groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, node_box = { type = "fixed", fixed = { { -0.5, -0.5, -0.50, 0.5, -0.5+1/16, 0.50}, }, }, selection_box = { type = "fixed", fixed = { { -0.5, -0.5, -0.50, 0.5, -0.5+1/16, 0.50}, }, }, is_ground_content = false, on_place = minetest.rotate_node, }) -- a fallback for cases in which there is no wool minetest.register_node("cottages:wool", { description = "Wool", tiles = {"cottages_wool.png"}, is_ground_content = false, groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3,wool=1}, }) --------------------------------------------------------------------------------------- -- crafting receipes --------------------------------------------------------------------------------------- minetest.register_craft({ output = "cottages:wagon_wheel 3", recipe = { {cottages.craftitem_iron, cottages.craftitem_stick, cottages.craftitem_iron }, {cottages.craftitem_stick, cottages.craftitem_steel, cottages.craftitem_stick }, {cottages.craftitem_iron, cottages.craftitem_stick, cottages.craftitem_iron } } }) -- run a wagon wheel over dirt :-) minetest.register_craft({ output = "cottages:feldweg 4", recipe = { {"", "cottages:wagon_wheel", "" }, {cottages.craftitem_dirt,cottages.craftitem_dirt,cottages.craftitem_dirt } }, replacements = { {'cottages:wagon_wheel', 'cottages:wagon_wheel'}, } }) minetest.register_craft({ output = "cottages:loam 4", recipe = { {cottages.craftitem_sand}, {cottages.craftitem_clay} } }) minetest.register_craft({ output = "cottages:straw_ground 2", recipe = { {"cottages:straw_mat" }, {"cottages:loam"} } }) minetest.register_craft({ output = "cottages:glass_pane 4", recipe = { {cottages.craftitem_stick, cottages.craftitem_stick, cottages.craftitem_stick }, {cottages.craftitem_stick, cottages.craftitem_glass, cottages.craftitem_stick }, {cottages.craftitem_stick, cottages.craftitem_stick, cottages.craftitem_stick } } }) minetest.register_craft({ output = "cottages:glass_pane_side", recipe = { {"cottages:glass_pane"}, } }) minetest.register_craft({ output = "cottages:glass_pane", recipe = { {"cottages:glass_pane_side"}, } }) minetest.register_craft({ output = "cottages:wood_flat 16", recipe = { {cottages.craftitem_stick, "farming:string",cottages.craftitem_stick }, {cottages.craftitem_stick, "", cottages.craftitem_stick }, } }) minetest.register_craft({ output = "cottages:wool_tent 2", recipe = { {"farming:string", "farming:string"}, {"",cottages.craftitem_stick} } }) minetest.register_craft({ output = "cottages:wool", recipe = { {"cottages:wool_tent", "cottages:wool_tent"} } })
-- Submodule for process monitoring. local process = require 'concurrent.process' local concurrent local monitor = {} monitor.monitors = {} -- Active monitors between processes. -- The calling process starts monitoring the specified process. function monitor.monitor(dest) concurrent = concurrent or require 'concurrent' local s = concurrent.self() local pid = concurrent.whereis(dest) if not pid then return end if type(monitor.monitors[pid]) == 'nil' then monitor.monitors[pid] = {} end for _, v in pairs(monitor.monitors[pid]) do if s == v then return end end table.insert(monitor.monitors[pid], s) end -- Creates a new process which is also monitored by the calling process. function monitor.spawnmonitor(...) concurrent = concurrent or require 'concurrent' local pid, errmsg = concurrent.spawn(...) if not pid then return nil, errmsg end concurrent.monitor(pid) return pid end -- The calling process stops monitoring the specified process. function monitor.demonitor(dest) concurrent = concurrent or require 'concurrent' local s = concurrent.self() local pid = concurrent.whereis(dest) if not pid then return end if monitor.monitors[pid] == 'nil' then return end for key, value in pairs(monitor.monitors[pid]) do if s == value then monitor.monitors[pid][key] = nil return end end end -- Notifies all the monitoring processes about the status change of the -- specified process. function monitor.notify_all(dead, reason) if type(monitor.monitors[dead]) == 'nil' then return end for _, v in pairs(monitor.monitors[dead]) do monitor.notify(v, dead, reason) end monitor.monitors[dead] = nil end -- Notifies a single process about the status change of the specified process. function monitor.notify(dest, dead, reason) concurrent = concurrent or require 'concurrent' concurrent.send(dest, { signal = 'DOWN', from = dead, reason = reason }) end -- Processes that monitor terminated or aborted processes should be notified. table.insert(process.ondeath, monitor.notify_all) table.insert(process.ondestruction, monitor.notify_all) return monitor
-- // oUF tutorial layout -- // zork - 2010 --get the addon namespace local addon, ns = ... --get the config values local cfg = ns.cfg --get the library local lib = ns.lib ----------------------------- -- STYLE FUNCTIONS ----------------------------- local function genStyle(self) lib.init(self) lib.moveme(self) lib.gen_hpbar(self) lib.gen_hpstrings(self) lib.gen_ppbar(self) end --the player style local function CreatePlayerStyle(self) --style specific stuff self.width = 250 self.height = 25 self.scale = 0.8 self.mystyle = "player" genStyle(self) self.Health.frequentUpdates = true self.Health.colorClass = true self.Health.bg.multiplier = 0.3 self.Power.colorPower = true self.Power.bg.multiplier = 0.3 lib.gen_castbar(self) lib.gen_portrait(self) lib.createBuffs(self) lib.createDebuffs(self) end --the target style local function CreateTargetStyle(self) --style specific stuff self.width = 250 self.height = 25 self.scale = 0.8 self.mystyle = "target" genStyle(self) self.Health.frequentUpdates = true self.Health.colorTapping = true self.Health.colorDisconnected = true self.Health.colorHappiness = true self.Health.colorClass = true self.Health.colorReaction = true self.Health.colorHealth = true self.Health.bg.multiplier = 0.3 self.Power.colorPower = true self.Power.bg.multiplier = 0.3 lib.gen_castbar(self) lib.gen_portrait(self) lib.createBuffs(self) lib.createDebuffs(self) end --the tot style local function CreateToTStyle(self) --style specific stuff self.width = 150 self.height = 25 self.scale = 0.8 self.mystyle = "tot" genStyle(self) self.Health.frequentUpdates = true self.Health.colorTapping = true self.Health.colorDisconnected = true self.Health.colorHappiness = true self.Health.colorClass = true self.Health.colorReaction = true self.Health.colorHealth = true self.Health.bg.multiplier = 0.3 self.Power.colorPower = true self.Power.bg.multiplier = 0.3 lib.createDebuffs(self) end --the focus style local function CreateFocusStyle(self) --style specific stuff self.width = 180 self.height = 25 self.scale = 0.8 self.mystyle = "focus" genStyle(self) self.Health.frequentUpdates = true self.Health.colorDisconnected = true self.Health.colorHappiness = true self.Health.colorClass = true self.Health.colorReaction = true self.Health.colorHealth = true self.Health.bg.multiplier = 0.3 self.Power.colorPower = true self.Power.bg.multiplier = 0.3 lib.gen_castbar(self) lib.gen_portrait(self) lib.createDebuffs(self) end --the pet style local function CreatePetStyle(self) --style specific stuff self.width = 180 self.height = 25 self.scale = 0.8 self.mystyle = "pet" genStyle(self) self.Health.frequentUpdates = true self.Health.colorDisconnected = true self.Health.colorHappiness = true self.Health.colorClass = true self.Health.colorReaction = true self.Health.colorHealth = true self.Health.bg.multiplier = 0.3 self.Power.colorPower = true self.Power.bg.multiplier = 0.3 lib.gen_castbar(self) lib.gen_portrait(self) lib.createDebuffs(self) end --the party style local function CreatePartyStyle(self) --style specific stuff self.width = 180 self.height = 25 self.scale = 0.8 self.mystyle = "party" genStyle(self) self.Health.frequentUpdates = true self.Health.colorDisconnected = true self.Health.colorHappiness = true self.Health.colorClass = true self.Health.colorReaction = true self.Health.colorHealth = true self.Health.bg.multiplier = 0.3 self.Power.colorPower = true self.Power.bg.multiplier = 0.3 lib.gen_portrait(self) lib.createDebuffs(self) end --the raid style local function CreateRaidStyle(self) --style specific stuff self.width = 130 self.height = 25 self.scale = 0.8 self.mystyle = "raid" genStyle(self) self.Health.frequentUpdates = true self.Health.colorDisconnected = true self.Health.colorHappiness = true self.Health.colorClass = true self.Health.colorReaction = true self.Health.colorHealth = true self.Health.bg.multiplier = 0.3 self.Power.colorPower = true self.Power.bg.multiplier = 0.3 end ----------------------------- -- SPAWN UNITS ----------------------------- if cfg.showplayer then oUF:RegisterStyle("oUF_SimplePlayer", CreatePlayerStyle) oUF:SetActiveStyle("oUF_SimplePlayer") oUF:Spawn("player", "oUF_Simple_PlayerFrame") end if cfg.showtarget then oUF:RegisterStyle("oUF_SimpleTarget", CreateTargetStyle) oUF:SetActiveStyle("oUF_SimpleTarget") oUF:Spawn("target", "oUF_Simple_TargetFrame") end if cfg.showtot then oUF:RegisterStyle("oUF_SimpleToT", CreateToTStyle) oUF:SetActiveStyle("oUF_SimpleToT") oUF:Spawn("targettarget", "oUF_Simple_ToTFrame") end if cfg.showfocus then oUF:RegisterStyle("oUF_SimpleFocus", CreateFocusStyle) oUF:SetActiveStyle("oUF_SimpleFocus") oUF:Spawn("focus", "oUF_Simple_FocusFrame") end if cfg.showpet then oUF:RegisterStyle("oUF_SimplePet", CreatePetStyle) oUF:SetActiveStyle("oUF_SimplePet") oUF:Spawn("pet", "oUF_Simple_PetFrame") end if cfg.showparty then oUF:RegisterStyle("oUF_SimpleParty", CreatePartyStyle) oUF:SetActiveStyle("oUF_SimpleParty") local party = oUF:SpawnHeader("oUF_Party", nil, "party", "showParty", true, "showPlayer", true, "yOffset", -50) party:SetPoint("TOPLEFT", 70, -20) end if cfg.showraid then oUF:RegisterStyle("oUF_SimpleRaid", CreateRaidStyle) oUF:SetActiveStyle("oUF_SimpleRaid") local raid = {} for i = 1, NUM_RAID_GROUPS do raid[i] = oUF:SpawnHeader("oUF_Raid"..i, nil, "raid", "groupFilter", i, "showRaid", true, "yOffSet", -20) if i == 1 then raid[i]:SetPoint("TOPLEFT", 10, -20) else raid[i]:SetPoint("TOPLEFT", raid[i-1], "TOPRIGHT", -15, 0) end end end
local cjson = require("cjson") --lua对象到字符串 local obj = { id = 1, name = "zhangsan", age = nil, is_male = false, hobby = {"film", "music", "read"} } local str = cjson.encode(obj) ngx.say(str, "<br/>") -- 打印输出:{"hobby":["film","music","read"],"is_male":false,"name":"zhangsan","id":1}<br/> --字符串到lua对象 str = '{ "hobby":["film","music","read"],"is_male":false,"name":"zhangsan","id":1,"age":null}' local obj = cjson.decode(str) -- 字符串转换成一个对象 ngx.say(obj.age, "<br/>") -- 对象访问形式:obs.age ngx.say(obj.age == nil, "<br/>") -- 数组访问形式:hobby[1] ngx.say(obj.age == cjson.null, "<br/>") ngx.say(obj.hobby[1], "<br/>") --obj.obj str_obj = '{"hobby":{"name":"tinywan","age":24,"reader":"AMAI"},"is_male":false}' local obj_obj = cjson.decode(str_obj) ngx.say(obj_obj.is_male, "<br/>") ngx.say(obj_obj.hobby.name, "<br/>") ngx.say(obj_obj.hobby.age, "<br/>") ngx.say(obj_obj.hobby.reader, "<br/>") --循环引用 obj = { id = 1 } obj.obj = obj -- Cannot serialise, excessive nesting --ngx.say(cjson.encode(obj), "<br/>") local cjson_safe = require("cjson.safe") --nil ngx.say(cjson_safe.encode(obj), "<br/>") --[[ 打印结果: root@tinywan:/opt/openresty/nginx/conf/Lua# curl http://127.0.0.1/dcjson {"hobby":["film","music","read"],"is_male":false,"name":"zhangsan","id":1}<br/> nil null<br/> false<br/> true<br/> film<br/> false<br/> tinywan<br/> 24<br/> AMAI<br/> nil<br/> 经验分享: [1] lua对象到字符串 ,通过cjson.encode(obj)把所有的对象转换成了json格式,对象中的对象,被转换成了数组(数组作为 JSON 对象) [2] JSON 对象中的数组 { "name":"网站", "num":3, "sites":[ "Google", "Runoob", "Taobao" ] } [3] 嵌套 JSON 对象 myObj = { "name":"runoob", "alexa":10000, "sites": { "site1":"www.runoob.com", "site2":"m.runoob.com", "site3":"c.runoob.com" } } --]]
scenario_cfg={ } function scenario_cfg:reload() end function scenario_cfg:awake() scenario_cfg:reload() end function scenario_cfg:init() --print(scenario_cfg[100][1][1].next_step); --print_table(scenario_cfg) end function scenario_cfg:after_init() end function scenario_cfg:ready_execute() end function scenario_cfg:before_shut() end function scenario_cfg:shut() end scenario_cfg[100] = { [1] = { [1] = { next_scenario=100, next_status=1, next_step=2 }, [2] = { next_scenario=100, next_status=1, next_step=3 }, [3] = { next_scenario=100, next_status=1, next_step=4 }, [4] = { next_scenario=100, next_status=1, next_step=5 }, [5] = { next_scenario=100, next_status=1, next_step=6 }, [6] = { next_scenario=100, next_status=2, next_step=1 }, }, [2] = { [1] = { next_scenario=100, next_status=2, next_step=2 }, [2] = { next_scenario=100, next_status=2, next_step=3 }, [3] = { next_scenario=100, next_status=2, next_step=4 }, [4] = { next_scenario=100, next_status=2, next_step=5 }, [5] = { next_scenario=100, next_status=2, next_step=6 }, [6] = { next_scenario=100, next_status=2, next_step=7 }, [7] = { next_scenario=100, next_status=2, next_step=8 }, [8] = { next_scenario=100, next_status=2, next_step=9 }, [9] = { next_scenario=100, next_status=2, next_step=10 }, [10] = { next_scenario=100, next_status=2, next_step=11 }, [11] = { next_scenario=100, next_status=2, next_step=12 }, [12] = { next_scenario=100, next_status=2, next_step=13 }, [13] = { next_scenario=100, next_status=2, next_step=14 }, [14] = { next_scenario=100, next_status=2, next_step=15 }, [15] = { next_scenario=200, next_status=1, next_step=1 }, }, }
-------------------------------- -- @module ArmatureData -- @extend Ref -- @parent_module ccs -------------------------------- -- -- @function [parent=#ArmatureData] addBoneData -- @param self -- @param #ccs.BoneData boneData -- @return ArmatureData#ArmatureData self (return value: ccs.ArmatureData) -------------------------------- -- -- @function [parent=#ArmatureData] init -- @param self -- @return bool#bool ret (return value: bool) -------------------------------- -- -- @function [parent=#ArmatureData] getBoneData -- @param self -- @param #string boneName -- @return BoneData#BoneData ret (return value: ccs.BoneData) -------------------------------- -- -- @function [parent=#ArmatureData] create -- @param self -- @return ArmatureData#ArmatureData ret (return value: ccs.ArmatureData) -------------------------------- -- js ctor -- @function [parent=#ArmatureData] ArmatureData -- @param self -- @return ArmatureData#ArmatureData self (return value: ccs.ArmatureData) return nil
-- ========== THIS IS AN AUTOMATICALLY GENERATED FILE! ========== PlaceObj('StoryBit', { ActivationEffects = {}, Effects = {}, Enables = {}, Prerequisites = {}, ScriptDone = true, Text = T(118568947215, --[[StoryBit DomeLeaks_3_Aftermath Text]] "It is now safe to send a repair team to seal the crack in the dome and stop any further leaks. Do you have any special instructions?\n\n<effect>New fractures will cease to occur due to the major crack in the dome. Existing fractures will be fixed by drones automatically."), TextReadyForValidation = true, TextsDone = true, Trigger = "DustStormEnded", VoicedText = T(666675033619, --[[voice:narrator]] "The Dust Storm has settled but the damage to the Dome remains a constant threat to the Colonists. "), group = "Disasters", id = "DomeLeaks_3_Aftermath", PlaceObj('StoryBitParamNumber', { 'Name', "reapair_time_slow", 'Value', 24, }), PlaceObj('StoryBitParamNumber', { 'Name', "reapair_time_fast", 'Value', 8, }), PlaceObj('StoryBitReply', { 'Text', T(768819441128, --[[StoryBit DomeLeaks_3_Aftermath Text]] "Double check everything and make sure all safety protocols are followed."), 'OutcomeText', "custom", 'CustomOutcomeText', T(798232673864, --[[StoryBit DomeLeaks_3_Aftermath CustomOutcomeText]] "repairs will take <reapair_time_slow> hours"), }), PlaceObj('StoryBitOutcome', { 'Prerequisites', {}, 'Enables', { "DomeLeaks_4_SlowFix", }, 'Effects', {}, }), PlaceObj('StoryBitReply', { 'Text', T(358231154594, --[[StoryBit DomeLeaks_3_Aftermath Text]] "We need to fix the issue asap. Tell them to hurry up!"), 'OutcomeText', "custom", 'CustomOutcomeText', T(121583731094, --[[StoryBit DomeLeaks_3_Aftermath CustomOutcomeText]] "repairs will take <reapair_time_fast> hours, additional damage may be caused"), 'Comment', "fix parameter when effect is done", }), PlaceObj('StoryBitParamResource', { 'Name', "penalty", 'Value', 10000, 'Resource', "electronics", }), PlaceObj('StoryBitOutcome', { 'Prerequisites', {}, 'Weight', 80, 'Enables', { "DomeLeaks_5_QuickFix", }, 'Effects', {}, }), PlaceObj('StoryBitOutcome', { 'Prerequisites', {}, 'Weight', 20, 'VoicedText', T(509849610730, --[[voice:narrator]] "You observe as the repair team works on top of the Dome above your head. Suddenly a Colonist slips and tumbles down… Fortunately the safety rope stops his fall."), 'Text', T(271629919240, --[[StoryBit DomeLeaks_3_Aftermath Text]] "Rushing to get the job done and seal the crack in the dome has resulted in several accidents and missteps.\n\n<effect>The dome will need <electronics(penalty)> emergency maintenance"), 'Enables', { "DomeLeaks_5_QuickFix", }, 'Effects', { PlaceObj('SetBuildingBreakdownState', { 'RepairResource', "Electronics", 'RepairAmount', 10000, }), }, }), })
Mesh = "mge/models/Box.obj" --Add path to the model. Texture = "mge/textures/Box.png" --Add path to the texture --Specific Box Coding could go here.
local mod = ... local util = require 'tarantoolapp.util' local fio = require 'fio' -- local fun = require 'fun' local M = { avail = {} } function M.load(name) local r,e = pcall(require,'tarantoolapp.commands.'..name) if not r then if e:match('not found:') then return false else print(e) os.exit(255) end else return e end end function M.all() local pathinfo = util.pathinfo() for _,v in pairs(fio.glob(pathinfo.dir .. '/commands/*.lua')) do local name = v:match('/([^/]+)%.lua') -- print(name) local r,e = pcall(require, mod .. '.' .. name) if r then M.avail[name] = e else print("Command "..name.." is not loadable: "..e) end end return M.avail end function M.list() local arr = {} for k, v in pairs(M.all()) do table.insert(arr, k) end return arr end return M
return { version = "1.5", luaversion = "5.1", tiledversion = "1.7.2", orientation = "orthogonal", renderorder = "right-down", width = 26, height = 13, tilewidth = 8, tileheight = 8, nextlayerid = 17, nextobjectid = 787, properties = {}, tilesets = { { name = "sprite_sheet", firstgid = 1, tilewidth = 8, tileheight = 8, spacing = 0, margin = 0, columns = 10, image = "sprite_sheet.png", imagewidth = 84, imageheight = 48, objectalignment = "unspecified", tileoffset = { x = 0, y = 0 }, grid = { orientation = "orthogonal", width = 8, height = 8 }, properties = {}, wangsets = {}, tilecount = 60, tiles = {} }, { name = "sprite_sheet_2", firstgid = 61, tilewidth = 8, tileheight = 8, spacing = 0, margin = 0, columns = 10, image = "sprite_sheet.png", imagewidth = 84, imageheight = 48, objectalignment = "unspecified", tileoffset = { x = 0, y = 0 }, grid = { orientation = "orthogonal", width = 8, height = 8 }, properties = {}, wangsets = {}, tilecount = 60, tiles = {} } }, layers = { { type = "tilelayer", x = 0, y = 0, width = 26, height = 13, id = 12, name = "Layer 1", visible = true, opacity = 1, offsetx = 0, offsety = 0, parallaxx = 1, parallaxy = 1, properties = {}, encoding = "lua", data = { 2684354611, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 3221225523, 41, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 3221225513, 41, 52, 52, 52, 52, 52, 52, 52, 46, 46, 46, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 3221225513, 41, 52, 52, 52, 52, 52, 46, 46, 46, 52, 46, 46, 46, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 3221225513, 41, 52, 52, 52, 52, 46, 46, 52, 52, 52, 52, 52, 46, 46, 52, 52, 52, 46, 46, 46, 52, 52, 52, 52, 52, 3221225513, 41, 52, 52, 52, 46, 46, 52, 52, 52, 52, 52, 52, 52, 46, 46, 52, 46, 46, 52, 46, 46, 46, 46, 52, 52, 3221225513, 41, 52, 52, 46, 46, 52, 52, 52, 52, 52, 52, 52, 52, 52, 46, 46, 52, 52, 52, 52, 52, 52, 46, 46, 52, 3221225513, 41, 52, 52, 46, 52, 52, 52, 52, 52, 52, 52, 52, 52, 46, 46, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 3221225513, 41, 52, 52, 46, 52, 52, 52, 52, 52, 52, 52, 52, 46, 46, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 3221225513, 41, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 46, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 3221225513, 41, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 3221225513, 41, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 3221225513, 51, 1610612777, 1610612777, 1610612777, 1610612777, 1610612777, 1610612777, 1610612777, 1610612777, 1610612777, 1610612777, 1610612777, 1610612777, 1610612777, 1610612777, 1610612777, 1610612777, 1610612777, 1610612777, 1610612777, 1610612777, 1610612777, 1610612777, 1610612777, 1610612777, 1610612787 } }, { type = "objectgroup", draworder = "topdown", id = 15, name = "Level Transitions", visible = true, opacity = 1, offsetx = 0, offsety = 0, parallaxx = 1, parallaxy = 1, properties = {}, objects = {} }, { type = "objectgroup", draworder = "topdown", id = 9, name = "Hitboxes", visible = true, opacity = 1, offsetx = 0, offsety = 0, parallaxx = 1, parallaxy = 1, properties = {}, objects = { { id = 779, name = "", type = "", shape = "rectangle", x = 0, y = 0, width = 8, height = 104, rotation = 0, visible = true, properties = {} }, { id = 780, name = "", type = "", shape = "rectangle", x = 8, y = 96, width = 200, height = 8, rotation = 0, visible = true, properties = {} }, { id = 781, name = "", type = "", shape = "rectangle", x = 200, y = 0, width = 8, height = 96, rotation = 0, visible = true, properties = {} } } }, { type = "objectgroup", draworder = "topdown", id = 10, name = "Enemies", visible = true, opacity = 1, offsetx = 0, offsety = 0, parallaxx = 1, parallaxy = 1, properties = {}, objects = { { id = 785, name = "", type = "", shape = "rectangle", x = 96, y = 88, width = 8, height = 8, rotation = 0, visible = true, properties = { ["event"] = "chick", ["type"] = "egg" } } } }, { type = "objectgroup", draworder = "topdown", id = 14, name = "Items", visible = true, opacity = 1, offsetx = 0, offsety = 0, parallaxx = 1, parallaxy = 1, properties = {}, objects = {} }, { type = "objectgroup", draworder = "topdown", id = 11, name = "Player", visible = true, opacity = 1, offsetx = 0, offsety = 0, parallaxx = 1, parallaxy = 1, properties = {}, objects = { { id = 764, name = "", type = "", shape = "rectangle", x = 16, y = -8, width = 8, height = 8, rotation = 0, visible = true, properties = {} } } } } }
--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file -- distributed with this work for additional information -- regarding copyright ownership. The ASF licenses this file -- to you under the Apache License, Version 2.0 (the -- "License"); you may not use this file except in compliance -- with the License. You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- -- Copyright (C) 2015 - 2018, TBOOX Open Source Group. -- -- @author ruki -- @file remove.lua -- -- imports import("core.base.task") import("core.base.option") import("impl.package") import("impl.repository") import("impl.environment") -- show the given package info function main(requires) -- no requires? if not requires then return end -- enter environment environment.enter() -- pull all repositories first if not exists if not repository.pulled() then task.run("repo", {update = true}) end -- get extra info local extra = option.get("extra") local extrainfo = nil if extra then local tmpfile = os.tmpfile() .. ".lua" io.writefile(tmpfile, "{" .. extra .. "}") extrainfo = io.load(tmpfile) os.tryrm(tmpfile) end -- init requires extra info local requires_extra = {} if extrainfo then for _, require_str in ipairs(requires) do requires_extra[require_str] = extrainfo end end -- remove packages local packages = package.remove_packages(requires, {requires_extra = requires_extra}) for _, instance in ipairs(packages) do print("remove: %s%s ok!", instance:name(), instance:version_str() and ("-" .. instance:version_str()) or "") end -- leave environment environment.leave() end
local M = { } -- TODO: Setup Test menu function M.setup(override) end return M
-- hoi. v1.2 is here. More stuff. I skipped v1.1 xd -- I added alot now. Remember most of the credits goes to DMSpotato local UVG12 = Instance.new("ScreenGui") local Opener = Instance.new("Frame") local Open = Instance.new("TextButton") local hoi = Instance.new("Frame") local Closeframe = Instance.new("Frame") local Close = Instance.new("TextButton") local Username = Instance.new("TextBox") local VanDaPlayer = Instance.new("TextButton") local MG2 = Instance.new("TextButton") local Page2 = Instance.new("TextButton") local Credits = Instance.new("TextButton") local MG1 = Instance.new("TextButton") local PG2Frame = Instance.new("Frame") local Close2 = Instance.new("TextButton") local Mossberg = Instance.new("TextButton") local WoodChip = Instance.new("TextButton") local M9B = Instance.new("TextButton") local User2 = Instance.new("TextBox") local CreditsF = Instance.new("Frame") local DMCredits = Instance.new("TextLabel") local MEcredits = Instance.new("TextLabel") local PS = Instance.new("TextLabel") local Close3 = Instance.new("TextButton") UVG12.Name = "UVG12" UVG12.Parent = game.CoreGui Opener.Name = "Opener" Opener.Parent = UVG12 Opener.BackgroundColor3 = Color3.new(0, 0, 0) Opener.BackgroundTransparency = 0.5 Opener.Position = UDim2.new(0, 19, 0, 564) Opener.Size = UDim2.new(0, 224, 0, 40) Open.Name = "Open" Open.Parent = Opener Open.BackgroundColor3 = Color3.new(0, 0, 0) Open.BackgroundTransparency = 0.5 Open.Size = UDim2.new(0, 224, 0, 40) Open.Font = Enum.Font.SciFi Open.FontSize = Enum.FontSize.Size42 Open.Text = "Open" Open.TextColor3 = Color3.new(0, 1, 1) Open.TextSize = 42 hoi.Name = "hoi" hoi.Parent = UVG12 hoi.BackgroundColor3 = Color3.new(0, 0, 0) hoi.BackgroundTransparency = 0.5 hoi.Draggable = true hoi.Position = UDim2.new(0, 0, 0, 309) hoi.Size = UDim2.new(0, 345, 0, 197) hoi.Visible = false Closeframe.Name = "Closeframe" Closeframe.Parent = hoi Closeframe.BackgroundColor3 = Color3.new(1, 0, 0.0156863) Closeframe.Position = UDim2.new(0, 313, 0, 0) Closeframe.Size = UDim2.new(0, 30, 0, 26) Close.Name = "Close" Close.Parent = Closeframe Close.BackgroundColor3 = Color3.new(1, 0, 0.0156863) Close.Size = UDim2.new(0, 30, 0, 26) Close.Font = Enum.Font.SciFi Close.FontSize = Enum.FontSize.Size14 Close.Text = "X" Close.TextColor3 = Color3.new(1, 1, 1) Close.TextSize = 14 Close.TextStrokeTransparency = 5 Username.Name = "Username" Username.Parent = hoi Username.BackgroundColor3 = Color3.new(0, 0, 0) Username.BackgroundTransparency = 0.5 Username.Size = UDim2.new(0, 200, 0.0999999866, 24) Username.Font = Enum.Font.SciFi Username.FontSize = Enum.FontSize.Size18 Username.Text = "Username" Username.TextColor3 = Color3.new(0, 1, 1) Username.TextSize = 18 VanDaPlayer.Name = "VanDaPlayer" VanDaPlayer.Parent = hoi VanDaPlayer.BackgroundColor3 = Color3.new(0, 0, 0) VanDaPlayer.BackgroundTransparency = 0.5 VanDaPlayer.Position = UDim2.new(0.0199999996, 15, 0.00999999978, 71) VanDaPlayer.Size = UDim2.new(0, 150, 0, 26) VanDaPlayer.Font = Enum.Font.SciFi VanDaPlayer.FontSize = Enum.FontSize.Size14 VanDaPlayer.Text = "Van Player" VanDaPlayer.TextColor3 = Color3.new(0, 1, 1) VanDaPlayer.TextSize = 14 MG2.Name = "MG2" MG2.Parent = hoi MG2.BackgroundColor3 = Color3.new(0, 0, 0) MG2.BackgroundTransparency = 0.5 MG2.Position = UDim2.new(0.0199999996, 29, 0.00999999978, 149) MG2.Size = UDim2.new(0, 271, 0, 26) MG2.Font = Enum.Font.SciFi MG2.FontSize = Enum.FontSize.Size14 MG2.Text = "Mustard Gas (Mask Off) No name needed" MG2.TextColor3 = Color3.new(0, 1, 1) MG2.TextSize = 14 Page2.Name = "Page2" Page2.Parent = hoi Page2.BackgroundColor3 = Color3.new(0, 0, 0) Page2.BackgroundTransparency = 0.5 Page2.Position = UDim2.new(0.0199999996, 180, 0.00999999978, 71) Page2.Size = UDim2.new(0, 48, 0, 26) Page2.Font = Enum.Font.SciFi Page2.FontSize = Enum.FontSize.Size14 Page2.Text = "Page 2" Page2.TextColor3 = Color3.new(0, 1, 1) Page2.TextSize = 14 Credits.Name = "Credits" Credits.Parent = hoi Credits.BackgroundColor3 = Color3.new(0, 0, 0) Credits.BackgroundTransparency = 0.5 Credits.Position = UDim2.new(0.0199999996, 246, 0.00999999978, 71) Credits.Size = UDim2.new(0, 66, 0, 26) Credits.Font = Enum.Font.SciFi Credits.FontSize = Enum.FontSize.Size14 Credits.Text = "Credits" Credits.TextColor3 = Color3.new(0, 1, 1) Credits.TextSize = 14 MG1.Name = "MG1" MG1.Parent = hoi MG1.BackgroundColor3 = Color3.new(0, 0, 0) MG1.BackgroundTransparency = 0.5 MG1.Position = UDim2.new(0.0199999996, 29, 0.00999999978, 113) MG1.Size = UDim2.new(0, 271, 0, 26) MG1.Font = Enum.Font.SciFi MG1.FontSize = Enum.FontSize.Size14 MG1.Text = "Mustard Gas (Mask On) No name needed" MG1.TextColor3 = Color3.new(0, 1, 1) MG1.TextSize = 14 PG2Frame.Name = "PG2Frame" PG2Frame.Parent = UVG12 PG2Frame.BackgroundColor3 = Color3.new(0, 0, 0) PG2Frame.BackgroundTransparency = 0.5 PG2Frame.Position = UDim2.new(0, 0, 0, 314) PG2Frame.Size = UDim2.new(0, 340, 0, 192) PG2Frame.Visible = false Close2.Name = "Close2" Close2.Parent = PG2Frame Close2.BackgroundColor3 = Color3.new(1, 0, 0) Close2.Position = UDim2.new(0, 310, 0, 0) Close2.Size = UDim2.new(0, 30, 0, 20) Close2.Font = Enum.Font.SciFi Close2.FontSize = Enum.FontSize.Size24 Close2.Text = "X" Close2.TextColor3 = Color3.new(1, 1, 1) Close2.TextSize = 24 Mossberg.Name = "Mossberg" Mossberg.Parent = PG2Frame Mossberg.BackgroundColor3 = Color3.new(0, 0, 0) Mossberg.BackgroundTransparency = 0.5 Mossberg.Position = UDim2.new(0, 27, 0, 70) Mossberg.Size = UDim2.new(0, 143, 0, 26) Mossberg.Font = Enum.Font.SciFi Mossberg.FontSize = Enum.FontSize.Size18 Mossberg.Text = "Mossberg 500 BROKEN ATM" Mossberg.TextColor3 = Color3.new(0, 1, 1) Mossberg.TextSize = 15 WoodChip.Name = "WoodChip" WoodChip.Parent = PG2Frame WoodChip.BackgroundColor3 = Color3.new(0, 0, 0) WoodChip.BackgroundTransparency = 0.5 WoodChip.Position = UDim2.new(0, 53, 0, 118) WoodChip.Size = UDim2.new(0, 234, 0, 26) WoodChip.Font = Enum.Font.SciFi WoodChip.FontSize = Enum.FontSize.Size24 WoodChip.Text = "Wood chip. Needs name" WoodChip.TextColor3 = Color3.new(0, 1, 1) WoodChip.TextSize = 24 M9B.Name = "M9B" M9B.Parent = PG2Frame M9B.BackgroundColor3 = Color3.new(0, 0, 0) M9B.BackgroundTransparency = 0.5 M9B.Position = UDim2.new(0.0299999993, 170, 0, 70) M9B.Size = UDim2.new(0, 143, 0, 26) M9B.Font = Enum.Font.SciFi M9B.FontSize = Enum.FontSize.Size18 M9B.Text = "M9 Bayonet No Name" M9B.TextColor3 = Color3.new(0, 1, 1) M9B.TextSize = 15 User2.Parent = PG2Frame User2.BackgroundColor3 = Color3.new(0, 0, 0) User2.BackgroundTransparency = 0.5 User2.Size = UDim2.new(0, 200, 0, 50) User2.Font = Enum.Font.SciFi User2.FontSize = Enum.FontSize.Size24 User2.Text = "Username" User2.TextColor3 = Color3.new(0, 1, 1) User2.TextSize = 24 CreditsF.Name = "CreditsF" CreditsF.Parent = UVG12 CreditsF.BackgroundColor3 = Color3.new(0, 0, 0) CreditsF.BackgroundTransparency = 0.5 CreditsF.Position = UDim2.new(0, 0, 0, 312) CreditsF.Size = UDim2.new(0, 339, 0, 191) CreditsF.Visible = false DMCredits.Name = "DMCredits" DMCredits.Parent = CreditsF DMCredits.BackgroundColor3 = Color3.new(0, 0, 0) DMCredits.BackgroundTransparency = 0.5 DMCredits.Position = UDim2.new(0, 32, 0, 28) DMCredits.Size = UDim2.new(0, 275, 0, 24) DMCredits.Font = Enum.Font.SciFi DMCredits.FontSize = Enum.FontSize.Size18 DMCredits.Text = "Credits to DMSpotato for the scripts" DMCredits.TextColor3 = Color3.new(0, 1, 1) DMCredits.TextSize = 18 MEcredits.Name = "MEcredits" MEcredits.Parent = CreditsF MEcredits.BackgroundColor3 = Color3.new(0, 0, 0) MEcredits.BackgroundTransparency = 0.5 MEcredits.Position = UDim2.new(0, 18, 0, 70) MEcredits.Size = UDim2.new(0, 303, 0, 50) MEcredits.Font = Enum.Font.SciFi MEcredits.FontSize = Enum.FontSize.Size14 MEcredits.Text = "Credits to me (345678) Talha for making the gui" MEcredits.TextColor3 = Color3.new(0, 1, 1) MEcredits.TextSize = 14 PS.Name = "PS" PS.Parent = CreditsF PS.BackgroundColor3 = Color3.new(0, 0, 0) PS.BackgroundTransparency = 0.5 PS.Position = UDim2.new(0, 0, 0, 141) PS.Size = UDim2.new(0, 339, 0, 50) PS.Font = Enum.Font.SciFi PS.FontSize = Enum.FontSize.Size10 PS.Text = "P.S. If your doing a vid. Let me be on your vid. My discord is timberfag#6078" PS.TextColor3 = Color3.new(0, 1, 1) PS.TextSize = 10 Close3.Name = "Close3" Close3.Parent = CreditsF Close3.BackgroundColor3 = Color3.new(1, 0, 0) Close3.Position = UDim2.new(0, 314, 0, 0) Close3.Size = UDim2.new(0, 25, 0, 18) Close3.Font = Enum.Font.SciFi Close3.FontSize = Enum.FontSize.Size14 Close3.Text = "X" Close3.TextColor3 = Color3.new(1, 1, 1) Close3.TextSize = 14 Open.MouseButton1Click:connect(function() game.CoreGui.UVG12.hoi.Visible = true game.CoreGui.UVG12.Opener.Visible = false end) Close.MouseButton1Click:connect(function() game.CoreGui.UVG12.hoi.Visible = false game.CoreGui.UVG12.Opener.Visible = true end) Close2.MouseButton1Click:connect(function() game.CoreGui.UVG12.hoi.Visible = true game.CoreGui.UVG12.PG2Frame.Visible = false end) Close3.MouseButton1Click:connect(function() game.CoreGui.UVG12.hoi.Visible = true game.CoreGui.UVG12.CreditsF.Visible = false end) Credits.MouseButton1Click:connect(function() game.CoreGui.UVG12.hoi.Visible = false game.CoreGui.UVG12.CreditsF.Visible = true end) Page2.MouseButton1Click:connect(function() game.CoreGui.UVG12.hoi.Visible = false game.CoreGui.UVG12.PG2Frame.Visible = true end) MG1.MouseButton1Click:connect(function() --MUSTARD GAS BY DMS GasMask = true xd = Instance.new("Tool") xdd = Instance.new("Part") xddd = Instance.new("Part") xdddd = Instance.new("Part") xddddd = Instance.new("Smoke") xdddddd = Instance.new("Smoke") xddddddd = Instance.new("Smoke") xdddddddd = Instance.new("Part") xddddddddd = Instance.new("Part") xd0 = Instance.new("Part") xd.Name = "Mustard Gas Grenade" xd.Parent = game.Players.LocalPlayer.Backpack xdd.Parent = xd xdd.Material = Enum.Material.SmoothPlastic xdd.BrickColor = BrickColor.new("Deep orange") xdd.Position = Vector3.new(-9.08949184, 0.563135147, 33.200779) xdd.Rotation = Vector3.new(-0, 0, -90) xdd.CanCollide = false xdd.Shape = Enum.PartType.Cylinder xdd.Size = Vector3.new(0.26000011, 0.819999993, 1) xdd.CFrame = CFrame.new(-9.08949184, 0.563135147, 33.200779, 0, 1, 0, -1, 0, 0, 0, 0, 1) xdd.BackSurface = Enum.SurfaceType.SmoothNoOutlines xdd.BottomSurface = Enum.SurfaceType.SmoothNoOutlines xdd.FrontSurface = Enum.SurfaceType.SmoothNoOutlines xdd.LeftSurface = Enum.SurfaceType.SmoothNoOutlines xdd.RightSurface = Enum.SurfaceType.SmoothNoOutlines xdd.TopSurface = Enum.SurfaceType.SmoothNoOutlines xdd.Color = Color3.new(1, 0.686275, 0) xddd.Parent = xd xddd.Material = Enum.Material.SmoothPlastic xddd.BrickColor = BrickColor.new("Really black") xddd.Position = Vector3.new(-9.09000397, 0.615009904, 33.2000046) xddd.Rotation = Vector3.new(-0, 0, 90) xddd.CanCollide = false xddd.Shape = Enum.PartType.Cylinder xddd.Size = Vector3.new(1.21000016, 0.799999952, 1) xddd.CFrame = CFrame.new(-9.09000397, 0.615009904, 33.2000046, 0, -1, 0, 1, 0, 0, 0, 0, 1) xddd.BackSurface = Enum.SurfaceType.SmoothNoOutlines xddd.BottomSurface = Enum.SurfaceType.SmoothNoOutlines xddd.FrontSurface = Enum.SurfaceType.SmoothNoOutlines xddd.LeftSurface = Enum.SurfaceType.SmoothNoOutlines xddd.RightSurface = Enum.SurfaceType.SmoothNoOutlines xddd.TopSurface = Enum.SurfaceType.SmoothNoOutlines xddd.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) xdddd.Parent = xd xdddd.Material = Enum.Material.SmoothPlastic xdddd.BrickColor = BrickColor.new("Dark stone grey") xdddd.Position = Vector3.new(-9.09270954, 1.33200657, 33.2021408) xdddd.CanCollide = false xdddd.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) xdddd.CFrame = CFrame.new(-9.09270954, 1.33200657, 33.2021408, 1, 0, 0, 0, 1, 0, 0, 0, 1) xdddd.BackSurface = Enum.SurfaceType.SmoothNoOutlines xdddd.BottomSurface = Enum.SurfaceType.SmoothNoOutlines xdddd.FrontSurface = Enum.SurfaceType.SmoothNoOutlines xdddd.LeftSurface = Enum.SurfaceType.SmoothNoOutlines xdddd.RightSurface = Enum.SurfaceType.SmoothNoOutlines xdddd.TopSurface = Enum.SurfaceType.SmoothNoOutlines xdddd.Color = Color3.new(0.388235, 0.372549, 0.384314) xddddd.Parent = xdddd xddddd.Color = Color3.new(0.756863, 0.584314, 0.0588235) xddddd.Opacity = 1 xddddd.RiseVelocity = 4 xdddddd.Parent = xdddd xdddddd.Color = Color3.new(0.756863, 0.584314, 0.0588235) xdddddd.Opacity = 1 xdddddd.RiseVelocity = 4 xddddddd.Parent = xdddd xddddddd.Color = Color3.new(0.756863, 0.584314, 0.0588235) xddddddd.Opacity = 1 xddddddd.RiseVelocity = 4 xdddddddd.Parent = xd xdddddddd.Material = Enum.Material.SmoothPlastic xdddddddd.BrickColor = BrickColor.new("Deep orange") xdddddddd.Position = Vector3.new(-9.08949184, 0.899091303, 33.200779) xdddddddd.Rotation = Vector3.new(-0, 0, 90) xdddddddd.CanCollide = false xdddddddd.Shape = Enum.PartType.Cylinder xdddddddd.Size = Vector3.new(0.200000003, 0.819999993, 1) xdddddddd.CFrame = CFrame.new(-9.08949184, 0.899091303, 33.200779, 0, -1, 0, 1, 0, 0, 0, 0, 1) xdddddddd.BackSurface = Enum.SurfaceType.SmoothNoOutlines xdddddddd.BottomSurface = Enum.SurfaceType.SmoothNoOutlines xdddddddd.FrontSurface = Enum.SurfaceType.SmoothNoOutlines xdddddddd.LeftSurface = Enum.SurfaceType.SmoothNoOutlines xdddddddd.RightSurface = Enum.SurfaceType.SmoothNoOutlines xdddddddd.TopSurface = Enum.SurfaceType.SmoothNoOutlines xdddddddd.Color = Color3.new(1, 0.686275, 0) xddddddddd.Parent = xd xddddddddd.Material = Enum.Material.SmoothPlastic xddddddddd.BrickColor = BrickColor.new("Black") xddddddddd.Position = Vector3.new(-9.09270954, 1.26311076, 33.2003593) xddddddddd.Rotation = Vector3.new(-0, 0, 90) xddddddddd.CanCollide = false xddddddddd.Shape = Enum.PartType.Cylinder xddddddddd.Size = Vector3.new(0.200000003, 0.799999952, 0.540000021) xddddddddd.CFrame = CFrame.new(-9.09270954, 1.26311076, 33.2003593, 0, -1, 0, 1, 0, 0, 0, 0, 1) xddddddddd.BackSurface = Enum.SurfaceType.SmoothNoOutlines xddddddddd.BottomSurface = Enum.SurfaceType.SmoothNoOutlines xddddddddd.FrontSurface = Enum.SurfaceType.SmoothNoOutlines xddddddddd.LeftSurface = Enum.SurfaceType.SmoothNoOutlines xddddddddd.RightSurface = Enum.SurfaceType.SmoothNoOutlines xddddddddd.TopSurface = Enum.SurfaceType.SmoothNoOutlines xddddddddd.Color = Color3.new(0.105882, 0.164706, 0.207843) xd0.Name = "Handle" xd0.Parent = xd xd0.BrickColor = BrickColor.new("Earth green") xd0.Transparency = 1 xd0.Position = Vector3.new(-9.11234188, 0.5, 33.1982155) xd0.Rotation = Vector3.new(0, 90, 0) xd0.CanCollide = false xd0.FormFactor = Enum.FormFactor.Custom xd0.Size = Vector3.new(0.800000131, 0.920000255, 0.799998164) xd0.CFrame = CFrame.new(-9.11234188, 0.5, 33.1982155, -0, 0, 1, 0, 1, 0, -1, 0, 0) xd0.BottomSurface = Enum.SurfaceType.Smooth xd0.TopSurface = Enum.SurfaceType.Smooth xd0.Color = Color3.new(0.152941, 0.27451, 0.176471) KILLPART = Instance.new("Part") KILLPART.Size = Vector3.new(16,16,16) KILLPART.Name = "TOUCHPART" KILLPART.Anchored = true KILLPART.BrickColor = BrickColor.new("Black") KILLPART.Transparency = 1 KILLPART.CanCollide = false KILLPART.CFrame = xd0.CFrame KILLPART.Parent = workspace KILLPART.Color = Color3.new(0.105882, 0.164706, 0.207843) Gas = Instance.new("Sound") Gas.Parent = xd0 Gas.Volume = 0.8 Gas.Looped = true Gas.SoundId = "http://www.roblox.com/asset/?id=137065982" Gas.Pitch = 1 Gas.Name = "Sound" ison = false function Weld(x,y) local W = Instance.new("Weld") W.Part0 = x W.Part1 = y local CJ = CFrame.new(x.Position) local C0 = x.CFrame:inverse()*CJ local C1 = y.CFrame:inverse()*CJ W.C0 = C0 W.C1 = C1 W.Parent = x end function Get(A) if A.className == "Part" then Weld(xd.Handle, A) A.Anchored = false A.CanCollide = false else local C = A:GetChildren() for i=1, #C do Get(C[i]) end end end function Finale() Get(xd) end function XDdd () ison = true end function Xddd () ison = false end function lol () xdg = true Gas.Playing = true KILLPART.Parent = workspace while xdg == true do wait() KILLPART.CFrame = xd0.CFrame end end function Posijew () KILLPART.CFrame = xd0.CFrame end function loln () KILLPART.Parent = game Gas.Playing = false xdg = false end xdg = false xd.Equipped:connect(XDdd) xd.Unequipped:connect(Xddd) xd.Equipped:connect(Finale) xd.Equipped:connect(lol) xd.Unequipped:connect(loln) xd.Unequipped:connect(Finale) Finale() function Kill (Part) for i,v in pairs(Part.Parent:GetChildren()) do if v:IsA("Humanoid") and v.Parent.Name ~= game.Players.LocalPlayer.Name then v:Destroy() end end end KILLPART.Touched:connect(Kill) if GasMask == true then o1 = Instance.new("Model") o2 = Instance.new("Part") o3 = Instance.new("SpecialMesh") o4 = Instance.new("Part") o5 = Instance.new("Part") o6 = Instance.new("Part") o7 = Instance.new("SpecialMesh") o8 = Instance.new("Part") o9 = Instance.new("Part") o10 = Instance.new("SpecialMesh") o11 = Instance.new("Part") o12 = Instance.new("Part") o13 = Instance.new("SpecialMesh") o14 = Instance.new("Part") o15 = Instance.new("Part") o16 = Instance.new("Part") o17 = Instance.new("Part") o1.Name = "MODEL" o2.Name = "Middle" o2.Parent = o1 o2.BrickColor = BrickColor.new("Pastel brown") o2.Transparency = 1 o2.Position = Vector3.new(-13.5356159, 3.71991396, 50.2649117) o2.Rotation = Vector3.new(-5.66336393, -89.7626114, -5.66246414) o2.Anchored = true o2.FormFactor = Enum.FormFactor.Custom o2.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o2.CFrame = CFrame.new(-13.5356159, 3.71991396, 50.2649117, 1.75646369e-006, 1.74156298e-007, -0.999991417, -1.04150445e-007, 1, 1.60883403e-007, 0.999999762, 9.62157287e-008, 1.6223396e-006) o2.BottomSurface = Enum.SurfaceType.Smooth o2.TopSurface = Enum.SurfaceType.Smooth o2.Color = Color3.new(1, 0.8, 0.6) o3.Parent = o2 o3.Scale = Vector3.new(6.25, 6.25, 6.25) o3.MeshType = Enum.MeshType.FileMesh o4.Name = "Lense 1" o4.Parent = o1 o4.Material = Enum.Material.Metal o4.Transparency = 0.050000011920929 o4.Position = Vector3.new(-12.900528, 3.77991295, 50.5080605) o4.Rotation = Vector3.new(-180, 20.6807137, -179.999985) o4.Anchored = true o4.CanCollide = false o4.FormFactor = Enum.FormFactor.Custom o4.Shape = Enum.PartType.Cylinder o4.Size = Vector3.new(0.200000003, 0.320000023, 0.939999998) o4.CFrame = CFrame.new(-12.900528, 3.77991295, 50.5080605, -0.935553849, 3.06141374e-007, 0.353159934, 3.19927466e-007, 1, 2.01617603e-008, -0.353163034, 1.1997561e-007, -0.935561478) o4.BackSurface = Enum.SurfaceType.SmoothNoOutlines o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines o5.Name = "Lense2" o5.Parent = o1 o5.Material = Enum.Material.Metal o5.Transparency = 0.050000011920929 o5.Position = Vector3.new(-12.8961124, 3.77492094, 50.0302277) o5.Rotation = Vector3.new(-180, -23.8323021, -179.999985) o5.Anchored = true o5.CanCollide = false o5.FormFactor = Enum.FormFactor.Custom o5.Shape = Enum.PartType.Cylinder o5.Size = Vector3.new(0.200000003, 0.330000043, 0.99000001) o5.CFrame = CFrame.new(-12.8961124, 3.77492094, 50.0302277, -0.914722979, 2.85652249e-007, -0.404061079, 2.36339361e-007, 1, 1.37493373e-007, 0.404064298, 2.15865228e-008, -0.914730668) o5.BackSurface = Enum.SurfaceType.SmoothNoOutlines o5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o5.RightSurface = Enum.SurfaceType.SmoothNoOutlines o5.TopSurface = Enum.SurfaceType.SmoothNoOutlines o6.Name = "Handle" o6.Parent = o1 o6.Material = Enum.Material.Metal o6.BrickColor = BrickColor.new("Really black") o6.Position = Vector3.new(-12.8799381, 3.69992495, 50.2599869) o6.Rotation = Vector3.new(-90, 9.97842108e-006, -89.9999008) o6.Anchored = true o6.CanCollide = false o6.FormFactor = Enum.FormFactor.Plate o6.Size = Vector3.new(1, 0.400000006, 1) o6.CFrame = CFrame.new(-12.8799381, 3.69992495, 50.2599869, 1.75646369e-006, 0.999991417, 1.74156298e-007, -1.04150445e-007, -1.60883403e-007, 1, 0.999999762, -1.6223396e-006, 9.62157287e-008) o6.BottomSurface = Enum.SurfaceType.Weld o6.TopSurface = Enum.SurfaceType.Smooth o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o7.Parent = o6 o7.MeshId = "http://www.roblox.com/asset/?id=5158270" o7.Scale = Vector3.new(0.140000001, 0.170000002, 0.100000001) o7.MeshType = Enum.MeshType.FileMesh o8.Name = "Straps" o8.Parent = o1 o8.Material = Enum.Material.Fabric o8.BrickColor = BrickColor.new("Really black") o8.Position = Vector3.new(-13.5199518, 3.48991394, 50.2599869) o8.Rotation = Vector3.new(5.96738209e-006, 0.000100637961, 89.9999924) o8.Anchored = true o8.CanCollide = false o8.FormFactor = Enum.FormFactor.Custom o8.Shape = Enum.PartType.Cylinder o8.Size = Vector3.new(0.200000003, 1.49000013, 1.25999999) o8.CFrame = CFrame.new(-13.5199518, 3.48991394, 50.2599869, 1.44325043e-007, -0.999991238, 1.75646369e-006, 0.999999881, 1.31081052e-007, -1.04150445e-007, 9.48765404e-008, 1.6242019e-006, 0.999999762) o8.BackSurface = Enum.SurfaceType.SmoothNoOutlines o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o8.RightSurface = Enum.SurfaceType.SmoothNoOutlines o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o9.Name = "Ring2" o9.Parent = o1 o9.BrickColor = BrickColor.new("Dark stone grey") o9.Position = Vector3.new(-12.8061161, 3.77991295, 49.9993477) o9.Rotation = Vector3.new(-1.48261315e-005, -66.1664276, -2.4695395e-005) o9.Anchored = true o9.CanCollide = false o9.FormFactor = Enum.FormFactor.Custom o9.Size = Vector3.new(0.600000024, 0.200000003, 1) o9.CFrame = CFrame.new(-12.8061161, 3.77991295, 49.9993477, 0.404059976, 1.74156298e-007, -0.914723039, -1.6136562e-007, 1, 1.0455733e-007, 0.914730787, 9.62157287e-008, 0.404063195) o9.BackSurface = Enum.SurfaceType.SmoothNoOutlines o9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o9.RightSurface = Enum.SurfaceType.SmoothNoOutlines o9.TopSurface = Enum.SurfaceType.SmoothNoOutlines o9.Color = Color3.new(0.388235, 0.372549, 0.384314) o10.Parent = o9 o10.MeshId = "http://www.roblox.com/asset/?id=3270017" o10.Scale = Vector3.new(0.340000004, 0.300000012, 0.300000012) o10.MeshType = Enum.MeshType.FileMesh o11.Name = "Straps" o11.Parent = o1 o11.Material = Enum.Material.Fabric o11.BrickColor = BrickColor.new("Really black") o11.Position = Vector3.new(-13.5199518, 4.00991392, 50.2599869) o11.Rotation = Vector3.new(5.96738209e-006, 0.000100637961, 89.9999924) o11.Anchored = true o11.CanCollide = false o11.FormFactor = Enum.FormFactor.Custom o11.Shape = Enum.PartType.Cylinder o11.Size = Vector3.new(0.200000003, 1.49000013, 1.25999999) o11.CFrame = CFrame.new(-13.5199518, 4.00991392, 50.2599869, 1.44325043e-007, -0.999991238, 1.75646369e-006, 0.999999881, 1.31081052e-007, -1.04150445e-007, 9.48765404e-008, 1.6242019e-006, 0.999999762) o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines o11.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o12.Name = "Ring1" o12.Parent = o1 o12.BrickColor = BrickColor.new("Dark stone grey") o12.Position = Vector3.new(-12.7999144, 3.76992106, 50.5299988) o12.Rotation = Vector3.new(-179.999969, -69.3177338, -179.999985) o12.Anchored = true o12.CanCollide = false o12.FormFactor = Enum.FormFactor.Custom o12.Size = Vector3.new(0.600000024, 0.200000003, 1) o12.CFrame = CFrame.new(-12.7999144, 3.76992106, 50.5299988, -0.353160918, 1.74156298e-007, -0.935553372, -4.22077129e-008, 1, 1.87534141e-007, 0.935561061, 9.62157287e-008, -0.353164017) o12.BackSurface = Enum.SurfaceType.SmoothNoOutlines o12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o12.RightSurface = Enum.SurfaceType.SmoothNoOutlines o12.TopSurface = Enum.SurfaceType.SmoothNoOutlines o12.Color = Color3.new(0.388235, 0.372549, 0.384314) o13.Parent = o12 o13.MeshId = "http://www.roblox.com/asset/?id=3270017" o13.Scale = Vector3.new(0.340000004, 0.300000012, 0.300000012) o13.MeshType = Enum.MeshType.FileMesh o14.Name = "Breather" o14.Parent = o1 o14.Material = Enum.Material.Metal o14.BrickColor = BrickColor.new("Really black") o14.Position = Vector3.new(-12.7419596, 3.69627094, 50.2550011) o14.Rotation = Vector3.new(5.96738209e-006, 0.000100637961, -39.5510521) o14.Anchored = true o14.CanCollide = false o14.FormFactor = Enum.FormFactor.Custom o14.Shape = Enum.PartType.Cylinder o14.Size = Vector3.new(0.600000024, 0.340000093, 0.25000003) o14.CFrame = CFrame.new(-12.7419596, 3.69627094, 50.2550011, 0.771050453, 0.636759639, 1.75646369e-006, -0.636765182, 0.771057129, -1.04150445e-007, -1.31184265e-006, -9.5997575e-007, 0.999999762) o14.BackSurface = Enum.SurfaceType.SmoothNoOutlines o14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o14.RightSurface = Enum.SurfaceType.SmoothNoOutlines o14.TopSurface = Enum.SurfaceType.SmoothNoOutlines o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o15.Name = "Breather" o15.Parent = o1 o15.Material = Enum.Material.Metal o15.BrickColor = BrickColor.new("Really black") o15.Position = Vector3.new(-12.5337915, 3.51434994, 50.2550011) o15.Rotation = Vector3.new(5.96738209e-006, 0.000100637961, -39.5510521) o15.Anchored = true o15.CanCollide = false o15.FormFactor = Enum.FormFactor.Custom o15.Shape = Enum.PartType.Cylinder o15.Size = Vector3.new(0.200000003, 0.340000093, 0.350000024) o15.CFrame = CFrame.new(-12.5337915, 3.51434994, 50.2550011, 0.771050453, 0.636759639, 1.75646369e-006, -0.636765182, 0.771057129, -1.04150445e-007, -1.31184265e-006, -9.5997575e-007, 0.999999762) o15.BackSurface = Enum.SurfaceType.SmoothNoOutlines o15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o15.RightSurface = Enum.SurfaceType.SmoothNoOutlines o15.TopSurface = Enum.SurfaceType.SmoothNoOutlines o15.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o16.Name = "Breather" o16.Parent = o1 o16.Material = Enum.Material.Metal o16.BrickColor = BrickColor.new("Really black") o16.Position = Vector3.new(-12.7920103, 3.39220095, 49.784256) o16.Rotation = Vector3.new(10.8745985, 48.2677155, -21.6106548) o16.Anchored = true o16.CanCollide = false o16.FormFactor = Enum.FormFactor.Custom o16.Shape = Enum.PartType.Cylinder o16.Size = Vector3.new(0.230000019, 0.540000081, 0.75) o16.CFrame = CFrame.new(-12.7920103, 3.39220095, 49.784256, 0.618847609, 0.24515225, 0.746263206, -0.230788618, 0.96486491, -0.125580132, -0.75083673, -0.0945150182, 0.653688967) o16.BackSurface = Enum.SurfaceType.SmoothNoOutlines o16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o16.RightSurface = Enum.SurfaceType.SmoothNoOutlines o16.TopSurface = Enum.SurfaceType.SmoothNoOutlines o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o17.Name = "Breather" o17.Parent = o1 o17.Material = Enum.Material.Metal o17.BrickColor = BrickColor.new("Really black") o17.Position = Vector3.new(-12.8723783, 3.42192006, 49.8816109) o17.Rotation = Vector3.new(10.8745985, 48.2677155, -21.6106548) o17.Anchored = true o17.CanCollide = false o17.FormFactor = Enum.FormFactor.Custom o17.Shape = Enum.PartType.Cylinder o17.Size = Vector3.new(0.370000005, 0.540000081, 0.310000002) o17.CFrame = CFrame.new(-12.8723783, 3.42192006, 49.8816109, 0.618847609, 0.24515225, 0.746263206, -0.230788618, 0.96486491, -0.125580132, -0.75083673, -0.0945150182, 0.653688967) o17.BackSurface = Enum.SurfaceType.SmoothNoOutlines o17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o17.RightSurface = Enum.SurfaceType.SmoothNoOutlines o17.TopSurface = Enum.SurfaceType.SmoothNoOutlines o17.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) function onTouched(hit) local d = hit.Parent:GetChildren() for i=1, #d do if (d[i].className == "Hat") then d[i]:remove() end end if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent:findFirstChild("Face") == nil then local g = o1: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 g.Middle.Transparency = 1 end local Y = Instance.new("Weld") Y.Part0 = hit.Parent.Head 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 h[i].Anchored = false h[i].CanCollide = false end end end onTouched(game.Players.LocalPlayer.Character.Head) end end) MG2.MouseButton1Click:connect(function() --MUSTARD GAS BY DMS GasMask = false xd = Instance.new("Tool") xdd = Instance.new("Part") xddd = Instance.new("Part") xdddd = Instance.new("Part") xddddd = Instance.new("Smoke") xdddddd = Instance.new("Smoke") xddddddd = Instance.new("Smoke") xdddddddd = Instance.new("Part") xddddddddd = Instance.new("Part") xd0 = Instance.new("Part") xd.Name = "Mustard Gas Grenade" xd.Parent = game.Players.LocalPlayer.Backpack xdd.Parent = xd xdd.Material = Enum.Material.SmoothPlastic xdd.BrickColor = BrickColor.new("Deep orange") xdd.Position = Vector3.new(-9.08949184, 0.563135147, 33.200779) xdd.Rotation = Vector3.new(-0, 0, -90) xdd.CanCollide = false xdd.Shape = Enum.PartType.Cylinder xdd.Size = Vector3.new(0.26000011, 0.819999993, 1) xdd.CFrame = CFrame.new(-9.08949184, 0.563135147, 33.200779, 0, 1, 0, -1, 0, 0, 0, 0, 1) xdd.BackSurface = Enum.SurfaceType.SmoothNoOutlines xdd.BottomSurface = Enum.SurfaceType.SmoothNoOutlines xdd.FrontSurface = Enum.SurfaceType.SmoothNoOutlines xdd.LeftSurface = Enum.SurfaceType.SmoothNoOutlines xdd.RightSurface = Enum.SurfaceType.SmoothNoOutlines xdd.TopSurface = Enum.SurfaceType.SmoothNoOutlines xdd.Color = Color3.new(1, 0.686275, 0) xddd.Parent = xd xddd.Material = Enum.Material.SmoothPlastic xddd.BrickColor = BrickColor.new("Really black") xddd.Position = Vector3.new(-9.09000397, 0.615009904, 33.2000046) xddd.Rotation = Vector3.new(-0, 0, 90) xddd.CanCollide = false xddd.Shape = Enum.PartType.Cylinder xddd.Size = Vector3.new(1.21000016, 0.799999952, 1) xddd.CFrame = CFrame.new(-9.09000397, 0.615009904, 33.2000046, 0, -1, 0, 1, 0, 0, 0, 0, 1) xddd.BackSurface = Enum.SurfaceType.SmoothNoOutlines xddd.BottomSurface = Enum.SurfaceType.SmoothNoOutlines xddd.FrontSurface = Enum.SurfaceType.SmoothNoOutlines xddd.LeftSurface = Enum.SurfaceType.SmoothNoOutlines xddd.RightSurface = Enum.SurfaceType.SmoothNoOutlines xddd.TopSurface = Enum.SurfaceType.SmoothNoOutlines xddd.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) xdddd.Parent = xd xdddd.Material = Enum.Material.SmoothPlastic xdddd.BrickColor = BrickColor.new("Dark stone grey") xdddd.Position = Vector3.new(-9.09270954, 1.33200657, 33.2021408) xdddd.CanCollide = false xdddd.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) xdddd.CFrame = CFrame.new(-9.09270954, 1.33200657, 33.2021408, 1, 0, 0, 0, 1, 0, 0, 0, 1) xdddd.BackSurface = Enum.SurfaceType.SmoothNoOutlines xdddd.BottomSurface = Enum.SurfaceType.SmoothNoOutlines xdddd.FrontSurface = Enum.SurfaceType.SmoothNoOutlines xdddd.LeftSurface = Enum.SurfaceType.SmoothNoOutlines xdddd.RightSurface = Enum.SurfaceType.SmoothNoOutlines xdddd.TopSurface = Enum.SurfaceType.SmoothNoOutlines xdddd.Color = Color3.new(0.388235, 0.372549, 0.384314) xddddd.Parent = xdddd xddddd.Color = Color3.new(0.756863, 0.584314, 0.0588235) xddddd.Opacity = 1 xddddd.RiseVelocity = 4 xdddddd.Parent = xdddd xdddddd.Color = Color3.new(0.756863, 0.584314, 0.0588235) xdddddd.Opacity = 1 xdddddd.RiseVelocity = 4 xddddddd.Parent = xdddd xddddddd.Color = Color3.new(0.756863, 0.584314, 0.0588235) xddddddd.Opacity = 1 xddddddd.RiseVelocity = 4 xdddddddd.Parent = xd xdddddddd.Material = Enum.Material.SmoothPlastic xdddddddd.BrickColor = BrickColor.new("Deep orange") xdddddddd.Position = Vector3.new(-9.08949184, 0.899091303, 33.200779) xdddddddd.Rotation = Vector3.new(-0, 0, 90) xdddddddd.CanCollide = false xdddddddd.Shape = Enum.PartType.Cylinder xdddddddd.Size = Vector3.new(0.200000003, 0.819999993, 1) xdddddddd.CFrame = CFrame.new(-9.08949184, 0.899091303, 33.200779, 0, -1, 0, 1, 0, 0, 0, 0, 1) xdddddddd.BackSurface = Enum.SurfaceType.SmoothNoOutlines xdddddddd.BottomSurface = Enum.SurfaceType.SmoothNoOutlines xdddddddd.FrontSurface = Enum.SurfaceType.SmoothNoOutlines xdddddddd.LeftSurface = Enum.SurfaceType.SmoothNoOutlines xdddddddd.RightSurface = Enum.SurfaceType.SmoothNoOutlines xdddddddd.TopSurface = Enum.SurfaceType.SmoothNoOutlines xdddddddd.Color = Color3.new(1, 0.686275, 0) xddddddddd.Parent = xd xddddddddd.Material = Enum.Material.SmoothPlastic xddddddddd.BrickColor = BrickColor.new("Black") xddddddddd.Position = Vector3.new(-9.09270954, 1.26311076, 33.2003593) xddddddddd.Rotation = Vector3.new(-0, 0, 90) xddddddddd.CanCollide = false xddddddddd.Shape = Enum.PartType.Cylinder xddddddddd.Size = Vector3.new(0.200000003, 0.799999952, 0.540000021) xddddddddd.CFrame = CFrame.new(-9.09270954, 1.26311076, 33.2003593, 0, -1, 0, 1, 0, 0, 0, 0, 1) xddddddddd.BackSurface = Enum.SurfaceType.SmoothNoOutlines xddddddddd.BottomSurface = Enum.SurfaceType.SmoothNoOutlines xddddddddd.FrontSurface = Enum.SurfaceType.SmoothNoOutlines xddddddddd.LeftSurface = Enum.SurfaceType.SmoothNoOutlines xddddddddd.RightSurface = Enum.SurfaceType.SmoothNoOutlines xddddddddd.TopSurface = Enum.SurfaceType.SmoothNoOutlines xddddddddd.Color = Color3.new(0.105882, 0.164706, 0.207843) xd0.Name = "Handle" xd0.Parent = xd xd0.BrickColor = BrickColor.new("Earth green") xd0.Transparency = 1 xd0.Position = Vector3.new(-9.11234188, 0.5, 33.1982155) xd0.Rotation = Vector3.new(0, 90, 0) xd0.CanCollide = false xd0.FormFactor = Enum.FormFactor.Custom xd0.Size = Vector3.new(0.800000131, 0.920000255, 0.799998164) xd0.CFrame = CFrame.new(-9.11234188, 0.5, 33.1982155, -0, 0, 1, 0, 1, 0, -1, 0, 0) xd0.BottomSurface = Enum.SurfaceType.Smooth xd0.TopSurface = Enum.SurfaceType.Smooth xd0.Color = Color3.new(0.152941, 0.27451, 0.176471) KILLPART = Instance.new("Part") KILLPART.Size = Vector3.new(16,16,16) KILLPART.Name = "TOUCHPART" KILLPART.Anchored = true KILLPART.BrickColor = BrickColor.new("Black") KILLPART.Transparency = 1 KILLPART.CanCollide = false KILLPART.CFrame = xd0.CFrame KILLPART.Parent = workspace KILLPART.Color = Color3.new(0.105882, 0.164706, 0.207843) Gas = Instance.new("Sound") Gas.Parent = xd0 Gas.Volume = 0.8 Gas.Looped = true Gas.SoundId = "http://www.roblox.com/asset/?id=137065982" Gas.Pitch = 1 Gas.Name = "Sound" ison = false function Weld(x,y) local W = Instance.new("Weld") W.Part0 = x W.Part1 = y local CJ = CFrame.new(x.Position) local C0 = x.CFrame:inverse()*CJ local C1 = y.CFrame:inverse()*CJ W.C0 = C0 W.C1 = C1 W.Parent = x end function Get(A) if A.className == "Part" then Weld(xd.Handle, A) A.Anchored = false A.CanCollide = false else local C = A:GetChildren() for i=1, #C do Get(C[i]) end end end function Finale() Get(xd) end function XDdd () ison = true end function Xddd () ison = false end function lol () xdg = true Gas.Playing = true KILLPART.Parent = workspace while xdg == true do wait() KILLPART.CFrame = xd0.CFrame end end function Posijew () KILLPART.CFrame = xd0.CFrame end function loln () KILLPART.Parent = game Gas.Playing = false xdg = false end xdg = false xd.Equipped:connect(XDdd) xd.Unequipped:connect(Xddd) xd.Equipped:connect(Finale) xd.Equipped:connect(lol) xd.Unequipped:connect(loln) xd.Unequipped:connect(Finale) Finale() function Kill (Part) for i,v in pairs(Part.Parent:GetChildren()) do if v:IsA("Humanoid") and v.Parent.Name ~= game.Players.LocalPlayer.Name then v:Destroy() end end end KILLPART.Touched:connect(Kill) if GasMask == true then o1 = Instance.new("Model") o2 = Instance.new("Part") o3 = Instance.new("SpecialMesh") o4 = Instance.new("Part") o5 = Instance.new("Part") o6 = Instance.new("Part") o7 = Instance.new("SpecialMesh") o8 = Instance.new("Part") o9 = Instance.new("Part") o10 = Instance.new("SpecialMesh") o11 = Instance.new("Part") o12 = Instance.new("Part") o13 = Instance.new("SpecialMesh") o14 = Instance.new("Part") o15 = Instance.new("Part") o16 = Instance.new("Part") o17 = Instance.new("Part") o1.Name = "MODEL" o2.Name = "Middle" o2.Parent = o1 o2.BrickColor = BrickColor.new("Pastel brown") o2.Transparency = 1 o2.Position = Vector3.new(-13.5356159, 3.71991396, 50.2649117) o2.Rotation = Vector3.new(-5.66336393, -89.7626114, -5.66246414) o2.Anchored = true o2.FormFactor = Enum.FormFactor.Custom o2.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o2.CFrame = CFrame.new(-13.5356159, 3.71991396, 50.2649117, 1.75646369e-006, 1.74156298e-007, -0.999991417, -1.04150445e-007, 1, 1.60883403e-007, 0.999999762, 9.62157287e-008, 1.6223396e-006) o2.BottomSurface = Enum.SurfaceType.Smooth o2.TopSurface = Enum.SurfaceType.Smooth o2.Color = Color3.new(1, 0.8, 0.6) o3.Parent = o2 o3.Scale = Vector3.new(6.25, 6.25, 6.25) o3.MeshType = Enum.MeshType.FileMesh o4.Name = "Lense 1" o4.Parent = o1 o4.Material = Enum.Material.Metal o4.Transparency = 0.050000011920929 o4.Position = Vector3.new(-12.900528, 3.77991295, 50.5080605) o4.Rotation = Vector3.new(-180, 20.6807137, -179.999985) o4.Anchored = true o4.CanCollide = false o4.FormFactor = Enum.FormFactor.Custom o4.Shape = Enum.PartType.Cylinder o4.Size = Vector3.new(0.200000003, 0.320000023, 0.939999998) o4.CFrame = CFrame.new(-12.900528, 3.77991295, 50.5080605, -0.935553849, 3.06141374e-007, 0.353159934, 3.19927466e-007, 1, 2.01617603e-008, -0.353163034, 1.1997561e-007, -0.935561478) o4.BackSurface = Enum.SurfaceType.SmoothNoOutlines o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines o5.Name = "Lense2" o5.Parent = o1 o5.Material = Enum.Material.Metal o5.Transparency = 0.050000011920929 o5.Position = Vector3.new(-12.8961124, 3.77492094, 50.0302277) o5.Rotation = Vector3.new(-180, -23.8323021, -179.999985) o5.Anchored = true o5.CanCollide = false o5.FormFactor = Enum.FormFactor.Custom o5.Shape = Enum.PartType.Cylinder o5.Size = Vector3.new(0.200000003, 0.330000043, 0.99000001) o5.CFrame = CFrame.new(-12.8961124, 3.77492094, 50.0302277, -0.914722979, 2.85652249e-007, -0.404061079, 2.36339361e-007, 1, 1.37493373e-007, 0.404064298, 2.15865228e-008, -0.914730668) o5.BackSurface = Enum.SurfaceType.SmoothNoOutlines o5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o5.RightSurface = Enum.SurfaceType.SmoothNoOutlines o5.TopSurface = Enum.SurfaceType.SmoothNoOutlines o6.Name = "Handle" o6.Parent = o1 o6.Material = Enum.Material.Metal o6.BrickColor = BrickColor.new("Really black") o6.Position = Vector3.new(-12.8799381, 3.69992495, 50.2599869) o6.Rotation = Vector3.new(-90, 9.97842108e-006, -89.9999008) o6.Anchored = true o6.CanCollide = false o6.FormFactor = Enum.FormFactor.Plate o6.Size = Vector3.new(1, 0.400000006, 1) o6.CFrame = CFrame.new(-12.8799381, 3.69992495, 50.2599869, 1.75646369e-006, 0.999991417, 1.74156298e-007, -1.04150445e-007, -1.60883403e-007, 1, 0.999999762, -1.6223396e-006, 9.62157287e-008) o6.BottomSurface = Enum.SurfaceType.Weld o6.TopSurface = Enum.SurfaceType.Smooth o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o7.Parent = o6 o7.MeshId = "http://www.roblox.com/asset/?id=5158270" o7.Scale = Vector3.new(0.140000001, 0.170000002, 0.100000001) o7.MeshType = Enum.MeshType.FileMesh o8.Name = "Straps" o8.Parent = o1 o8.Material = Enum.Material.Fabric o8.BrickColor = BrickColor.new("Really black") o8.Position = Vector3.new(-13.5199518, 3.48991394, 50.2599869) o8.Rotation = Vector3.new(5.96738209e-006, 0.000100637961, 89.9999924) o8.Anchored = true o8.CanCollide = false o8.FormFactor = Enum.FormFactor.Custom o8.Shape = Enum.PartType.Cylinder o8.Size = Vector3.new(0.200000003, 1.49000013, 1.25999999) o8.CFrame = CFrame.new(-13.5199518, 3.48991394, 50.2599869, 1.44325043e-007, -0.999991238, 1.75646369e-006, 0.999999881, 1.31081052e-007, -1.04150445e-007, 9.48765404e-008, 1.6242019e-006, 0.999999762) o8.BackSurface = Enum.SurfaceType.SmoothNoOutlines o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o8.RightSurface = Enum.SurfaceType.SmoothNoOutlines o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o9.Name = "Ring2" o9.Parent = o1 o9.BrickColor = BrickColor.new("Dark stone grey") o9.Position = Vector3.new(-12.8061161, 3.77991295, 49.9993477) o9.Rotation = Vector3.new(-1.48261315e-005, -66.1664276, -2.4695395e-005) o9.Anchored = true o9.CanCollide = false o9.FormFactor = Enum.FormFactor.Custom o9.Size = Vector3.new(0.600000024, 0.200000003, 1) o9.CFrame = CFrame.new(-12.8061161, 3.77991295, 49.9993477, 0.404059976, 1.74156298e-007, -0.914723039, -1.6136562e-007, 1, 1.0455733e-007, 0.914730787, 9.62157287e-008, 0.404063195) o9.BackSurface = Enum.SurfaceType.SmoothNoOutlines o9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o9.RightSurface = Enum.SurfaceType.SmoothNoOutlines o9.TopSurface = Enum.SurfaceType.SmoothNoOutlines o9.Color = Color3.new(0.388235, 0.372549, 0.384314) o10.Parent = o9 o10.MeshId = "http://www.roblox.com/asset/?id=3270017" o10.Scale = Vector3.new(0.340000004, 0.300000012, 0.300000012) o10.MeshType = Enum.MeshType.FileMesh o11.Name = "Straps" o11.Parent = o1 o11.Material = Enum.Material.Fabric o11.BrickColor = BrickColor.new("Really black") o11.Position = Vector3.new(-13.5199518, 4.00991392, 50.2599869) o11.Rotation = Vector3.new(5.96738209e-006, 0.000100637961, 89.9999924) o11.Anchored = true o11.CanCollide = false o11.FormFactor = Enum.FormFactor.Custom o11.Shape = Enum.PartType.Cylinder o11.Size = Vector3.new(0.200000003, 1.49000013, 1.25999999) o11.CFrame = CFrame.new(-13.5199518, 4.00991392, 50.2599869, 1.44325043e-007, -0.999991238, 1.75646369e-006, 0.999999881, 1.31081052e-007, -1.04150445e-007, 9.48765404e-008, 1.6242019e-006, 0.999999762) o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines o11.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o12.Name = "Ring1" o12.Parent = o1 o12.BrickColor = BrickColor.new("Dark stone grey") o12.Position = Vector3.new(-12.7999144, 3.76992106, 50.5299988) o12.Rotation = Vector3.new(-179.999969, -69.3177338, -179.999985) o12.Anchored = true o12.CanCollide = false o12.FormFactor = Enum.FormFactor.Custom o12.Size = Vector3.new(0.600000024, 0.200000003, 1) o12.CFrame = CFrame.new(-12.7999144, 3.76992106, 50.5299988, -0.353160918, 1.74156298e-007, -0.935553372, -4.22077129e-008, 1, 1.87534141e-007, 0.935561061, 9.62157287e-008, -0.353164017) o12.BackSurface = Enum.SurfaceType.SmoothNoOutlines o12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o12.RightSurface = Enum.SurfaceType.SmoothNoOutlines o12.TopSurface = Enum.SurfaceType.SmoothNoOutlines o12.Color = Color3.new(0.388235, 0.372549, 0.384314) o13.Parent = o12 o13.MeshId = "http://www.roblox.com/asset/?id=3270017" o13.Scale = Vector3.new(0.340000004, 0.300000012, 0.300000012) o13.MeshType = Enum.MeshType.FileMesh o14.Name = "Breather" o14.Parent = o1 o14.Material = Enum.Material.Metal o14.BrickColor = BrickColor.new("Really black") o14.Position = Vector3.new(-12.7419596, 3.69627094, 50.2550011) o14.Rotation = Vector3.new(5.96738209e-006, 0.000100637961, -39.5510521) o14.Anchored = true o14.CanCollide = false o14.FormFactor = Enum.FormFactor.Custom o14.Shape = Enum.PartType.Cylinder o14.Size = Vector3.new(0.600000024, 0.340000093, 0.25000003) o14.CFrame = CFrame.new(-12.7419596, 3.69627094, 50.2550011, 0.771050453, 0.636759639, 1.75646369e-006, -0.636765182, 0.771057129, -1.04150445e-007, -1.31184265e-006, -9.5997575e-007, 0.999999762) o14.BackSurface = Enum.SurfaceType.SmoothNoOutlines o14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o14.RightSurface = Enum.SurfaceType.SmoothNoOutlines o14.TopSurface = Enum.SurfaceType.SmoothNoOutlines o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o15.Name = "Breather" o15.Parent = o1 o15.Material = Enum.Material.Metal o15.BrickColor = BrickColor.new("Really black") o15.Position = Vector3.new(-12.5337915, 3.51434994, 50.2550011) o15.Rotation = Vector3.new(5.96738209e-006, 0.000100637961, -39.5510521) o15.Anchored = true o15.CanCollide = false o15.FormFactor = Enum.FormFactor.Custom o15.Shape = Enum.PartType.Cylinder o15.Size = Vector3.new(0.200000003, 0.340000093, 0.350000024) o15.CFrame = CFrame.new(-12.5337915, 3.51434994, 50.2550011, 0.771050453, 0.636759639, 1.75646369e-006, -0.636765182, 0.771057129, -1.04150445e-007, -1.31184265e-006, -9.5997575e-007, 0.999999762) o15.BackSurface = Enum.SurfaceType.SmoothNoOutlines o15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o15.RightSurface = Enum.SurfaceType.SmoothNoOutlines o15.TopSurface = Enum.SurfaceType.SmoothNoOutlines o15.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o16.Name = "Breather" o16.Parent = o1 o16.Material = Enum.Material.Metal o16.BrickColor = BrickColor.new("Really black") o16.Position = Vector3.new(-12.7920103, 3.39220095, 49.784256) o16.Rotation = Vector3.new(10.8745985, 48.2677155, -21.6106548) o16.Anchored = true o16.CanCollide = false o16.FormFactor = Enum.FormFactor.Custom o16.Shape = Enum.PartType.Cylinder o16.Size = Vector3.new(0.230000019, 0.540000081, 0.75) o16.CFrame = CFrame.new(-12.7920103, 3.39220095, 49.784256, 0.618847609, 0.24515225, 0.746263206, -0.230788618, 0.96486491, -0.125580132, -0.75083673, -0.0945150182, 0.653688967) o16.BackSurface = Enum.SurfaceType.SmoothNoOutlines o16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o16.RightSurface = Enum.SurfaceType.SmoothNoOutlines o16.TopSurface = Enum.SurfaceType.SmoothNoOutlines o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o17.Name = "Breather" o17.Parent = o1 o17.Material = Enum.Material.Metal o17.BrickColor = BrickColor.new("Really black") o17.Position = Vector3.new(-12.8723783, 3.42192006, 49.8816109) o17.Rotation = Vector3.new(10.8745985, 48.2677155, -21.6106548) o17.Anchored = true o17.CanCollide = false o17.FormFactor = Enum.FormFactor.Custom o17.Shape = Enum.PartType.Cylinder o17.Size = Vector3.new(0.370000005, 0.540000081, 0.310000002) o17.CFrame = CFrame.new(-12.8723783, 3.42192006, 49.8816109, 0.618847609, 0.24515225, 0.746263206, -0.230788618, 0.96486491, -0.125580132, -0.75083673, -0.0945150182, 0.653688967) o17.BackSurface = Enum.SurfaceType.SmoothNoOutlines o17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o17.RightSurface = Enum.SurfaceType.SmoothNoOutlines o17.TopSurface = Enum.SurfaceType.SmoothNoOutlines o17.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) function onTouched(hit) local d = hit.Parent:GetChildren() for i=1, #d do if (d[i].className == "Hat") then d[i]:remove() end end if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent:findFirstChild("Face") == nil then local g = o1: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 g.Middle.Transparency = 1 end local Y = Instance.new("Weld") Y.Part0 = hit.Parent.Head 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 h[i].Anchored = false h[i].CanCollide = false end end end onTouched(game.Players.LocalPlayer.Character.Head) end end) VanDaPlayer.MouseButton1Click:connect(function() --CLOWN VAN BY DMS --its bad --first the victim gets kidnapped in a van --then they get r3ped --then the get killed --then the body is dumped on the street Victim = Username.Text o1 = Instance.new("Model") o2 = Instance.new("Part") o3 = Instance.new("CylinderMesh") o4 = Instance.new("Part") o5 = Instance.new("SpecialMesh") o6 = Instance.new("Part") o7 = Instance.new("SpecialMesh") o8 = Instance.new("Part") o9 = Instance.new("BlockMesh") o10 = Instance.new("Part") o11 = Instance.new("BlockMesh") o12 = Instance.new("Part") o13 = Instance.new("Part") o14 = Instance.new("BlockMesh") o15 = Instance.new("Part") o16 = Instance.new("SpecialMesh") o17 = Instance.new("Part") o18 = Instance.new("SpecialMesh") o19 = Instance.new("Part") o20 = Instance.new("SpecialMesh") o21 = Instance.new("Sound") o22 = Instance.new("Part") o23 = Instance.new("BlockMesh") o24 = Instance.new("Part") o25 = Instance.new("SpecialMesh") o26 = Instance.new("Part") o27 = Instance.new("BlockMesh") o28 = Instance.new("Part") o29 = Instance.new("SpecialMesh") o30 = Instance.new("Part") o31 = Instance.new("BlockMesh") o32 = Instance.new("Part") o33 = Instance.new("BlockMesh") o34 = Instance.new("Part") o35 = Instance.new("BlockMesh") o36 = Instance.new("Part") o37 = Instance.new("BlockMesh") o38 = Instance.new("Part") o39 = Instance.new("Part") o40 = Instance.new("BlockMesh") o41 = Instance.new("Part") o42 = Instance.new("BlockMesh") o43 = Instance.new("Part") o44 = Instance.new("BlockMesh") o45 = Instance.new("Part") o46 = Instance.new("SpecialMesh") o47 = Instance.new("Part") o48 = Instance.new("BlockMesh") o49 = Instance.new("Part") o50 = Instance.new("BlockMesh") o51 = Instance.new("Part") o52 = Instance.new("BlockMesh") o53 = Instance.new("Part") o54 = Instance.new("SpecialMesh") o55 = Instance.new("Part") o56 = Instance.new("SpecialMesh") o57 = Instance.new("Part") o58 = Instance.new("BlockMesh") o59 = Instance.new("Part") o60 = Instance.new("BlockMesh") o61 = Instance.new("Part") o62 = Instance.new("BlockMesh") o63 = Instance.new("Part") o64 = Instance.new("Part") o65 = Instance.new("Part") o66 = Instance.new("BlockMesh") o67 = Instance.new("Part") o68 = Instance.new("BlockMesh") o69 = Instance.new("Part") o70 = Instance.new("BlockMesh") o71 = Instance.new("Part") o72 = Instance.new("BlockMesh") o73 = Instance.new("Part") o74 = Instance.new("SpecialMesh") o75 = Instance.new("Decal") o76 = Instance.new("Part") o77 = Instance.new("Part") o78 = Instance.new("BlockMesh") o79 = Instance.new("Part") o80 = Instance.new("SpecialMesh") o81 = Instance.new("Decal") o82 = Instance.new("Part") o83 = Instance.new("SpecialMesh") o84 = Instance.new("Humanoid") o85 = Instance.new("Part") o86 = Instance.new("Part") o87 = Instance.new("Part") o88 = Instance.new("Decal") o89 = Instance.new("Motor6D") o90 = Instance.new("Motor6D") o91 = Instance.new("Motor6D") o92 = Instance.new("Motor6D") o93 = Instance.new("Motor6D") o94 = Instance.new("Part") o95 = Instance.new("Part") o96 = Instance.new("Part") o97 = Instance.new("Part") o98 = Instance.new("Part") o99 = Instance.new("Decal") o100 = Instance.new("Motor6D") o101 = Instance.new("Motor6D") o102 = Instance.new("Motor6D") o103 = Instance.new("Part") o104 = Instance.new("Part") o105 = Instance.new("Part") o106 = Instance.new("Part") o107 = Instance.new("Part") o108 = Instance.new("CylinderMesh") o109 = Instance.new("Part") o110 = Instance.new("CylinderMesh") o111 = Instance.new("Part") o112 = Instance.new("CylinderMesh") o113 = Instance.new("Part") o114 = Instance.new("CylinderMesh") o115 = Instance.new("Part") o116 = Instance.new("CylinderMesh") o117 = Instance.new("Part") o118 = Instance.new("CylinderMesh") o119 = Instance.new("Part") o120 = Instance.new("CylinderMesh") o121 = Instance.new("Part") o122 = Instance.new("SpecialMesh") o123 = Instance.new("Part") o124 = Instance.new("Decal") o1.Name = " " o1.Parent = workspace o2.Parent = o1 o2.Position = Vector3.new(95.3486252, 1.50001001, 18.4564877) o2.Rotation = Vector3.new(-90, 1.20620803e-006, -180) o2.Anchored = true o2.FormFactor = Enum.FormFactor.Symmetric o2.Size = Vector3.new(2.39999986, 1.31000006, 2.39999986) o2.CFrame = CFrame.new(95.3486252, 1.50001001, 18.4564877, -1, 2.98044895e-008, 2.10523012e-008, 2.10523012e-008, 7.54615499e-008, 1, 2.9804486e-008, 1, -7.54615499e-008) o3.Parent = o2 o4.Parent = o1 o4.BrickColor = BrickColor.new("Institutional white") o4.Position = Vector3.new(96.3181839, 7.00000668, 9.31151104) o4.Rotation = Vector3.new(90, 89.9314728, -90) o4.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o4.Velocity = Vector3.new(-0.000346515269, 0.00201798417, -0.00195027643) o4.Anchored = true o4.FormFactor = Enum.FormFactor.Plate o4.Size = Vector3.new(1, 2.4000001, 2) o4.CFrame = CFrame.new(96.3181839, 7.00000668, 9.31151104, 0, 3.96052044e-008, 0.999999285, 0, 1, -3.97634246e-008, -1, 0, 0) o4.BackSurface = Enum.SurfaceType.Weld o4.BottomSurface = Enum.SurfaceType.Weld o4.LeftSurface = Enum.SurfaceType.Weld o4.TopSurface = Enum.SurfaceType.Weld o4.Color = Color3.new(0.972549, 0.972549, 0.972549) o5.Parent = o4 o5.MeshType = Enum.MeshType.Wedge o6.Parent = o1 o6.Material = Enum.Material.SmoothPlastic o6.BrickColor = BrickColor.new("Really black") o6.Transparency = 0.5 o6.Position = Vector3.new(96.3181839, 7.00000668, 13.8115101) o6.Rotation = Vector3.new(90, 89.9440536, -90) o6.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o6.Velocity = Vector3.new(0.000965324172, 0.00135755131, -0.00195027643) o6.Anchored = true o6.FormFactor = Enum.FormFactor.Plate o6.Size = Vector3.new(8, 2.4000001, 1.99999976) o6.CFrame = CFrame.new(96.3181839, 7.00000668, 13.8115101, 0, 3.96315798e-008, 0.999999523, 0, 1, -3.97370599e-008, -1, 0, 0) o6.BackSurface = Enum.SurfaceType.Weld o6.BottomSurface = Enum.SurfaceType.Weld o6.LeftSurface = Enum.SurfaceType.Weld o6.RightSurface = Enum.SurfaceType.Weld o6.TopSurface = Enum.SurfaceType.Weld o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o7.Parent = o6 o7.MeshType = Enum.MeshType.Wedge o8.Parent = o1 o8.BrickColor = BrickColor.new("Br. yellowish orange") o8.Position = Vector3.new(92.2182083, 4.00000715, 9.61151409) o8.Rotation = Vector3.new(-0, 0, -2.26619136e-006) o8.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o8.Velocity = Vector3.new(-0.000475873821, 0.00227026758, -0.00119533995) o8.Anchored = true o8.FormFactor = Enum.FormFactor.Custom o8.Size = Vector3.new(0.200000003, 0.800000012, 0.799999714) o8.CFrame = CFrame.new(92.2182083, 4.00000715, 9.61151409, 0.999998808, 3.95524538e-008, 0, -3.98161575e-008, 1, 0, 0, 0, 1) o8.BackSurface = Enum.SurfaceType.Weld o8.BottomSurface = Enum.SurfaceType.Weld o8.FrontSurface = Enum.SurfaceType.Weld o8.LeftSurface = Enum.SurfaceType.Weld o8.RightSurface = Enum.SurfaceType.Weld o8.TopSurface = Enum.SurfaceType.Weld o8.Color = Color3.new(0.886275, 0.607843, 0.25098) o9.Parent = o8 o10.Parent = o1 o10.BrickColor = BrickColor.new("Institutional white") o10.Position = Vector3.new(105.317894, 8.40004158, 9.31151295) o10.Rotation = Vector3.new(-0, 0, -2.21330401e-006) o10.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o10.Velocity = Vector3.new(-0.000245332019, 0.00136755884, -0.00436839834) o10.Anchored = true o10.CanCollide = false game.Players[Victim].Character.Humanoid.WalkSpeed = 0 game.Players[Victim].Character.Humanoid.JumpPower = 0 o10.FormFactor = Enum.FormFactor.Plate o10.Size = Vector3.new(14, 0.400000006, 1) o10.CFrame = CFrame.new(105.317894, 8.40004158, 9.31151295, 0.999999762, 3.86294303e-008, 0, -3.86821704e-008, 1, 0, 0, 0, 1) o10.BackSurface = Enum.SurfaceType.Weld o10.BottomSurface = Enum.SurfaceType.Weld o10.FrontSurface = Enum.SurfaceType.Weld o10.LeftSurface = Enum.SurfaceType.Weld o10.RightSurface = Enum.SurfaceType.Weld o10.TopSurface = Enum.SurfaceType.Weld o10.Color = Color3.new(0.972549, 0.972549, 0.972549) o11.Parent = o10 o12.Name = "DOOR" o12.Parent = o1 o12.BrickColor = BrickColor.new("Institutional white") o12.Position = Vector3.new(103.708466, 5.81500626, 9.31151104) o12.Rotation = Vector3.new(-0, 0, -4.43210411e-006) o12.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o12.Velocity = Vector3.new(-0.000432157307, 0.00148387556, -0.00427860441) o12.Anchored = true o12.CanCollide = false o12.FormFactor = Enum.FormFactor.Plate o12.Size = Vector3.new(5.22000027, 4.82999992, 1) o12.CFrame = CFrame.new(103.708466, 5.81500626, 9.31151104, 1, 7.73548052e-008, 0, -7.73548052e-008, 1, 0, 0, 0, 1) o12.BottomSurface = Enum.SurfaceType.Weld o12.LeftSurface = Enum.SurfaceType.Weld o12.RightSurface = Enum.SurfaceType.Weld o12.TopSurface = Enum.SurfaceType.Weld o12.Color = Color3.new(0.972549, 0.972549, 0.972549) o13.Parent = o1 o13.BrickColor = BrickColor.new("White") o13.Position = Vector3.new(109.818169, 5.80000877, 9.31151104) o13.Rotation = Vector3.new(-0, 0, -2.25410599e-006) o13.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o13.Velocity = Vector3.new(-0.00043324125, 0.00104231632, -0.006061906) o13.Anchored = true o13.FormFactor = Enum.FormFactor.Plate o13.Size = Vector3.new(7, 4.80000019, 1) o13.CFrame = CFrame.new(109.818169, 5.80000877, 9.31151104, 0.999996901, 3.9341451e-008, 0, -4.00270856e-008, 1, 0, 0, 0, 1) o13.BackSurface = Enum.SurfaceType.Weld o13.BottomSurface = Enum.SurfaceType.Weld o13.FrontSurface = Enum.SurfaceType.Weld o13.LeftSurface = Enum.SurfaceType.Weld o13.RightSurface = Enum.SurfaceType.Weld o13.TopSurface = Enum.SurfaceType.Weld o13.Color = Color3.new(0.94902, 0.952941, 0.952941) o14.Parent = o13 o15.Parent = o1 o15.BrickColor = BrickColor.new("Institutional white") o15.Position = Vector3.new(97.817894, 8.40000725, 13.8115139) o15.Rotation = Vector3.new(90, 89.960434, -90) o15.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o15.Velocity = Vector3.new(0.00106650498, 0.00124916411, -0.00218200427) o15.Anchored = true o15.CanCollide = false o15.FormFactor = Enum.FormFactor.Plate o15.Size = Vector3.new(10, 0.400000006, 1) o15.CFrame = CFrame.new(97.817894, 8.40000725, 13.8115139, 0, 3.86294303e-008, 0.999999762, 0, 1, -3.86821704e-008, -1, 0, 0) o15.BackSurface = Enum.SurfaceType.Weld o15.BottomSurface = Enum.SurfaceType.Weld o15.TopSurface = Enum.SurfaceType.Weld o15.Color = Color3.new(0.972549, 0.972549, 0.972549) o16.Parent = o15 o16.MeshType = Enum.MeshType.Wedge o17.Parent = o1 o17.BrickColor = BrickColor.new("Institutional white") o17.Position = Vector3.new(96.3181839, 7.00000668, 18.3115101) o17.Rotation = Vector3.new(90, 89.9314728, -90) o17.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o17.Velocity = Vector3.new(0.00227716356, 0.000697118347, -0.00195027643) o17.Anchored = true o17.FormFactor = Enum.FormFactor.Plate o17.Size = Vector3.new(1, 2.4000001, 2) o17.CFrame = CFrame.new(96.3181839, 7.00000668, 18.3115101, 0, 3.96052044e-008, 0.999999285, 0, 1, -3.97634246e-008, -1, 0, 0) o17.BackSurface = Enum.SurfaceType.Weld o17.BottomSurface = Enum.SurfaceType.Weld o17.RightSurface = Enum.SurfaceType.Weld o17.TopSurface = Enum.SurfaceType.Weld o17.Color = Color3.new(0.972549, 0.972549, 0.972549) o18.Parent = o17 o18.MeshType = Enum.MeshType.Wedge o19.Parent = o1 o19.BrickColor = BrickColor.new("Institutional white") o19.Position = Vector3.new(93.8181839, 5.20000744, 13.8115101) o19.Rotation = Vector3.new(90, 89.8573456, -90) o19.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o19.Velocity = Vector3.new(0.000835234998, 0.00153823046, -0.00148565089) o19.Anchored = true o19.FormFactor = Enum.FormFactor.Plate o19.Size = Vector3.new(10, 1.20000005, 3) o19.CFrame = CFrame.new(93.8181839, 5.20000744, 13.8115101, 0, 3.77325726e-008, 0.999996901, 0, 1, -3.84182002e-008, -1, 0, 0) o19.BackSurface = Enum.SurfaceType.Weld o19.BottomSurface = Enum.SurfaceType.Weld o19.TopSurface = Enum.SurfaceType.Weld o19.Color = Color3.new(0.972549, 0.972549, 0.972549) o20.Parent = o19 o20.MeshType = Enum.MeshType.Wedge o21.Parent = o19 o21.SoundId = "rbxassetid://532147820" o21.Looped = true o22.Parent = o1 o22.BrickColor = BrickColor.new("Institutional white") o22.Position = Vector3.new(96.3182907, 4.60000753, 9.31151104) o22.Rotation = Vector3.new(-0, 0, -2.23446773e-006) o22.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o22.Velocity = Vector3.new(-0.000519967522, 0.00201797695, -0.00230253674) o22.Anchored = true o22.FormFactor = Enum.FormFactor.Plate o22.Size = Vector3.new(2, 2.4000001, 1) o22.CFrame = CFrame.new(96.3182907, 4.60000753, 9.31151104, 0.999993801, 3.8998575e-008, 0, -4.03698408e-008, 1, 0, 0, 0, 1) o22.BackSurface = Enum.SurfaceType.Weld o22.BottomSurface = Enum.SurfaceType.Weld o22.FrontSurface = Enum.SurfaceType.Weld o22.LeftSurface = Enum.SurfaceType.Weld o22.RightSurface = Enum.SurfaceType.Weld o22.TopSurface = Enum.SurfaceType.Weld o22.Color = Color3.new(0.972549, 0.972549, 0.972549) o23.Parent = o22 o24.Parent = o1 o24.BrickColor = BrickColor.new("Institutional white") o24.Position = Vector3.new(113.817245, 6.80000734, 18.3115101) o24.Rotation = Vector3.new(-0, -90, 0) o24.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o24.Velocity = Vector3.new(0.00226270943, -0.000567569688, -0.00708095264) o24.Anchored = true o24.FormFactor = Enum.FormFactor.Plate o24.Size = Vector3.new(1, 2.79999995, 1) o24.CFrame = CFrame.new(113.817245, 6.80000734, 18.3115101, 0, 5.54578605e-008, -1, 0, 1, 5.54578605e-008, 1, 0, 0) o24.BackSurface = Enum.SurfaceType.Weld o24.BottomSurface = Enum.SurfaceType.Weld o24.TopSurface = Enum.SurfaceType.Weld o24.Color = Color3.new(0.972549, 0.972549, 0.972549) o25.Parent = o24 o25.MeshType = Enum.MeshType.Wedge o26.Parent = o1 o26.BrickColor = BrickColor.new("Institutional white") o26.Position = Vector3.new(93.0181885, 2.60000825, 13.8115101) o26.Rotation = Vector3.new(-0, 0, -2.27223404e-006) o26.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o26.Velocity = Vector3.new(0.000647328445, 0.00159604801, -0.00163401756) o26.Anchored = true o26.FormFactor = Enum.FormFactor.Plate o26.Size = Vector3.new(1.39999998, 1.60000002, 10) o26.CFrame = CFrame.new(93.0181885, 2.60000825, 13.8115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1) o26.BackSurface = Enum.SurfaceType.Weld o26.BottomSurface = Enum.SurfaceType.Weld o26.FrontSurface = Enum.SurfaceType.Weld o26.LeftSurface = Enum.SurfaceType.Weld o26.RightSurface = Enum.SurfaceType.Weld o26.TopSurface = Enum.SurfaceType.Weld o26.Color = Color3.new(0.972549, 0.972549, 0.972549) o27.Parent = o26 o28.Parent = o1 o28.BrickColor = BrickColor.new("Institutional white") o28.Position = Vector3.new(113.818176, 6.80000877, 9.31151104) o28.Rotation = Vector3.new(-90, -89.7982635, -90) o28.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o28.Velocity = Vector3.new(-0.000360969483, 0.000753228669, -0.00708122458) o28.Anchored = true o28.FormFactor = Enum.FormFactor.Plate o28.Size = Vector3.new(1, 2.79999995, 1) o28.CFrame = CFrame.new(113.818176, 6.80000877, 9.31151104, 0, 3.89985715e-008, -0.999993801, 0, 1, 4.03698408e-008, 1, 0, 0) o28.BackSurface = Enum.SurfaceType.Weld o28.BottomSurface = Enum.SurfaceType.Weld o28.TopSurface = Enum.SurfaceType.Weld o28.Color = Color3.new(0.972549, 0.972549, 0.972549) o29.Parent = o28 o29.MeshType = Enum.MeshType.Wedge o30.Parent = o1 o30.BrickColor = BrickColor.new("Institutional white") o30.Position = Vector3.new(96.3181992, 4.60000753, 18.3115101) o30.Rotation = Vector3.new(-0, 0, -2.26770203e-006) o30.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o30.Velocity = Vector3.new(0.00210371148, 0.000697117415, -0.0023025109) o30.Anchored = true o30.FormFactor = Enum.FormFactor.Plate o30.Size = Vector3.new(2, 2.4000001, 1) o30.CFrame = CFrame.new(96.3181992, 4.60000753, 18.3115101, 0.999999046, 3.95788291e-008, 0, -3.97897928e-008, 1, 0, 0, 0, 1) o30.BackSurface = Enum.SurfaceType.Weld o30.BottomSurface = Enum.SurfaceType.Weld o30.FrontSurface = Enum.SurfaceType.Weld o30.LeftSurface = Enum.SurfaceType.Weld o30.RightSurface = Enum.SurfaceType.Weld o30.TopSurface = Enum.SurfaceType.Weld o30.Color = Color3.new(0.972549, 0.972549, 0.972549) o31.Parent = o30 o32.Parent = o1 o32.BrickColor = BrickColor.new("Dark stone grey") o32.Position = Vector3.new(95.8181839, 4.60000753, 13.8115101) o32.Rotation = Vector3.new(90, 89.960434, -90) o32.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o32.Velocity = Vector3.new(0.000791871978, 0.00139368721, -0.00215674727) o32.Anchored = true o32.FormFactor = Enum.FormFactor.Plate o32.Size = Vector3.new(8, 2.4000001, 1) o32.CFrame = CFrame.new(95.8181839, 4.60000753, 13.8115101, 0, 3.96579551e-008, 0.999999762, 0, 1, -3.97106952e-008, -1, 0, 0) o32.BottomSurface = Enum.SurfaceType.Weld o32.TopSurface = Enum.SurfaceType.Weld o32.Color = Color3.new(0.388235, 0.372549, 0.384314) o33.Parent = o32 o33.Offset = Vector3.new(0, 0, 0.5) o33.Scale = Vector3.new(1, 1, 2) o34.Parent = o1 o34.BrickColor = BrickColor.new("Institutional white") o34.Position = Vector3.new(93.8181992, 4.00000715, 13.8115101) o34.Rotation = Vector3.new(-0, 0, -2.26770203e-006) o34.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o34.Velocity = Vector3.new(0.000748508843, 0.00153822941, -0.00166177051) o34.Anchored = true o34.FormFactor = Enum.FormFactor.Plate o34.Size = Vector3.new(3, 1.20000005, 10) o34.CFrame = CFrame.new(93.8181992, 4.00000715, 13.8115101, 0.999999046, 3.95788291e-008, 0, -3.97897928e-008, 1, 0, 0, 0, 1) o34.BackSurface = Enum.SurfaceType.Weld o34.BottomSurface = Enum.SurfaceType.Weld o34.FrontSurface = Enum.SurfaceType.Weld o34.LeftSurface = Enum.SurfaceType.Weld o34.RightSurface = Enum.SurfaceType.Weld o34.TopSurface = Enum.SurfaceType.Weld o34.Color = Color3.new(0.972549, 0.972549, 0.972549) o35.Parent = o34 o36.Parent = o1 o36.BrickColor = BrickColor.new("Br. yellowish orange") o36.Position = Vector3.new(92.2181854, 4.00000715, 18.211504) o36.Rotation = Vector3.new(-0, 0, -2.2601489e-006) o36.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o36.Velocity = Vector3.new(0.00203119451, 0.00100810977, -0.00119533355) o36.Anchored = true o36.FormFactor = Enum.FormFactor.Custom o36.Size = Vector3.new(0.200000003, 0.800000012, 0.799999714) o36.CFrame = CFrame.new(92.2181854, 4.00000715, 18.211504, 0.999997854, 3.94469524e-008, 0, -3.99216233e-008, 1, 0, 0, 0, 1) o36.BackSurface = Enum.SurfaceType.Weld o36.BottomSurface = Enum.SurfaceType.Weld o36.FrontSurface = Enum.SurfaceType.Weld o36.LeftSurface = Enum.SurfaceType.Weld o36.RightSurface = Enum.SurfaceType.Weld o36.TopSurface = Enum.SurfaceType.Weld o36.Color = Color3.new(0.886275, 0.607843, 0.25098) o37.Parent = o36 o38.Parent = o1 o38.BrickColor = BrickColor.new("Institutional white") o38.Position = Vector3.new(99.0602112, 4.60000706, 18.3115101) o38.Rotation = Vector3.new(-0, 0, -4.84935117e-006) o38.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o38.Velocity = Vector3.new(0.00210371148, 0.000498947338, -0.0031018618) o38.Anchored = true o38.CanCollide = false o38.FormFactor = Enum.FormFactor.Plate o38.Size = Vector3.new(3.48000026, 2.4000001, 1) o38.CFrame = CFrame.new(99.0602112, 4.60000706, 18.3115101, 1, 8.46371435e-008, 0, -8.46371435e-008, 1, 0, 0, 0, 1) o38.BottomSurface = Enum.SurfaceType.Weld o38.LeftSurface = Enum.SurfaceType.Weld o38.RightSurface = Enum.SurfaceType.Weld o38.TopSurface = Enum.SurfaceType.Weld o38.Color = Color3.new(0.972549, 0.972549, 0.972549) o39.Parent = o1 o39.BrickColor = BrickColor.new("Really red") o39.Position = Vector3.new(113.818176, 4.80000877, 9.31151104) o39.Rotation = Vector3.new(-0, 0, -2.2344675e-006) o39.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o39.Velocity = Vector3.new(-0.000505513046, 0.000753228669, -0.00737475045) o39.Anchored = true o39.FormFactor = Enum.FormFactor.Plate o39.Size = Vector3.new(1, 1.20000005, 1) o39.CFrame = CFrame.new(113.818176, 4.80000877, 9.31151104, 0.999993801, 3.89985715e-008, 0, -4.03698408e-008, 1, 0, 0, 0, 1) o39.BackSurface = Enum.SurfaceType.Weld o39.BottomSurface = Enum.SurfaceType.Weld o39.FrontSurface = Enum.SurfaceType.Weld o39.LeftSurface = Enum.SurfaceType.Weld o39.RightSurface = Enum.SurfaceType.Weld o39.TopSurface = Enum.SurfaceType.Weld o39.Color = Color3.new(1, 0, 0) o40.Parent = o39 o41.Parent = o1 o41.BrickColor = BrickColor.new("Institutional white") o41.Position = Vector3.new(113.818054, 3.80000734, 9.31151104) o41.Rotation = Vector3.new(-0, 0, -2.23295706e-006) o41.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o41.Velocity = Vector3.new(-0.000577784958, 0.000753237749, -0.00752147706) o41.Anchored = true o41.FormFactor = Enum.FormFactor.Plate o41.Size = Vector3.new(1, 0.800000012, 1) o41.CFrame = CFrame.new(113.818054, 3.80000734, 9.31151104, 0.999993563, 3.89721997e-008, 0, -4.03962055e-008, 1, 0, 0, 0, 1) o41.BackSurface = Enum.SurfaceType.Weld o41.BottomSurface = Enum.SurfaceType.Weld o41.FrontSurface = Enum.SurfaceType.Weld o41.LeftSurface = Enum.SurfaceType.Weld o41.RightSurface = Enum.SurfaceType.Weld o41.TopSurface = Enum.SurfaceType.Weld o41.Color = Color3.new(0.972549, 0.972549, 0.972549) o42.Parent = o41 o43.Parent = o1 o43.BrickColor = BrickColor.new("Institutional white") o43.Position = Vector3.new(105.317894, 8.40000725, 13.8115139) o43.Rotation = Vector3.new(-0, 0, -2.21481446e-006) o43.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o43.Velocity = Vector3.new(0.00106650498, 0.000707125873, -0.00436840346) o43.Anchored = true o43.CanCollide = false o43.FormFactor = Enum.FormFactor.Plate o43.Size = Vector3.new(14, 0.400000006, 8) o43.CFrame = CFrame.new(105.317894, 8.40000725, 13.8115139, 1, 3.86558057e-008, 0, -3.86558057e-008, 1, 0, 0, 0, 1) o43.BackSurface = Enum.SurfaceType.Weld o43.BottomSurface = Enum.SurfaceType.Weld o43.FrontSurface = Enum.SurfaceType.Weld o43.LeftSurface = Enum.SurfaceType.Weld o43.RightSurface = Enum.SurfaceType.Weld o43.TopSurface = Enum.SurfaceType.Weld o43.Color = Color3.new(0.972549, 0.972549, 0.972549) o44.Parent = o43 o45.Parent = o1 o45.BrickColor = BrickColor.new("Really black") o45.Position = Vector3.new(113.818176, 6.80000782, 11.311511) o45.Rotation = Vector3.new(-90, -89.9314728, -90) o45.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o45.Velocity = Vector3.new(0.000222070201, 0.000459702482, -0.00708122645) o45.Anchored = true o45.CanCollide = false o45.FormFactor = Enum.FormFactor.Plate o45.Size = Vector3.new(3, 2.79999995, 1) o45.CFrame = CFrame.new(113.818176, 6.80000782, 11.311511, 0, 3.96052044e-008, -0.999999285, 0, 1, 3.97634281e-008, 1, 0, 0) o45.BackSurface = Enum.SurfaceType.Weld o45.BottomSurface = Enum.SurfaceType.Weld o45.TopSurface = Enum.SurfaceType.Weld o45.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o46.Parent = o45 o46.MeshType = Enum.MeshType.Wedge o47.Parent = o1 o47.BrickColor = BrickColor.new("Institutional white") o47.Position = Vector3.new(103.118179, 2.40000772, 13.8115101) o47.Rotation = Vector3.new(-0, 0, -2.27223404e-006) o47.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o47.Velocity = Vector3.new(0.000632874086, 0.000866103393, -0.0046077203) o47.Anchored = true o47.FormFactor = Enum.FormFactor.Plate o47.Size = Vector3.new(12.3999996, 1.20000005, 10) o47.CFrame = CFrame.new(103.118179, 2.40000772, 13.8115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1) o47.BackSurface = Enum.SurfaceType.Weld o47.BottomSurface = Enum.SurfaceType.Weld o47.FrontSurface = Enum.SurfaceType.Weld o47.LeftSurface = Enum.SurfaceType.Weld o47.RightSurface = Enum.SurfaceType.Weld o47.TopSurface = Enum.SurfaceType.Weld o47.Color = Color3.new(0.972549, 0.972549, 0.972549) o48.Parent = o47 o49.Parent = o1 o49.BrickColor = BrickColor.new("White") o49.Position = Vector3.new(104.018181, 3.20000815, 13.8115101) o49.Rotation = Vector3.new(-0, 0, -2.27374471e-006) o49.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o49.Velocity = Vector3.new(0.000690691522, 0.000801058719, -0.00475267787) o49.Anchored = true o49.FormFactor = Enum.FormFactor.Plate o49.Size = Vector3.new(20.6000004, 0.400000006, 10) o49.CFrame = CFrame.new(104.018181, 3.20000815, 13.8115101, 1, 3.96843305e-008, 0, -3.96843305e-008, 1, 0, 0, 0, 1) o49.BackSurface = Enum.SurfaceType.Weld o49.BottomSurface = Enum.SurfaceType.Weld o49.FrontSurface = Enum.SurfaceType.Weld o49.LeftSurface = Enum.SurfaceType.Weld o49.RightSurface = Enum.SurfaceType.Weld o49.TopSurface = Enum.SurfaceType.Weld o49.Color = Color3.new(0.94902, 0.952941, 0.952941) o50.Parent = o49 o51.Parent = o1 o51.BrickColor = BrickColor.new("Institutional white") o51.Position = Vector3.new(107.167747, 5.80000782, 18.3115101) o51.Rotation = Vector3.new(-0, 0, -3.14727777e-006) o51.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o51.Velocity = Vector3.new(0.00219043763, -8.69987416e-005, -0.00528925471) o51.Anchored = true o51.FormFactor = Enum.FormFactor.Plate o51.Size = Vector3.new(12.3000002, 4.80000019, 1) o51.CFrame = CFrame.new(107.167747, 5.80000782, 18.3115101, 1, 5.49303607e-008, 0, -5.49303607e-008, 1, 0, 0, 0, 1) o51.BackSurface = Enum.SurfaceType.Weld o51.BottomSurface = Enum.SurfaceType.Weld o51.FrontSurface = Enum.SurfaceType.Weld o51.LeftSurface = Enum.SurfaceType.Weld o51.RightSurface = Enum.SurfaceType.Weld o51.TopSurface = Enum.SurfaceType.Weld o51.Color = Color3.new(0.972549, 0.972549, 0.972549) o52.Parent = o51 o53.Parent = o1 o53.BrickColor = BrickColor.new("Institutional white") o53.Position = Vector3.new(113.818176, 6.80000782, 13.8115101) o53.Rotation = Vector3.new(-90, -89.9314728, -90) o53.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o53.Velocity = Vector3.new(0.000950869871, 9.27953006e-005, -0.00708122645) o53.Anchored = true o53.CanCollide = false o53.FormFactor = Enum.FormFactor.Plate o53.Size = Vector3.new(2, 2.79999995, 1) o53.CFrame = CFrame.new(113.818176, 6.80000782, 13.8115101, 0, 3.96052044e-008, -0.999999285, 0, 1, 3.97634281e-008, 1, 0, 0) o53.BackSurface = Enum.SurfaceType.Weld o53.BottomSurface = Enum.SurfaceType.Weld o53.TopSurface = Enum.SurfaceType.Weld o53.Color = Color3.new(0.972549, 0.972549, 0.972549) o54.Parent = o53 o54.MeshType = Enum.MeshType.Wedge o55.Parent = o1 o55.BrickColor = BrickColor.new("Really black") o55.Position = Vector3.new(113.818176, 6.80000782, 16.3115101) o55.Rotation = Vector3.new(-90, -89.9314728, -90) o55.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o55.Velocity = Vector3.new(0.0016796696, -0.000274111895, -0.00708122645) o55.Anchored = true o55.CanCollide = false o55.FormFactor = Enum.FormFactor.Plate o55.Size = Vector3.new(3, 2.79999995, 1) o55.CFrame = CFrame.new(113.818176, 6.80000782, 16.3115101, 0, 3.96052044e-008, -0.999999285, 0, 1, 3.97634281e-008, 1, 0, 0) o55.BackSurface = Enum.SurfaceType.Weld o55.BottomSurface = Enum.SurfaceType.Weld o55.TopSurface = Enum.SurfaceType.Weld o55.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o56.Parent = o55 o56.MeshType = Enum.MeshType.Wedge o57.Parent = o1 o57.BrickColor = BrickColor.new("Institutional white") o57.Position = Vector3.new(113.818176, 4.40000582, 13.8115101) o57.Rotation = Vector3.new(-0, 0, -2.27223404e-006) o57.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o57.Velocity = Vector3.new(0.000777417503, 9.27956426e-005, -0.00743345637) o57.Anchored = true o57.CanCollide = false o57.FormFactor = Enum.FormFactor.Plate o57.Size = Vector3.new(1, 2, 8) o57.CFrame = CFrame.new(113.818176, 4.40000582, 13.8115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1) o57.BackSurface = Enum.SurfaceType.Weld o57.BottomSurface = Enum.SurfaceType.Weld o57.FrontSurface = Enum.SurfaceType.Weld o57.LeftSurface = Enum.SurfaceType.Weld o57.RightSurface = Enum.SurfaceType.Weld o57.TopSurface = Enum.SurfaceType.Weld o57.Color = Color3.new(0.972549, 0.972549, 0.972549) o58.Parent = o57 o59.Parent = o1 o59.BrickColor = BrickColor.new("Institutional white") o59.Position = Vector3.new(113.818176, 3.80000734, 18.3115101) o59.Rotation = Vector3.new(-0, 0, -2.27223404e-006) o59.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o59.Velocity = Vector3.new(0.00204589404, -0.000567637384, -0.00752151385) o59.Anchored = true o59.FormFactor = Enum.FormFactor.Plate o59.Size = Vector3.new(1, 0.800000012, 1) o59.CFrame = CFrame.new(113.818176, 3.80000734, 18.3115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1) o59.BackSurface = Enum.SurfaceType.Weld o59.BottomSurface = Enum.SurfaceType.Weld o59.FrontSurface = Enum.SurfaceType.Weld o59.LeftSurface = Enum.SurfaceType.Weld o59.RightSurface = Enum.SurfaceType.Weld o59.TopSurface = Enum.SurfaceType.Weld o59.Color = Color3.new(0.972549, 0.972549, 0.972549) o60.Parent = o59 o61.Parent = o1 o61.BrickColor = BrickColor.new("Institutional white") o61.Position = Vector3.new(105.317894, 8.40000725, 18.3115101) o61.Rotation = Vector3.new(-0, 0, -2.21330401e-006) o61.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o61.Velocity = Vector3.new(0.00237834454, 4.6692905e-005, -0.00436840346) o61.Anchored = true o61.CanCollide = false o61.FormFactor = Enum.FormFactor.Plate o61.Size = Vector3.new(14, 0.400000006, 1) o61.CFrame = CFrame.new(105.317894, 8.40000725, 18.3115101, 0.999999762, 3.86294303e-008, 0, -3.86821704e-008, 1, 0, 0, 0, 1) o61.BackSurface = Enum.SurfaceType.Weld o61.BottomSurface = Enum.SurfaceType.Weld o61.FrontSurface = Enum.SurfaceType.Weld o61.LeftSurface = Enum.SurfaceType.Weld o61.RightSurface = Enum.SurfaceType.Weld o61.TopSurface = Enum.SurfaceType.Weld o61.Color = Color3.new(0.972549, 0.972549, 0.972549) o62.Parent = o61 o63.Parent = o1 o63.BrickColor = BrickColor.new("Institutional white") o63.Position = Vector3.new(97.8181839, 5.79500866, 9.31151104) o63.Rotation = Vector3.new(-0, 0, -2.36894834e-006) o63.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o63.Velocity = Vector3.new(-0.000433602603, 0.00190957636, -0.00256440602) o63.Anchored = true o63.CanCollide = false o63.FormFactor = Enum.FormFactor.Plate o63.Size = Vector3.new(1, 4.80999994, 1) o63.CFrame = CFrame.new(97.8181839, 5.79500866, 9.31151104, 1, 4.13459489e-008, 0, -4.13459489e-008, 1, 0, 0, 0, 1) o63.BottomSurface = Enum.SurfaceType.Weld o63.LeftSurface = Enum.SurfaceType.Weld o63.RightSurface = Enum.SurfaceType.Weld o63.TopSurface = Enum.SurfaceType.Weld o63.Color = Color3.new(0.972549, 0.972549, 0.972549) o64.Parent = o1 o64.BrickColor = BrickColor.new("Institutional white") o64.Position = Vector3.new(97.8178101, 7.00000858, 18.3115101) o64.Rotation = Vector3.new(-0, 0, -2.14529973e-006) o64.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o64.Velocity = Vector3.new(0.00227716402, 0.00058873737, -0.00238744705) o64.Anchored = true o64.CanCollide = false o64.FormFactor = Enum.FormFactor.Plate o64.Size = Vector3.new(1, 2.4000001, 1) o64.CFrame = CFrame.new(97.8178101, 7.00000858, 18.3115101, 0.999999762, 3.74425326e-008, 0, -3.74952727e-008, 1, 0, 0, 0, 1) o64.BottomSurface = Enum.SurfaceType.Weld o64.LeftSurface = Enum.SurfaceType.Weld o64.RightSurface = Enum.SurfaceType.Weld o64.TopSurface = Enum.SurfaceType.Weld o64.Color = Color3.new(0.972549, 0.972549, 0.972549) o65.Parent = o1 o65.BrickColor = BrickColor.new("Institutional white") o65.Position = Vector3.new(113.418167, 2.40000749, 13.8115101) o65.Rotation = Vector3.new(-0, 0, -2.27223404e-006) o65.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o65.Velocity = Vector3.new(0.000632874086, 0.000121704477, -0.0076103732) o65.Anchored = true o65.FormFactor = Enum.FormFactor.Plate o65.Size = Vector3.new(1.80000007, 1.20000005, 10) o65.CFrame = CFrame.new(113.418167, 2.40000749, 13.8115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1) o65.BackSurface = Enum.SurfaceType.Weld o65.BottomSurface = Enum.SurfaceType.Weld o65.FrontSurface = Enum.SurfaceType.Weld o65.LeftSurface = Enum.SurfaceType.Weld o65.RightSurface = Enum.SurfaceType.Weld o65.TopSurface = Enum.SurfaceType.Weld o65.Color = Color3.new(0.972549, 0.972549, 0.972549) o66.Parent = o65 o67.Parent = o1 o67.BrickColor = BrickColor.new("Really red") o67.Position = Vector3.new(113.817245, 4.80000687, 18.3115101) o67.Rotation = Vector3.new(-0, 0, -3.17145691e-006) o67.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o67.Velocity = Vector3.new(0.00211816584, -0.000567570096, -0.0073744799) o67.Anchored = true o67.FormFactor = Enum.FormFactor.Plate o67.Size = Vector3.new(1, 1.20000005, 1) o67.CFrame = CFrame.new(113.817245, 4.80000687, 18.3115101, 1, 5.53523627e-008, 0, -5.53523627e-008, 1, 0, 0, 0, 1) o67.BackSurface = Enum.SurfaceType.Weld o67.BottomSurface = Enum.SurfaceType.Weld o67.FrontSurface = Enum.SurfaceType.Weld o67.LeftSurface = Enum.SurfaceType.Weld o67.RightSurface = Enum.SurfaceType.Weld o67.TopSurface = Enum.SurfaceType.Weld o67.Color = Color3.new(1, 0, 0) o68.Parent = o67 o69.Parent = o1 o69.BrickColor = BrickColor.new("Institutional white") o69.Position = Vector3.new(112.817894, 8.40000725, 13.8115139) o69.Rotation = Vector3.new(-0, 0, -2.21330401e-006) o69.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o69.Velocity = Vector3.new(0.00106650498, 0.000165087578, -0.00655480288) o69.Anchored = true o69.CanCollide = false o69.FormFactor = Enum.FormFactor.Plate o69.Size = Vector3.new(1, 0.400000006, 10) o69.CFrame = CFrame.new(112.817894, 8.40000725, 13.8115139, 0.999999762, 3.86294303e-008, 0, -3.86821704e-008, 1, 0, 0, 0, 1) o69.BackSurface = Enum.SurfaceType.Weld o69.BottomSurface = Enum.SurfaceType.Weld o69.FrontSurface = Enum.SurfaceType.Weld o69.LeftSurface = Enum.SurfaceType.Weld o69.RightSurface = Enum.SurfaceType.Weld o69.TopSurface = Enum.SurfaceType.Weld o69.Color = Color3.new(0.972549, 0.972549, 0.972549) o70.Parent = o69 o71.Parent = o1 o71.BrickColor = BrickColor.new("Really black") o71.Position = Vector3.new(92.2181854, 3.8000083, 13.8115101) o71.Rotation = Vector3.new(-0, 0, -2.2601489e-006) o71.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o71.Velocity = Vector3.new(0.0007340546, 0.00165386556, -0.00122468593) o71.Anchored = true o71.FormFactor = Enum.FormFactor.Custom o71.Size = Vector3.new(0.200000003, 0.800000012, 6) o71.CFrame = CFrame.new(92.2181854, 3.8000083, 13.8115101, 0.999997854, 3.94469524e-008, 0, -3.99216233e-008, 1, 0, 0, 0, 1) o71.BackSurface = Enum.SurfaceType.Weld o71.BottomSurface = Enum.SurfaceType.Weld o71.FrontSurface = Enum.SurfaceType.Weld o71.LeftSurface = Enum.SurfaceType.Weld o71.RightSurface = Enum.SurfaceType.Weld o71.TopSurface = Enum.SurfaceType.Weld o71.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o72.Parent = o71 o73.Name = "Head" o73.Parent = o1 o73.Material = Enum.Material.SmoothPlastic o73.BrickColor = BrickColor.new("Institutional white") o73.Position = Vector3.new(99.207077, 7.026577, 15.2047167) o73.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005) o73.Anchored = true o73.FormFactor = Enum.FormFactor.Symmetric o73.Size = Vector3.new(2, 1, 1) o73.CFrame = CFrame.new(99.207077, 7.026577, 15.2047167, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915) o73.BackSurface = Enum.SurfaceType.SmoothNoOutlines o73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o73.RightSurface = Enum.SurfaceType.SmoothNoOutlines o73.TopSurface = Enum.SurfaceType.SmoothNoOutlines o73.Color = Color3.new(0.972549, 0.972549, 0.972549) o74.Parent = o73 o74.Scale = Vector3.new(1.25, 1.25, 1.25) o75.Name = "face" o75.Parent = o73 o75.Texture = "rbxasset://textures/face.png" o76.Parent = o1 o76.BrickColor = BrickColor.new("Institutional white") o76.Position = Vector3.new(99.6954269, 5.81500673, 9.31151104) o76.Rotation = Vector3.new(-0, 0, -8.82515178e-006) o76.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o76.Velocity = Vector3.new(-0.000432157307, 0.00177390513, -0.00310872309) o76.Anchored = true o76.CanCollide = false o76.FormFactor = Enum.FormFactor.Plate o76.Size = Vector3.new(2.76000023, 4.82999992, 1) o76.CFrame = CFrame.new(99.6954269, 5.81500673, 9.31151104, 1, 1.54027958e-007, 0, -1.54027958e-007, 1, 0, 0, 0, 1) o76.BottomSurface = Enum.SurfaceType.Weld o76.LeftSurface = Enum.SurfaceType.Weld o76.RightSurface = Enum.SurfaceType.Weld o76.TopSurface = Enum.SurfaceType.Weld o76.Color = Color3.new(0.972549, 0.972549, 0.972549) o77.Parent = o1 o77.BrickColor = BrickColor.new("Institutional white") o77.Position = Vector3.new(100.909996, 5.80000877, 14.2915134) o77.Rotation = Vector3.new(-0, 0, -7.89941078e-006) o77.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) o77.Velocity = Vector3.new(0.0010185279, 0.000955246738, -0.00346499542) o77.Anchored = true o77.FormFactor = Enum.FormFactor.Plate o77.Size = Vector3.new(0.200000003, 4.80000019, 9.0199995) o77.CFrame = CFrame.new(100.909996, 5.80000877, 14.2915134, 1, 1.37870728e-007, 0, -1.37870728e-007, 1, 0, 0, 0, 1) o77.BackSurface = Enum.SurfaceType.Weld o77.BottomSurface = Enum.SurfaceType.Weld o77.FrontSurface = Enum.SurfaceType.Weld o77.LeftSurface = Enum.SurfaceType.Weld o77.RightSurface = Enum.SurfaceType.Weld o77.TopSurface = Enum.SurfaceType.Weld o77.Color = Color3.new(0.972549, 0.972549, 0.972549) o78.Parent = o77 o79.Name = "Head" o79.Parent = o1 o79.Material = Enum.Material.SmoothPlastic o79.BrickColor = BrickColor.new("Institutional white") o79.Position = Vector3.new(103.10894, 7.49666739, 15.2047167) o79.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006) o79.Anchored = true o79.FormFactor = Enum.FormFactor.Symmetric o79.Size = Vector3.new(2, 1, 1) o79.CFrame = CFrame.new(103.10894, 7.49666739, 15.2047167, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942) o79.BackSurface = Enum.SurfaceType.SmoothNoOutlines o79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o79.RightSurface = Enum.SurfaceType.SmoothNoOutlines o79.TopSurface = Enum.SurfaceType.SmoothNoOutlines o79.Color = Color3.new(0.972549, 0.972549, 0.972549) o80.Parent = o79 o80.Scale = Vector3.new(1.25, 1.25, 1.25) o81.Name = "face" o81.Parent = o79 o81.Texture = "rbxasset://textures/face.png" o82.Name = "Handle" o82.Parent = o1 o82.Material = Enum.Material.SmoothPlastic o82.Position = Vector3.new(103.10894, 7.34666729, 15.2047167) o82.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006) o82.Anchored = true o82.CanCollide = false o82.FormFactor = Enum.FormFactor.Symmetric o82.Size = Vector3.new(2, 2, 2) o82.CFrame = CFrame.new(103.10894, 7.34666729, 15.2047167, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942) o82.BottomSurface = Enum.SurfaceType.Smooth o82.TopSurface = Enum.SurfaceType.Smooth o83.Parent = o82 o83.MeshId = "http://www.roblox.com/asset/?id=15393031" o83.TextureId = "http://www.roblox.com/asset/?id=15393013" o83.MeshType = Enum.MeshType.FileMesh o84.Parent = o1 o84.NameOcclusion = Enum.NameOcclusion.NoOcclusion o84.RightLeg = o94 o84.LeftLeg = o96 o84.Torso = o87 o84.Health = 0 o84.MaxHealth = 0 o85.Name = "TPPART" o85.Parent = o1 o85.Transparency = 1 o85.Position = Vector3.new(104.155182, 4.24109221, 12.6003485) o85.Rotation = Vector3.new(-0, 0, -3.5910773e-006) o85.Anchored = true o85.CanCollide = false o85.Size = Vector3.new(4, 1, 2) o85.CFrame = CFrame.new(104.155182, 4.24109221, 12.6003485, 1, 6.26761221e-008, 0, -6.26761221e-008, 1, 0, 0, 0, 1) o86.Name = "TPPART2" o86.Parent = o1 o86.Transparency = 1 o86.Position = Vector3.new(104.155182, 5.40188599, 6.32408237) o86.Rotation = Vector3.new(-0, 0, -3.5910773e-006) o86.Anchored = true o86.CanCollide = false o86.Size = Vector3.new(4, 1, 2) o86.CFrame = CFrame.new(104.155182, 5.40188599, 6.32408237, 1, 6.26761221e-008, 0, -6.26761221e-008, 1, 0, 0, 0, 1) o87.Name = "Torso" o87.Parent = o1 o87.Material = Enum.Material.SmoothPlastic o87.BrickColor = BrickColor.new("Navy blue") o87.Position = Vector3.new(99.207077, 5.526577, 15.2047167) o87.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005) o87.Anchored = true o87.FormFactor = Enum.FormFactor.Symmetric o87.Size = Vector3.new(2, 2, 1) o87.CFrame = CFrame.new(99.207077, 5.526577, 15.2047167, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915) o87.BackSurface = Enum.SurfaceType.SmoothNoOutlines o87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o87.RightSurface = Enum.SurfaceType.SmoothNoOutlines o87.TopSurface = Enum.SurfaceType.SmoothNoOutlines o87.Color = Color3.new(0, 0.12549, 0.376471) o88.Name = "roblox" o88.Parent = o87 o89.Name = "Right Shoulder" o89.Parent = o87 o89.C0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) o89.C1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) o89.Part0 = o87 o89.Part1 = o95 o89.DesiredAngle = -0.062025275081396 o89.MaxVelocity = 0.15000000596046 o90.Name = "Left Shoulder" o90.Parent = o87 o90.C0 = CFrame.new(-1, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) o90.C1 = CFrame.new(0.5, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) o90.Part0 = o87 o90.Part1 = o97 o90.DesiredAngle = -0.062025275081396 o90.MaxVelocity = 0.15000000596046 o91.Name = "Right Hip" o91.Parent = o87 o91.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) o91.C1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) o91.Part0 = o87 o91.Part1 = o94 o91.DesiredAngle = 0.062025275081396 o91.MaxVelocity = 0.10000000149012 o92.Name = "Left Hip" o92.Parent = o87 o92.C0 = CFrame.new(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) o92.C1 = CFrame.new(-0.5, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) o92.Part0 = o87 o92.Part1 = o96 o92.DesiredAngle = 0.062025275081396 o92.MaxVelocity = 0.10000000149012 o93.Name = "Neck" o93.Parent = o87 o93.C0 = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0) o93.C1 = CFrame.new(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0) o93.Part0 = o87 o93.Part1 = o73 o93.MaxVelocity = 0.10000000149012 o94.Name = "Right Leg" o94.Parent = o1 o94.Material = Enum.Material.SmoothPlastic o94.BrickColor = BrickColor.new("Navy blue") o94.Position = Vector3.new(99.215416, 3.526577, 14.7047863) o94.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005) o94.Anchored = true o94.CanCollide = false o94.FormFactor = Enum.FormFactor.Symmetric o94.Size = Vector3.new(1, 2, 1) o94.CFrame = CFrame.new(99.215416, 3.526577, 14.7047863, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915) o94.BackSurface = Enum.SurfaceType.SmoothNoOutlines o94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o94.RightSurface = Enum.SurfaceType.SmoothNoOutlines o94.TopSurface = Enum.SurfaceType.SmoothNoOutlines o94.Color = Color3.new(0, 0.12549, 0.376471) o95.Name = "Right Arm" o95.Parent = o1 o95.Material = Enum.Material.SmoothPlastic o95.BrickColor = BrickColor.new("Maroon") o95.Position = Vector3.new(99.2321014, 5.526577, 13.7049236) o95.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005) o95.Anchored = true o95.CanCollide = false o95.FormFactor = Enum.FormFactor.Symmetric o95.Size = Vector3.new(1, 2, 1) o95.CFrame = CFrame.new(99.2321014, 5.526577, 13.7049236, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915) o95.BackSurface = Enum.SurfaceType.SmoothNoOutlines o95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o95.RightSurface = Enum.SurfaceType.SmoothNoOutlines o95.TopSurface = Enum.SurfaceType.SmoothNoOutlines o95.Color = Color3.new(0.458824, 0, 0) o96.Name = "Left Leg" o96.Parent = o1 o96.Material = Enum.Material.SmoothPlastic o96.BrickColor = BrickColor.new("Navy blue") o96.Position = Vector3.new(99.1987381, 3.526577, 15.7046452) o96.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005) o96.Anchored = true o96.CanCollide = false o96.FormFactor = Enum.FormFactor.Symmetric o96.Size = Vector3.new(1, 2, 1) o96.CFrame = CFrame.new(99.1987381, 3.526577, 15.7046452, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915) o96.BackSurface = Enum.SurfaceType.SmoothNoOutlines o96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o96.RightSurface = Enum.SurfaceType.SmoothNoOutlines o96.TopSurface = Enum.SurfaceType.SmoothNoOutlines o96.Color = Color3.new(0, 0.12549, 0.376471) o97.Name = "Left Arm" o97.Parent = o1 o97.Material = Enum.Material.SmoothPlastic o97.BrickColor = BrickColor.new("Maroon") o97.Position = Vector3.new(99.1820602, 5.526577, 16.7045078) o97.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005) o97.Anchored = true o97.CanCollide = false o97.FormFactor = Enum.FormFactor.Symmetric o97.Size = Vector3.new(1, 2, 1) o97.CFrame = CFrame.new(99.1820602, 5.526577, 16.7045078, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915) o97.BackSurface = Enum.SurfaceType.SmoothNoOutlines o97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o97.RightSurface = Enum.SurfaceType.SmoothNoOutlines o97.TopSurface = Enum.SurfaceType.SmoothNoOutlines o97.Color = Color3.new(0.458824, 0, 0) o98.Name = "Torso" o98.Parent = o1 o98.Material = Enum.Material.SmoothPlastic o98.BrickColor = BrickColor.new("Navy blue") o98.Position = Vector3.new(103.10894, 5.99666739, 15.2047167) o98.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006) o98.Anchored = true o98.FormFactor = Enum.FormFactor.Symmetric o98.Size = Vector3.new(2, 2, 1) o98.CFrame = CFrame.new(103.10894, 5.99666739, 15.2047167, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942) o98.BackSurface = Enum.SurfaceType.SmoothNoOutlines o98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o98.RightSurface = Enum.SurfaceType.SmoothNoOutlines o98.TopSurface = Enum.SurfaceType.SmoothNoOutlines o98.Color = Color3.new(0, 0.12549, 0.376471) o99.Name = "roblox" o99.Parent = o98 o100.Name = "Right Hip" o100.Parent = o98 o100.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) o100.C1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) o100.Part0 = o98 o100.Part1 = o103 o100.DesiredAngle = 0.062025275081396 o100.MaxVelocity = 0.10000000149012 o101.Name = "Left Hip" o101.Parent = o98 o101.C0 = CFrame.new(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) o101.C1 = CFrame.new(-0.5, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) o101.Part0 = o98 o101.Part1 = o105 o101.DesiredAngle = 0.062025275081396 o101.MaxVelocity = 0.10000000149012 o102.Name = "Neck" o102.Parent = o98 o102.C0 = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0) o102.C1 = CFrame.new(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0) o102.Part0 = o98 o102.Part1 = o79 o102.MaxVelocity = 0.10000000149012 o103.Name = "Right Leg" o103.Parent = o1 o103.Material = Enum.Material.SmoothPlastic o103.BrickColor = BrickColor.new("Really black") o103.Position = Vector3.new(103.608864, 3.99666739, 15.2130556) o103.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006) o103.Anchored = true o103.CanCollide = false o103.FormFactor = Enum.FormFactor.Symmetric o103.Size = Vector3.new(1, 2, 1) o103.CFrame = CFrame.new(103.608864, 3.99666739, 15.2130556, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942) o103.BackSurface = Enum.SurfaceType.SmoothNoOutlines o103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o103.RightSurface = Enum.SurfaceType.SmoothNoOutlines o103.TopSurface = Enum.SurfaceType.SmoothNoOutlines o103.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o104.Name = "Right Arm" o104.Parent = o1 o104.Material = Enum.Material.SmoothPlastic o104.BrickColor = BrickColor.new("Maroon") o104.Position = Vector3.new(104.615349, 5.89646101, 14.8330393) o104.Rotation = Vector3.new(45.0039597, -0.675833881, 0.675880313) o104.Anchored = true o104.CanCollide = false o104.FormFactor = Enum.FormFactor.Symmetric o104.Size = Vector3.new(1, 2, 1) o104.CFrame = CFrame.new(104.615349, 5.89646101, 14.8330393, 0.999860883, -0.0117952423, -0.0117952526, 0, 0.707107067, -0.707106411, 0.0166809987, 0.707008064, 0.707008719) o104.BackSurface = Enum.SurfaceType.SmoothNoOutlines o104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o104.RightSurface = Enum.SurfaceType.SmoothNoOutlines o104.TopSurface = Enum.SurfaceType.SmoothNoOutlines o104.Color = Color3.new(0.458824, 0, 0) o105.Name = "Left Leg" o105.Parent = o1 o105.Material = Enum.Material.SmoothPlastic o105.BrickColor = BrickColor.new("Really black") o105.Position = Vector3.new(102.609009, 3.99666739, 15.1963739) o105.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006) o105.Anchored = true o105.CanCollide = false o105.FormFactor = Enum.FormFactor.Symmetric o105.Size = Vector3.new(1, 2, 1) o105.CFrame = CFrame.new(102.609009, 3.99666739, 15.1963739, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942) o105.BackSurface = Enum.SurfaceType.SmoothNoOutlines o105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o105.RightSurface = Enum.SurfaceType.SmoothNoOutlines o105.TopSurface = Enum.SurfaceType.SmoothNoOutlines o105.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o106.Name = "Left Arm" o106.Parent = o1 o106.Material = Enum.Material.SmoothPlastic o106.BrickColor = BrickColor.new("Maroon") o106.Position = Vector3.new(101.617271, 5.96075201, 14.6924496) o106.Rotation = Vector3.new(45.0039597, -0.675833881, 0.675880313) o106.Anchored = true o106.CanCollide = false o106.FormFactor = Enum.FormFactor.Symmetric o106.Size = Vector3.new(1, 2, 1) o106.CFrame = CFrame.new(101.617271, 5.96075201, 14.6924496, 0.999860883, -0.0117952423, -0.0117952526, 0, 0.707107067, -0.707106411, 0.0166809987, 0.707008064, 0.707008719) o106.BackSurface = Enum.SurfaceType.SmoothNoOutlines o106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o106.RightSurface = Enum.SurfaceType.SmoothNoOutlines o106.TopSurface = Enum.SurfaceType.SmoothNoOutlines o106.Color = Color3.new(0.458824, 0, 0) o107.Parent = o1 o107.Position = Vector3.new(110.917458, 1.50000954, 18.4564953) o107.Rotation = Vector3.new(-90, 1.20620803e-006, -180) o107.Anchored = true o107.FormFactor = Enum.FormFactor.Symmetric o107.Size = Vector3.new(2.39999986, 1.31000006, 2.39999986) o107.CFrame = CFrame.new(110.917458, 1.50000954, 18.4564953, -1, 2.98044895e-008, 2.10523012e-008, 2.10523012e-008, 7.54615499e-008, 1, 2.9804486e-008, 1, -7.54615499e-008) o108.Parent = o107 o109.Parent = o1 o109.BrickColor = BrickColor.new("Really black") o109.Position = Vector3.new(110.917442, 1.50002527, 9.1665411) o109.Rotation = Vector3.new(-90, 6.45824184e-006, 2.56150702e-006) o109.Anchored = true o109.FormFactor = Enum.FormFactor.Symmetric o109.Size = Vector3.new(3, 1.20000005, 3) o109.CFrame = CFrame.new(110.917442, 1.50002527, 9.1665411, 1, -4.47067308e-008, 1.12717586e-007, -1.12717586e-007, -5.51334445e-009, 1, -4.47067308e-008, -1, -5.51334933e-009) o109.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o110.Parent = o109 o111.Parent = o1 o111.BrickColor = BrickColor.new("Really black") o111.Position = Vector3.new(110.917458, 1.50000954, 18.4564953) o111.Rotation = Vector3.new(-90, 1.20620803e-006, -180) o111.Anchored = true o111.FormFactor = Enum.FormFactor.Symmetric o111.Size = Vector3.new(3, 1.20000005, 3) o111.CFrame = CFrame.new(110.917458, 1.50000954, 18.4564953, -1, 2.98044895e-008, 2.10523012e-008, 2.10523012e-008, 7.54615499e-008, 1, 2.9804486e-008, 1, -7.54615499e-008) o111.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o112.Parent = o111 o113.Parent = o1 o113.Position = Vector3.new(95.3486252, 1.50002623, 9.1665411) o113.Rotation = Vector3.new(-90, 6.45824184e-006, 2.56150702e-006) o113.Anchored = true o113.FormFactor = Enum.FormFactor.Symmetric o113.Size = Vector3.new(2.39999986, 1.31000006, 2.39999986) o113.CFrame = CFrame.new(95.3486252, 1.50002623, 9.1665411, 1, -4.47067308e-008, 1.12717586e-007, -1.12717586e-007, -5.51334445e-009, 1, -4.47067308e-008, -1, -5.51334933e-009) o114.Parent = o113 o115.Parent = o1 o115.BrickColor = BrickColor.new("Really black") o115.Position = Vector3.new(95.3486252, 1.50002623, 9.1665411) o115.Rotation = Vector3.new(-90, 6.45824184e-006, 2.56150702e-006) o115.Anchored = true o115.FormFactor = Enum.FormFactor.Symmetric o115.Size = Vector3.new(3, 1.20000005, 3) o115.CFrame = CFrame.new(95.3486252, 1.50002623, 9.1665411, 1, -4.47067308e-008, 1.12717586e-007, -1.12717586e-007, -5.51334445e-009, 1, -4.47067308e-008, -1, -5.51334933e-009) o115.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o116.Parent = o115 o117.Parent = o1 o117.BrickColor = BrickColor.new("Really black") o117.Position = Vector3.new(95.3486252, 1.50001001, 18.4564877) o117.Rotation = Vector3.new(-90, 1.20620803e-006, -180) o117.Anchored = true o117.FormFactor = Enum.FormFactor.Symmetric o117.Size = Vector3.new(3, 1.20000005, 3) o117.CFrame = CFrame.new(95.3486252, 1.50001001, 18.4564877, -1, 2.98044895e-008, 2.10523012e-008, 2.10523012e-008, 7.54615499e-008, 1, 2.9804486e-008, 1, -7.54615499e-008) o117.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o118.Parent = o117 o119.Parent = o1 o119.Position = Vector3.new(110.917442, 1.50002527, 9.1665411) o119.Rotation = Vector3.new(-90, 6.45824184e-006, 2.56150702e-006) o119.Anchored = true o119.FormFactor = Enum.FormFactor.Symmetric o119.Size = Vector3.new(2.39999986, 1.31000006, 2.39999986) o119.CFrame = CFrame.new(110.917442, 1.50002527, 9.1665411, 1, -4.47067308e-008, 1.12717586e-007, -1.12717586e-007, -5.51334445e-009, 1, -4.47067308e-008, -1, -5.51334933e-009) o120.Parent = o119 o121.Name = "Handle" o121.Parent = o1 o121.Material = Enum.Material.SmoothPlastic o121.Position = Vector3.new(99.207077, 6.8765769, 15.2047167) o121.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005) o121.Anchored = true o121.CanCollide = false o121.FormFactor = Enum.FormFactor.Symmetric o121.Size = Vector3.new(2, 2, 2) o121.CFrame = CFrame.new(99.207077, 6.8765769, 15.2047167, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915) o121.BottomSurface = Enum.SurfaceType.Smooth o121.TopSurface = Enum.SurfaceType.Smooth o122.Parent = o121 o122.MeshId = "http://www.roblox.com/asset/?id=15393031" o122.TextureId = "http://www.roblox.com/asset/?id=15393013" o122.MeshType = Enum.MeshType.FileMesh o123.Name = "RPPART" o123.Parent = o1 o123.Transparency = 1 o123.Position = Vector3.new(103.454132, 5.33460093, 13.0707426) o123.Rotation = Vector3.new(-90, 0, -0) o123.Anchored = true o123.CanCollide = false o123.Size = Vector3.new(4, 1, 2) o123.CFrame = CFrame.new(103.454132, 5.33460093, 13.0707426, 1, 0, 0, 0, 0, 1, 0, -1, 0) o124.Parent = o12 o124.Texture = "http://roblox.com/asset/?id=112031763" function MoveY(model, Position) for _,part in pairs (model:GetChildren()) do if part.ClassName == "Part" then part.CFrame = part.CFrame + Vector3.new(0,Position,0) end end end function MoveX(model, Position) for _,part in pairs (model:GetChildren()) do if part.ClassName == "Part" then part.CFrame = part.CFrame + Vector3.new(Position,0,0) end end end function MoveSpawn(model, PLAYERPOS) for _,part in pairs (model:GetChildren()) do if part.ClassName == "Part" then part.CFrame = part.CFrame + PLAYERPOS + Vector3.new(50,-2.7,-5) end end end function MoveZ(model, Position) for _,part in pairs (model:GetChildren()) do if part.ClassName == "Part" then part.CFrame = part.CFrame + Vector3.new(0,0,Position) end end end function MoveZPart(Part, Position) Part.CFrame = Part.CFrame + Vector3.new(0,0,Position) end function MoveXPart(Part, Position) Part.CFrame = Part.CFrame + Vector3.new(Position,0,0) end game.Players[Victim].Character.HumanoidRootPart.Anchored = true OMGCREEPY = Instance.new("Sound") OMGCREEPY.Parent = o1 OMGCREEPY.Volume = .5 OMGCREEPY.SoundId = "rbxassetid://177775134" for i,v in pairs (o1:GetChildren()) do if v:IsA("Part") then v.Material = "SmoothPlastic" v.BackSurface = "SmoothNoOutlines" v.FrontSurface = "SmoothNoOutlines" v.BottomSurface = "SmoothNoOutlines" v.LeftSurface = "SmoothNoOutlines" v.RightSurface = "SmoothNoOutlines" v.TopSurface = "SmoothNoOutlines" end end OMGCREEPY:Play() o21:Play() MoveSpawn(o1,game.Players[Victim].Character.HumanoidRootPart.Position) for i=1,51 do MoveX(o1,-3) wait(.05) end wait(.5) MoveZPart(o12,-1) wait(.2) for i=1,6 do MoveXPart(o12,1) wait(.1) end wait(.5) game.Players[Victim].Character.HumanoidRootPart.CFrame = o86.CFrame wait(.5) game.Players[Victim].Character.HumanoidRootPart.CFrame = o85.CFrame wait(.5) MoveZPart(o12,1) wait(.2) for i=1,6 do MoveXPart(o12,-1) wait(.1) end for i=1,50 do MoveX(o1,-3) game.Players[Victim].Character.HumanoidRootPart.CFrame = o85.CFrame wait(.05) end game.Players[Victim].Character.Head.face.Texture = "rbxassetid://629925029" game.Players[Victim].Character.HumanoidRootPart.CFrame = o123.CFrame SCREAM = Instance.new("Sound") SCREAM.Parent = game.Players[Victim].Character.Head SCREAM.SoundId = "rbxassetid://138167455" SCREAM:Play() wait(2.5) game.Players[Victim].Character.Head.BrickColor = BrickColor.new("Maroon") MoveZPart(o12,-1) wait(.2) for i=1,6 do MoveXPart(o12,1) wait(.1) end wait(.5) game.Players[Victim].Character.HumanoidRootPart.CFrame = o86.CFrame wait(.5) MoveZPart(o12,1) wait(.2) for i=1,6 do MoveXPart(o12,-1) wait(.1) end game.Players[Victim].Character.Humanoid.Health = 0 player = game.Players[Victim] char = player.Character char.Archivable = true local rg = char:Clone() rg.HumanoidRootPart:Destroy() rg.Name = "" rg.Humanoid.MaxHealth = 0 for i, v in pairs(rg.Torso:GetChildren()) do if v:IsA("Motor6D") then v:Destroy() end end local n = Instance.new("Glue", rg.Torso) n.Name = "Neck" n.Part0 = rg.Torso n.Part1 = rg.Head n.C0 = CFrame.new(0, 1, 0) n.C1 = CFrame.new(0, -0.5, 0) local rs = Instance.new("Glue", rg.Torso) rs.Name = "Right Shoulder" rs.Part0 = rg.Torso rs.Part1 = rg["Right Arm"] rs.C0 = CFrame.new(1.5, 0.5, 0) rs.C1 = CFrame.new(0, 0.5, 0) local ls = Instance.new("Glue", rg.Torso) ls.Name = "Left Shoulder" ls.Part0 = rg.Torso ls.Part1 = rg["Left Arm"] ls.C0 = CFrame.new(-1.5, 0.5, 0) ls.C1 = CFrame.new(0, 0.5, 0) local rh = Instance.new("Glue", rg.Torso) rh.Name = "Right Hip" rh.Part0 = rg.Torso rh.Part1 = rg["Right Leg"] rh.C0 = CFrame.new(0.5, -1, 0) rh.C1 = CFrame.new(0, 1, 0) local lh = Instance.new("Glue", rg.Torso) lh.Name = "Left Hip" lh.Part0 = rg.Torso lh.Part1 = rg["Left Leg"] lh.C0 = CFrame.new(-0.5, -1, 0) lh.C1 = CFrame.new(0, 1, 0) char.Torso:Destroy() char.Head:Destroy() char["Left Leg"]:Destroy() char["Left Arm"]:Destroy() char["Right Leg"]:Destroy() char["Right Arm"]:Destroy() rg.Parent = game.Workspace rg.Head.BrickColor = BrickColor.new("Maroon") function DEATH () OHHNELLY = Instance.new("Part") OHHNELLY.Parent = workspace OHHNELLY.Anchored = false OHHNELLY.Material = Enum.Material.SmoothPlastic OHHNELLY.BrickColor = BrickColor.new("Maroon") OHHNELLY.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) OHHNELLY.Position = rg.Head.Position OHHNELLY.Color = Color3.new(0.458824, 0, 0) OHHNELLY.BackSurface = Enum.SurfaceType.SmoothNoOutlines OHHNELLY.BottomSurface = Enum.SurfaceType.SmoothNoOutlines OHHNELLY.FrontSurface = Enum.SurfaceType.SmoothNoOutlines OHHNELLY.LeftSurface = Enum.SurfaceType.SmoothNoOutlines OHHNELLY.RightSurface = Enum.SurfaceType.SmoothNoOutlines OHHNELLY.TopSurface = Enum.SurfaceType.SmoothNoOutlines end for i=1,20 do DEATH() MoveX(o1,-3) wait(.05) end o1:Destroy() end) WoodChip.MouseButton1Click:connect(function() --WOODCHIPPER by DMS --self explanitory Victim = User2.text local gorayyv3 = function(f,scri) local oldenv = getfenv(f) local newenv = setmetatable({}, { __index = function(_, k) if k:lower() == 'script' then return scri else return oldenv[k] end end }) setfenv(f, newenv) ypcall(function() f() end) end cors = {} o1 = Instance.new("Model") o2 = Instance.new("WedgePart") o3 = Instance.new("WedgePart") o4 = Instance.new("WedgePart") o5 = Instance.new("Part") o6 = Instance.new("BlockMesh") o7 = Instance.new("Part") o8 = Instance.new("BlockMesh") o9 = Instance.new("Part") o10 = Instance.new("BlockMesh") o11 = Instance.new("Part") o12 = Instance.new("BlockMesh") o13 = Instance.new("Part") o14 = Instance.new("BlockMesh") o15 = Instance.new("WedgePart") o16 = Instance.new("WedgePart") o17 = Instance.new("Part") o18 = Instance.new("BlockMesh") o19 = Instance.new("Part") o20 = Instance.new("BlockMesh") o21 = Instance.new("WedgePart") o22 = Instance.new("WedgePart") o23 = Instance.new("Part") o24 = Instance.new("BlockMesh") o25 = Instance.new("WedgePart") o26 = Instance.new("Model") o27 = Instance.new("Part") o28 = Instance.new("Script") o29 = Instance.new("Part") o30 = Instance.new("Part") o31 = Instance.new("BlockMesh") o32 = Instance.new("WedgePart") o33 = Instance.new("Part") o34 = Instance.new("BlockMesh") o35 = Instance.new("WedgePart") o36 = Instance.new("WedgePart") o37 = Instance.new("Part") o38 = Instance.new("WedgePart") o39 = Instance.new("Part") o40 = Instance.new("BlockMesh") o41 = Instance.new("WedgePart") o42 = Instance.new("Part") o43 = Instance.new("BlockMesh") o44 = Instance.new("WedgePart") o45 = Instance.new("Part") o46 = Instance.new("WedgePart") o47 = Instance.new("Part") o48 = Instance.new("BlockMesh") o49 = Instance.new("WedgePart") o50 = Instance.new("Part") o1.Parent = mas o2.Parent = o1 o2.Material = Enum.Material.Metal o2.BrickColor = BrickColor.new("Bright yellow") o2.Position = Vector3.new(-18.1899929, 4.10999489, 17.9549961) o2.Rotation = Vector3.new(-0, 0, -90) o2.Anchored = true o2.Size = Vector3.new(1, 1.20000005, 3.11000013) o2.CFrame = CFrame.new(-18.1899929, 4.10999489, 17.9549961, 0, 1, 0, -1, 0, 0, 0, 0, 1) o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines o2.Color = Color3.new(0.960784, 0.803922, 0.188235) o3.Parent = o1 o3.Material = Enum.Material.Metal o3.BrickColor = BrickColor.new("Bright yellow") o3.Position = Vector3.new(-14.3899822, 4.10999489, 18.1799965) o3.Rotation = Vector3.new(-0, 0, 90) o3.Anchored = true o3.Size = Vector3.new(1, 1.20000005, 2.66000009) o3.CFrame = CFrame.new(-14.3899822, 4.10999489, 18.1799965, 0, -1, 0, 1, 0, 0, 0, 0, 1) o3.BackSurface = Enum.SurfaceType.SmoothNoOutlines o3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o3.RightSurface = Enum.SurfaceType.SmoothNoOutlines o3.TopSurface = Enum.SurfaceType.SmoothNoOutlines o3.Color = Color3.new(0.960784, 0.803922, 0.188235) o4.Parent = o1 o4.Material = Enum.Material.Metal o4.BrickColor = BrickColor.new("Bright yellow") o4.Position = Vector3.new(-19.2899933, 6.00991678, 17.9799957) o4.Anchored = true o4.Size = Vector3.new(1, 4.80000019, 3.06000018) o4.CFrame = CFrame.new(-19.2899933, 6.00991678, 17.9799957, 1, 0, 0, 0, 1, 0, 0, 0, 1) o4.BackSurface = Enum.SurfaceType.SmoothNoOutlines o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines o4.Color = Color3.new(0.960784, 0.803922, 0.188235) o5.Parent = o1 o5.Material = Enum.Material.Metal o5.BrickColor = BrickColor.new("Bright yellow") o5.Position = Vector3.new(-14.7899857, 11.0092764, 36.4000015) o5.Rotation = Vector3.new(-0, 0, -90) o5.Anchored = true o5.FormFactor = Enum.FormFactor.Plate o5.Size = Vector3.new(2, 0.400000006, 7.78000021) o5.CFrame = CFrame.new(-14.7899857, 11.0092764, 36.4000015, 0, 1, 0, -1, 0, 0, 0, 0, 1) o5.BackSurface = Enum.SurfaceType.SmoothNoOutlines o5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o5.RightSurface = Enum.SurfaceType.SmoothNoOutlines o5.TopSurface = Enum.SurfaceType.SmoothNoOutlines o5.Color = Color3.new(0.960784, 0.803922, 0.188235) o6.Parent = o5 o7.Parent = o1 o7.Material = Enum.Material.Metal o7.BrickColor = BrickColor.new("Bright yellow") o7.Position = Vector3.new(-16.2899876, 9.80919838, 36.3800011) o7.Rotation = Vector3.new(5.12264205e-006, 0, -0) o7.Velocity = Vector3.new(0, 0, 70) o7.Anchored = true o7.FormFactor = Enum.FormFactor.Plate o7.Size = Vector3.new(3, 0.400000006, 7.74000025) o7.CFrame = CFrame.new(-16.2899876, 9.80919838, 36.3800011, 1, 0, 0, 0, 1, -8.94069672e-008, 0, 8.94069672e-008, 1) o7.BackSurface = Enum.SurfaceType.SmoothNoOutlines o7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o7.RightSurface = Enum.SurfaceType.SmoothNoOutlines o7.TopSurface = Enum.SurfaceType.SmoothNoOutlines o7.Color = Color3.new(0.960784, 0.803922, 0.188235) o8.Parent = o7 o9.Parent = o1 o9.Material = Enum.Material.Metal o9.BrickColor = BrickColor.new("Bright yellow") o9.Position = Vector3.new(-16.2899876, 12.4093018, 36.3600006) o9.Rotation = Vector3.new(5.12264205e-006, 0, -0) o9.Anchored = true o9.CanCollide = false o9.FormFactor = Enum.FormFactor.Plate o9.Size = Vector3.new(3, 0.800000012, 7.70000029) o9.CFrame = CFrame.new(-16.2899876, 12.4093018, 36.3600006, 1, 0, 0, 0, 1, -8.94069672e-008, 0, 8.94069672e-008, 1) o9.BackSurface = Enum.SurfaceType.SmoothNoOutlines o9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o9.RightSurface = Enum.SurfaceType.SmoothNoOutlines o9.TopSurface = Enum.SurfaceType.SmoothNoOutlines o9.Color = Color3.new(0.960784, 0.803922, 0.188235) o10.Parent = o9 o11.Parent = o1 o11.Material = Enum.Material.Metal o11.BrickColor = BrickColor.new("Bright yellow") o11.Position = Vector3.new(-16.2899876, 11.3093338, 32.1100082) o11.Rotation = Vector3.new(-90, 90, 0) o11.Anchored = true o11.FormFactor = Enum.FormFactor.Plate o11.Size = Vector3.new(1, 0.400000006, 3) o11.CFrame = CFrame.new(-16.2899876, 11.3093338, 32.1100082, 6.59824251e-010, 1.39606771e-010, 1, -1, 0, 6.5982475e-010, 0, -1, -1.67527747e-009) o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines o11.Color = Color3.new(0.960784, 0.803922, 0.188235) o12.Parent = o11 o12.Scale = Vector3.new(2.20000005, 2, 1) o13.Parent = o1 o13.Material = Enum.Material.Metal o13.BrickColor = BrickColor.new("Bright yellow") o13.Position = Vector3.new(-16.2899876, 10.2091904, 31.0100002) o13.Anchored = true o13.CanCollide = false o13.Size = Vector3.new(3, 1.20000005, 3) o13.CFrame = CFrame.new(-16.2899876, 10.2091904, 31.0100002, 1, 0, 0, 0, 1, 0, 0, 0, 1) o13.BackSurface = Enum.SurfaceType.SmoothNoOutlines o13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o13.RightSurface = Enum.SurfaceType.SmoothNoOutlines o13.TopSurface = Enum.SurfaceType.SmoothNoOutlines o13.Color = Color3.new(0.960784, 0.803922, 0.188235) o14.Parent = o13 o15.Parent = o1 o15.Material = Enum.Material.Metal o15.BrickColor = BrickColor.new("Bright yellow") o15.Position = Vector3.new(-16.2899876, 10.2091904, 29.0099907) o15.Anchored = true o15.Size = Vector3.new(3, 1.20000005, 1) o15.CFrame = CFrame.new(-16.2899876, 10.2091904, 29.0099907, 1, 0, 0, 0, 1, 0, 0, 0, 1) o15.BackSurface = Enum.SurfaceType.SmoothNoOutlines o15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o15.RightSurface = Enum.SurfaceType.SmoothNoOutlines o15.TopSurface = Enum.SurfaceType.SmoothNoOutlines o15.Color = Color3.new(0.960784, 0.803922, 0.188235) o16.Parent = o1 o16.Material = Enum.Material.Metal o16.BrickColor = BrickColor.new("Bright yellow") o16.Position = Vector3.new(-16.2899876, 8.40921021, 28.0099888) o16.Anchored = true o16.Size = Vector3.new(3, 2.4000001, 1) o16.CFrame = CFrame.new(-16.2899876, 8.40921021, 28.0099888, 1, 0, 0, 0, 1, 0, 0, 0, 1) o16.BackSurface = Enum.SurfaceType.SmoothNoOutlines o16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o16.RightSurface = Enum.SurfaceType.SmoothNoOutlines o16.TopSurface = Enum.SurfaceType.SmoothNoOutlines o16.Color = Color3.new(0.960784, 0.803922, 0.188235) o17.Parent = o1 o17.Material = Enum.Material.Metal o17.BrickColor = BrickColor.new("Bright yellow") o17.Position = Vector3.new(-17.5899925, 11.0092678, 36.3600006) o17.Rotation = Vector3.new(-0, 0, -90) o17.Anchored = true o17.FormFactor = Enum.FormFactor.Plate o17.Size = Vector3.new(2, 0.400000006, 7.70000029) o17.CFrame = CFrame.new(-17.5899925, 11.0092678, 36.3600006, 0, 1, 0, -1, 0, 0, 0, 0, 1) o17.BackSurface = Enum.SurfaceType.SmoothNoOutlines o17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o17.RightSurface = Enum.SurfaceType.SmoothNoOutlines o17.TopSurface = Enum.SurfaceType.SmoothNoOutlines o17.Color = Color3.new(0.960784, 0.803922, 0.188235) o18.Parent = o17 o19.Parent = o1 o19.Material = Enum.Material.Metal o19.BrickColor = BrickColor.new("Bright yellow") o19.Position = Vector3.new(-16.2899876, 8.40921021, 29.5099983) o19.Anchored = true o19.CanCollide = false o19.Size = Vector3.new(3, 2.4000001, 2) o19.CFrame = CFrame.new(-16.2899876, 8.40921021, 29.5099983, 1, 0, 0, 0, 1, 0, 0, 0, 1) o19.BackSurface = Enum.SurfaceType.SmoothNoOutlines o19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o19.RightSurface = Enum.SurfaceType.SmoothNoOutlines o19.TopSurface = Enum.SurfaceType.SmoothNoOutlines o19.Color = Color3.new(0.960784, 0.803922, 0.188235) o20.Parent = o19 o21.Parent = o1 o21.Material = Enum.Material.Metal o21.BrickColor = BrickColor.new("Bright yellow") o21.Position = Vector3.new(-16.2899876, 11.8092804, 30.7099991) o21.Rotation = Vector3.new(90, 0, -180) o21.Anchored = true o21.Size = Vector3.new(3, 2.4000001, 2) o21.CFrame = CFrame.new(-16.2899876, 11.8092804, 30.7099991, -1, 0, 0, 0, 0, -1, 0, -1, 0) o21.BackSurface = Enum.SurfaceType.SmoothNoOutlines o21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o21.RightSurface = Enum.SurfaceType.SmoothNoOutlines o21.TopSurface = Enum.SurfaceType.SmoothNoOutlines o21.Color = Color3.new(0.960784, 0.803922, 0.188235) o22.Parent = o1 o22.Material = Enum.Material.Metal o22.BrickColor = BrickColor.new("Bright yellow") o22.Position = Vector3.new(-16.2899876, 8.40921021, 31.5100002) o22.Rotation = Vector3.new(-180, 0, -0) o22.Anchored = true o22.Size = Vector3.new(3, 2.4000001, 2) o22.CFrame = CFrame.new(-16.2899876, 8.40921021, 31.5100002, 1, 0, 0, 0, -1, 8.94069672e-008, 0, -8.94069672e-008, -1) o22.BackSurface = Enum.SurfaceType.SmoothNoOutlines o22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o22.RightSurface = Enum.SurfaceType.SmoothNoOutlines o22.TopSurface = Enum.SurfaceType.SmoothNoOutlines o22.Color = Color3.new(0.960784, 0.803922, 0.188235) o23.Parent = o1 o23.Material = Enum.Material.Metal o23.BrickColor = BrickColor.new("Bright yellow") o23.Position = Vector3.new(-13.7899876, 6.00991678, 23.5099964) o23.Anchored = true o23.Size = Vector3.new(2, 4.80000019, 8) o23.CFrame = CFrame.new(-13.7899876, 6.00991678, 23.5099964, 1, 0, 0, 0, 1, 0, 0, 0, 1) o23.BackSurface = Enum.SurfaceType.SmoothNoOutlines o23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o23.RightSurface = Enum.SurfaceType.SmoothNoOutlines o23.TopSurface = Enum.SurfaceType.SmoothNoOutlines o23.Color = Color3.new(0.960784, 0.803922, 0.188235) o24.Parent = o23 o25.Parent = o1 o25.Material = Enum.Material.Metal o25.BrickColor = BrickColor.new("Bright yellow") o25.Position = Vector3.new(-13.7899876, 8.60981369, 23.5099964) o25.Rotation = Vector3.new(-0, -90, 0) o25.Anchored = true o25.FormFactor = Enum.FormFactor.Plate o25.Size = Vector3.new(8, 0.400000006, 2) o25.CFrame = CFrame.new(-13.7899876, 8.60981369, 23.5099964, 0, 0, -1, 0, 1, 0, 1, 0, 0) o25.BackSurface = Enum.SurfaceType.SmoothNoOutlines o25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o25.RightSurface = Enum.SurfaceType.SmoothNoOutlines o25.TopSurface = Enum.SurfaceType.SmoothNoOutlines o25.Color = Color3.new(0.960784, 0.803922, 0.188235) o26.Parent = o1 o27.Name = "Teleporter Sender" o27.Parent = o26 o27.Material = Enum.Material.Metal o27.BrickColor = BrickColor.new("New Yeller") o27.Position = Vector3.new(-16.2899876, 4.20995092, 27.0099964) o27.Rotation = Vector3.new(-180, -90, 0) o27.Anchored = true o27.FormFactor = Enum.FormFactor.Plate o27.Size = Vector3.new(1, 1.20000005, 3) o27.CFrame = CFrame.new(-16.2899876, 4.20995092, 27.0099964, 0, 0, -1, 0, -1, 0, -1, 0, 0) o27.BackSurface = Enum.SurfaceType.SmoothNoOutlines o27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o27.RightSurface = Enum.SurfaceType.SmoothNoOutlines o27.TopSurface = Enum.SurfaceType.SmoothNoOutlines o27.Color = Color3.new(1, 1, 0) o28.Parent = o27 table.insert(cors,coroutine.create(function() wait() gorayyv3(function() -- DO NOT CHANGE ANYTHING INSIDE THIS MODEL!! function onTouched(part) -- onTouched function. Connects with the touched event (later shown.) "part" is the toucher. part.CFrame = CFrame.new(script.Parent.Parent.R.Position.x, script.Parent.Parent.R.Position.y + 5, script.Parent.Parent.R.Position.z) -- Puts the brick over the brick named "R" end --ends a script script.Parent.Touched:connect(onTouched) --connects the "Touched" event with the "onTouched" function end,o28) end)) o29.Name = "R" o29.Parent = o26 o29.Material = Enum.Material.Metal o29.BrickColor = BrickColor.new("New Yeller") o29.Position = Vector3.new(-16.2342339, 10.2085276, 35.0100021) o29.Rotation = Vector3.new(-180, -90, 0) o29.Anchored = true o29.CanCollide = false o29.FormFactor = Enum.FormFactor.Plate o29.Size = Vector3.new(1, 0.400000006, 1) o29.CFrame = CFrame.new(-16.2342339, 10.2085276, 35.0100021, 0, 0, -1, 0, -1, 0, -1, 0, 0) o29.BackSurface = Enum.SurfaceType.SmoothNoOutlines o29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o29.RightSurface = Enum.SurfaceType.SmoothNoOutlines o29.TopSurface = Enum.SurfaceType.SmoothNoOutlines o29.Color = Color3.new(1, 1, 0) o30.Parent = o1 o30.Material = Enum.Material.Metal o30.BrickColor = BrickColor.new("Bright yellow") o30.Position = Vector3.new(-16.2899876, 4.80993605, 29.5099983) o30.Anchored = true o30.Size = Vector3.new(7, 4.80000019, 4) o30.CFrame = CFrame.new(-16.2899876, 4.80993605, 29.5099983, 1, 0, 0, 0, 1, 0, 0, 0, 1) o30.BackSurface = Enum.SurfaceType.SmoothNoOutlines o30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o30.RightSurface = Enum.SurfaceType.SmoothNoOutlines o30.TopSurface = Enum.SurfaceType.SmoothNoOutlines o30.Color = Color3.new(0.960784, 0.803922, 0.188235) o31.Parent = o30 o32.Parent = o1 o32.Material = Enum.Material.Metal o32.BrickColor = BrickColor.new("Bright yellow") o32.Position = Vector3.new(-18.7899933, 8.60981369, 23.5099964) o32.Rotation = Vector3.new(0, 90, 0) o32.Anchored = true o32.FormFactor = Enum.FormFactor.Plate o32.Size = Vector3.new(8, 0.400000006, 2) o32.CFrame = CFrame.new(-18.7899933, 8.60981369, 23.5099964, 0, 0, 1, 0, 1, 0, -1, 0, 0) o32.BackSurface = Enum.SurfaceType.SmoothNoOutlines o32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o32.RightSurface = Enum.SurfaceType.SmoothNoOutlines o32.TopSurface = Enum.SurfaceType.SmoothNoOutlines o32.Color = Color3.new(0.960784, 0.803922, 0.188235) o33.Parent = o1 o33.Material = Enum.Material.Metal o33.BrickColor = BrickColor.new("Bright yellow") o33.Position = Vector3.new(-16.2899876, 8.80981636, 23.5099964) o33.Anchored = true o33.CanCollide = false o33.FormFactor = Enum.FormFactor.Plate o33.Size = Vector3.new(3, 0.400000006, 8) o33.CFrame = CFrame.new(-16.2899876, 8.80981636, 23.5099964, 1, 0, 0, 0, 1, 0, 0, 0, 1) o33.BackSurface = Enum.SurfaceType.SmoothNoOutlines o33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o33.RightSurface = Enum.SurfaceType.SmoothNoOutlines o33.TopSurface = Enum.SurfaceType.SmoothNoOutlines o33.Color = Color3.new(0.960784, 0.803922, 0.188235) o34.Parent = o33 o35.Parent = o1 o35.Material = Enum.Material.Metal o35.BrickColor = BrickColor.new("Bright yellow") o35.Position = Vector3.new(-18.1899929, 7.10991478, 19.2049961) o35.Rotation = Vector3.new(-0, 0, -90) o35.Anchored = true o35.Size = Vector3.new(1, 1.20000005, 0.610000014) o35.CFrame = CFrame.new(-18.1899929, 7.10991478, 19.2049961, 0, 1, 0, -1, 0, 0, 0, 0, 1) o35.BackSurface = Enum.SurfaceType.SmoothNoOutlines o35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o35.RightSurface = Enum.SurfaceType.SmoothNoOutlines o35.TopSurface = Enum.SurfaceType.SmoothNoOutlines o35.Color = Color3.new(0.960784, 0.803922, 0.188235) o36.Parent = o1 o36.Material = Enum.Material.Metal o36.BrickColor = BrickColor.new("Bright yellow") o36.Position = Vector3.new(-18.1899929, 6.10991478, 18.614996) o36.Rotation = Vector3.new(-0, 0, -90) o36.Anchored = true o36.Size = Vector3.new(1, 1.20000005, 1.79000008) o36.CFrame = CFrame.new(-18.1899929, 6.10991478, 18.614996, 0, 1, 0, -1, 0, 0, 0, 0, 1) o36.BackSurface = Enum.SurfaceType.SmoothNoOutlines o36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o36.RightSurface = Enum.SurfaceType.SmoothNoOutlines o36.TopSurface = Enum.SurfaceType.SmoothNoOutlines o36.Color = Color3.new(0.960784, 0.803922, 0.188235) o37.Name = "SAW" o37.Parent = o1 o37.Material = Enum.Material.Metal o37.BrickColor = BrickColor.new("Dark stone grey") o37.Reflectance = 0.5 o37.Position = Vector3.new(-16.2899876, 3.81000805, 24.0099964) o37.Rotation = Vector3.new(180, 90, 0) o37.Anchored = true o37.CanCollide = false o37.FormFactor = Enum.FormFactor.Plate o37.Size = Vector3.new(1, 0.400000006, 3) o37.CFrame = CFrame.new(-16.2899876, 3.81000805, 24.0099964, 0, 0, 1, 0, -1, 0, 1, 0, 0) o37.BackSurface = Enum.SurfaceType.SmoothNoOutlines o37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o37.RightSurface = Enum.SurfaceType.SmoothNoOutlines o37.TopSurface = Enum.SurfaceType.SmoothNoOutlines o37.Color = Color3.new(0.388235, 0.372549, 0.384314) o38.Parent = o1 o38.Material = Enum.Material.Metal o38.BrickColor = BrickColor.new("Bright yellow") o38.Position = Vector3.new(-14.3899822, 7.10991478, 19.409996) o38.Rotation = Vector3.new(-0, 0, 90) o38.Anchored = true o38.Size = Vector3.new(1, 1.20000005, 0.200000003) o38.CFrame = CFrame.new(-14.3899822, 7.10991478, 19.409996, 0, -1, 0, 1, 0, 0, 0, 0, 1) o38.BackSurface = Enum.SurfaceType.SmoothNoOutlines o38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o38.RightSurface = Enum.SurfaceType.SmoothNoOutlines o38.TopSurface = Enum.SurfaceType.SmoothNoOutlines o38.Color = Color3.new(0.960784, 0.803922, 0.188235) o39.Parent = o1 o39.Material = Enum.Material.Metal o39.BrickColor = BrickColor.new("Bright yellow") o39.Position = Vector3.new(-18.7899933, 6.00991678, 23.5099964) o39.Anchored = true o39.Size = Vector3.new(2, 4.80000019, 8) o39.CFrame = CFrame.new(-18.7899933, 6.00991678, 23.5099964, 1, 0, 0, 0, 1, 0, 0, 0, 1) o39.BackSurface = Enum.SurfaceType.SmoothNoOutlines o39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o39.RightSurface = Enum.SurfaceType.SmoothNoOutlines o39.TopSurface = Enum.SurfaceType.SmoothNoOutlines o39.Color = Color3.new(0.960784, 0.803922, 0.188235) o40.Parent = o39 o41.Parent = o1 o41.Material = Enum.Material.Metal o41.BrickColor = BrickColor.new("Bright yellow") o41.Position = Vector3.new(-13.2899876, 6.00991678, 18.0149956) o41.Anchored = true o41.Size = Vector3.new(1, 4.80000019, 2.99000025) o41.CFrame = CFrame.new(-13.2899876, 6.00991678, 18.0149956, 1, 0, 0, 0, 1, 0, 0, 0, 1) o41.BackSurface = Enum.SurfaceType.SmoothNoOutlines o41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o41.RightSurface = Enum.SurfaceType.SmoothNoOutlines o41.TopSurface = Enum.SurfaceType.SmoothNoOutlines o41.Color = Color3.new(0.960784, 0.803922, 0.188235) o42.Parent = o1 o42.Material = Enum.Material.Metal o42.BrickColor = BrickColor.new("Bright yellow") o42.Position = Vector3.new(-16.2899876, 1.81000996, 24.3549957) o42.Anchored = true o42.Size = Vector3.new(3, 1.20000005, 14.3100004) o42.CFrame = CFrame.new(-16.2899876, 1.81000996, 24.3549957, 1, 0, 0, 0, 1, 0, 0, 0, 1) o42.BackSurface = Enum.SurfaceType.SmoothNoOutlines o42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o42.RightSurface = Enum.SurfaceType.SmoothNoOutlines o42.TopSurface = Enum.SurfaceType.SmoothNoOutlines o42.Color = Color3.new(0.960784, 0.803922, 0.188235) o43.Parent = o42 o44.Parent = o1 o44.Material = Enum.Material.Metal o44.BrickColor = BrickColor.new("Bright yellow") o44.Position = Vector3.new(-18.1899929, 5.10993004, 18.3049965) o44.Rotation = Vector3.new(-0, 0, -90) o44.Anchored = true o44.Size = Vector3.new(1, 1.20000005, 2.41000009) o44.CFrame = CFrame.new(-18.1899929, 5.10993004, 18.3049965, 0, 1, 0, -1, 0, 0, 0, 0, 1) o44.BackSurface = Enum.SurfaceType.SmoothNoOutlines o44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o44.RightSurface = Enum.SurfaceType.SmoothNoOutlines o44.TopSurface = Enum.SurfaceType.SmoothNoOutlines o44.Color = Color3.new(0.960784, 0.803922, 0.188235) o45.Parent = o1 o45.Material = Enum.Material.Metal o45.Position = Vector3.new(-16.2899876, 6.10993004, 19.8399963) o45.Anchored = true o45.CanCollide = false o45.FormFactor = Enum.FormFactor.Symmetric o45.Size = Vector3.new(3, 5, 0.200000003) o45.CFrame = CFrame.new(-16.2899876, 6.10993004, 19.8399963, 1, 0, 0, 0, 1, 0, 0, 0, 1) o45.BackSurface = Enum.SurfaceType.SmoothNoOutlines o45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o45.RightSurface = Enum.SurfaceType.SmoothNoOutlines o45.TopSurface = Enum.SurfaceType.SmoothNoOutlines o46.Parent = o1 o46.Material = Enum.Material.Metal o46.BrickColor = BrickColor.new("Bright yellow") o46.Position = Vector3.new(-14.3899822, 6.10991478, 18.9749966) o46.Rotation = Vector3.new(-0, 0, 90) o46.Anchored = true o46.Size = Vector3.new(1, 1.20000005, 1.07000005) o46.CFrame = CFrame.new(-14.3899822, 6.10991478, 18.9749966, 0, -1, 0, 1, 0, 0, 0, 0, 1) o46.BackSurface = Enum.SurfaceType.SmoothNoOutlines o46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o46.RightSurface = Enum.SurfaceType.SmoothNoOutlines o46.TopSurface = Enum.SurfaceType.SmoothNoOutlines o46.Color = Color3.new(0.960784, 0.803922, 0.188235) o47.Parent = o1 o47.Material = Enum.Material.Metal o47.BrickColor = BrickColor.new("Bright yellow") o47.Position = Vector3.new(-16.2899876, 3.01000595, 22.0049973) o47.Velocity = Vector3.new(0, 0, 10) o47.Anchored = true o47.Size = Vector3.new(7, 1.20000005, 11.0100002) o47.CFrame = CFrame.new(-16.2899876, 3.01000595, 22.0049973, 1, 0, 0, 0, 1, 0, 0, 0, 1) o47.BackSurface = Enum.SurfaceType.SmoothNoOutlines o47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o47.RightSurface = Enum.SurfaceType.SmoothNoOutlines o47.TopSurface = Enum.SurfaceType.SmoothNoOutlines o47.Color = Color3.new(0.960784, 0.803922, 0.188235) o48.Parent = o47 o49.Parent = o1 o49.Material = Enum.Material.Metal o49.BrickColor = BrickColor.new("Bright yellow") o49.Position = Vector3.new(-14.3899822, 5.10993004, 18.5749969) o49.Rotation = Vector3.new(-0, 0, 90) o49.Anchored = true o49.Size = Vector3.new(1, 1.20000005, 1.87000012) o49.CFrame = CFrame.new(-14.3899822, 5.10993004, 18.5749969, 0, -1, 0, 1, 0, 0, 0, 0, 1) o49.BackSurface = Enum.SurfaceType.SmoothNoOutlines o49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o49.RightSurface = Enum.SurfaceType.SmoothNoOutlines o49.TopSurface = Enum.SurfaceType.SmoothNoOutlines o49.Color = Color3.new(0.960784, 0.803922, 0.188235) o50.Name = "TPPART" o50.Parent = o1 o50.Transparency = 1 o50.Position = Vector3.new(-16.3199883, 6.54012489, 18.1499977) o50.Anchored = true o50.CanCollide = false o50.Size = Vector3.new(1.6400001, 1, 2) o50.CFrame = CFrame.new(-16.3199883, 6.54012489, 18.1499977, 1, 0, 0, 0, 1, 0, 0, 0, 1) bin = o1.SAW function onTouched(hit) if hit.Name ~= "notme" then hit:BreakJoints() end if hit.formFactor ~= 2 and hit.Name ~= "notme" then hit.formFactor = 2 hit.Size = Vector3.new(1,.4,1) gorayy = Instance.new("Sound") gorayy.Parent = o1 gorayy.SoundId = "rbxassetid://559523758" gorayy:Play() o1g = Instance.new("Sound") o1g.Parent = hit o1g.SoundId = "rbxassetid://429400881" o1g:Play() wait(1.7) for i=1,5 do o1g = Instance.new("Sound") o1g.Parent = hit o1g.SoundId = "rbxassetid://429400881" o1g:Play() o11 = Instance.new("Part") o11 = Instance.new("Part") o11.Name = "GOREPART" o11.Parent = o1 o11.BrickColor = BrickColor.new("Maroon") o11.Position = hit.Position o11.Rotation = Vector3.new(-180, 1.29089606, 180) o11.FormFactor = Enum.FormFactor.Symmetric o11.Size = Vector3.new(.3,.3,.3) o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines o11.Color = Color3.new(0.458824, 0, 0) end end end connection = bin.Touched:connect(onTouched) for i=1,#cors do coroutine.resume(cors[i]) end o1.Parent = workspace o1:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(10,0,10)) game.Players[Victim].Character.Humanoid.WalkSpeed = 0 game.Players[Victim].Character.Humanoid.JumpPower = 0 game.Players[Victim].Character.HumanoidRootPart.CFrame = o1.TPPART.CFrame wait(10) o1:Destroy() end) M9B.MouseButton1Click:connect(function() --M9 Bayonet by DMS CustomColor = "Navy blue" Electric = true Flaming = false --Keep only one on otherwise it looks ugly ok o1 = Instance.new("Tool") o2 = Instance.new("Animation") o3 = Instance.new("Animation") o4 = Instance.new("Animation") o5 = Instance.new("Part") o6 = Instance.new("SpecialMesh") o7 = Instance.new("Part") o8 = Instance.new("Sound") o9 = Instance.new("Sound") o10 = Instance.new("Weld") o12 = Instance.new("Part") o13 = Instance.new("BlockMesh") o14 = Instance.new("Part") o15 = Instance.new("SpecialMesh") o16 = Instance.new("Part") o17 = Instance.new("BlockMesh") o18 = Instance.new("Part") o19 = Instance.new("BlockMesh") o20 = Instance.new("Part") o21 = Instance.new("BlockMesh") o22 = Instance.new("Part") o23 = Instance.new("SpecialMesh") o24 = Instance.new("Part") o25 = Instance.new("BlockMesh") o26 = Instance.new("Part") o27 = Instance.new("SpecialMesh") o28 = Instance.new("Part") o29 = Instance.new("BlockMesh") o30 = Instance.new("Part") o31 = Instance.new("BlockMesh") o32 = Instance.new("Part") o33 = Instance.new("SpecialMesh") o34 = Instance.new("Part") o35 = Instance.new("BlockMesh") o36 = Instance.new("Part") o37 = Instance.new("BlockMesh") o38 = Instance.new("Part") o39 = Instance.new("BlockMesh") o40 = Instance.new("Part") o41 = Instance.new("SpecialMesh") o42 = Instance.new("Part") o43 = Instance.new("SpecialMesh") o44 = Instance.new("Part") o45 = Instance.new("BlockMesh") o46 = Instance.new("Part") o47 = Instance.new("BlockMesh") o48 = Instance.new("Part") o49 = Instance.new("SpecialMesh") o50 = Instance.new("Part") o51 = Instance.new("SpecialMesh") o52 = Instance.new("Part") o53 = Instance.new("BlockMesh") o54 = Instance.new("Part") o55 = Instance.new("SpecialMesh") o56 = Instance.new("Part") o57 = Instance.new("SpecialMesh") o58 = Instance.new("Part") o59 = Instance.new("BlockMesh") o60 = Instance.new("Part") o61 = Instance.new("BlockMesh") o62 = Instance.new("Part") o63 = Instance.new("BlockMesh") o64 = Instance.new("Part") o65 = Instance.new("BlockMesh") o66 = Instance.new("Part") o67 = Instance.new("SpecialMesh") o68 = Instance.new("Part") o69 = Instance.new("SpecialMesh") o70 = Instance.new("Part") o71 = Instance.new("SpecialMesh") o72 = Instance.new("Part") o73 = Instance.new("SpecialMesh") o74 = Instance.new("Part") o75 = Instance.new("SpecialMesh") o76 = Instance.new("Part") o77 = Instance.new("SpecialMesh") o78 = Instance.new("Part") o79 = Instance.new("SpecialMesh") o80 = Instance.new("Part") o81 = Instance.new("SpecialMesh") o1.Name = "M9 Bayonet" o1.Parent = game.Players.LocalPlayer.Backpack o1.GripForward = Vector3.new(-1.74845553e-007, -0, 1) o1.GripPos = Vector3.new(0.487703323, -3.7742065e-010, 0.00863459334) o1.GripRight = Vector3.new(0, -1, -0) o1.GripUp = Vector3.new(-1, 0, -1.74845553e-007) o1.CanBeDropped = false o2.Name = "Whack" o2.Parent = o1 o2.AnimationId = "http://www.roblox.com/Asset?ID=94161088" o3.Name = "Chop" o3.Parent = o1 o3.AnimationId = "rbxassetid://32659699" o4.Name = "Slice" o4.Parent = o1 o4.AnimationId = "rbxassetid://28090109" o5.Name = "CHOPPART" if Flaming == true then h = Instance.new("Fire") h.Parent = o5 o1hj = Instance.new("Sound") o1hj.Parent = o5 o1hj.SoundId = "rbxassetid://516449725" end o5.Parent = o1 o5.Material = Enum.Material.Concrete o5.BrickColor = BrickColor.new("Flint") o5.Transparency = 0.0099999997764826 o5.Rotation = Vector3.new(-90, 0, -0.00945380423) o5.Anchored = true o5.FormFactor = Enum.FormFactor.Custom o5.Size = Vector3.new(0.255101323, 0.344200104, 2.08510137) o5.CFrame = CFrame.new(-21.315691, 2.52215576, -59.9679756, 1, 0.000165000005, 0, 0, 0, 1, 0.000165000005, -1, 0) o5.BackSurface = Enum.SurfaceType.SmoothNoOutlines o5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o5.RightSurface = Enum.SurfaceType.SmoothNoOutlines o5.TopSurface = Enum.SurfaceType.SmoothNoOutlines o5.Color = Color3.new(0.411765, 0.4, 0.360784) o6.Parent = o5 o6.MeshId = "rbxassetid://432983174" o6.Offset = Vector3.new(0, 0.0299999993, -0.5) o6.Scale = Vector3.new(0.00100000005, 0.00230000005, 0.00230000005) o6.MeshType = Enum.MeshType.FileMesh o7.Name = "Handle" o7.Parent = o1 o7.BrickColor = BrickColor.new("Black") o7.Transparency = 1 o7.Rotation = Vector3.new(-2.1344531e-006, 0, -90) o7.Size = Vector3.new(0.200000003, 1, 0.200000003) o7.CFrame = CFrame.new(-21.3078709, 1.4734453, -59.7259827, 0, 1, 0, -0.999991179, 0, 3.7252903e-008, 2.98023224e-008, 0, 0.999991179) o7.BackSurface = Enum.SurfaceType.SmoothNoOutlines o7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o7.RightSurface = Enum.SurfaceType.SmoothNoOutlines o7.TopSurface = Enum.SurfaceType.SmoothNoOutlines o7.Color = Color3.new(0.105882, 0.164706, 0.207843) o8.Name = "SlashSound" o8.Parent = o7 o8.SoundId = "rbxassetid://101164100" o8.Volume = 1 o9.Name = "Hit" o9.Parent = o7 o9.SoundId = "rbxassetid://214755079" o9.Volume = 1 o10.Parent = o7 o10.C1 = CFrame.new(0, 0, 0, 1, 0, 7.4506481e-009, 0, 1, 0, -7.4506481e-009, 0, 1) o10.Part0 = o7 o10.Part1 = o7 o12.Parent = o1 o12.Material = Enum.Material.SmoothPlastic o12.BrickColor = BrickColor.new("Really black") o12.Rotation = Vector3.new(-0, -90, 0) o12.Anchored = true o12.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o12.CFrame = CFrame.new(-21.312376, 1.58790338, -59.834362, 0, 0, -1, 0, 1, 0, 1, 0, 0) o12.BackSurface = Enum.SurfaceType.SmoothNoOutlines o12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o12.RightSurface = Enum.SurfaceType.SmoothNoOutlines o12.TopSurface = Enum.SurfaceType.SmoothNoOutlines o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o13.Parent = o12 o13.Scale = Vector3.new(2.02485824, 0.153108358, 1.37797523) o14.Parent = o1 o14.Material = Enum.Material.SmoothPlastic o14.BrickColor = BrickColor.new("Really black") o14.Rotation = Vector3.new(90, -90, 0) o14.Anchored = true o14.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o14.CFrame = CFrame.new(-21.1625919, 1.58790338, -59.5406799, 0, 0, -1, -1, 0, 0, 0, 1, 0) o14.BackSurface = Enum.SurfaceType.SmoothNoOutlines o14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o14.RightSurface = Enum.SurfaceType.SmoothNoOutlines o14.TopSurface = Enum.SurfaceType.SmoothNoOutlines o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o15.Parent = o14 o15.Scale = Vector3.new(0.153108373, 0.306216687, 0.306216687) o15.MeshType = Enum.MeshType.Cylinder o16.Parent = o1 o16.Material = Enum.Material.SmoothPlastic o16.BrickColor = BrickColor.new("Really black") o16.Rotation = Vector3.new(-0, -45.0000038, -0) o16.Anchored = true o16.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o16.CFrame = CFrame.new(-21.2726593, 1.54135716, -60.071785, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829) o16.BackSurface = Enum.SurfaceType.SmoothNoOutlines o16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o16.RightSurface = Enum.SurfaceType.SmoothNoOutlines o16.TopSurface = Enum.SurfaceType.SmoothNoOutlines o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o17.Parent = o16 o17.Scale = Vector3.new(0.539707005, 0.153108358, 1.01051521) o18.Parent = o1 o18.Material = Enum.Material.SmoothPlastic o18.BrickColor = BrickColor.new("Really black") o18.Rotation = Vector3.new(-180, -45.0000038, -180) o18.Anchored = true o18.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o18.CFrame = CFrame.new(-21.351347, 1.54135716, -60.071785, -0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, -0.707106829) o18.BackSurface = Enum.SurfaceType.SmoothNoOutlines o18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o18.RightSurface = Enum.SurfaceType.SmoothNoOutlines o18.TopSurface = Enum.SurfaceType.SmoothNoOutlines o18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o19.Parent = o18 o19.Scale = Vector3.new(0.535879314, 0.153108358, 1.0066874) o20.Parent = o1 o20.Material = Enum.Material.SmoothPlastic o20.BrickColor = BrickColor.new("Really black") o20.Rotation = Vector3.new(-0, -90, 0) o20.Anchored = true o20.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o20.CFrame = CFrame.new(-21.3123779, 1.58790338, -59.5256996, 0, 0, -1, 0, 1, 0, 1, 0, 0) o20.BackSurface = Enum.SurfaceType.SmoothNoOutlines o20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o20.RightSurface = Enum.SurfaceType.SmoothNoOutlines o20.TopSurface = Enum.SurfaceType.SmoothNoOutlines o20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o21.Parent = o20 o21.Scale = Vector3.new(0.183730066, 0.153108358, 1.07175839) o22.Parent = o1 o22.Material = Enum.Material.SmoothPlastic o22.BrickColor = BrickColor.new("Really black") o22.Rotation = Vector3.new(90, -90, 0) o22.Anchored = true o22.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o22.CFrame = CFrame.new(-21.312376, 1.54135716, -60.3537903, 0, 0, -1, -1, 0, 0, 0, 1, 0) o22.BackSurface = Enum.SurfaceType.SmoothNoOutlines o22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o22.RightSurface = Enum.SurfaceType.SmoothNoOutlines o22.TopSurface = Enum.SurfaceType.SmoothNoOutlines o22.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o23.Parent = o22 o23.Scale = Vector3.new(0.153108373, 1.22486687, 1.37797523) o23.MeshType = Enum.MeshType.Cylinder o24.Parent = o1 o24.Material = Enum.Material.SmoothPlastic o24.BrickColor = BrickColor.new("Really black") o24.Rotation = Vector3.new(-0, -90, 0) o24.Anchored = true o24.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o24.CFrame = CFrame.new(-21.312376, 1.54135716, -59.834362, 0, 0, -1, 0, 1, 0, 1, 0, 0) o24.BackSurface = Enum.SurfaceType.SmoothNoOutlines o24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o24.RightSurface = Enum.SurfaceType.SmoothNoOutlines o24.TopSurface = Enum.SurfaceType.SmoothNoOutlines o24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o25.Parent = o24 o25.Scale = Vector3.new(2.02485824, 0.153108358, 1.37797523) o26.Parent = o1 o26.Material = Enum.Material.SmoothPlastic o26.BrickColor = BrickColor.new("Really black") o26.Rotation = Vector3.new(90, -90, 0) o26.Anchored = true o26.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o26.CFrame = CFrame.new(-21.1625919, 1.54135716, -59.5406799, 0, 0, -1, -1, 0, 0, 0, 1, 0) o26.BackSurface = Enum.SurfaceType.SmoothNoOutlines o26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o26.RightSurface = Enum.SurfaceType.SmoothNoOutlines o26.TopSurface = Enum.SurfaceType.SmoothNoOutlines o26.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o27.Parent = o26 o27.Scale = Vector3.new(0.153108373, 0.306216687, 0.306216687) o27.MeshType = Enum.MeshType.Cylinder o28.Parent = o1 o28.Material = Enum.Material.SmoothPlastic o28.BrickColor = BrickColor.new("Really black") o28.Rotation = Vector3.new(-0, -90, 0) o28.Anchored = true o28.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o28.CFrame = CFrame.new(-21.3123779, 1.54135716, -59.5256996, 0, 0, -1, 0, 1, 0, 1, 0, 0) o28.BackSurface = Enum.SurfaceType.SmoothNoOutlines o28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o28.RightSurface = Enum.SurfaceType.SmoothNoOutlines o28.TopSurface = Enum.SurfaceType.SmoothNoOutlines o28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o29.Parent = o28 o29.Scale = Vector3.new(0.183730066, 0.153108358, 1.07175839) o30.Parent = o1 o30.Material = Enum.Material.SmoothPlastic o30.BrickColor = BrickColor.new("Really black") o30.Rotation = Vector3.new(-180, -45.0000038, -180) o30.Anchored = true o30.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o30.CFrame = CFrame.new(-21.3210773, 1.54135716, -60.1020546, -0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, -0.707106829) o30.BackSurface = Enum.SurfaceType.SmoothNoOutlines o30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o30.RightSurface = Enum.SurfaceType.SmoothNoOutlines o30.TopSurface = Enum.SurfaceType.SmoothNoOutlines o30.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o31.Parent = o30 o31.Scale = Vector3.new(0.84209609, 0.153108358, 1.0066874) o32.Parent = o1 o32.Material = Enum.Material.SmoothPlastic o32.BrickColor = BrickColor.new("Really black") o32.Rotation = Vector3.new(90, -90, 0) o32.Anchored = true o32.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o32.CFrame = CFrame.new(-21.462162, 1.54135716, -59.5406837, 0, 0, -1, -1, 0, 0, 0, 1, 0) o32.BackSurface = Enum.SurfaceType.SmoothNoOutlines o32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o32.RightSurface = Enum.SurfaceType.SmoothNoOutlines o32.TopSurface = Enum.SurfaceType.SmoothNoOutlines o32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o33.Parent = o32 o33.Scale = Vector3.new(0.153108373, 0.306216687, 0.306216687) o33.MeshType = Enum.MeshType.Cylinder o34.Parent = o1 o34.Material = Enum.Material.SmoothPlastic o34.BrickColor = BrickColor.new("Really black") o34.Rotation = Vector3.new(-180, -45.0000038, -180) o34.Anchored = true o34.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o34.CFrame = CFrame.new(-21.351347, 1.58790338, -60.071785, -0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, -0.707106829) o34.BackSurface = Enum.SurfaceType.SmoothNoOutlines o34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o34.RightSurface = Enum.SurfaceType.SmoothNoOutlines o34.TopSurface = Enum.SurfaceType.SmoothNoOutlines o34.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o35.Parent = o34 o35.Scale = Vector3.new(0.535879314, 0.153108358, 1.0066874) o36.Parent = o1 o36.Material = Enum.Material.SmoothPlastic o36.BrickColor = BrickColor.new("Really black") o36.Rotation = Vector3.new(-0, -45.0000038, -0) o36.Anchored = true o36.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o36.CFrame = CFrame.new(-21.2726593, 1.58790338, -60.071785, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829) o36.BackSurface = Enum.SurfaceType.SmoothNoOutlines o36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o36.RightSurface = Enum.SurfaceType.SmoothNoOutlines o36.TopSurface = Enum.SurfaceType.SmoothNoOutlines o36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o37.Parent = o36 o37.Scale = Vector3.new(0.539707005, 0.153108358, 1.01051521) o38.Parent = o1 o38.Material = Enum.Material.SmoothPlastic o38.BrickColor = BrickColor.new("Really black") o38.Rotation = Vector3.new(-180, -45.0000038, -180) o38.Anchored = true o38.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o38.CFrame = CFrame.new(-21.3210773, 1.58790338, -60.1020546, -0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, -0.707106829) o38.BackSurface = Enum.SurfaceType.SmoothNoOutlines o38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o38.RightSurface = Enum.SurfaceType.SmoothNoOutlines o38.TopSurface = Enum.SurfaceType.SmoothNoOutlines o38.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o39.Parent = o38 o39.Scale = Vector3.new(0.84209609, 0.153108358, 1.0066874) o40.Parent = o1 o40.Material = Enum.Material.SmoothPlastic o40.BrickColor = BrickColor.new("Really black") o40.Rotation = Vector3.new(90, -90, 0) o40.Anchored = true o40.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o40.CFrame = CFrame.new(-21.312376, 1.58790338, -60.3537903, 0, 0, -1, -1, 0, 0, 0, 1, 0) o40.BackSurface = Enum.SurfaceType.SmoothNoOutlines o40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o40.RightSurface = Enum.SurfaceType.SmoothNoOutlines o40.TopSurface = Enum.SurfaceType.SmoothNoOutlines o40.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o41.Parent = o40 o41.Scale = Vector3.new(0.153108373, 1.22486687, 1.37797523) o41.MeshType = Enum.MeshType.Cylinder o42.Parent = o1 o42.Material = Enum.Material.SmoothPlastic o42.BrickColor = BrickColor.new("Really black") o42.Rotation = Vector3.new(90, -90, 0) o42.Anchored = true o42.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o42.CFrame = CFrame.new(-21.462162, 1.58790338, -59.5406837, 0, 0, -1, -1, 0, 0, 0, 1, 0) o42.BackSurface = Enum.SurfaceType.SmoothNoOutlines o42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o42.RightSurface = Enum.SurfaceType.SmoothNoOutlines o42.TopSurface = Enum.SurfaceType.SmoothNoOutlines o42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o43.Parent = o42 o43.Scale = Vector3.new(0.153108373, 0.306216687, 0.306216687) o43.MeshType = Enum.MeshType.Cylinder o44.Parent = o1 o44.Material = Enum.Material.SmoothPlastic o44.BrickColor = BrickColor.new("Really black") o44.Rotation = Vector3.new(-0, -90, 0) o44.Anchored = true o44.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o44.CFrame = CFrame.new(-21.312376, 1.58790338, -59.834362, 0, 0, -1, 0, 1, 0, 1, 0, 0) o44.BackSurface = Enum.SurfaceType.SmoothNoOutlines o44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o44.RightSurface = Enum.SurfaceType.SmoothNoOutlines o44.TopSurface = Enum.SurfaceType.SmoothNoOutlines o44.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o45.Parent = o44 o45.Scale = Vector3.new(2.02485824, 0.153108358, 1.37797523) o46.Parent = o1 o46.Material = Enum.Material.SmoothPlastic o46.BrickColor = BrickColor.new("Really black") o46.Rotation = Vector3.new(-0, -90, 0) o46.Anchored = true o46.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o46.CFrame = CFrame.new(-21.3123779, 1.58790338, -59.5256996, 0, 0, -1, 0, 1, 0, 1, 0, 0) o46.BackSurface = Enum.SurfaceType.SmoothNoOutlines o46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o46.RightSurface = Enum.SurfaceType.SmoothNoOutlines o46.TopSurface = Enum.SurfaceType.SmoothNoOutlines o46.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o47.Parent = o46 o47.Scale = Vector3.new(0.183730066, 0.153108358, 1.07175839) o48.Parent = o1 o48.Material = Enum.Material.SmoothPlastic o48.BrickColor = BrickColor.new("Really black") o48.Rotation = Vector3.new(90, -90, 0) o48.Anchored = true o48.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o48.CFrame = CFrame.new(-21.1625919, 1.58790338, -59.5406799, 0, 0, -1, -1, 0, 0, 0, 1, 0) o48.BackSurface = Enum.SurfaceType.SmoothNoOutlines o48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o48.RightSurface = Enum.SurfaceType.SmoothNoOutlines o48.TopSurface = Enum.SurfaceType.SmoothNoOutlines o48.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o49.Parent = o48 o49.Scale = Vector3.new(0.153108373, 0.306216687, 0.306216687) o49.MeshType = Enum.MeshType.Cylinder o50.Parent = o1 o50.Material = Enum.Material.SmoothPlastic o50.BrickColor = BrickColor.new("Really black") o50.Rotation = Vector3.new(90, -90, 0) o50.Anchored = true o50.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o50.CFrame = CFrame.new(-21.1625919, 1.54135716, -59.5406799, 0, 0, -1, -1, 0, 0, 0, 1, 0) o50.BackSurface = Enum.SurfaceType.SmoothNoOutlines o50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o50.RightSurface = Enum.SurfaceType.SmoothNoOutlines o50.TopSurface = Enum.SurfaceType.SmoothNoOutlines o50.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o51.Parent = o50 o51.Scale = Vector3.new(0.153108373, 0.306216687, 0.306216687) o51.MeshType = Enum.MeshType.Cylinder o52.Parent = o1 o52.Material = Enum.Material.SmoothPlastic o52.BrickColor = BrickColor.new("Really black") o52.Rotation = Vector3.new(-0, -45.0000038, -0) o52.Anchored = true o52.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o52.CFrame = CFrame.new(-21.2726593, 1.54135716, -60.071785, 0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, 0.707106829) o52.BackSurface = Enum.SurfaceType.SmoothNoOutlines o52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o52.RightSurface = Enum.SurfaceType.SmoothNoOutlines o52.TopSurface = Enum.SurfaceType.SmoothNoOutlines o52.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o53.Parent = o52 o53.Scale = Vector3.new(0.539707005, 0.153108358, 1.01051521) o54.Parent = o1 o54.Material = Enum.Material.SmoothPlastic o54.BrickColor = BrickColor.new("Really black") o54.Rotation = Vector3.new(90, -90, 0) o54.Anchored = true o54.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o54.CFrame = CFrame.new(-21.312376, 1.54135716, -60.3537903, 0, 0, -1, -1, 0, 0, 0, 1, 0) o54.BackSurface = Enum.SurfaceType.SmoothNoOutlines o54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o54.RightSurface = Enum.SurfaceType.SmoothNoOutlines o54.TopSurface = Enum.SurfaceType.SmoothNoOutlines o54.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o55.Parent = o54 o55.Scale = Vector3.new(0.153108373, 1.22486687, 1.37797523) o55.MeshType = Enum.MeshType.Cylinder o56.Parent = o1 o56.Material = Enum.Material.SmoothPlastic o56.BrickColor = BrickColor.new("Really black") o56.Rotation = Vector3.new(90, -90, 0) o56.Anchored = true o56.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o56.CFrame = CFrame.new(-21.462162, 1.54135716, -59.5406837, 0, 0, -1, -1, 0, 0, 0, 1, 0) o56.BackSurface = Enum.SurfaceType.SmoothNoOutlines o56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o56.RightSurface = Enum.SurfaceType.SmoothNoOutlines o56.TopSurface = Enum.SurfaceType.SmoothNoOutlines o56.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o57.Parent = o56 o57.Scale = Vector3.new(0.153108373, 0.306216687, 0.306216687) o57.MeshType = Enum.MeshType.Cylinder o58.Parent = o1 o58.Material = Enum.Material.SmoothPlastic o58.BrickColor = BrickColor.new("Really black") o58.Rotation = Vector3.new(-180, -45.0000038, -180) o58.Anchored = true o58.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o58.CFrame = CFrame.new(-21.3210773, 1.54135716, -60.1020546, -0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, -0.707106829) o58.BackSurface = Enum.SurfaceType.SmoothNoOutlines o58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o58.RightSurface = Enum.SurfaceType.SmoothNoOutlines o58.TopSurface = Enum.SurfaceType.SmoothNoOutlines o58.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o59.Parent = o58 o59.Scale = Vector3.new(0.84209609, 0.153108358, 1.0066874) o60.Parent = o1 o60.Material = Enum.Material.SmoothPlastic o60.BrickColor = BrickColor.new("Really black") o60.Rotation = Vector3.new(-180, -45.0000038, -180) o60.Anchored = true o60.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o60.CFrame = CFrame.new(-21.351347, 1.54135716, -60.071785, -0.707106829, 0, -0.707106829, 0, 1, 0, 0.707106829, 0, -0.707106829) o60.BackSurface = Enum.SurfaceType.SmoothNoOutlines o60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o60.RightSurface = Enum.SurfaceType.SmoothNoOutlines o60.TopSurface = Enum.SurfaceType.SmoothNoOutlines o60.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o61.Parent = o60 o61.Scale = Vector3.new(0.535879314, 0.153108358, 1.0066874) o62.Parent = o1 o62.Material = Enum.Material.SmoothPlastic o62.BrickColor = BrickColor.new("Really black") o62.Rotation = Vector3.new(-0, -90, 0) o62.Anchored = true o62.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o62.CFrame = CFrame.new(-21.3123779, 1.54135716, -59.5256996, 0, 0, -1, 0, 1, 0, 1, 0, 0) o62.BackSurface = Enum.SurfaceType.SmoothNoOutlines o62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o62.RightSurface = Enum.SurfaceType.SmoothNoOutlines o62.TopSurface = Enum.SurfaceType.SmoothNoOutlines o62.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o63.Parent = o62 o63.Scale = Vector3.new(0.183730066, 0.153108358, 1.07175839) o64.Parent = o1 o64.Material = Enum.Material.SmoothPlastic o64.BrickColor = BrickColor.new("Really black") o64.Rotation = Vector3.new(-0, -90, 0) o64.Anchored = true o64.Size = Vector3.new(0.279509991, 0.279509991, 0.279509991) o64.CFrame = CFrame.new(-21.312376, 1.54135716, -59.834362, 0, 0, -1, 0, 1, 0, 1, 0, 0) o64.BackSurface = Enum.SurfaceType.SmoothNoOutlines o64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o64.RightSurface = Enum.SurfaceType.SmoothNoOutlines o64.TopSurface = Enum.SurfaceType.SmoothNoOutlines o64.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o65.Parent = o64 o65.Scale = Vector3.new(2.02485824, 0.153108358, 1.37797523) o66.Parent = o1 o66.Material = Enum.Material.SmoothPlastic o66.BrickColor = BrickColor.new("Really black") o66.Rotation = Vector3.new(-180, 0, 90) o66.Anchored = true o66.CanCollide = false o66.Size = Vector3.new(0.254099995, 0.254099995, 0.254099995) o66.CFrame = CFrame.new(-21.3107891, 1.08540177, -59.9623756, 0, -1, 0, -1, 0, 0, 0, 0, -1) o66.BackSurface = Enum.SurfaceType.SmoothNoOutlines o66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o66.RightSurface = Enum.SurfaceType.SmoothNoOutlines o66.TopSurface = Enum.SurfaceType.SmoothNoOutlines o66.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o67.Parent = o66 o67.Scale = Vector3.new(1.17615056, 1.3570981, 1.35709929) o67.MeshType = Enum.MeshType.Cylinder o68.Parent = o1 o68.Material = Enum.Material.SmoothPlastic o68.BrickColor = BrickColor.new("Really black") o68.Rotation = Vector3.new(-180, 0, 90) o68.Anchored = true o68.CanCollide = false o68.Size = Vector3.new(0.254099995, 0.254099995, 0.254099995) o68.CFrame = CFrame.new(-21.3107891, 0.763552666, -59.9623756, 0, -1, 0, -1, 0, 0, 0, 0, -1) o68.BackSurface = Enum.SurfaceType.SmoothNoOutlines o68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o68.RightSurface = Enum.SurfaceType.SmoothNoOutlines o68.TopSurface = Enum.SurfaceType.SmoothNoOutlines o68.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o69.Parent = o68 o69.Scale = Vector3.new(1.17615056, 1.3570981, 1.35709929) o69.MeshType = Enum.MeshType.Cylinder o70.Parent = o1 o70.Material = Enum.Material.SmoothPlastic o70.BrickColor = BrickColor.new("Really black") o70.Rotation = Vector3.new(-180, 0, 90) o70.Anchored = true o70.CanCollide = false o70.Size = Vector3.new(0.254099995, 0.254099995, 0.254099995) o70.CFrame = CFrame.new(-21.3107891, 0.522178769, -59.9623756, 0, -1, 0, -1, 0, 0, 0, 0, -1) o70.BackSurface = Enum.SurfaceType.SmoothNoOutlines o70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o70.RightSurface = Enum.SurfaceType.SmoothNoOutlines o70.TopSurface = Enum.SurfaceType.SmoothNoOutlines o70.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o71.Parent = o70 o71.Scale = Vector3.new(0.723784804, 1.53804433, 1.53804588) o71.MeshType = Enum.MeshType.Cylinder o72.Parent = o1 o72.Material = Enum.Material.SmoothPlastic o72.BrickColor = BrickColor.new("Really black") o72.Rotation = Vector3.new(-180, 0, 90) o72.Anchored = true o72.CanCollide = false o72.Size = Vector3.new(0.254099995, 0.254099995, 0.254099995) o72.CFrame = CFrame.new(-21.3107891, 1.568174, -59.9623756, 0, -1, 0, -1, 0, 0, 0, 0, -1) o72.BackSurface = Enum.SurfaceType.SmoothNoOutlines o72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o72.RightSurface = Enum.SurfaceType.SmoothNoOutlines o72.TopSurface = Enum.SurfaceType.SmoothNoOutlines o72.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o73.Parent = o72 o73.Scale = Vector3.new(0.0904731303, 1.17615163, 1.17615271) o73.MeshType = Enum.MeshType.Cylinder o74.Parent = o1 o74.Material = Enum.Material.SmoothPlastic o74.BrickColor = BrickColor.new("Really black") o74.Rotation = Vector3.new(-180, 0, 90) o74.Anchored = true o74.CanCollide = false o74.Size = Vector3.new(0.254099995, 0.254099995, 0.254099995) o74.CFrame = CFrame.new(-21.3107891, 0.499189973, -59.9623756, 0, -1, 0, -1, 0, 0, 0, 0, -1) o74.BackSurface = Enum.SurfaceType.SmoothNoOutlines o74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o74.RightSurface = Enum.SurfaceType.SmoothNoOutlines o74.TopSurface = Enum.SurfaceType.SmoothNoOutlines o74.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o75.Parent = o74 o75.Scale = Vector3.new(0.723784685, 1.71899068, 1.71899259) o75.MeshType = Enum.MeshType.Cylinder o76.Parent = o1 o76.Material = Enum.Material.SmoothPlastic o76.BrickColor = BrickColor.new("Really black") o76.Rotation = Vector3.new(-180, 0, 90) o76.Anchored = true o76.CanCollide = false o76.Size = Vector3.new(0.254099995, 0.254099995, 0.254099995) o76.CFrame = CFrame.new(-21.3107891, 1.40724885, -59.9623756, 0, -1, 0, -1, 0, 0, 0, 0, -1) o76.BackSurface = Enum.SurfaceType.SmoothNoOutlines o76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o76.RightSurface = Enum.SurfaceType.SmoothNoOutlines o76.TopSurface = Enum.SurfaceType.SmoothNoOutlines o76.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o77.Parent = o76 o77.Scale = Vector3.new(1.17615056, 1.3570981, 1.35709929) o77.MeshType = Enum.MeshType.Cylinder o78.Parent = o1 o78.Material = Enum.Material.SmoothPlastic o78.BrickColor = BrickColor.new("Really black") o78.Rotation = Vector3.new(-180, 0, 90) o78.Anchored = true o78.CanCollide = false o78.Size = Vector3.new(0.254099995, 0.254099995, 0.254099995) o78.CFrame = CFrame.new(-21.3107891, 0.924476743, -59.9623756, 0, -1, 0, -1, 0, 0, 0, 0, -1) o78.BackSurface = Enum.SurfaceType.SmoothNoOutlines o78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o78.RightSurface = Enum.SurfaceType.SmoothNoOutlines o78.TopSurface = Enum.SurfaceType.SmoothNoOutlines o78.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o79.Parent = o78 o79.Scale = Vector3.new(0.0904731303, 1.17615163, 1.17615271) o79.MeshType = Enum.MeshType.Cylinder o80.Parent = o1 o80.Material = Enum.Material.SmoothPlastic o80.BrickColor = BrickColor.new("Really black") o80.Rotation = Vector3.new(-180, 0, 90) o80.Anchored = true o80.CanCollide = false o80.Size = Vector3.new(0.254099995, 0.254099995, 0.254099995) o80.CFrame = CFrame.new(-21.3107891, 1.24632478, -59.9623756, 0, -1, 0, -1, 0, 0, 0, 0, -1) o80.BackSurface = Enum.SurfaceType.SmoothNoOutlines o80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o80.RightSurface = Enum.SurfaceType.SmoothNoOutlines o80.TopSurface = Enum.SurfaceType.SmoothNoOutlines o80.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o81.Parent = o80 o81.Scale = Vector3.new(0.0904731303, 1.17615163, 1.17615271) o81.MeshType = Enum.MeshType.Cylinder function Equipped() for i,v in pairs (o1:GetChildren()) do if v:IsA("Animation")or v:IsA("LocalScript") then else if v.Name ~= "CHOPPART" then v.BrickColor = BrickColor.new(CustomColor) else end v.Anchored = false end end end for i,v in pairs (o1:GetChildren()) do if v:IsA("Animation")or v:IsA("LocalScript") then else if v.Name ~= "CHOPPART" then v.BrickColor = BrickColor.new(CustomColor) else end end end if Electric == true then klk = Instance.new("Part") kasd = Instance.new("BlockMesh") o3 = Instance.new("Sound") o4 = Instance.new("ParticleEmitter") klk.Parent = o1 klk.Material = Enum.Material.Metal klk.BrickColor = BrickColor.new("Smoky grey") klk.Position = Vector3.new(-21.3253803, 2.08690095, -59.9731712) klk.Size = Vector3.new(0.200000003, 1, 0.200000003) klk.CFrame = CFrame.new(-21.3253803, 2.08690095, -59.9731712, 1, 0, 0, 0, 1, 0, 0, 0, 1) klk.BackSurface = Enum.SurfaceType.SmoothNoOutlines klk.BottomSurface = Enum.SurfaceType.SmoothNoOutlines klk.FrontSurface = Enum.SurfaceType.SmoothNoOutlines klk.LeftSurface = Enum.SurfaceType.SmoothNoOutlines klk.RightSurface = Enum.SurfaceType.SmoothNoOutlines klk.TopSurface = Enum.SurfaceType.SmoothNoOutlines klk.Color = Color3.new(0.356863, 0.364706, 0.411765) kasd.Parent = klk kasd.Scale = Vector3.new(0.100000001, 1, 1) o3.Parent = klk o3.SoundId = "rbxassetid://277635663" o3.Volume = 0.10000000149012 o3.Looped = true o3:Play() o4.Parent = klk o4.Transparency = NumberSequence.new(0.80000001192093,0.80000001192093) o4.Size = NumberSequence.new(0.20000000298023,0.20000000298023) o4.Color = ColorSequence.new(Color3.new(0.921569, 1, 0.0470588),Color3.new(0.153018, 0.0780643, 0.580257)) o4.Acceleration = Vector3.new(2, -20, 1) o4.Rate = 10 end repeat wait() until o1:FindFirstChild("Handle") local Welds = {} function ClearOldWelds(tbl) for _,v in pairs(tbl) do if v:IsA('Weld') then v:Destroy() end end end function Equipped() if Flaming == true then o1hj:Play()end if Electric == true then o3:Play()end for i,v in pairs (o1:GetChildren()) do if v:IsA("Animation")or v:IsA("LocalScript") then else v.Anchored = false end end local Handle = o1:FindFirstChild('Handle') if not Handle then return end local tble = Handle:GetChildren() for _,v in pairs(o1:GetChildren()) do if v:IsA('Part') or v:IsA('WedgePart') and v ~= Handle then local c1 for _1,v1 in pairs(Welds) do if _1 == v then c1 = v1 break end end if not c1 then Welds[v] = v.CFrame:inverse()*Handle.CFrame v.Anchored = true c1 = Welds[v] end local Weld = Instance.new('Weld') Weld.Part0 = Handle Weld.Part1 = v Weld.C0 = CFrame.new() Weld.C1 = c1 Weld.Parent = Handle end end ClearOldWelds(tble) Handle.Anchored=false end Equipped() o1.Equipped:connect(Equipped) Tool = o1 Handle = Tool:WaitForChild("Handle") Players = game:GetService("Players") Debris = game:GetService("Debris") InsertService = game:GetService("InsertService") function onEquipped(mouse2) mouse2.KeyDown:connect(onkeyDown) mouse = mouse2 end o1.Equipped:connect(onEquipped) WhackAnim = Tool:WaitForChild("Whack") ChopAnim = Tool:WaitForChild("Chop") SliceAnim = Tool:WaitForChild("Slice") SlashSound = Handle:WaitForChild("SlashSound") HitSound = Handle:WaitForChild("Hit") Damage = 10 ReloadTime = .4 Kills = 0 function TagHumanoid(humanoid, player) --registers you actually Hitting the guy HitSound:Play() local Creator_Tag = Instance.new("ObjectValue") Creator_Tag.Name = "creator" Creator_Tag.Value = player Debris:AddItem(Creator_Tag, 2) Creator_Tag.Parent = humanoid end function onkeyDown(key) if Tool.Enabled then if key == "q" then Slice = Humanoid:LoadAnimation(SliceAnim) if Slice then Slice:Play() SlashSound:Play() wait(1) SlashSound:Play() end Tool.Enabled = true end end if Tool.Enabled then if key == "e" then Chop = Humanoid:LoadAnimation(ChopAnim) if Chop then Chop:Play() SlashSound:Play() end Tool.Enabled = true end end end function UntagHumanoid(humanoid) for i, v in pairs(humanoid:GetChildren()) do if v:IsA("ObjectValue") and v.Name == "creator" then v:Destroy() end end end function Blow(Hit) if Hit.Name == "Head" then Hit.Anchored= false Hit.Size = Vector3.new(2, 0.2, 1) Hit.BrickColor = BrickColor.new("Maroon") o1 = Instance.new("Sound") o1.Parent = Hit o1.SoundId = "rbxassetid://429400881" o1:Play() end if Hit.Name == "Right Arm" then o11 = Instance.new("Part") o11.Name = "GOREPART" o11.Parent = workspace o11.BrickColor = BrickColor.new("Maroon") o11.Rotation = Vector3.new(-180, 1.29089606, 180) o11.FormFactor = Enum.FormFactor.Symmetric o11.Size = Vector3.new(1, 2, 1) o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines o11.Color = Color3.new(0.458824, 0, 0) Hit:Destroy() o1 = Instance.new("Sound") o1.Parent = o11 o1.SoundId = "rbxassetid://429400881" o1:Play() end if Hit.Name == "Left Arm" then o11 = Instance.new("Part") o11.Name = "GOREPART" o11.Parent = workspace o11.BrickColor = BrickColor.new("Maroon") o11.Rotation = Vector3.new(-180, 1.29089606, 180) o11.FormFactor = Enum.FormFactor.Symmetric o11.Size = Vector3.new(1, 2, 1) o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines o11.Color = Color3.new(0.458824, 0, 0) Hit:Destroy() o1 = Instance.new("Sound") o1.Parent = o11 o1.SoundId = "rbxassetid://429400881" o1:Play() end if Hit.Name == "Right Leg" then Hit:Destroy() o1 = Instance.new("Sound") o1.Parent = o11 o1.SoundId = "rbxassetid://429400881" o1:Play() end if Hit.Name == "Left Arm" then o11 = Instance.new("Part") o11.Name = "GOREPART" o11.Parent = workspace o11.BrickColor = BrickColor.new("Maroon") o11.Rotation = Vector3.new(-180, 1.29089606, 180) o11.FormFactor = Enum.FormFactor.Symmetric o11.Size = Vector3.new(1, 2, 1) o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines o11.Color = Color3.new(0.458824, 0, 0) Hit:Destroy() o1 = Instance.new("Sound") o1.Parent = o11 o1.SoundId = "rbxassetid://429400881" o1:Play() end if Hit.Name == "Left Leg" then Hit:Destroy() o1 = Instance.new("Sound") o1.Parent = o11 o1.SoundId = "rbxassetid://429400881" o1:Play() end if Hit.Name == "Left Arm" then o11 = Instance.new("Part") o11.Name = "GOREPART" o11.Parent = workspace o11.Position = Hit.Position o11.BrickColor = BrickColor.new("Maroon") o11.Rotation = Vector3.new(-180, 1.29089606, 180) o11.FormFactor = Enum.FormFactor.Symmetric o11.Size = Vector3.new(1, 2, 1) o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines o11.Color = Color3.new(0.458824, 0, 0) Hit:Destroy() o1 = Instance.new("Sound") o1.Parent = o11 o1.SoundId = "rbxassetid://429400881" o1:Play() end if Hit.Name == "Torso" then o11 = Instance.new("Part") o2 = Instance.new("Part") o2.Name = "GOREPART" o2.Position = Hit.Position o2.Parent = workspace o2.BrickColor = BrickColor.new("Maroon") o2.Rotation = Vector3.new(-180, 1.29089832, 180) o2.CanCollide = true o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines o2.Size = Vector3.new(2, 1, 1) o2.LeftSurface = Enum.SurfaceType.Weld o2.RightSurface = Enum.SurfaceType.Weld o2.Color = Color3.new(0.105882, 0.164706, 0.207843) o1 = Instance.new("Part") o1.Name = "GOREPART" o1.Parent = workspace o1.Position = Hit.Position o1.BrickColor = BrickColor.new("Maroon") o1.Rotation = Vector3.new(-180, 1.29089832, 180) o1.CanCollide = true o1.BackSurface = Enum.SurfaceType.SmoothNoOutlines o1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o1.RightSurface = Enum.SurfaceType.SmoothNoOutlines o1.TopSurface = Enum.SurfaceType.SmoothNoOutlines o1.Size = Vector3.new(2, 1, 1) o1.Position = Hit.Position o1.LeftSurface = Enum.SurfaceType.Weld o1.RightSurface = Enum.SurfaceType.Weld o1.Color = Color3.new(0.105882, 0.164706, 0.207843) Hit:Destroy() o1 = Instance.new("Sound") o1.Parent = o11 o1.SoundId = "rbxassetid://429400881" o1:Play() end --registers the Hit, deals damage to the player, and if the humanoid has 0 health a kill is added into the killstreak. if Hit and Hit.Parent then local character = Hit.Parent local humanoid = character:FindFirstChild("Humanoid") if Humanoid and Humanoid ~= humanoid and humanoid and Humanoid.Health > 0 and humanoid.Health > 0 then local Right_Arm = Character:FindFirstChild("Right Arm") if Right_Arm then local Joint = Right_Arm:FindFirstChild("RightGrip") if (Joint and (Joint.Part0 == Handle or Joint.Part1 == Handle)) then humanoid:TakeDamage(Damage) --deal regular damage or instakill normal health players if a ninja UntagHumanoid(humanoid) TagHumanoid(humanoid, Player) end end end end end function Activated() --when you swing if Tool.Enabled then Tool.Enabled = false Whack = Humanoid:LoadAnimation(WhackAnim) if Whack then Whack:Play() SlashSound:Play() end wait(ReloadTime) Tool.Enabled = true end end function Equipped(mouse) --get everything settled up Character = Tool.Parent Player = Players:GetPlayerFromCharacter(Character) Humanoid = Character:FindFirstChild("Humanoid") Torso = Character:FindFirstChild("Torso") if not Humanoid or not Torso then return end if not Tool.Enabled then wait(ReloadTime) Tool.Enabled = true end end function Unequipped() if Flaming == true then o1hj:Stop()end if Electric == true then o3:Stop() end if Whack then Whack:Stop() end if Slice then Slice:Stop() end if Chop then Chop:Stop() end end Mouse_Icon = "rbxasset://textures/GunCursor.png" Reloading_Icon = "rbxasset://textures/GunWaitCursor.png" Tool = o1 Mouse = nil function UpdateIcon() if Mouse then Mouse.Icon = Tool.Enabled and Mouse_Icon or Reloading_Icon end end function OnEquipped(ToolMouse) Mouse = ToolMouse UpdateIcon() end function OnChanged(Property) if Property == "Enabled" then UpdateIcon() end end Tool.Equipped:connect(OnEquipped) Tool.Changed:connect(OnChanged) Tool.Activated:connect(Activated) Tool.Equipped:connect(Equipped) Tool.Unequipped:connect(Unequipped) Tool.CHOPPART.Touched:connect(Blow) end) Mossberg.MouseButton1Click:connect(function() --Mossberg 500 by MDS err DMS local Shotgoonwooot = function(f,scri) local oldenv = getfenv(f) local newenv = setmetatable({}, { __index = function(_, k) if k:lower() == 'script' then return scri else return oldenv[k] end end }) setfenv(f, newenv) ypcall(function() f() end) end cors = {} o1 = Instance.new("Tool") o2 = Instance.new("LocalScript") o3 = Instance.new("LocalScript") o4 = Instance.new("LocalScript") o5 = Instance.new("NumberValue") o6 = Instance.new("Part") o7 = Instance.new("BlockMesh") o8 = Instance.new("LocalScript") o9 = Instance.new("NumberValue") o10 = Instance.new("NumberValue") o11 = Instance.new("NumberValue") o12 = Instance.new("Script") o13 = Instance.new("LocalScript") o14 = Instance.new("LocalScript") o15 = Instance.new("Part") o16 = Instance.new("CylinderMesh") o17 = Instance.new("Part") o18 = Instance.new("SpecialMesh") o19 = Instance.new("Part") o20 = Instance.new("CylinderMesh") o21 = Instance.new("Part") o22 = Instance.new("SpecialMesh") o23 = Instance.new("Part") o24 = Instance.new("CylinderMesh") o25 = Instance.new("Part") o26 = Instance.new("BlockMesh") o27 = Instance.new("Part") o28 = Instance.new("SpecialMesh") o29 = Instance.new("Part") o30 = Instance.new("BlockMesh") o31 = Instance.new("Part") o32 = Instance.new("BlockMesh") o33 = Instance.new("Part") o34 = Instance.new("BlockMesh") o35 = Instance.new("Part") o36 = Instance.new("BlockMesh") o37 = Instance.new("Part") o38 = Instance.new("BlockMesh") o39 = Instance.new("Part") o40 = Instance.new("BlockMesh") o41 = Instance.new("Part") o42 = Instance.new("CylinderMesh") o43 = Instance.new("Part") o44 = Instance.new("BlockMesh") o45 = Instance.new("Part") o46 = Instance.new("SpecialMesh") o47 = Instance.new("Part") o48 = Instance.new("SpecialMesh") o49 = Instance.new("Part") o50 = Instance.new("SpecialMesh") o51 = Instance.new("Part") o52 = Instance.new("BlockMesh") o53 = Instance.new("Part") o54 = Instance.new("BlockMesh") o55 = Instance.new("Part") o56 = Instance.new("BlockMesh") o57 = Instance.new("Part") o58 = Instance.new("SpecialMesh") o59 = Instance.new("Part") o60 = Instance.new("CylinderMesh") o61 = Instance.new("Part") o62 = Instance.new("BlockMesh") o63 = Instance.new("Part") o64 = Instance.new("BlockMesh") o65 = Instance.new("Part") o66 = Instance.new("BlockMesh") o67 = Instance.new("Part") o68 = Instance.new("SpecialMesh") o69 = Instance.new("Part") o70 = Instance.new("SpecialMesh") o71 = Instance.new("Part") o72 = Instance.new("SpecialMesh") o73 = Instance.new("Part") o74 = Instance.new("BlockMesh") o75 = Instance.new("Part") o76 = Instance.new("CylinderMesh") o77 = Instance.new("Part") o78 = Instance.new("BlockMesh") o79 = Instance.new("Sound") o80 = Instance.new("Sound") o81 = Instance.new("Sound") o82 = Instance.new("Sound") o83 = Instance.new("Sound") o85 = Instance.new("Part") o86 = Instance.new("SpecialMesh") o87 = Instance.new("Part") o88 = Instance.new("CylinderMesh") o89 = Instance.new("Part") o90 = Instance.new("CylinderMesh") o91 = Instance.new("Part") o92 = Instance.new("BlockMesh") o93 = Instance.new("Part") o94 = Instance.new("CylinderMesh") o95 = Instance.new("Part") o96 = Instance.new("BlockMesh") o97 = Instance.new("Part") o98 = Instance.new("SpecialMesh") o99 = Instance.new("Part") o100 = Instance.new("BlockMesh") o101 = Instance.new("Part") o102 = Instance.new("SpecialMesh") o103 = Instance.new("Part") o104 = Instance.new("SpecialMesh") o105 = Instance.new("Part") o106 = Instance.new("BlockMesh") o107 = Instance.new("Part") o108 = Instance.new("SpecialMesh") o109 = Instance.new("Part") o110 = Instance.new("SpecialMesh") o111 = Instance.new("Part") o112 = Instance.new("SpecialMesh") o113 = Instance.new("Part") o114 = Instance.new("SpecialMesh") o115 = Instance.new("Part") o116 = Instance.new("SpecialMesh") o117 = Instance.new("Part") o118 = Instance.new("BlockMesh") o119 = Instance.new("Part") o120 = Instance.new("CylinderMesh") o121 = Instance.new("Part") o122 = Instance.new("CylinderMesh") o123 = Instance.new("Part") o124 = Instance.new("BlockMesh") o125 = Instance.new("Part") o126 = Instance.new("SpecialMesh") o127 = Instance.new("Part") o128 = Instance.new("SpecialMesh") o129 = Instance.new("Part") o130 = Instance.new("CylinderMesh") o131 = Instance.new("Part") o132 = Instance.new("CylinderMesh") o133 = Instance.new("Part") o134 = Instance.new("BlockMesh") o135 = Instance.new("Part") o136 = Instance.new("BlockMesh") o137 = Instance.new("Part") o138 = Instance.new("CylinderMesh") o139 = Instance.new("Part") o140 = Instance.new("BlockMesh") o141 = Instance.new("Part") o142 = Instance.new("CylinderMesh") o143 = Instance.new("Part") o144 = Instance.new("BlockMesh") o145 = Instance.new("Part") o146 = Instance.new("CylinderMesh") o147 = Instance.new("Part") o148 = Instance.new("BlockMesh") o1.Name = "M500" o1.Parent = game.Players.LocalPlayer.Backpack o1.GripForward = Vector3.new(-0.271321744, 0, -0.962488711) o1.GripPos = Vector3.new(-0, -0.300000012, -0.400000006) o1.GripRight = Vector3.new(0.962488711, 0, -0.271321744) o2.Name = "BackupWeld" o2.Parent = o1 table.insert(cors,coroutine.create(function() wait() Shotgoonwooot(function() function Weld(x,y) local W = Instance.new("Weld") W.Part0 = x W.Part1 = y local CJ = CFrame.new(x.Position) local C0 = x.CFrame:inverse()*CJ local C1 = y.CFrame:inverse()*CJ W.C0 = C0 W.C1 = C1 W.Parent = x end function Get(A) if A.className == "Part" then Weld(script.Parent.Handle, A) A.Anchored = false else local C = A:GetChildren() for i=1, #C do Get(C[i]) end end end function Finale() Get(script.Parent) end script.Parent.Equipped:connect(Finale) script.Parent.Unequipped:connect(Finale) Finale() end,o2) end)) o3.Name = "Crouch" o3.Parent = o1 table.insert(cors,coroutine.create(function() wait() Shotgoonwooot(function() on = 0 Tool = script.Parent welds = {} sh = {} arms = nil torso = nil f = nil function Crouch(ison) if arms == nil and torso == nil then arms = {Tool.Parent:FindFirstChild("Left Leg"), Tool.Parent:FindFirstChild("Right Leg")} torso = Tool.Parent:FindFirstChild("Torso") end if arms ~= nil and torso ~= nil then sh = {torso:FindFirstChild("Left Hip"), torso:FindFirstChild("Right Hip")} if sh ~= nil then local yes = true if yes then yes = false if ison == 1 then sh[1].Part1 = nil sh[2].Part1 = nil local weld1 = Instance.new("Weld") weld1.Part0 = torso weld1.Parent = torso weld1.Part1 = arms[1] weld1.C1 = CFrame.new(-0.5, 0.75, 1) arms[1].Name = "LDave" arms[1].CanCollide = true welds[1] = weld1 ------------------------------------------- local weld2 = Instance.new("Weld") weld2.Part0 = torso weld2.Parent = torso weld2.Part1 = arms[2] weld2.C1 = CFrame.new(0.5,0.495,1.25) * CFrame.fromEulerAnglesXYZ(math.rad(90),0,0) arms[2].Name = "RDave" arms[2].CanCollide = true welds[2] = weld2 --------------------------------- local force = Instance.new("BodyForce") force.Parent = torso f = force wait(0.01) elseif ison == 0 then if arms then sh[1].Part1 = arms[1] sh[2].Part1 = arms[2] f.Parent = nil arms[2].Name = "Right Leg" arms[1].Name = "Left Leg" welds[1].Parent = nil welds[2].Parent = nil end end -- end else print("sh") end else print("arms") end end function Key(key) if key then key = string.lower(key) if (key=="c") then if on == 1 then on = 0 elseif on == 0 then on = 1 end Crouch(on) end end end function Equip(mouse) mouse.KeyDown:connect(Key) end script.Parent.Equipped:connect(Equip) end,o3) end)) o4.Name = "BackupWeld" o4.Parent = o1 table.insert(cors,coroutine.create(function() wait() Shotgoonwooot(function() function Weld(x,y) local W = Instance.new("Weld") W.Part0 = x W.Part1 = y local CJ = CFrame.new(x.Position) local C0 = x.CFrame:inverse()*CJ local C1 = y.CFrame:inverse()*CJ W.C0 = C0 W.C1 = C1 W.Parent = x end function Get(A) if A.className == "Part" then Weld(script.Parent.Handle, A) A.Anchored = false else local C = A:GetChildren() for i=1, #C do Get(C[i]) end end end function Finale() Get(script.Parent) end script.Parent.Equipped:connect(Finale) script.Parent.Unequipped:connect(Finale) Finale() end,o4) end)) o5.Name = "StoredAmmo" o5.Parent = o1 o5.Value = 60 o6.Parent = o1 o6.Material = Enum.Material.SmoothPlastic o6.BrickColor = BrickColor.new("Black") o6.Position = Vector3.new(-56.3797073, 0.641173005, -34.5374298) o6.Rotation = Vector3.new(165, -90, 0) o6.Anchored = true o6.CanCollide = false o6.FormFactor = Enum.FormFactor.Custom o6.Size = Vector3.new(0.281481475, 0.244444445, 0.200000003) o6.CFrame = CFrame.new(-56.3797073, 0.641173005, -34.5374298, -4.37113883e-008, 0, -1, -0.258819133, -0.965925813, 1.1313344e-008, -0.965925813, 0.258819133, 4.22219593e-008) o6.BackSurface = Enum.SurfaceType.SmoothNoOutlines o6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o6.RightSurface = Enum.SurfaceType.SmoothNoOutlines o6.TopSurface = Enum.SurfaceType.SmoothNoOutlines o6.Color = Color3.new(0.105882, 0.164706, 0.207843) o7.Parent = o6 o7.Scale = Vector3.new(1, 1, 0.666666687) o8.Name = "Shooter" o8.Parent = o1 table.insert(cors,coroutine.create(function() wait() Shotgoonwooot(function() Tool = script.Parent local arms = nil local torso = nil local weld33 = nil -- right arm local weld55 = nil -- left arm local welds = {} local reloading = false local canclereloading = false local falsearm1 = nil local falsearm2 = nil local c = nil local canshoot = true local canreload = true local damage = 200 function ShellInsert() -- this will be a pain in my blocky butt. weld55.C1 = CFrame.new(-0.35, 0.2, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(340), -0.12, math.rad(-72)) Tool.S1.Mesh.Offset = Vector3.new(0, 0, -0.36) Tool.S2.Mesh.Offset = Vector3.new(0, 0, -0.36) wait() weld55.C1 = CFrame.new(-0.35, 0.2, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(340), -0.1, math.rad(-77)) Tool.S1.Mesh.Offset = Vector3.new(0, 0, -0.30) Tool.S2.Mesh.Offset = Vector3.new(0, 0, -0.30) wait() weld55.C1 = CFrame.new(-0.35, 0.2, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(340), -0.08, math.rad(-82)) Tool.S1.Mesh.Offset = Vector3.new(0, 0, -0.24) Tool.S2.Mesh.Offset = Vector3.new(0, 0, -0.24) wait() weld55.C1 = CFrame.new(-0.35, 0.2, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(340), -0.06, math.rad(-87)) Tool.S1.Mesh.Offset = Vector3.new(0, 0, -0.18) Tool.S2.Mesh.Offset = Vector3.new(0, 0, -0.18) wait() weld55.C1 = CFrame.new(-0.35, 0.2, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(340), -0.04, math.rad(-92)) Tool.S1.Mesh.Offset = Vector3.new(0, 0, -0.12) Tool.S2.Mesh.Offset = Vector3.new(0, 0, -0.12) wait() weld55.C1 = CFrame.new(-0.35, 0.2, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(340), -0.02, math.rad(-97)) Tool.S1.Mesh.Offset = Vector3.new(0, 0, -0.06) Tool.S2.Mesh.Offset = Vector3.new(0, 0, -0.06) wait() weld55.C1 = CFrame.new(-0.35, 0.2, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(340), 0, math.rad(-102)) Tool.S1.Mesh.Offset = Vector3.new(0, 0, 0) Tool.S2.Mesh.Offset = Vector3.new(0, 0, 0) wait() weld55.C1 = CFrame.new(-0.35, 0.28, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(336), 0, math.rad(-104)) Tool.Handle.Reload:play() wait() weld55.C1 = CFrame.new(-0.35, 0.36, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(332), 0, math.rad(-106)) end function Anim1() --testing this part..... weld33.C1 = CFrame.new(-0.75, -0.3, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-94), math.rad(-15), 0) wait() weld33.C1 = CFrame.new(-0.75, -0.3, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-98), math.rad(-15), 0) wait() weld33.C1 = CFrame.new(-0.75, -0.3, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-102), math.rad(-15), 0) wait() weld33.C1 = CFrame.new(-0.75, -0.3, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-106), math.rad(-15), 0) wait() weld33.C1 = CFrame.new(-0.75, -0.3, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-110), math.rad(-15), 0) end function Anim2() --also testing this T_T local canshoot = false local canreload = false weld55.C1 = CFrame.new(-0.35, 0.33, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(320), 0, math.rad(-90)) weld33.C1 = CFrame.new(-0.75, -0.3, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-110), math.rad(-15), 0) wait() weld55.C1 = CFrame.new(-0.35, 0.46, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(317), 0, math.rad(-90)) weld33.C1 = CFrame.new(-0.75, -0.3, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-108), math.rad(-15), 0) wait() weld55.C1 = CFrame.new(-0.35, 0.59, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(314), 0, math.rad(-90)) weld33.C1 = CFrame.new(-0.75, -0.3, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-106), math.rad(-15), 0) wait() weld55.C1 = CFrame.new(-0.35, 0.72, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(311), 0, math.rad(-90)) weld33.C1 = CFrame.new(-0.75, -0.3, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-104), math.rad(-15), 0) wait() weld55.C1 = CFrame.new(-0.35, 0.85, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(308), 0, math.rad(-90)) weld33.C1 = CFrame.new(-0.75, -0.3, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-102), math.rad(-15), 0) wait() weld55.C1 = CFrame.new(-0.35, 0.98, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(305), 0, math.rad(-90)) weld33.C1 = CFrame.new(-0.75, -0.3, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-100), math.rad(-15), 0) wait() weld55.C1 = CFrame.new(-0.35, 1.11, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(302), 0, math.rad(-90)) weld33.C1 = CFrame.new(-0.75, -0.3, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-98), math.rad(-15), 0) wait() weld55.C1 = CFrame.new(-0.35, 1.24, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(299), 0, math.rad(-90)) weld33.C1 = CFrame.new(-0.75, -0.3, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-96), math.rad(-15), 0) wait() weld55.C1 = CFrame.new(-0.35, 1.37, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(296), 0, math.rad(-90)) weld33.C1 = CFrame.new(-0.75, -0.3, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-94), math.rad(-15), 0) wait() weld55.C1 = CFrame.new(-0.35, 1.5, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(293), 0, math.rad(-90)) weld33.C1 = CFrame.new(-0.75, -0.3, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-92), math.rad(-15), 0) wait() weld55.C1 = CFrame.new(-0.35, 1.5, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90)) weld33.C1 = CFrame.new(-0.75, -0.3, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0) wait() Tool.Handle.A1:play() weld55.C1 = CFrame.new(-0.35, 1.42, 0.58) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90)) Tool.A1.Mesh.Offset = Vector3.new(0, 0.1, 0) Tool.A2.Mesh.Offset = Vector3.new(0, 0.1, 0) Tool.A3.Mesh.Offset = Vector3.new(0, 0.1, 0) Tool.A4.Mesh.Offset = Vector3.new(0.1, 0, 0) Tool.A5.Mesh.Offset = Vector3.new(0.1, 0, -0.01) wait(.03) weld55.C1 = CFrame.new(-0.35, 1.34, 0.56) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90)) Tool.A1.Mesh.Offset = Vector3.new(0, 0.2, 0) Tool.A2.Mesh.Offset = Vector3.new(0, 0.2, 0) Tool.A3.Mesh.Offset = Vector3.new(0, 0.2, 0) Tool.A4.Mesh.Offset = Vector3.new(0.2, 0, 0) Tool.A5.Mesh.Offset = Vector3.new(0.2, 0, -0.01) wait(.03) weld55.C1 = CFrame.new(-0.35, 1.26, 0.54) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90)) Tool.A1.Mesh.Offset = Vector3.new(0, 0.3, 0) Tool.A2.Mesh.Offset = Vector3.new(0, 0.3, 0) Tool.A3.Mesh.Offset = Vector3.new(0, 0.3, 0) Tool.A4.Mesh.Offset = Vector3.new(0.3, 0, 0) Tool.A5.Mesh.Offset = Vector3.new(0.3, 0, -0.01) wait(.03) weld55.C1 = CFrame.new(-0.35, 1.18, 0.52) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90)) Tool.A1.Mesh.Offset = Vector3.new(0, 0.4, 0) Tool.A2.Mesh.Offset = Vector3.new(0, 0.4, 0) Tool.A3.Mesh.Offset = Vector3.new(0, 0.4, 0) Tool.A4.Mesh.Offset = Vector3.new(0.4, 0, 0) Tool.A5.Mesh.Offset = Vector3.new(0.4, 0, -0.01) wait(.08) Tool.Handle.A2:play() weld55.C1 = CFrame.new(-0.35, 1.26, 0.54) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90)) Tool.A1.Mesh.Offset = Vector3.new(0, 0.3, 0) Tool.A2.Mesh.Offset = Vector3.new(0, 0.3, 0) Tool.A3.Mesh.Offset = Vector3.new(0, 0.3, 0) Tool.A4.Mesh.Offset = Vector3.new(0.3, 0, 0) Tool.A5.Mesh.Offset = Vector3.new(0.3, 0, -0.01) wait(.03) weld55.C1 = CFrame.new(-0.35, 1.34, 0.56) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90)) Tool.A1.Mesh.Offset = Vector3.new(0, 0.2, 0) Tool.A2.Mesh.Offset = Vector3.new(0, 0.2, 0) Tool.A3.Mesh.Offset = Vector3.new(0, 0.2, 0) Tool.A4.Mesh.Offset = Vector3.new(0.2, 0, 0) Tool.A5.Mesh.Offset = Vector3.new(0.2, 0, -0.01) wait(.03) weld55.C1 = CFrame.new(-0.35, 1.42, 0.58) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90)) Tool.A1.Mesh.Offset = Vector3.new(0, 0.1, 0) Tool.A2.Mesh.Offset = Vector3.new(0, 0.1, 0) Tool.A3.Mesh.Offset = Vector3.new(0, 0.1, 0) Tool.A4.Mesh.Offset = Vector3.new(0.1, 0, 0) Tool.A5.Mesh.Offset = Vector3.new(0.1, 0, -0.01) wait(.03) weld55.C1 = CFrame.new(-0.35, 1.5, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90)) Tool.A1.Mesh.Offset = Vector3.new(0, 0, 0) Tool.A2.Mesh.Offset = Vector3.new(0, 0, 0) Tool.A3.Mesh.Offset = Vector3.new(0, 0, 0) Tool.A4.Mesh.Offset = Vector3.new(0, 0, 0) Tool.A5.Mesh.Offset = Vector3.new(0, 0, 0) local canshoot = true local canreload = true end function Pump() Tool.Handle.A1:play() weld55.C1 = CFrame.new(-0.35, 1.42, 0.58) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90)) Tool.A1.Mesh.Offset = Vector3.new(0, 0.1, 0) Tool.A2.Mesh.Offset = Vector3.new(0, 0.1, 0) Tool.A3.Mesh.Offset = Vector3.new(0, 0.1, 0) Tool.A4.Mesh.Offset = Vector3.new(0.1, 0, 0) Tool.A5.Mesh.Offset = Vector3.new(0.1, 0, -0.01) wait(.03) weld55.C1 = CFrame.new(-0.35, 1.34, 0.56) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90)) Tool.A1.Mesh.Offset = Vector3.new(0, 0.2, 0) Tool.A2.Mesh.Offset = Vector3.new(0, 0.2, 0) Tool.A3.Mesh.Offset = Vector3.new(0, 0.2, 0) Tool.A4.Mesh.Offset = Vector3.new(0.2, 0, 0) Tool.A5.Mesh.Offset = Vector3.new(0.2, 0, -0.01) wait(.03) weld55.C1 = CFrame.new(-0.35, 1.26, 0.54) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90)) Tool.A1.Mesh.Offset = Vector3.new(0, 0.3, 0) Tool.A2.Mesh.Offset = Vector3.new(0, 0.3, 0) Tool.A3.Mesh.Offset = Vector3.new(0, 0.3, 0) Tool.A4.Mesh.Offset = Vector3.new(0.3, 0, 0) Tool.A5.Mesh.Offset = Vector3.new(0.3, 0, -0.01) wait(.03) weld55.C1 = CFrame.new(-0.35, 1.18, 0.52) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90)) Tool.A1.Mesh.Offset = Vector3.new(0, 0.4, 0) Tool.A2.Mesh.Offset = Vector3.new(0, 0.4, 0) Tool.A3.Mesh.Offset = Vector3.new(0, 0.4, 0) Tool.A4.Mesh.Offset = Vector3.new(0.4, 0, 0) Tool.A5.Mesh.Offset = Vector3.new(0.4, 0, -0.01) wait(.08) Tool.Handle.A2:play() weld55.C1 = CFrame.new(-0.35, 1.26, 0.54) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90)) Tool.A1.Mesh.Offset = Vector3.new(0, 0.3, 0) Tool.A2.Mesh.Offset = Vector3.new(0, 0.3, 0) Tool.A3.Mesh.Offset = Vector3.new(0, 0.3, 0) Tool.A4.Mesh.Offset = Vector3.new(0.3, 0, 0) Tool.A5.Mesh.Offset = Vector3.new(0.3, 0, -0.01) wait(.03) weld55.C1 = CFrame.new(-0.35, 1.34, 0.56) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90)) Tool.A1.Mesh.Offset = Vector3.new(0, 0.2, 0) Tool.A2.Mesh.Offset = Vector3.new(0, 0.2, 0) Tool.A3.Mesh.Offset = Vector3.new(0, 0.2, 0) Tool.A4.Mesh.Offset = Vector3.new(0.2, 0, 0) Tool.A5.Mesh.Offset = Vector3.new(0.2, 0, -0.01) wait(.03) weld55.C1 = CFrame.new(-0.35, 1.42, 0.58) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90)) Tool.A1.Mesh.Offset = Vector3.new(0, 0.1, 0) Tool.A2.Mesh.Offset = Vector3.new(0, 0.1, 0) Tool.A3.Mesh.Offset = Vector3.new(0, 0.1, 0) Tool.A4.Mesh.Offset = Vector3.new(0.1, 0, 0) Tool.A5.Mesh.Offset = Vector3.new(0.1, 0, -0.01) wait(.03) weld55.C1 = CFrame.new(-0.35, 1.5, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90)) Tool.A1.Mesh.Offset = Vector3.new(0, 0, 0) Tool.A2.Mesh.Offset = Vector3.new(0, 0, 0) Tool.A3.Mesh.Offset = Vector3.new(0, 0, 0) Tool.A4.Mesh.Offset = Vector3.new(0, 0, 0) Tool.A5.Mesh.Offset = Vector3.new(0, 0, 0) end function Reload() if script.Parent.Ammo.Value < script.Parent.MaxAmmo.Value and reloading == false and script.Parent.StoredAmmo.Value >= 1 then reloading = true Anim1() for i = 1,script.Parent.MaxAmmo.Value - script.Parent.Ammo.Value do if canclereloading == true then canclereloading = false break end -- ... ShellInsert() if script.Parent.StoredAmmo.Value >= 1 then script.Parent.Ammo.Value = script.Parent.Ammo.Value + 1 script.Parent.StoredAmmo.Value = script.Parent.StoredAmmo.Value - 1 end -- this is getting annoying, and its not even half way done wait(.1) end reloading = false Anim2() end end function Equip(mouse) wait(0.01) arms = {Tool.Parent:FindFirstChild("Left Arm"), Tool.Parent:FindFirstChild("Right Arm")} torso = Tool.Parent:FindFirstChild("Torso") if arms ~= nil and torso ~= nil then local sh = {torso:FindFirstChild("Left Shoulder"), torso:FindFirstChild("Right Shoulder")} if sh ~= nil then local yes = true if yes then yes = false sh[1].Part1 = nil sh[2].Part1 = nil falsearm1 = arms[1]:clone() local mesh1 = Instance.new("BlockMesh") mesh1.Scale = Vector3.new(.9,.9,.9) mesh1.Parent = falsearm1 local armweld1 = Instance.new("Weld") falsearm1.BrickColor = BrickColor.new(26) falsearm1.Parent = Tool armweld1.Parent = falsearm1 armweld1.Part0 = falsearm1 armweld1.Part1 = arms[1] falsearm2 = arms[2]:clone() local mesh2 = Instance.new("BlockMesh") mesh2.Scale = Vector3.new(.9,.9,.9) mesh2.Parent = falsearm2 local armweld2 = Instance.new("Weld") falsearm2.BrickColor = BrickColor.new(26) falsearm2.Parent = Tool armweld2.Parent = falsearm2 armweld2.Part0 = falsearm2 armweld2.Part1 = arms[2] local weld1 = Instance.new("Weld") -- left arm weld55 = weld1 weld1.Part0 = torso weld1.Parent = torso weld1.Part1 = arms[1] weld1.C1 = CFrame.new(-0.35, 1.5, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90)) welds[1] = weld1 local weld2 = Instance.new("Weld") -- right arm weld33 = weld2 weld2.Part0 = torso weld2.Parent = torso weld2.Part1 = arms[2] weld2.C1 = CFrame.new(-0.75, -0.3, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0) welds[2] = weld2 Pump() end else print("sh") end else print("arms") end end local legs = nil local torso2 = nil local welds2 = {} local bodyforce = nil function Unequip(mouse) if arms ~= nil and torso ~= nil then local sh = {torso:FindFirstChild("Left Shoulder"), torso:FindFirstChild("Right Shoulder")} if sh ~= nil then local yes = true if yes then yes = false sh[1].Part1 = arms[1] sh[2].Part1 = arms[2] welds[1].Parent = nil welds[2].Parent = nil falsearm1:remove() falsearm2:remove() end else print("sh") end else print("arms") end end function fire(v) Tool.Handle.Fire:play() Tool.Handle.Fire2:play() local vCharacter = Tool.Parent local vPlayer = game.Players:playerFromCharacter(vCharacter) for i = 1,math.random(5,8) do local missile = Instance.new("Part") local spawnPos = vCharacter.PrimaryPart.Position spawnPos = spawnPos + (v * 5) missile.Position = spawnPos missile.Size = Vector3.new(1,1,1) missile.Velocity = v * 500 + (Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))) missile.BrickColor = BrickColor.new(26) missile.Shape = 0 missile.BottomSurface = 0 missile.TopSurface = 0 missile.Name = "Bullet" missile.Elasticity = 0 missile.Reflectance = 0 missile.Friction = .9 missile.CanCollide = false local force = Instance.new("BodyForce") force.force = Vector3.new(0,missile:getMass() * 196,0) force.Parent = missile local mesh = Instance.new("SpecialMesh") mesh.Scale = Vector3.new(.1,.1,.1) mesh.MeshType = "Sphere" mesh.Parent = missile function Blow(Hit) if Hit.Name == "Head" then Hit.Anchored= false Hit.Size = Vector3.new(2, 0.2, 1) Hit.BrickColor = BrickColor.new("Maroon") o1 = Instance.new("Sound") o1.Parent = Hit o1.SoundId = "rbxassetid://429400881" o1:Play() end if Hit.Name == "Right Arm" then for i=1,4 do o11.Name = "GOREPART" o11.Parent = workspace o11.BrickColor = BrickColor.new("Maroon") o11.Position = Hit.Position o11.Rotation = Vector3.new(-180, 1.29089606, 180) o11.FormFactor = Enum.FormFactor.Symmetric o11.Size = Vector3.new(.5, .5, .5) o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines o11.Color = Color3.new(0.458824, 0, 0) end Hit:Destroy() o1 = Instance.new("Sound") o1.Parent = o11 o1.SoundId = "rbxassetid://429400881" o1:Play() end if Hit.Name == "Left Arm" then for i=1,4 do o11 = Instance.new("Part") o11.Name = "GOREPART" o11.Parent = workspace o11.BrickColor = BrickColor.new("Maroon") o11.Position = Hit.Position o11.Rotation = Vector3.new(-180, 1.29089606, 180) o11.FormFactor = Enum.FormFactor.Symmetric o11.Size = Vector3.new(.5,.5,.5) o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines o11.Color = Color3.new(0.458824, 0, 0) Hit:Destroy() end o1 = Instance.new("Sound") o1.Parent = o11 o1.SoundId = "rbxassetid://429400881" o1:Play() end if Hit.Name == "Right Leg" then for i=1,4 do o11 = Instance.new("Part") o11.Name = "GOREPART" o11.Parent = workspace o11.BrickColor = BrickColor.new("Maroon") o11.Position = Hit.Position o11.Rotation = Vector3.new(-180, 1.29089606, 180) o11.FormFactor = Enum.FormFactor.Symmetric o11.Size = Vector3.new(.5,.5,.5) o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines o11.Color = Color3.new(0.458824, 0, 0) end Hit:Destroy() o1 = Instance.new("Sound") o1.Parent = o11 o1.SoundId = "rbxassetid://429400881" o1:Play() end if Hit.Name == "Left Arm" then for i=1,4 do o11 = Instance.new("Part") o11 = Instance.new("Part") o11.Name = "GOREPART" o11.Parent = workspace o11.BrickColor = BrickColor.new("Maroon") o11.Position = Hit.Position o11.Rotation = Vector3.new(-180, 1.29089606, 180) o11.FormFactor = Enum.FormFactor.Symmetric o11.Size = Vector3.new(.5,.5,.5) o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines o11.Color = Color3.new(0.458824, 0, 0) end Hit:Destroy() o1 = Instance.new("Sound") o1.Parent = o11 o1.SoundId = "rbxassetid://429400881" o1:Play() end if Hit.Name == "Left Leg" then for i=1,4 do o11 = Instance.new("Part") o11 = Instance.new("Part") o11.Name = "GOREPART" o11.Parent = workspace o11.BrickColor = BrickColor.new("Maroon") o11.Position = Hit.Position o11.Rotation = Vector3.new(-180, 1.29089606, 180) o11.FormFactor = Enum.FormFactor.Symmetric o11.Size = Vector3.new(.5,.5,.5) o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines o11.Color = Color3.new(0.458824, 0, 0) end Hit:Destroy() o1 = Instance.new("Sound") o1.Parent = o11 o1.SoundId = "rbxassetid://429400881" o1:Play() end if Hit.Name == "Left Arm" then for i=1,4 do o11 = Instance.new("Part") o11 = Instance.new("Part") o11.Name = "GOREPART" o11.Parent = workspace o11.BrickColor = BrickColor.new("Maroon") o11.Position = Hit.Position o11.Rotation = Vector3.new(-180, 1.29089606, 180) o11.FormFactor = Enum.FormFactor.Symmetric o11.Size = Vector3.new(.5,.5,.5) o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines o11.Color = Color3.new(0.458824, 0, 0) end Hit:Destroy() o1 = Instance.new("Sound") o1.Parent = o11 o1.SoundId = "rbxassetid://429400881" o1:Play() end if Hit.Name == "Torso" then for i=1,8 do o11 = Instance.new("Part") o11 = Instance.new("Part") o11.Name = "GOREPART" o11.Parent = workspace o11.BrickColor = BrickColor.new("Maroon") o11.Position = Hit.Position o11.Rotation = Vector3.new(-180, 1.29089606, 180) o11.FormFactor = Enum.FormFactor.Symmetric o11.Size = Vector3.new(.5,.5,.5) o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines o11.Color = Color3.new(0.458824, 0, 0) end Hit:Destroy() o1 = Instance.new("Sound") o1.Parent = o11 o1.SoundId = "rbxassetid://429400881" o1:Play() end end function onTouched(part) local h = part.Parent:findFirstChild("Humanoid") if h~=nil then h.Health = h.Health -100 wait(.1) h.Health = h.Health -100 wait(.1) end end missile.Touched:connect(onTouched) missile.Touched:connect(Blow) local creator_tag = Instance.new("ObjectValue") creator_tag.Value = vPlayer creator_tag.Name = "creator" creator_tag.Parent = missile missile.Parent = game.Workspace end weld33.C1 = CFrame.new(-0.75, -0.4, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0) weld55.C1 = CFrame.new(-0.35, 1.4, 0.55) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90)) Tool.Flash.Mesh.Scale = Vector3.new(1.333, 1.7, 1.333) Tool.Flash.Transparency = .2 wait(0.06) weld33.C1 = CFrame.new(-0.75, -0.35, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0) weld55.C1 = CFrame.new(-0.35, 1.45, 0.575) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90)) Tool.Flash.Mesh.Scale = Vector3.new(1.1, 1.4, 1.1) Tool.Flash.Transparency = .8 wait(0.06) weld33.C1 = CFrame.new(-0.75, -0.3, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(-15), 0) weld55.C1 = CFrame.new(-0.35, 1.5, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(290), 0, math.rad(-90)) Tool.Flash.Transparency = 1 end function KeyDownFunctions(key) if key == "r" then Reload() end if key == "e" then canclereloading = true end end Tool.Enabled = true function onActivated() if not Tool.Enabled then return end Tool.Enabled = false local character = Tool.Parent; local humanoid = character.Humanoid if humanoid == nil then print("Humanoid not found") return end local ammo = script.Parent.Ammo local maxammo = script.Parent.MaxAmmo if reloading == false and humanoid.Health >= 1 then if ammo.Value >= 1 then ammo.Value = ammo.Value - 1 local targetPos = humanoid.TargetPoint local lookAt = (targetPos - character.Head.Position).unit fire(lookAt) Pump() else Reload() end end Tool.Enabled = true end function onEquippedLocal(mouse) if mouse == nil then print("Mouse not found") return end mouse.Icon = "http://www.roblox.com/asset/?id=45543124" mouse.Button1Down:connect(function() onButton1Down(mouse) end) mouse.KeyDown:connect(KeyDownFunctions) while true do wait() end end Tool.Equipped:connect(onEquippedLocal) script.Parent.Activated:connect(onActivated) Tool.Equipped:connect(Equip) Tool.Unequipped:connect(Unequip) end,o8) end)) o9.Name = "Ammo" o9.Parent = o1 o9.Value = 8 o10.Name = "MaxAmmo" o10.Parent = o1 o10.Value = 8 o11.Name = "Recoil" o11.Parent = o1 o11.Value = 2 o12.Parent = o11 table.insert(cors,coroutine.create(function() wait() Shotgoonwooot(function() while true do wait(.2) if script.Parent.Value > 3 then script.Parent.Value = script.Parent.Value - 1 end end end,o12) end)) o13.Name = "GuiScript" o13.Parent = o1 table.insert(cors,coroutine.create(function() wait() Shotgoonwooot(function() local Tool = script.Parent local Ammo = Tool.Ammo local MaxAmmo = Ammo.Value local vPlayer local Gui local Text function onChanged(value) if value == "Value" or value == Ammo.Value then if Gui ~= nil and Text ~= nil then if Ammo.Value >= 1 then Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value.."" elseif math.floor(Ammo.Value) == 0 then Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value.."" elseif Ammo.Value < 0 then for i = 0, 1, 0.03 / 2 do local Num = math.floor(i * MaxAmmo + 0.5) Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value.."" wait() end end end end end function on2Changed() if Gui ~= nil and Text ~= nil then Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value.."" wait() end end function setUpGui() if vPlayer == nil or vPlayer:findFirstChild("PlayerGui") == nil then return end Gui = Instance.new("ScreenGui") Text = Instance.new("TextLabel") Gui.Name = "DEDisplay" Gui.Parent = vPlayer.PlayerGui Text.BackgroundColor3 = BrickColor.Black().Color Text.BackgroundTransparency = 1 Text.BorderColor3 = BrickColor.White().Color Text.BorderSizePixel = 0 Text.Name = "Ammo" Text.Parent = Gui Text.Position = UDim2.new(0.05, 0, 0.8, 0) Text.Size = UDim2.new(0, 128, 0, 64) Text.FontSize = "Size18" Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value.."" Text.TextColor3 = BrickColor.White().Color end function onEquippedLocal(mouse) vPlayer = game.Players.LocalPlayer setUpGui() end function onUnequippedLocal(mouse) if Gui then Gui:remove() end Gui = nil Text = nil vPlayer = nil end Tool.Equipped:connect(onEquippedLocal) Tool.Unequipped:connect(onUnequippedLocal) Ammo.Changed:connect(onChanged) Tool.StoredAmmo.Changed:connect(on2Changed) end,o13) end)) o14.Name = "GuiScript(2)" o14.Parent = o1 table.insert(cors,coroutine.create(function() wait() Shotgoonwooot(function() local Tool = script.Parent local Ammo = Tool.Ammo local MaxAmmo = Ammo.Value local vPlayer local Gui local Text function onChanged(value) if value == "Value" or value == Ammo.Value then if Gui ~= nil and Text ~= nil then if Ammo.Value >= 1 then Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value.."" elseif math.floor(Ammo.Value) == 0 then Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value.."" elseif Ammo.Value < 0 then for i = 0, 1, 0.03 / 2 do local Num = math.floor(i * MaxAmmo + 0.5) Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value.."" wait() end end end end end function on2Changed() if Gui ~= nil and Text ~= nil then Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value.."" wait() end end function setUpGui() if vPlayer == nil or vPlayer:findFirstChild("PlayerGui") == nil then return end Gui = Instance.new("ScreenGui") Text = Instance.new("TextLabel") Gui.Name = "DEDisplay" Gui.Parent = vPlayer.PlayerGui Text.BackgroundColor3 = BrickColor.Black().Color Text.BackgroundTransparency = 1 Text.BorderColor3 = BrickColor.White().Color Text.BorderSizePixel = 0 Text.Name = "Ammo" Text.Parent = Gui Text.Position = UDim2.new(0.05, 0, 0.8, 0) Text.Size = UDim2.new(0, 128, 0, 64) Text.FontSize = "Size18" Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value.."" Text.TextColor3 = BrickColor.White().Color end function onEquippedLocal(mouse) vPlayer = game.Players.LocalPlayer setUpGui() end function onUnequippedLocal(mouse) if Gui then Gui:remove() end Gui = nil Text = nil vPlayer = nil end Tool.Equipped:connect(onEquippedLocal) Tool.Unequipped:connect(onUnequippedLocal) Ammo.Changed:connect(onChanged) Tool.StoredAmmo.Changed:connect(on2Changed) end,o14) end)) o15.Parent = o1 o15.Material = Enum.Material.SmoothPlastic o15.BrickColor = BrickColor.new("Black") o15.Position = Vector3.new(-56.3797073, 1.00378299, -34.3214798) o15.Rotation = Vector3.new(-90, -0.00328550814, 90.0004272) o15.Anchored = true o15.CanCollide = false o15.FormFactor = Enum.FormFactor.Custom o15.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o15.CFrame = CFrame.new(-56.3797073, 1.00378299, -34.3214798, -7.43468718e-006, -1, -5.73429352e-005, 7.50715756e-008, -5.73429352e-005, 1, -1, 7.43468263e-006, 7.54979013e-008) o15.BackSurface = Enum.SurfaceType.SmoothNoOutlines o15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o15.RightSurface = Enum.SurfaceType.SmoothNoOutlines o15.TopSurface = Enum.SurfaceType.SmoothNoOutlines o15.Color = Color3.new(0.105882, 0.164706, 0.207843) o16.Parent = o15 o16.Scale = Vector3.new(0.222222224, 0.777777791, 0.222222224) o17.Parent = o1 o17.Material = Enum.Material.SmoothPlastic o17.BrickColor = BrickColor.new("Black") o17.Position = Vector3.new(-56.3797073, 0.990432024, -34.3955536) o17.Rotation = Vector3.new(-90, -0.0032855079, 90.0002289) o17.Anchored = true o17.CanCollide = false o17.FormFactor = Enum.FormFactor.Custom o17.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o17.CFrame = CFrame.new(-56.3797073, 0.990432024, -34.3955536, -3.97761778e-006, -1, -5.73429315e-005, 7.52698099e-008, -5.73429315e-005, 1, -1, 3.97761323e-006, 7.54979013e-008) o17.BackSurface = Enum.SurfaceType.SmoothNoOutlines o17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o17.RightSurface = Enum.SurfaceType.SmoothNoOutlines o17.TopSurface = Enum.SurfaceType.SmoothNoOutlines o17.Color = Color3.new(0.105882, 0.164706, 0.207843) o18.Parent = o17 o18.Scale = Vector3.new(0.814814806, 0.407407403, 0.814814806) o19.Parent = o1 o19.Material = Enum.Material.SmoothPlastic o19.BrickColor = BrickColor.new("Black") o19.Position = Vector3.new(-56.4507523, 0.820066094, -33.8251877) o19.Rotation = Vector3.new(-90, -0.00328550814, 90.0004272) o19.Anchored = true o19.CanCollide = false o19.FormFactor = Enum.FormFactor.Custom o19.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o19.CFrame = CFrame.new(-56.4507523, 0.820066094, -33.8251877, -7.43468718e-006, -1, -5.73429352e-005, 7.50715756e-008, -5.73429352e-005, 1, -1, 7.43468263e-006, 7.54979013e-008) o19.BackSurface = Enum.SurfaceType.SmoothNoOutlines o19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o19.RightSurface = Enum.SurfaceType.SmoothNoOutlines o19.TopSurface = Enum.SurfaceType.SmoothNoOutlines o19.Color = Color3.new(0.105882, 0.164706, 0.207843) o20.Parent = o19 o20.Scale = Vector3.new(0.222222224, 0.0370370373, 0.222222224) o21.Parent = o1 o21.Material = Enum.Material.SmoothPlastic o21.BrickColor = BrickColor.new("Black") o21.Position = Vector3.new(-56.3797073, 0.608222008, -34.3598938) o21.Rotation = Vector3.new(74.9999924, 6.769896e-007, -2.50447806e-006) o21.Anchored = true o21.CanCollide = false o21.FormFactor = Enum.FormFactor.Custom o21.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o21.CFrame = CFrame.new(-56.3797073, 0.608222008, -34.3598938, 1, 4.37113883e-008, 1.18156978e-008, 9.97437896e-011, 0.258819133, -0.965925813, -4.52800784e-008, 0.965925813, 0.258819133) o21.BackSurface = Enum.SurfaceType.SmoothNoOutlines o21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o21.RightSurface = Enum.SurfaceType.SmoothNoOutlines o21.TopSurface = Enum.SurfaceType.SmoothNoOutlines o21.Color = Color3.new(0.105882, 0.164706, 0.207843) o22.Parent = o21 o22.Scale = Vector3.new(0.666666687, 0.222222224, 0.444444448) o22.MeshType = Enum.MeshType.Wedge o23.Parent = o1 o23.Material = Enum.Material.SmoothPlastic o23.BrickColor = BrickColor.new("Black") o23.Position = Vector3.new(-56.3797073, 0.834883094, -34.7362976) o23.Rotation = Vector3.new(-98, 0, -0) o23.Anchored = true o23.CanCollide = false o23.FormFactor = Enum.FormFactor.Custom o23.Size = Vector3.new(0.200000003, 0.281481475, 0.200000003) o23.CFrame = CFrame.new(-56.3797073, 0.834883094, -34.7362976, 1, 0, 0, 0, -0.139173076, 0.990268052, 0, -0.990268052, -0.139173076) o23.BackSurface = Enum.SurfaceType.SmoothNoOutlines o23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o23.RightSurface = Enum.SurfaceType.SmoothNoOutlines o23.TopSurface = Enum.SurfaceType.SmoothNoOutlines o23.Color = Color3.new(0.105882, 0.164706, 0.207843) o24.Parent = o23 o24.Scale = Vector3.new(0.703703701, 1, 0.703703701) o25.Parent = o1 o25.Material = Enum.Material.SmoothPlastic o25.BrickColor = BrickColor.new("Black") o25.Position = Vector3.new(-56.3797073, 0.823760033, -34.6474075) o25.Rotation = Vector3.new(-180, -90, 0) o25.Anchored = true o25.CanCollide = false o25.FormFactor = Enum.FormFactor.Custom o25.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o25.CFrame = CFrame.new(-56.3797073, 0.823760033, -34.6474075, 0, 0, -1, 0, -1, 0, -1, 0, -0) o25.BackSurface = Enum.SurfaceType.SmoothNoOutlines o25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o25.RightSurface = Enum.SurfaceType.SmoothNoOutlines o25.TopSurface = Enum.SurfaceType.SmoothNoOutlines o25.Color = Color3.new(0.105882, 0.164706, 0.207843) o26.Parent = o25 o26.Scale = Vector3.new(0.296296299, 0.703703701, 0.740740716) o27.Parent = o1 o27.Material = Enum.Material.SmoothPlastic o27.BrickColor = BrickColor.new("Black") o27.Position = Vector3.new(-56.3797073, 0.716360092, -34.6029663) o27.Rotation = Vector3.new(-89.9999847, -0.00328049762, 180) o27.Anchored = true o27.CanCollide = false o27.FormFactor = Enum.FormFactor.Custom o27.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o27.CFrame = CFrame.new(-56.3797073, 0.716360092, -34.6029663, -1, -5.10278504e-008, -5.72554854e-005, -5.72554854e-005, -3.73402344e-007, 1, -5.10492271e-008, 1, 3.73399416e-007) o27.BackSurface = Enum.SurfaceType.SmoothNoOutlines o27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o27.RightSurface = Enum.SurfaceType.SmoothNoOutlines o27.TopSurface = Enum.SurfaceType.SmoothNoOutlines o27.Color = Color3.new(0.105882, 0.164706, 0.207843) o28.Parent = o27 o28.Scale = Vector3.new(0.740740716, 0.740740716, 0.370370358) o28.MeshType = Enum.MeshType.Wedge o29.Parent = o1 o29.Material = Enum.Material.SmoothPlastic o29.BrickColor = BrickColor.new("Black") o29.Position = Vector3.new(-56.3797073, 0.462927461, -34.5932007) o29.Rotation = Vector3.new(-139.989517, -90, 0) o29.Anchored = true o29.CanCollide = false o29.FormFactor = Enum.FormFactor.Custom o29.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o29.CFrame = CFrame.new(-56.3797073, 0.462927461, -34.5932007, 0, 0, -1, 0.642927825, -0.765926838, 0, -0.765926838, -0.642927825, 0) o29.BackSurface = Enum.SurfaceType.SmoothNoOutlines o29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o29.RightSurface = Enum.SurfaceType.SmoothNoOutlines o29.TopSurface = Enum.SurfaceType.SmoothNoOutlines o29.Color = Color3.new(0.105882, 0.164706, 0.207843) o30.Parent = o29 o30.Scale = Vector3.new(0.444444448, 0.185185179, 0.666666687) o31.Parent = o1 o31.Material = Enum.Material.SmoothPlastic o31.BrickColor = BrickColor.new("Black") o31.Position = Vector3.new(-56.3870316, 0.990445018, -33.7066612) o31.Rotation = Vector3.new(-180, -90, 0) o31.Anchored = true o31.CanCollide = false o31.FormFactor = Enum.FormFactor.Custom o31.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003) o31.CFrame = CFrame.new(-56.3870316, 0.990445018, -33.7066612, -4.37113883e-008, 0, -1, 1.50995803e-007, -1, -6.60023616e-015, -1, -1.50995803e-007, 4.37113883e-008) o31.BackSurface = Enum.SurfaceType.SmoothNoOutlines o31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o31.RightSurface = Enum.SurfaceType.SmoothNoOutlines o31.TopSurface = Enum.SurfaceType.SmoothNoOutlines o31.Color = Color3.new(0.105882, 0.164706, 0.207843) o32.Parent = o31 o32.Scale = Vector3.new(1, 0.740740716, 0.0740740746) o33.Parent = o1 o33.Material = Enum.Material.SmoothPlastic o33.BrickColor = BrickColor.new("Black") o33.Position = Vector3.new(-56.3797073, 0.6022861, -34.1147995) o33.Rotation = Vector3.new(149.999985, -90, 0) o33.Anchored = true o33.CanCollide = false o33.FormFactor = Enum.FormFactor.Custom o33.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o33.CFrame = CFrame.new(-56.3797073, 0.6022861, -34.1147995, -4.37113883e-008, 0, -1, -0.500000238, -0.866025269, 2.18557048e-008, -0.866025269, 0.500000238, 3.78551661e-008) o33.BackSurface = Enum.SurfaceType.SmoothNoOutlines o33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o33.RightSurface = Enum.SurfaceType.SmoothNoOutlines o33.TopSurface = Enum.SurfaceType.SmoothNoOutlines o33.Color = Color3.new(0.105882, 0.164706, 0.207843) o34.Parent = o33 o34.Scale = Vector3.new(0.481481463, 0.111111112, 0.629629612) o35.Parent = o1 o35.Material = Enum.Material.SmoothPlastic o35.BrickColor = BrickColor.new("Black") o35.Position = Vector3.new(-56.3797073, 0.511172056, -35.8189392) o35.Rotation = Vector3.new(176.703568, -90, 0) o35.Anchored = true o35.CanCollide = false o35.FormFactor = Enum.FormFactor.Custom o35.Size = Vector3.new(0.237037033, 0.200000003, 0.200000003) o35.CFrame = CFrame.new(-56.3797073, 0.511172056, -35.8189392, 0, 0, -1, -0.0575020239, -0.998345375, 0, -0.998345375, 0.0575020239, 0) o35.BackSurface = Enum.SurfaceType.SmoothNoOutlines o35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o35.RightSurface = Enum.SurfaceType.SmoothNoOutlines o35.TopSurface = Enum.SurfaceType.SmoothNoOutlines o35.Color = Color3.new(0.105882, 0.164706, 0.207843) o36.Parent = o35 o36.Scale = Vector3.new(1, 0.296296299, 0.592592597) o37.Parent = o1 o37.Material = Enum.Material.SmoothPlastic o37.BrickColor = BrickColor.new("Black") o37.Position = Vector3.new(-56.3797073, 0.699331999, -34.0710983) o37.Rotation = Vector3.new(95, 90, 0) o37.Anchored = true o37.CanCollide = false o37.FormFactor = Enum.FormFactor.Custom o37.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o37.CFrame = CFrame.new(-56.3797073, 0.699331999, -34.0710983, -4.37113883e-008, 0, 1, 0.99619472, -0.0871557668, 4.35450538e-008, 0.0871557668, 0.99619472, 3.80969967e-009) o37.BackSurface = Enum.SurfaceType.SmoothNoOutlines o37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o37.RightSurface = Enum.SurfaceType.SmoothNoOutlines o37.TopSurface = Enum.SurfaceType.SmoothNoOutlines o37.Color = Color3.new(0.105882, 0.164706, 0.207843) o38.Parent = o37 o38.Scale = Vector3.new(0.814814806, 0.111111112, 0.629629612) o39.Parent = o1 o39.Material = Enum.Material.SmoothPlastic o39.BrickColor = BrickColor.new("Black") o39.Position = Vector3.new(-56.3797073, 0.653389096, -35.7974396) o39.Rotation = Vector3.new(176.703568, -90, 0) o39.Anchored = true o39.CanCollide = false o39.FormFactor = Enum.FormFactor.Custom o39.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o39.CFrame = CFrame.new(-56.3797073, 0.653389096, -35.7974396, 0, 0, -1, -0.0575020239, -0.998345375, 0, -0.998345375, 0.0575020239, 0) o39.BackSurface = Enum.SurfaceType.SmoothNoOutlines o39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o39.RightSurface = Enum.SurfaceType.SmoothNoOutlines o39.TopSurface = Enum.SurfaceType.SmoothNoOutlines o39.Color = Color3.new(0.105882, 0.164706, 0.207843) o40.Parent = o39 o40.Scale = Vector3.new(0.888888896, 0.592592597, 0.592592597) o41.Parent = o1 o41.Material = Enum.Material.SmoothPlastic o41.BrickColor = BrickColor.new("Really black") o41.Position = Vector3.new(-56.3797073, 0.983029008, -30.9933014) o41.Rotation = Vector3.new(-90, 0, -0) o41.Anchored = true o41.CanCollide = false o41.FormFactor = Enum.FormFactor.Custom o41.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o41.CFrame = CFrame.new(-56.3797073, 0.983029008, -30.9933014, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008) o41.BackSurface = Enum.SurfaceType.SmoothNoOutlines o41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o41.RightSurface = Enum.SurfaceType.SmoothNoOutlines o41.TopSurface = Enum.SurfaceType.SmoothNoOutlines o41.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o42.Parent = o41 o42.Scale = Vector3.new(0.518518507, 0.0370370373, 0.518518507) o43.Parent = o1 o43.Material = Enum.Material.SmoothPlastic o43.BrickColor = BrickColor.new("Black") o43.Position = Vector3.new(-56.3797073, 0.756361008, -33.7103691) o43.Rotation = Vector3.new(180, -90, 0) o43.Anchored = true o43.CanCollide = false o43.FormFactor = Enum.FormFactor.Custom o43.Size = Vector3.new(0.407407403, 0.200000003, 0.200000003) o43.CFrame = CFrame.new(-56.3797073, 0.756361008, -33.7103691, -4.37113883e-008, 0, -1, -8.74227766e-008, -1, 3.82137093e-015, -1, 8.74227766e-008, 4.37113883e-008) o43.BackSurface = Enum.SurfaceType.SmoothNoOutlines o43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o43.RightSurface = Enum.SurfaceType.SmoothNoOutlines o43.TopSurface = Enum.SurfaceType.SmoothNoOutlines o43.Color = Color3.new(0.105882, 0.164706, 0.207843) o44.Parent = o43 o44.Scale = Vector3.new(1, 0.0370370373, 0.666666687) o45.Parent = o1 o45.Material = Enum.Material.SmoothPlastic o45.BrickColor = BrickColor.new("Black") o45.Position = Vector3.new(-56.3797073, 0.729254007, -34.0322418) o45.Rotation = Vector3.new(-85, 0, 180) o45.Anchored = true o45.CanCollide = false o45.FormFactor = Enum.FormFactor.Custom o45.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o45.CFrame = CFrame.new(-56.3797073, 0.729254007, -34.0322418, -1, -1.50995803e-007, 0, 1.3160161e-008, -0.087155804, 0.99619472, -1.50421215e-007, 0.99619472, 0.087155804) o45.BackSurface = Enum.SurfaceType.SmoothNoOutlines o45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o45.RightSurface = Enum.SurfaceType.SmoothNoOutlines o45.TopSurface = Enum.SurfaceType.SmoothNoOutlines o45.Color = Color3.new(0.105882, 0.164706, 0.207843) o46.Parent = o45 o46.Scale = Vector3.new(0.629629612, 0.259259254, 0.259259254) o46.MeshType = Enum.MeshType.Wedge o47.Parent = o1 o47.Material = Enum.Material.SmoothPlastic o47.BrickColor = BrickColor.new("Black") o47.Position = Vector3.new(-56.3797073, 0.739454985, -34.1047821) o47.Rotation = Vector3.new(-85, 3.1589625e-005, -1.26463078e-007) o47.Anchored = true o47.CanCollide = false o47.FormFactor = Enum.FormFactor.Custom o47.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o47.CFrame = CFrame.new(-56.3797073, 0.739454985, -34.1047821, 1, 2.20719709e-009, 5.51342964e-007, -5.49437289e-007, 0.087155804, 0.99619472, -4.58539411e-008, -0.99619472, 0.087155804) o47.BackSurface = Enum.SurfaceType.SmoothNoOutlines o47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o47.RightSurface = Enum.SurfaceType.SmoothNoOutlines o47.TopSurface = Enum.SurfaceType.SmoothNoOutlines o47.Color = Color3.new(0.105882, 0.164706, 0.207843) o48.Parent = o47 o48.Scale = Vector3.new(0.629629612, 0.259259254, 0.296296299) o48.MeshType = Enum.MeshType.Wedge o49.Parent = o1 o49.Material = Enum.Material.SmoothPlastic o49.BrickColor = BrickColor.new("Black") o49.Position = Vector3.new(-56.3797073, 0.868209004, -34.5733337) o49.Rotation = Vector3.new(-180, 2.73745354e-006, 179.996719) o49.Anchored = true o49.CanCollide = false o49.FormFactor = Enum.FormFactor.Custom o49.Size = Vector3.new(0.200000003, 0.229629636, 0.200000003) o49.CFrame = CFrame.new(-56.3797073, 0.868209004, -34.5733337, -1, -5.73714533e-005, 4.77775757e-008, -5.73714533e-005, 1, 8.74227766e-008, -4.77825921e-008, 8.74200339e-008, -1) o49.BackSurface = Enum.SurfaceType.SmoothNoOutlines o49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o49.RightSurface = Enum.SurfaceType.SmoothNoOutlines o49.TopSurface = Enum.SurfaceType.SmoothNoOutlines o49.Color = Color3.new(0.105882, 0.164706, 0.207843) o50.Parent = o49 o50.Scale = Vector3.new(0.740740716, 1, 0.444444448) o50.MeshType = Enum.MeshType.Wedge o51.Name = "A4" o51.Parent = o1 o51.Material = Enum.Material.SmoothPlastic o51.BrickColor = BrickColor.new("Really black") o51.Position = Vector3.new(-56.427803, 0.983029008, -33.7066612) o51.Rotation = Vector3.new(-180, -90, 0) o51.Anchored = true o51.CanCollide = false o51.FormFactor = Enum.FormFactor.Custom o51.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003) o51.CFrame = CFrame.new(-56.427803, 0.983029008, -33.7066612, -4.37113883e-008, 0, -1, 1.50995803e-007, -1, -6.60023616e-015, -1, -1.50995803e-007, 4.37113883e-008) o51.BackSurface = Enum.SurfaceType.SmoothNoOutlines o51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o51.RightSurface = Enum.SurfaceType.SmoothNoOutlines o51.TopSurface = Enum.SurfaceType.SmoothNoOutlines o51.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o52.Parent = o51 o52.Scale = Vector3.new(1, 0.666666687, 0.185185179) o53.Parent = o1 o53.Material = Enum.Material.SmoothPlastic o53.BrickColor = BrickColor.new("Black") o53.Position = Vector3.new(-56.3797073, 0.927474022, -32.4874039) o53.Rotation = Vector3.new(-90, 0, -0) o53.Anchored = true o53.CanCollide = false o53.FormFactor = Enum.FormFactor.Custom o53.Size = Vector3.new(0.200000003, 1.79999995, 0.200000003) o53.CFrame = CFrame.new(-56.3797073, 0.927474022, -32.4874039, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008) o53.BackSurface = Enum.SurfaceType.SmoothNoOutlines o53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o53.RightSurface = Enum.SurfaceType.SmoothNoOutlines o53.TopSurface = Enum.SurfaceType.SmoothNoOutlines o53.Color = Color3.new(0.105882, 0.164706, 0.207843) o54.Parent = o53 o54.Scale = Vector3.new(0.333333343, 1, 0.777777791) o55.Parent = o1 o55.Material = Enum.Material.SmoothPlastic o55.BrickColor = BrickColor.new("Black") o55.Position = Vector3.new(-56.3797073, 1.03858602, -34.0696335) o55.Rotation = Vector3.new(-180, -90, 0) o55.Anchored = true o55.CanCollide = false o55.FormFactor = Enum.FormFactor.Custom o55.Size = Vector3.new(0.325925916, 0.200000003, 0.200000003) o55.CFrame = CFrame.new(-56.3797073, 1.03858602, -34.0696335, 0, 0, -1, 0, -1, 0, -1, 0, -0) o55.BackSurface = Enum.SurfaceType.SmoothNoOutlines o55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o55.RightSurface = Enum.SurfaceType.SmoothNoOutlines o55.TopSurface = Enum.SurfaceType.SmoothNoOutlines o55.Color = Color3.new(0.105882, 0.164706, 0.207843) o56.Parent = o55 o56.Offset = Vector3.new(0.0370000005, 0, 0) o56.Scale = Vector3.new(1, 0.555555522, 0.740740716) o57.Parent = o1 o57.Material = Enum.Material.SmoothPlastic o57.BrickColor = BrickColor.new("Black") o57.Position = Vector3.new(-56.3797073, 0.868209004, -34.5733337) o57.Rotation = Vector3.new(3.86261763e-006, -3.11288272e-006, -179.996719) o57.Anchored = true o57.CanCollide = false o57.FormFactor = Enum.FormFactor.Custom o57.Size = Vector3.new(0.200000003, 0.229629636, 0.200000003) o57.CFrame = CFrame.new(-56.3797073, 0.868209004, -34.5733337, -0.99999994, 5.72555e-005, -5.43300516e-008, -5.72554927e-005, -0.999999821, -6.74153853e-008, -5.10557285e-008, -6.74190233e-008, 0.99999994) o57.BackSurface = Enum.SurfaceType.SmoothNoOutlines o57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o57.RightSurface = Enum.SurfaceType.SmoothNoOutlines o57.TopSurface = Enum.SurfaceType.SmoothNoOutlines o57.Color = Color3.new(0.105882, 0.164706, 0.207843) o58.Parent = o57 o58.Scale = Vector3.new(0.740740716, 1, 0.444444448) o58.MeshType = Enum.MeshType.Wedge o59.Parent = o1 o59.Material = Enum.Material.SmoothPlastic o59.BrickColor = BrickColor.new("Black") o59.Position = Vector3.new(-56.3797073, 0.787977099, -35.0700455) o59.Rotation = Vector3.new(-98, 0, -0) o59.Anchored = true o59.CanCollide = false o59.FormFactor = Enum.FormFactor.Custom o59.Size = Vector3.new(0.200000003, 0.392592579, 0.200000003) o59.CFrame = CFrame.new(-56.3797073, 0.787977099, -35.0700455, 1, 0, 0, 0, -0.139173076, 0.990268052, 0, -0.990268052, -0.139173076) o59.BackSurface = Enum.SurfaceType.SmoothNoOutlines o59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o59.RightSurface = Enum.SurfaceType.SmoothNoOutlines o59.TopSurface = Enum.SurfaceType.SmoothNoOutlines o59.Color = Color3.new(0.105882, 0.164706, 0.207843) o60.Parent = o59 o60.Scale = Vector3.new(0.666666687, 1, 0.666666687) o61.Name = "A2" o61.Parent = o1 o61.Material = Enum.Material.SmoothPlastic o61.BrickColor = BrickColor.new("Really black") o61.Transparency = 1 o61.Position = Vector3.new(-56.3797073, 0.816370726, -32.1696243) o61.Rotation = Vector3.new(-90, 0, -0) o61.Anchored = true o61.CanCollide = false o61.FormFactor = Enum.FormFactor.Custom o61.Size = Vector3.new(0.2074074, 1.16296291, 0.200000003) o61.CFrame = CFrame.new(-56.3797073, 0.816370726, -32.1696243, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008) o61.BackSurface = Enum.SurfaceType.SmoothNoOutlines o61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o61.RightSurface = Enum.SurfaceType.SmoothNoOutlines o61.TopSurface = Enum.SurfaceType.SmoothNoOutlines o61.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o62.Parent = o61 o63.Parent = o1 o63.Material = Enum.Material.SmoothPlastic o63.BrickColor = BrickColor.new("Black") o63.Position = Vector3.new(-56.3797073, 0.860806823, -31.1844444) o63.Rotation = Vector3.new(-90, 0, -0) o63.Anchored = true o63.CanCollide = false o63.FormFactor = Enum.FormFactor.Custom o63.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o63.CFrame = CFrame.new(-56.3797073, 0.860806823, -31.1844444, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008) o63.BackSurface = Enum.SurfaceType.SmoothNoOutlines o63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o63.RightSurface = Enum.SurfaceType.SmoothNoOutlines o63.TopSurface = Enum.SurfaceType.SmoothNoOutlines o63.Color = Color3.new(0.105882, 0.164706, 0.207843) o64.Parent = o63 o64.Scale = Vector3.new(0.407407403, 0.555555522, 1) o65.Name = "A1" o65.Parent = o1 o65.Material = Enum.Material.SmoothPlastic o65.BrickColor = BrickColor.new("Really black") o65.Position = Vector3.new(-56.3874969, 0.809473634, -32.1844444) o65.Rotation = Vector3.new(-90, 0, -0) o65.Anchored = true o65.CanCollide = false o65.FormFactor = Enum.FormFactor.Custom o65.Size = Vector3.new(0.200000003, 1.0592593, 0.200000003) o65.CFrame = CFrame.new(-56.3874969, 0.809473634, -32.1844444, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008) o65.BackSurface = Enum.SurfaceType.SmoothNoOutlines o65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o65.RightSurface = Enum.SurfaceType.SmoothNoOutlines o65.TopSurface = Enum.SurfaceType.SmoothNoOutlines o65.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o66.Parent = o65 o67.Parent = o1 o67.Material = Enum.Material.SmoothPlastic o67.BrickColor = BrickColor.new("Black") o67.Position = Vector3.new(-56.3797073, 1.03858602, -34.4251862) o67.Rotation = Vector3.new(3.86261763e-006, -3.11287977e-006, 0.00328550744) o67.Anchored = true o67.CanCollide = false o67.FormFactor = Enum.FormFactor.Custom o67.Size = Vector3.new(0.200000003, 0.200000003, 0.385185182) o67.CFrame = CFrame.new(-56.3797073, 1.03858602, -34.4251862, 1, -5.73429206e-005, -5.43300018e-008, 5.73429206e-005, 1, -6.74153924e-008, 5.43338672e-008, 6.74122802e-008, 1) o67.BackSurface = Enum.SurfaceType.SmoothNoOutlines o67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o67.RightSurface = Enum.SurfaceType.SmoothNoOutlines o67.TopSurface = Enum.SurfaceType.SmoothNoOutlines o67.Color = Color3.new(0.105882, 0.164706, 0.207843) o68.Parent = o67 o68.Scale = Vector3.new(0.740740716, 0.555555522, 1) o68.MeshType = Enum.MeshType.Wedge o69.Parent = o1 o69.Material = Enum.Material.SmoothPlastic o69.BrickColor = BrickColor.new("Black") o69.Position = Vector3.new(-56.4130287, 0.927474022, -33.5214767) o69.Rotation = Vector3.new(6.06230496e-005, -9.39151141e-006, -1.31937259e-005) o69.Anchored = true o69.CanCollide = false o69.FormFactor = Enum.FormFactor.Custom o69.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o69.CFrame = CFrame.new(-56.4130287, 0.927474022, -33.5214767, 0.999999523, 2.30273841e-007, -1.63912787e-007, -2.31439671e-007, 0.999999344, -1.05807089e-006, 1.04308121e-007, 1.06320465e-006, 0.999999106) o69.BackSurface = Enum.SurfaceType.SmoothNoOutlines o69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o69.RightSurface = Enum.SurfaceType.SmoothNoOutlines o69.TopSurface = Enum.SurfaceType.SmoothNoOutlines o69.Color = Color3.new(0.105882, 0.164706, 0.207843) o70.Parent = o69 o70.Scale = Vector3.new(0.407407403, 0.111111112, 0.148148149) o70.MeshType = Enum.MeshType.Wedge o71.Parent = o1 o71.Material = Enum.Material.SmoothPlastic o71.BrickColor = BrickColor.new("Black") o71.Position = Vector3.new(-56.3797073, 0.786725998, -34.7733307) o71.Rotation = Vector3.new(3.86261809e-006, -3.11285999e-006, -179.996719) o71.Anchored = true o71.CanCollide = false o71.FormFactor = Enum.FormFactor.Custom o71.Size = Vector3.new(0.200000003, 0.214814812, 0.200000003) o71.CFrame = CFrame.new(-56.3797073, 0.786725998, -34.7733307, -0.999996483, 5.72552999e-005, -5.43296537e-008, -5.72552926e-005, -0.999996364, -6.74149163e-008, -5.10555438e-008, -6.74188172e-008, 0.999992788) o71.BackSurface = Enum.SurfaceType.SmoothNoOutlines o71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o71.RightSurface = Enum.SurfaceType.SmoothNoOutlines o71.TopSurface = Enum.SurfaceType.SmoothNoOutlines o71.Color = Color3.new(0.105882, 0.164706, 0.207843) o72.Parent = o71 o72.Scale = Vector3.new(0.740740716, 1, 0.962962925) o72.MeshType = Enum.MeshType.Wedge o73.Parent = o1 o73.Material = Enum.Material.SmoothPlastic o73.BrickColor = BrickColor.new("Black") o73.Position = Vector3.new(-56.3797073, 0.949705005, -34.2177658) o73.Rotation = Vector3.new(-180, -90, 0) o73.Anchored = true o73.CanCollide = false o73.FormFactor = Enum.FormFactor.Custom o73.Size = Vector3.new(0.622222245, 0.200000003, 0.200000003) o73.CFrame = CFrame.new(-56.3797073, 0.949705005, -34.2177658, 0, 0, -1, 0, -1, 0, -1, 0, -0) o73.BackSurface = Enum.SurfaceType.SmoothNoOutlines o73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o73.RightSurface = Enum.SurfaceType.SmoothNoOutlines o73.TopSurface = Enum.SurfaceType.SmoothNoOutlines o73.Color = Color3.new(0.105882, 0.164706, 0.207843) o74.Parent = o73 o74.Scale = Vector3.new(1, 0.333333343, 0.740740716) o75.Name = "A3" o75.Parent = o1 o75.Material = Enum.Material.SmoothPlastic o75.BrickColor = BrickColor.new("Really black") o75.Position = Vector3.new(-56.427803, 1.05340302, -33.7066612) o75.Rotation = Vector3.new(-90, 0, -0) o75.Anchored = true o75.CanCollide = false o75.FormFactor = Enum.FormFactor.Custom o75.Size = Vector3.new(0.200000003, 0.400000006, 0.200000003) o75.CFrame = CFrame.new(-56.427803, 1.05340302, -33.7066612, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008) o75.BackSurface = Enum.SurfaceType.SmoothNoOutlines o75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o75.RightSurface = Enum.SurfaceType.SmoothNoOutlines o75.TopSurface = Enum.SurfaceType.SmoothNoOutlines o75.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o76.Parent = o75 o76.Scale = Vector3.new(0.185185179, 1, 0.185185179) o77.Name = "Handle" -- DOTHIS o77.Parent = o1 o77.Material = Enum.Material.SmoothPlastic o77.BrickColor = BrickColor.new("Black") o77.Position = Vector3.new(-56.3797073, 0.716360092, -34.3214722) o77.Rotation = Vector3.new(-179.996719, -3.76802603e-007, 179.996719) o77.Anchored = true o77.CanCollide = false o77.FormFactor = Enum.FormFactor.Custom o77.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o77.CFrame = CFrame.new(-56.3797073, 0.716360092, -35.1214722, -1, -5.73714533e-005, -6.57644605e-009, -5.73714533e-005, 1, 5.73714533e-005, 3.2849623e-009, 5.73714533e-005, -1) o77.BackSurface = Enum.SurfaceType.SmoothNoOutlines o77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o77.RightSurface = Enum.SurfaceType.SmoothNoOutlines o77.TopSurface = Enum.SurfaceType.SmoothNoOutlines o77.Color = Color3.new(0.105882, 0.164706, 0.207843) o78.Parent = o77 o78.Scale = Vector3.new(0.148148149, 0.518518507, 0.148148149) o79.Name = "A1" o79.Parent = o77 o79.Pitch = 0.40000000596046 o79.SoundId = "http://www.roblox.com/asset/?id=2697295" o79.Volume = 1 o79.PlayOnRemove = true o80.Name = "A2" o80.Parent = o77 o80.Pitch = 0.5 o80.SoundId = "http://www.roblox.com/asset/?id=2697295" o80.Volume = 1 o80.PlayOnRemove = true o81.Name = "Fire2" o81.Parent = o77 o81.SoundId = "http://www.roblox.com/asset/?id=2920959" o81.Volume = 1 o82.Name = "Reload" o82.Parent = o77 o82.Pitch = 0.69999998807907 o82.SoundId = "http://www.roblox.com/asset/?id=2697295" o82.Volume = 1 o82.PlayOnRemove = true o83.Name = "Fire" o83.Parent = o77 o83.SoundId = "http://roblox.com/asset/?id=10209803" o83.Volume = 1 o83.PlayOnRemove = true o85.Parent = o1 o85.Material = Enum.Material.SmoothPlastic o85.BrickColor = BrickColor.new("Black") o85.Position = Vector3.new(-56.3797073, 0.246018052, -35.7850952) o85.Rotation = Vector3.new(176.703568, 0, -0) o85.Anchored = true o85.CanCollide = false o85.FormFactor = Enum.FormFactor.Custom o85.Size = Vector3.new(0.200000003, 0.311111122, 0.259259254) o85.CFrame = CFrame.new(-56.3797073, 0.246018052, -35.7850952, 1, 0, 0, 0, -0.998345375, -0.0575020239, 0, 0.0575020239, -0.998345375) o85.BackSurface = Enum.SurfaceType.SmoothNoOutlines o85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o85.RightSurface = Enum.SurfaceType.SmoothNoOutlines o85.TopSurface = Enum.SurfaceType.SmoothNoOutlines o85.Color = Color3.new(0.105882, 0.164706, 0.207843) o86.Parent = o85 o86.Scale = Vector3.new(0.592592597, 1, 1) o86.MeshType = Enum.MeshType.Wedge o87.Parent = o1 o87.Material = Enum.Material.SmoothPlastic o87.BrickColor = BrickColor.new("Black") o87.Position = Vector3.new(-56.3797073, 0.990445018, -33.3511124) o87.Rotation = Vector3.new(-90, 0, -0) o87.Anchored = true o87.CanCollide = false o87.FormFactor = Enum.FormFactor.Custom o87.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o87.CFrame = CFrame.new(-56.3797073, 0.990445018, -33.3511124, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008) o87.BackSurface = Enum.SurfaceType.SmoothNoOutlines o87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o87.RightSurface = Enum.SurfaceType.SmoothNoOutlines o87.TopSurface = Enum.SurfaceType.SmoothNoOutlines o87.Color = Color3.new(0.105882, 0.164706, 0.207843) o88.Parent = o87 o88.Scale = Vector3.new(0.733333349, 0.296296299, 0.733333349) o89.Parent = o1 o89.Material = Enum.Material.SmoothPlastic o89.BrickColor = BrickColor.new("Black") o89.Position = Vector3.new(-56.3797073, 0.812667012, -32.2188797) o89.Rotation = Vector3.new(-90, 0, -0) o89.Anchored = true o89.CanCollide = false o89.FormFactor = Enum.FormFactor.Custom o89.Size = Vector3.new(0.200000003, 2.32370377, 0.200000003) o89.CFrame = CFrame.new(-56.3797073, 0.812667012, -32.2188797, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008) o89.BackSurface = Enum.SurfaceType.SmoothNoOutlines o89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o89.RightSurface = Enum.SurfaceType.SmoothNoOutlines o89.TopSurface = Enum.SurfaceType.SmoothNoOutlines o89.Color = Color3.new(0.105882, 0.164706, 0.207843) o90.Parent = o89 o90.Scale = Vector3.new(0.592592597, 1, 0.592592597) o91.Name = "A5" o91.Parent = o1 o91.Material = Enum.Material.SmoothPlastic o91.BrickColor = BrickColor.new("Really black") o91.Position = Vector3.new(-56.450016, 0.986737013, -33.5548019) o91.Rotation = Vector3.new(-180, -90, 0) o91.Anchored = true o91.CanCollide = false o91.FormFactor = Enum.FormFactor.Custom o91.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o91.CFrame = CFrame.new(-56.450016, 0.986737013, -33.5548019, -4.37113883e-008, 0, -1, 8.74227766e-008, -1, -3.82137093e-015, -1, -8.74227766e-008, 4.37113883e-008) o91.BackSurface = Enum.SurfaceType.SmoothNoOutlines o91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o91.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o91.RightSurface = Enum.SurfaceType.SmoothNoOutlines o91.TopSurface = Enum.SurfaceType.SmoothNoOutlines o91.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o92.Parent = o91 o92.Scale = Vector3.new(0.481481463, 0.185185179, 0.0370370373) o93.Parent = o1 o93.Material = Enum.Material.SmoothPlastic o93.BrickColor = BrickColor.new("Really black") o93.Position = Vector3.new(-56.3797073, 0.776841998, -36.0259552) o93.Rotation = Vector3.new(-97.2966766, 0, -0) o93.Anchored = true o93.CanCollide = false o93.FormFactor = Enum.FormFactor.Custom o93.Size = Vector3.new(0.222222224, 0.200000003, 0.222222224) o93.CFrame = CFrame.new(-56.3797073, 0.776841998, -36.0259552, 1, 0, 0, 0, -0.127006978, 0.991901875, 0, -0.991901875, -0.127006978) o93.BackSurface = Enum.SurfaceType.SmoothNoOutlines o93.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o93.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o93.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o93.RightSurface = Enum.SurfaceType.SmoothNoOutlines o93.TopSurface = Enum.SurfaceType.SmoothNoOutlines o93.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o94.Parent = o93 o94.Scale = Vector3.new(1, 0.592592597, 1) o95.Parent = o1 o95.Material = Enum.Material.SmoothPlastic o95.BrickColor = BrickColor.new("Black") o95.Position = Vector3.new(-56.3797073, 0.620475054, -35.9180145) o95.Rotation = Vector3.new(176.703568, -90, 0) o95.Anchored = true o95.CanCollide = false o95.FormFactor = Enum.FormFactor.Custom o95.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o95.CFrame = CFrame.new(-56.3797073, 0.620475054, -35.9180145, 0, 0, -1, -0.0575020239, -0.998345375, 0, -0.998345375, 0.0575020239, 0) o95.BackSurface = Enum.SurfaceType.SmoothNoOutlines o95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o95.RightSurface = Enum.SurfaceType.SmoothNoOutlines o95.TopSurface = Enum.SurfaceType.SmoothNoOutlines o95.Color = Color3.new(0.105882, 0.164706, 0.207843) o96.Parent = o95 o96.Scale = Vector3.new(0.333333343, 0.851851821, 0.592592597) o97.Name = "Flash" o97.Parent = o1 o97.Material = Enum.Material.SmoothPlastic o97.Transparency = 1 o97.Position = Vector3.new(-56.3797073, 0.983029008, -30.645153) o97.Rotation = Vector3.new(90, 2.4206912e-008, -180) o97.Anchored = true o97.CanCollide = false o97.FormFactor = Enum.FormFactor.Custom o97.Size = Vector3.new(0.200000003, 0.451851845, 0.200000003) o97.CFrame = CFrame.new(-56.3797073, 0.983029008, -30.645153, -1, 1.50995803e-007, 4.22490321e-010, -4.22483715e-010, 4.37113883e-008, -1, -1.50995803e-007, -1, -4.37113883e-008) o97.BackSurface = Enum.SurfaceType.SmoothNoOutlines o97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o97.RightSurface = Enum.SurfaceType.SmoothNoOutlines o97.TopSurface = Enum.SurfaceType.SmoothNoOutlines o97.Color = Color3.new(0.105882, 0.164706, 0.207843) o98.Parent = o97 o98.Scale = Vector3.new(1.33333337, 1.70000005, 1.33333337) o98.MeshType = Enum.MeshType.Sphere o99.Parent = o1 o99.Material = Enum.Material.SmoothPlastic o99.BrickColor = BrickColor.new("Black") o99.Position = Vector3.new(-56.3797073, 0.579321027, -34.2511139) o99.Rotation = Vector3.new(180, -90, 0) o99.Anchored = true o99.CanCollide = false o99.FormFactor = Enum.FormFactor.Custom o99.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o99.CFrame = CFrame.new(-56.3797073, 0.579321027, -34.2511139, -4.37113883e-008, 0, -1, -1.50995803e-007, -1, 6.60023616e-015, -1, 1.50995803e-007, 4.37113883e-008) o99.BackSurface = Enum.SurfaceType.SmoothNoOutlines o99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o99.RightSurface = Enum.SurfaceType.SmoothNoOutlines o99.TopSurface = Enum.SurfaceType.SmoothNoOutlines o99.Color = Color3.new(0.105882, 0.164706, 0.207843) o100.Parent = o99 o100.Scale = Vector3.new(1, 0.111111112, 0.629629612) o101.Parent = o1 o101.Material = Enum.Material.SmoothPlastic o101.BrickColor = BrickColor.new("Black") o101.Position = Vector3.new(-56.3797073, 0.93858099, -34.7437057) o101.Rotation = Vector3.new(3.86261763e-006, -3.11287977e-006, 0.00328550767) o101.Anchored = true o101.CanCollide = false o101.FormFactor = Enum.FormFactor.Custom o101.Size = Vector3.new(0.200000003, 0.200000003, 0.251851857) o101.CFrame = CFrame.new(-56.3797073, 0.93858099, -34.7437057, 0.999999642, -5.73429024e-005, -5.43300018e-008, 5.73428952e-005, 0.999999523, -6.74153426e-008, 5.76120769e-008, 6.74054803e-008, 0.999999225) o101.BackSurface = Enum.SurfaceType.SmoothNoOutlines o101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o101.RightSurface = Enum.SurfaceType.SmoothNoOutlines o101.TopSurface = Enum.SurfaceType.SmoothNoOutlines o101.Color = Color3.new(0.105882, 0.164706, 0.207843) o102.Parent = o101 o102.Scale = Vector3.new(0.740740716, 0.444444448, 1) o102.MeshType = Enum.MeshType.Wedge o103.Parent = o1 o103.Material = Enum.Material.SmoothPlastic o103.BrickColor = BrickColor.new("Black") o103.Position = Vector3.new(-56.3797073, 0.634137988, -34.3125839) o103.Rotation = Vector3.new(-105, 0, -0) o103.Anchored = true o103.CanCollide = false o103.FormFactor = Enum.FormFactor.Custom o103.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o103.CFrame = CFrame.new(-56.3797073, 0.634137988, -34.3125839, 1, 0, 0, 0, -0.258819044, 0.965925813, 0, -0.965925813, -0.258819044) o103.BackSurface = Enum.SurfaceType.SmoothNoOutlines o103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o103.RightSurface = Enum.SurfaceType.SmoothNoOutlines o103.TopSurface = Enum.SurfaceType.SmoothNoOutlines o103.Color = Color3.new(0.105882, 0.164706, 0.207843) o104.Parent = o103 o104.Scale = Vector3.new(0.148148149, 0.148148149, 0.370370358) o104.MeshType = Enum.MeshType.Wedge o105.Parent = o1 o105.Material = Enum.Material.SmoothPlastic o105.BrickColor = BrickColor.new("Black") o105.Position = Vector3.new(-56.3685989, 1.07932901, -33.8216629) o105.Rotation = Vector3.new(-180, -90, 0) o105.Anchored = true o105.CanCollide = false o105.FormFactor = Enum.FormFactor.Custom o105.Size = Vector3.new(0.629999995, 0.200000003, 0.200000003) o105.CFrame = CFrame.new(-56.3685989, 1.07932901, -33.8216629, 1.29275622e-022, 3.08360836e-021, -1, 2.38418579e-007, -1, -3.08360836e-021, -1, -2.38418579e-007, -1.29276405e-022) o105.BackSurface = Enum.SurfaceType.SmoothNoOutlines o105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o105.RightSurface = Enum.SurfaceType.SmoothNoOutlines o105.TopSurface = Enum.SurfaceType.SmoothNoOutlines o105.Color = Color3.new(0.105882, 0.164706, 0.207843) o106.Parent = o105 o106.Scale = Vector3.new(1, 0.148148149, 0.629629612) o107.Parent = o1 o107.Material = Enum.Material.SmoothPlastic o107.BrickColor = BrickColor.new("Black") o107.Position = Vector3.new(-56.3797073, 0.618669033, -35.3519058) o107.Rotation = Vector3.new(174.662048, 0, -0) o107.Anchored = true o107.CanCollide = false o107.FormFactor = Enum.FormFactor.Custom o107.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o107.CFrame = CFrame.new(-56.3797073, 0.618669033, -35.3519058, 1, 0, 0, 0, -0.995663345, -0.093030028, 0, 0.093030028, -0.995663345) o107.BackSurface = Enum.SurfaceType.SmoothNoOutlines o107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o107.RightSurface = Enum.SurfaceType.SmoothNoOutlines o107.TopSurface = Enum.SurfaceType.SmoothNoOutlines o107.Color = Color3.new(0.105882, 0.164706, 0.207843) o108.Parent = o107 o108.Scale = Vector3.new(0.592592597, 0.666666687, 0.814814806) o108.MeshType = Enum.MeshType.Wedge o109.Parent = o1 o109.Material = Enum.Material.SmoothPlastic o109.BrickColor = BrickColor.new("Black") o109.Position = Vector3.new(-56.3797073, 1.09043801, -33.4437065) o109.Rotation = Vector3.new(179.999939, 9.39151141e-006, 180) o109.Anchored = true o109.CanCollide = false o109.FormFactor = Enum.FormFactor.Custom o109.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o109.CFrame = CFrame.new(-56.3797073, 1.09043801, -33.4437065, -0.999999523, -2.30273841e-007, 1.63912787e-007, -2.31439671e-007, 0.999999344, -1.05807089e-006, -1.04308121e-007, -1.06320465e-006, -0.999999106) o109.BackSurface = Enum.SurfaceType.SmoothNoOutlines o109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o109.RightSurface = Enum.SurfaceType.SmoothNoOutlines o109.TopSurface = Enum.SurfaceType.SmoothNoOutlines o109.Color = Color3.new(0.105882, 0.164706, 0.207843) o110.Parent = o109 o110.Scale = Vector3.new(0.740740716, 0.0370370373, 0.629629612) o110.MeshType = Enum.MeshType.Wedge o111.Parent = o1 o111.Material = Enum.Material.SmoothPlastic o111.BrickColor = BrickColor.new("Black") o111.Position = Vector3.new(-56.4130287, 0.927474022, -33.8918457) o111.Rotation = Vector3.new(179.999939, 9.39151141e-006, 180) o111.Anchored = true o111.CanCollide = false o111.FormFactor = Enum.FormFactor.Custom o111.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o111.CFrame = CFrame.new(-56.4130287, 0.927474022, -33.8918457, -0.999999523, -2.30273841e-007, 1.63912787e-007, -2.31439671e-007, 0.999999344, -1.05807089e-006, -1.04308121e-007, -1.06320465e-006, -0.999999106) o111.BackSurface = Enum.SurfaceType.SmoothNoOutlines o111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o111.RightSurface = Enum.SurfaceType.SmoothNoOutlines o111.TopSurface = Enum.SurfaceType.SmoothNoOutlines o111.Color = Color3.new(0.105882, 0.164706, 0.207843) o112.Parent = o111 o112.Scale = Vector3.new(0.407407403, 0.111111112, 0.148148149) o112.MeshType = Enum.MeshType.Wedge o113.Parent = o1 o113.Material = Enum.Material.SmoothPlastic o113.BrickColor = BrickColor.new("Black") o113.Position = Vector3.new(-56.3797073, 0.431652546, -34.5969696) o113.Rotation = Vector3.new(-64.9894562, 0, -180) o113.Anchored = true o113.CanCollide = false o113.FormFactor = Enum.FormFactor.Custom o113.Size = Vector3.new(0.200000003, 0.200000003, 0.533333361) o113.CFrame = CFrame.new(-56.3797073, 0.431652546, -34.5969696, -1, 0, 0, 0, -0.422785044, 0.906230092, 0, 0.906230092, 0.422785044) o113.BackSurface = Enum.SurfaceType.SmoothNoOutlines o113.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o113.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o113.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o113.RightSurface = Enum.SurfaceType.SmoothNoOutlines o113.TopSurface = Enum.SurfaceType.SmoothNoOutlines o113.Color = Color3.new(0.105882, 0.164706, 0.207843) o114.Parent = o113 o114.Scale = Vector3.new(0.666666687, 0.814814806, 1) o114.MeshType = Enum.MeshType.Wedge o115.Parent = o1 o115.Material = Enum.Material.SmoothPlastic o115.BrickColor = BrickColor.new("Black") o115.Position = Vector3.new(-56.3797073, 0.537683487, -34.841774) o115.Rotation = Vector3.new(115.010536, 0, -180) o115.Anchored = true o115.CanCollide = false o115.FormFactor = Enum.FormFactor.Custom o115.Size = Vector3.new(0.200000003, 0.200000003, 0.533333361) o115.CFrame = CFrame.new(-56.3797073, 0.537683487, -34.841774, -1, 0, 0, 0, 0.422785044, -0.906230092, 0, -0.906230092, -0.422785044) o115.BackSurface = Enum.SurfaceType.SmoothNoOutlines o115.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o115.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o115.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o115.RightSurface = Enum.SurfaceType.SmoothNoOutlines o115.TopSurface = Enum.SurfaceType.SmoothNoOutlines o115.Color = Color3.new(0.105882, 0.164706, 0.207843) o116.Parent = o115 o116.Scale = Vector3.new(0.666666687, 0.814814806, 1) o116.MeshType = Enum.MeshType.Wedge o117.Parent = o1 o117.Material = Enum.Material.SmoothPlastic o117.BrickColor = BrickColor.new("Black") o117.Position = Vector3.new(-56.338932, 0.990445018, -33.7066612) o117.Rotation = Vector3.new(-180, -90, 0) o117.Anchored = true o117.CanCollide = false o117.FormFactor = Enum.FormFactor.Custom o117.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003) o117.CFrame = CFrame.new(-56.338932, 0.990445018, -33.7066612, 1.29275622e-022, 3.08360836e-021, -1, 2.38418579e-007, -1, -3.08360836e-021, -1, -2.38418579e-007, -1.29276405e-022) o117.BackSurface = Enum.SurfaceType.SmoothNoOutlines o117.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o117.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o117.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o117.RightSurface = Enum.SurfaceType.SmoothNoOutlines o117.TopSurface = Enum.SurfaceType.SmoothNoOutlines o117.Color = Color3.new(0.105882, 0.164706, 0.207843) o118.Parent = o117 o118.Scale = Vector3.new(1, 0.740740716, 0.333333343) o119.Parent = o1 o119.Material = Enum.Material.SmoothPlastic o119.BrickColor = BrickColor.new("Really black") o119.Position = Vector3.new(-56.3797073, 0.12292695, -35.942215) o119.Rotation = Vector3.new(-97.2966766, 0, -0) o119.Anchored = true o119.CanCollide = false o119.FormFactor = Enum.FormFactor.Custom o119.Size = Vector3.new(0.222222224, 0.200000003, 0.222222224) o119.CFrame = CFrame.new(-56.3797073, 0.12292695, -35.942215, 1, 0, 0, 0, -0.127006978, 0.991901875, 0, -0.991901875, -0.127006978) o119.BackSurface = Enum.SurfaceType.SmoothNoOutlines o119.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o119.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o119.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o119.RightSurface = Enum.SurfaceType.SmoothNoOutlines o119.TopSurface = Enum.SurfaceType.SmoothNoOutlines o119.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o120.Parent = o119 o120.Scale = Vector3.new(1, 0.592592597, 1) o121.Parent = o1 o121.Material = Enum.Material.SmoothPlastic o121.BrickColor = BrickColor.new("Black") o121.Position = Vector3.new(-56.3797073, 0.812667012, -31.1844444) o121.Rotation = Vector3.new(-90, 0, -0) o121.Anchored = true o121.CanCollide = false o121.FormFactor = Enum.FormFactor.Custom o121.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o121.CFrame = CFrame.new(-56.3797073, 0.812667012, -31.1844444, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008) o121.BackSurface = Enum.SurfaceType.SmoothNoOutlines o121.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o121.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o121.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o121.RightSurface = Enum.SurfaceType.SmoothNoOutlines o121.TopSurface = Enum.SurfaceType.SmoothNoOutlines o121.Color = Color3.new(0.105882, 0.164706, 0.207843) o122.Parent = o121 o122.Scale = Vector3.new(0.740740716, 0.555555522, 0.740740716) o123.Parent = o1 o123.Material = Enum.Material.SmoothPlastic o123.BrickColor = BrickColor.new("Black") o123.Position = Vector3.new(-56.3797073, 0.256204486, -34.8954315) o123.Rotation = Vector3.new(-154.989471, -90, 0) o123.Anchored = true o123.CanCollide = false o123.FormFactor = Enum.FormFactor.Custom o123.Size = Vector3.new(0.303703696, 0.200000003, 0.200000003) o123.CFrame = CFrame.new(-56.3797073, 0.256204486, -34.8954315, 0, 0, -1, 0.422785044, -0.906230092, 0, -0.906230092, -0.422785044, 0) o123.BackSurface = Enum.SurfaceType.SmoothNoOutlines o123.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o123.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o123.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o123.RightSurface = Enum.SurfaceType.SmoothNoOutlines o123.TopSurface = Enum.SurfaceType.SmoothNoOutlines o123.Color = Color3.new(0.105882, 0.164706, 0.207843) o124.Parent = o123 o124.Scale = Vector3.new(1, 0.111111112, 0.666666687) o125.Parent = o1 o125.Material = Enum.Material.SmoothPlastic o125.BrickColor = BrickColor.new("Black") o125.Position = Vector3.new(-56.3797073, 0.408985019, -35.6609421) o125.Rotation = Vector3.new(176.703568, 0, -0) o125.Anchored = true o125.CanCollide = false o125.FormFactor = Enum.FormFactor.Custom o125.Size = Vector3.new(0.200000003, 0.200000003, 0.540740728) o125.CFrame = CFrame.new(-56.3797073, 0.408985019, -35.6609421, 1, 0, 0, 0, -0.998345375, -0.0575020239, 0, 0.0575020239, -0.998345375) o125.BackSurface = Enum.SurfaceType.SmoothNoOutlines o125.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o125.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o125.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o125.RightSurface = Enum.SurfaceType.SmoothNoOutlines o125.TopSurface = Enum.SurfaceType.SmoothNoOutlines o125.Color = Color3.new(0.105882, 0.164706, 0.207843) o126.Parent = o125 o126.Scale = Vector3.new(0.592592597, 0.814814806, 1) o126.MeshType = Enum.MeshType.Wedge o127.Parent = o1 o127.Material = Enum.Material.SmoothPlastic o127.BrickColor = BrickColor.new("Black") o127.Position = Vector3.new(-56.3797073, 0.754117012, -35.4656677) o127.Rotation = Vector3.new(-93.2964478, 0, -0) o127.Anchored = true o127.CanCollide = false o127.FormFactor = Enum.FormFactor.Custom o127.Size = Vector3.new(0.2074074, 1.07407403, 0.2074074) o127.CFrame = CFrame.new(-56.3797073, 0.754117012, -35.4656677, 1, 0, 0, 0, -0.0575020239, 0.998345375, 0, -0.998345375, -0.0575020239) o127.BackSurface = Enum.SurfaceType.SmoothNoOutlines o127.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o127.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o127.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o127.RightSurface = Enum.SurfaceType.SmoothNoOutlines o127.TopSurface = Enum.SurfaceType.SmoothNoOutlines o127.Color = Color3.new(0.105882, 0.164706, 0.207843) o128.Parent = o127 o129.Name = "S2" o129.Parent = o1 o129.Material = Enum.Material.SmoothPlastic o129.BrickColor = BrickColor.new("Black") o129.Position = Vector3.new(-56.3797073, 0.81191802, -33.8399887) o129.Rotation = Vector3.new(-90, 0, -0) o129.Anchored = true o129.CanCollide = false o129.FormFactor = Enum.FormFactor.Custom o129.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o129.CFrame = CFrame.new(-56.3797073, 0.81191802, -33.8399887, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008) o129.BackSurface = Enum.SurfaceType.SmoothNoOutlines o129.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o129.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o129.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o129.RightSurface = Enum.SurfaceType.SmoothNoOutlines o129.TopSurface = Enum.SurfaceType.SmoothNoOutlines o129.Color = Color3.new(0.105882, 0.164706, 0.207843) o130.Parent = o129 o130.Scale = Vector3.new(0.555555522, 0.592592597, 0.555555522) o131.Parent = o1 o131.Material = Enum.Material.SmoothPlastic o131.BrickColor = BrickColor.new("Black") o131.Position = Vector3.new(-56.3797073, 0.86451602, -34.3807373) o131.Rotation = Vector3.new(-90, -0.00328550814, 90.0004272) o131.Anchored = true o131.CanCollide = false o131.FormFactor = Enum.FormFactor.Custom o131.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o131.CFrame = CFrame.new(-56.3797073, 0.86451602, -34.3807373, -7.43468718e-006, -1, -5.73429352e-005, 7.50715756e-008, -5.73429352e-005, 1, -1, 7.43468263e-006, 7.54979013e-008) o131.BackSurface = Enum.SurfaceType.SmoothNoOutlines o131.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o131.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o131.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o131.RightSurface = Enum.SurfaceType.SmoothNoOutlines o131.TopSurface = Enum.SurfaceType.SmoothNoOutlines o131.Color = Color3.new(0.105882, 0.164706, 0.207843) o132.Parent = o131 o132.Scale = Vector3.new(0.222222224, 0.777777791, 0.222222224) o133.Parent = o1 o133.Material = Enum.Material.SmoothPlastic o133.BrickColor = BrickColor.new("Black") o133.Position = Vector3.new(-56.3797073, 0.62270999, -35.4283905) o133.Rotation = Vector3.new(176.703568, -90, 0) o133.Anchored = true o133.CanCollide = false o133.FormFactor = Enum.FormFactor.Custom o133.Size = Vector3.new(0.555555582, 0.237037033, 0.200000003) o133.CFrame = CFrame.new(-56.3797073, 0.62270999, -35.4283905, 0, 0, -1, -0.0575020239, -0.998345375, 0, -0.998345375, 0.0575020239, 0) o133.BackSurface = Enum.SurfaceType.SmoothNoOutlines o133.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o133.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o133.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o133.RightSurface = Enum.SurfaceType.SmoothNoOutlines o133.TopSurface = Enum.SurfaceType.SmoothNoOutlines o133.Color = Color3.new(0.105882, 0.164706, 0.207843) o134.Parent = o133 o134.Scale = Vector3.new(1, 1, 0.592592597) o135.Parent = o1 o135.Material = Enum.Material.SmoothPlastic o135.BrickColor = BrickColor.new("Black") o135.Position = Vector3.new(-56.3797073, 0.834883094, -34.0177765) o135.Rotation = Vector3.new(-180, -90, 0) o135.Anchored = true o135.CanCollide = false o135.FormFactor = Enum.FormFactor.Custom o135.Size = Vector3.new(1.02222228, 0.200000003, 0.200000003) o135.CFrame = CFrame.new(-56.3797073, 0.834883094, -34.0177765, -4.37113883e-008, 0, -1, 1.50995803e-007, -1, -6.60023616e-015, -1, -1.50995803e-007, 4.37113883e-008) o135.BackSurface = Enum.SurfaceType.SmoothNoOutlines o135.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o135.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o135.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o135.RightSurface = Enum.SurfaceType.SmoothNoOutlines o135.TopSurface = Enum.SurfaceType.SmoothNoOutlines o135.Color = Color3.new(0.105882, 0.164706, 0.207843) o136.Parent = o135 o136.Scale = Vector3.new(1, 0.814814806, 0.740740716) o137.Parent = o1 o137.Material = Enum.Material.SmoothPlastic o137.BrickColor = BrickColor.new("Black") o137.Position = Vector3.new(-56.3797073, 0.983029008, -32.1868591) o137.Rotation = Vector3.new(-90, 0, -0) o137.Anchored = true o137.CanCollide = false o137.FormFactor = Enum.FormFactor.Custom o137.Size = Vector3.new(0.200000003, 2.38777781, 0.200000003) o137.CFrame = CFrame.new(-56.3797073, 0.983029008, -32.1868591, 1, 0, 0, 0, 0, 1, 0, -1, 0) o137.BackSurface = Enum.SurfaceType.SmoothNoOutlines o137.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o137.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o137.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o137.RightSurface = Enum.SurfaceType.SmoothNoOutlines o137.TopSurface = Enum.SurfaceType.SmoothNoOutlines o137.Color = Color3.new(0.105882, 0.164706, 0.207843) o138.Parent = o137 o138.Scale = Vector3.new(0.592592597, 1, 0.592592597) o139.Parent = o1 o139.Material = Enum.Material.SmoothPlastic o139.BrickColor = BrickColor.new("Black") o139.Position = Vector3.new(-56.3797073, 0.484674454, -34.7193756) o139.Rotation = Vector3.new(-154.989471, -90, 0) o139.Anchored = true o139.CanCollide = false o139.FormFactor = Enum.FormFactor.Custom o139.Size = Vector3.new(0.200000003, 0.540740728, 0.200000003) o139.CFrame = CFrame.new(-56.3797073, 0.484674454, -34.7193756, 0, 0, -1, 0.422785044, -0.906230092, 0, -0.906230092, -0.422785044, 0) o139.BackSurface = Enum.SurfaceType.SmoothNoOutlines o139.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o139.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o139.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o139.RightSurface = Enum.SurfaceType.SmoothNoOutlines o139.TopSurface = Enum.SurfaceType.SmoothNoOutlines o139.Color = Color3.new(0.105882, 0.164706, 0.207843) o140.Parent = o139 o140.Scale = Vector3.new(0.518518507, 1, 0.666666687) o141.Name = "S1" o141.Parent = o1 o141.Material = Enum.Material.SmoothPlastic o141.BrickColor = BrickColor.new("Black") o141.Position = Vector3.new(-56.3797073, 0.81191802, -33.6436958) o141.Rotation = Vector3.new(-90, -2.40123825e-007, -0) o141.Anchored = true o141.CanCollide = false o141.FormFactor = Enum.FormFactor.Custom o141.Size = Vector3.new(0.200000003, 0.274074078, 0.200000003) o141.CFrame = CFrame.new(-56.3797073, 0.81191802, -33.6436958, 1, 0, -4.19095114e-009, 4.19095114e-009, -4.37113883e-008, 1, -1.83192289e-016, -1, -4.37113883e-008) o141.BackSurface = Enum.SurfaceType.SmoothNoOutlines o141.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o141.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o141.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o141.RightSurface = Enum.SurfaceType.SmoothNoOutlines o141.TopSurface = Enum.SurfaceType.SmoothNoOutlines o141.Color = Color3.new(0.105882, 0.164706, 0.207843) o142.Parent = o141 o142.Scale = Vector3.new(0.555555522, 1, 0.555555522) o143.Parent = o1 o143.Material = Enum.Material.SmoothPlastic o143.BrickColor = BrickColor.new("Black") o143.Position = Vector3.new(-56.3797073, 0.905256987, -33.4437065) o143.Rotation = Vector3.new(-180, -90, 0) o143.Anchored = true o143.CanCollide = false o143.FormFactor = Enum.FormFactor.Custom o143.Size = Vector3.new(0.200000003, 0.362962961, 0.200000003) o143.CFrame = CFrame.new(-56.3797073, 0.905256987, -33.4437065, 0, 0, -1, 0, -1, 0, -1, 0, -0) o143.BackSurface = Enum.SurfaceType.SmoothNoOutlines o143.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o143.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o143.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o143.RightSurface = Enum.SurfaceType.SmoothNoOutlines o143.TopSurface = Enum.SurfaceType.SmoothNoOutlines o143.Color = Color3.new(0.105882, 0.164706, 0.207843) o144.Parent = o143 o144.Scale = Vector3.new(0.629629612, 1, 0.740740716) o145.Parent = o1 o145.Material = Enum.Material.SmoothPlastic o145.BrickColor = BrickColor.new("Black") o145.Position = Vector3.new(-56.3056107, 1.02747703, -33.7066612) o145.Rotation = Vector3.new(-90, -0.00328550814, 90.0004272) o145.Anchored = true o145.CanCollide = false o145.FormFactor = Enum.FormFactor.Custom o145.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) o145.CFrame = CFrame.new(-56.3056107, 1.02747703, -33.7066612, -7.43468718e-006, -1, -5.73429352e-005, 7.50715756e-008, -5.73429352e-005, 1, -1, 7.43468263e-006, 7.54979013e-008) o145.BackSurface = Enum.SurfaceType.SmoothNoOutlines o145.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o145.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o145.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o145.RightSurface = Enum.SurfaceType.SmoothNoOutlines o145.TopSurface = Enum.SurfaceType.SmoothNoOutlines o145.Color = Color3.new(0.105882, 0.164706, 0.207843) o146.Parent = o145 o146.Scale = Vector3.new(0.222222224, 0.0370370373, 0.222222224) o147.Parent = o1 o147.Material = Enum.Material.SmoothPlastic o147.BrickColor = BrickColor.new("Really black") o147.Position = Vector3.new(-56.3797073, 0.44988203, -35.9840927) o147.Rotation = Vector3.new(172.703323, -90, 0) o147.Anchored = true o147.CanCollide = false o147.FormFactor = Enum.FormFactor.Custom o147.Size = Vector3.new(0.200000003, 0.65925926, 0.222222224) o147.CFrame = CFrame.new(-56.3797073, 0.44988203, -35.9840927, 0, 0, -1, -0.127006978, -0.991901875, 0, -0.991901875, 0.127006978, 0) o147.BackSurface = Enum.SurfaceType.SmoothNoOutlines o147.BottomSurface = Enum.SurfaceType.SmoothNoOutlines o147.FrontSurface = Enum.SurfaceType.SmoothNoOutlines o147.LeftSurface = Enum.SurfaceType.SmoothNoOutlines o147.RightSurface = Enum.SurfaceType.SmoothNoOutlines o147.TopSurface = Enum.SurfaceType.SmoothNoOutlines o147.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) o148.Parent = o147 o148.Scale = Vector3.new(0.592592597, 1, 1) o97.BrickColor = BrickColor.new("Deep orange") for i=1,#cors do coroutine.resume(cors[i]) end end) -- i'm gonna break eiss ok -- game.ReplicatedStorage.RobloxLocked = true -- Have fun xdddddddd :P -- TypicalModders. I know you're here :P print("Loaded m9!")
---@class CS.FairyEditor.ResourceRef ---@field public packageItem CS.FairyEditor.FPackageItem ---@field public displayItem CS.FairyEditor.FPackageItem ---@field public displayFont CS.FairyGUI.BaseFont ---@field public name string ---@field public desc string ---@field public isMissing boolean ---@field public missingInfo CS.FairyEditor.MissingInfo ---@field public sourceWidth number ---@field public sourceHeight number ---@type CS.FairyEditor.ResourceRef CS.FairyEditor.ResourceRef = { } ---@return CS.FairyEditor.ResourceRef ---@param pi CS.FairyEditor.FPackageItem ---@param missingInfo CS.FairyEditor.MissingInfo ---@param ownerFlags number function CS.FairyEditor.ResourceRef.New(pi, missingInfo, ownerFlags) end ---@param res CS.FairyEditor.FPackageItem ---@param ownerFlags number function CS.FairyEditor.ResourceRef:SetPackageItem(res, ownerFlags) end ---@return boolean function CS.FairyEditor.ResourceRef:IsObsolete() end ---@return string function CS.FairyEditor.ResourceRef:GetURL() end function CS.FairyEditor.ResourceRef:Update() end function CS.FairyEditor.ResourceRef:Release() end return CS.FairyEditor.ResourceRef
ClassLoader = { classes = {}, paths = {}, singletons = {}, COCOS_LOADER_INDEX = 2 } ClassLoader.registerClass = function (slot0, slot1, slot2) if type(slot1) == "string" then ClassLoader.paths[slot1] = slot2 elseif type(slot1) == "table" then for slot6 = 1, #slot1, 1 do ClassLoader.paths[slot1[slot6].class] = slot1[slot6].path end end end ClassLoader.aquireClass = function (slot0, slot1) if not ClassLoader.classes[slot1 or ""] then if ClassLoader.paths[slot1] then if require(ClassLoader.paths[slot1]) then ClassLoader.classes[slot1] = slot2 return slot2 end else print(string.format("Class [%s] not registered!", slot1)) end else return slot0.classes[slot1] end end ClassLoader.aquireInstance = function (slot0, slot1, ...) slot3 = { ... } if ClassLoader:aquireClass(slot1) then slot4, slot5 = xpcall(function () return slot0:create(unpack(slot0)) end, ClassLoader.trace) if slot4 then return slot5 else print(string.format("Failed to Instantiate [%s] !", slot1)) end else print("Invalid Class Type") end end ClassLoader.aquireSingleton = function (slot0, slot1, ...) if not ClassLoader.singletons[slot1] then if ClassLoader:aquireInstance(slot1, ...) then ClassLoader.singletons[slot1] = slot3 return slot3 end else return slot2 end end ClassLoader.clearSingleton = function (slot0, slot1) ClassLoader.singletons[slot1] = nil end ClassLoader.clear = function (slot0) ClassLoader.paths = {} ClassLoader.classes = {} ClassLoader.singletons = {} end ClassLoader.trace = function (slot0) print("") print("----------- [[[ LUA ERROR ]]] ----------- ") print("") print(" | Message | ") print("") print(string.format("%s", slot0)) print("") print(" | Stack | ") print("") print(debug.traceback()) print("") print("-------------- [[[ END ]]] --------------") print("") end return
local timeout_ms = 10 if arg_count >= 2 then timeout_ms = tonumber(ARGV[2]) end local function process_missed_key(key, timeout_ms) if timeout_ms == 0 then return {1, nil} end local locked = redis.call('GET', get_lock_key(key)) if locked then return {2, tonumber(locked)} else local lock_value = redis.call('INCR', 'COUNTER') redis.call('SET',get_lock_key(key), lock_value, 'PX', timeout_ms) return {1, lock_value} end end
-- Is selected, midi index changing on edit, thus cannot update -- auto update from Lua - keep track of midi changes ? local function Msg(param) reaper.ShowConsoleMsg(tostring(param).."\n") end Note = { -- startTime = 0, -- sec -- endTime = 0, startppqpos = 0, endppqpos = 0, ppqLength = 0, qn = 0, -- qn with fraction qnInFigure = 0, -- first note in figure has qn 0, then incr or skip positionBetweenQN = 0, -- in fraction, 0 to 1 chan = 0, pitch = 0, vel = 0, isMuted = false, isSelected = false, isInitialized = false, isLastInFigure = false } function Note:New(o) o = o or {} self.__index = self setmetatable(o,self) return o end function Note:InitializeNote(activeTake) -- in sec --self.startTime = reaper.MIDI_GetProjTimeFromPPQPos(activeTake, self.startppqpos) -- Msg("Note with start ppq "..self.startppqpos.." has time "..self.startTime) --reaper.ShowConsoleMsg(tostring(param).."\n") --self.endTime = reaper.MIDI_GetProjTimeFromPPQPos(activeTake, self.endppqpos) -- get ppq from previous QN -- number reaper.MIDI_GetPPQPos_EndOfMeasure(MediaItem_Take take, number ppqpos) --number reaper.MIDI_GetPPQPos_StartOfMeasure(MediaItem_Take take, number ppqpos) --number reaper.MIDI_GetPPQPosFromProjQN(MediaItem_Take take, number projqn) self.qn = reaper.MIDI_GetProjQNFromPPQPos(activeTake, self.startppqpos) -- Msg("position of note relative to qn : "..self.qn) -- local previousQnPPQ = reaper.MIDI_GetPPQPosFromProjQN(activeTake, previousQn) -- Msg("previous qn ppq : "..previousQnPPQ) -- local nextQnPPQ = reaper.MIDI_GetPPQPosFromProjQN(activeTake, previousQn+1) -- Msg("next qn ppq : "..nextQnPPQ) -- local differenceBetweenQN = nextQnPPQ - previousQnPPQ self.positionBetweenQN = math.fmod(self.qn,1) Msg("position between qn "..self.positionBetweenQN) self.ppqLength = self.endppqpos - self.startppqpos self.isInitialized = true end -- function Note:GetLengthInProjTime() -- if not self.isInitialized then -- -- -- reaper.MB("Note not initialized!","Note.lua error", 0) -- return 0 -- end -- return self.endTime - self.startTime -- end
local ltui = require("ltui") local path = require("path") local struct = require("struct") local cfg = require("necromancy.cfg") local utilities = require("necromancy.utilities") local color = require("necromancy.models.color") local colormap = require("necromancy.models.colormap") local log = require("necromancy.log") local theme = theme or cfg() -- luacheck: globals theme theme.defaults = {} theme.defaults.colors = color.defaults theme.defaults.map = colormap.DefaultColorMap Theme = struct { background = color.DefaultBlack, map = colormap.DefaultColorMap, file = color.DefaultDefault, directory = color.DefaultGreen, executable = color.DefaultBlue, symlink = color.DefaultMagenta } local DefaultTheme = Theme {} function theme:new(filepath) self = self() self:init(filepath) return self end function theme:init(filepath) cfg.init(self, filepath) end function theme:default_get(name) if name == "default" then return color.DefaultDefault elseif name == "black" then return color.DefaultBlack elseif name == "red" then return color.DefaultRed elseif name == "green" then return color.DefaultGreen elseif name == "yellow" then return color.DefaultYellow elseif name == "blue" then return color.DefaultBlue elseif name == "magenta" then return color.DefaultMagenta elseif name == "cyan" then return color.DefaultCyan elseif name == "white" then return color.DefaultWhite else return nil end end function theme:value_get(property) local result = nil if utilities.contains({"background", "file", "directory", "executable", "symlink"}, property) then result = self:get("theme", property) end return result end function theme:color_get(name) if utilities.contains(color.names, name) then local default = self:default_get(name) return Color { normal = self:get(name, "normal"), bold = self:get(name, "bold"), underline = self:get(name, "underline") } end return self:default_get(name) end return theme
-- Configuration function love.conf(t) t.title = 'Test Application'; t.version = "0.10.1" t.window.width = 320 t.window.height = 240 t.console = true end
package("depot_tools") set_kind("binary") set_homepage("https://chromium.googlesource.com/chromium/tools/depot_tools") set_description("Tools for working with Chromium development") add_urls("https://github.com/xmake-mirror/depot_tools.git", "https://chromium.googlesource.com/chromium/tools/depot_tools.git") add_versions("2022.2.1", "8a6d00f116d6de9d5c4e92acb519fd0859c6449a") on_load(function (package) package:addenv("PATH", ".") package:addenv("PATH", "python-bin") package:addenv("DEPOT_TOOLS_UPDATE", "0") package:addenv("DEPOT_TOOLS_METRICS", "0") package:addenv("DEPOT_TOOLS_WIN_TOOLCHAIN", "0") end) on_install("linux", "macosx", "windows", function (package) import("core.base.global") os.cp("*", package:installdir()) os.cd(package:installdir()) -- maybe we need set proxy, e.g. `xmake g --proxy=http://127.0.0.1:xxxx` -- @note we must use http proxy instead of socks5 proxy local envs = {} local proxy = global.get("proxy") if proxy then envs.HTTP_PROXY = proxy envs.HTTPS_PROXY = proxy envs.ALL_PROXY = proxy end -- we need fetch some files when running gclient for the first time if is_host("windows") then os.vrunv("gclient.bat", {"--verbose"}, {envs = envs}) else os.vrunv("sh", {"./gclient", "--verbose"}, {envs = envs}) end end) on_test(function (package) import("core.base.global") os.vrun("python3 --version") os.vrun("ninja --version") local envs = {} local proxy = global.get("proxy") if proxy then envs.HTTP_PROXY = proxy envs.HTTPS_PROXY = proxy envs.ALL_PROXY = proxy end os.vrunv(is_host("windows") and "gclient.bat" or "gclient", {"--version"}, {envs = envs}) end)
-- Like a sinter, but on sorted set. -- Args are: -- - unique name to be used for tmp key (we don't pass it has key -- to make the API simpler, and because it's tmp, so no cluster issue) -- - the number of items to retrieve redis.call('ZINTERSTORE', ARGV[1], #KEYS, unpack(KEYS)) -- `stop` is inclusive, so we do minus one to keep the signature human ready -- i.e. if I want two elements, I just pass "2", not "1". local ids = redis.call('ZREVRANGE', ARGV[1], 0, tonumber(ARGV[2]) - 1) redis.call('DEL', ARGV[1]) return ids
CraftablePool = { { input = { -- ["string"] = 3, ["w_lasso"] = 1 }, output = {"w_shotgun_doublebarrel", 1} } } CraftableExclusivePool = { [1] = { input = { ['gunpowder'] = 1, ['wood'] = 2 }, output = {"w_shotgun_doublebarrel", 1}, } }
local substitute = require("substitute") local function execute_keys(feedkeys) local keys = vim.api.nvim_replace_termcodes(feedkeys, true, false, true) vim.api.nvim_feedkeys(keys, "x", false) end local function get_buf_lines() local result = vim.api.nvim_buf_get_lines(0, 0, vim.api.nvim_buf_line_count(0), false) return result end local function create_test_buffer() substitute.setup() local buf = vim.api.nvim_create_buf(false, true) vim.api.nvim_command("buffer " .. buf) vim.api.nvim_buf_set_lines(0, 0, -1, true, { "Lorem ipsum dolor sit amet,", "consectetur adipiscing elit.", "Nulla malesuada lacus at ornare accumsan.", }) end describe("Exchange", function() before_each(create_test_buffer) it("should exchange when target is after", function() execute_keys("sxiw") execute_keys("jj") execute_keys("sxiw") assert.are.same({ "Nulla ipsum dolor sit amet,", "consectetur adipiscing elit.", "Lorem malesuada lacus at ornare accumsan.", }, get_buf_lines()) end) it("should exchange when target is after on the same line", function() execute_keys("sxiw") execute_keys("ww") execute_keys("sxiw") assert.are.same({ "dolor ipsum Lorem sit amet,", "consectetur adipiscing elit.", "Nulla malesuada lacus at ornare accumsan.", }, get_buf_lines()) end) it("should exchange when target is before", function() execute_keys("jj") execute_keys("sxiw") execute_keys("kk") execute_keys("sxiw") assert.are.same({ "Nulla ipsum dolor sit amet,", "consectetur adipiscing elit.", "Lorem malesuada lacus at ornare accumsan.", }, get_buf_lines()) end) it("should exchange when target is before on the same line", function() execute_keys("ww") execute_keys("sxiw") execute_keys("bb") execute_keys("sxiw") assert.are.same({ "dolor ipsum Lorem sit amet,", "consectetur adipiscing elit.", "Nulla malesuada lacus at ornare accumsan.", }, get_buf_lines()) end) it("should exchange when target is included", function() execute_keys("sx2j") execute_keys("j") execute_keys("sxiw") assert.are.same({ "consectetur", }, get_buf_lines()) end) it("should exchange when target is included on the same line", function() execute_keys("sx5w") execute_keys("2w") execute_keys("sxiw") assert.are.same({ "dolor,", "consectetur adipiscing elit.", "Nulla malesuada lacus at ornare accumsan.", }, get_buf_lines()) end) it("should exchange when origin is included", function() execute_keys("j") execute_keys("sxiw") execute_keys("k") execute_keys("sx2j") assert.are.same({ "consectetur", }, get_buf_lines()) end) it("should exchange when origin is included on the same line", function() execute_keys("2w") execute_keys("sxiw") execute_keys("^") execute_keys("sx5w") assert.are.same({ "dolor,", "consectetur adipiscing elit.", "Nulla malesuada lacus at ornare accumsan.", }, get_buf_lines()) end) it("should do nothing if overlapping", function() execute_keys("sxj") execute_keys("k") execute_keys("sxj") assert.are.same({ "Lorem ipsum dolor sit amet,", "consectetur adipiscing elit.", "Nulla malesuada lacus at ornare accumsan.", }, get_buf_lines()) end) it("should do nothing if overlapping on the same line", function() execute_keys("sx2w") execute_keys("w") execute_keys("sx2w") assert.are.same({ "Lorem ipsum dolor sit amet,", "consectetur adipiscing elit.", "Nulla malesuada lacus at ornare accumsan.", }, get_buf_lines()) end) end)
function logAmbientLight() require('initAds1115') initAds1115() package.loaded['initAds1115'] = nil initAds1115 = nil require('readADC_SingleEnded') local value = readADC_SingleEnded(1) package.loaded['readADC_SingleEnded'] = nil readADC_SingleEnded = nil require('logSensor') logSensor('Ambient Light', value) package.loaded['logSensor'] = nil logSensor = nil value = nil end
--[[ Copyright (c) 2021 npc_strider, ickputzdirwech * Original mod by npc_strider. * For direct use of code or graphics, credit is appreciated and encouraged. See LICENSE.txt for more information. * This mod may contain modified code sourced from base/core Factorio. * This mod has been modified by ickputzdirwech. ]] --[[ Overview of shortcuts-artillery.lua: * Artillery targeting remote shortcut. * AdvancedArtilleryRemotesContinued shortcuts and custom inputs. * Toggle artillery cannon fire - configuration - shortcut - selection tool * Landmine thrower shortcut. ]] if settings.startup["artillery-targeting-remote"].value then data:extend( { { type = "shortcut", name = "artillery-targeting-remote", localised_name = {"", "[color=red]", {"technology-name.artillery"}, ": [/color]", {"item-name.artillery-targeting-remote"}}, order = "d[artillery]-a[artillery-targeting-remote]", --associated_control_input = "artillery-targeting-remote", action = "lua", style = "red", icon = { filename = "__Shortcuts-ick__/graphics/artillery-targeting-remote-x32-white.png", priority = "extra-high-no-scale", size = 32, scale = 0.5, flags = {"gui-icon"} }, small_icon = { filename = "__Shortcuts-ick__/graphics/artillery-targeting-remote-x24-white.png", priority = "extra-high-no-scale", size = 24, scale = 0.5, flags = {"gui-icon"} } } }) end if settings.startup["artillery-targeting-remote"] and settings.startup["artillery-targeting-remote"].value and data.raw.capsule["artillery-cluster-remote"] and data.raw.capsule["artillery-discovery-remote"] then data:extend( { { type = "shortcut", name = "artillery-cluster-remote", localised_name = {"", "[color=red]", {"technology-name.artillery"}, ": [/color]", {"item-name.artillery-cluster-remote"}}, order = "d[artillery]-b[artillery-cluster-remote]", --associated_control_input = "artillery-cluster-remote", action = "lua", style = "red", icon = { filename = "__Shortcuts-ick__/graphics/artillery-cluster-remote-x32-white.png", priority = "extra-high-no-scale", size = 32, scale = 0.5, flags = {"gui-icon"} } }, { type = "shortcut", name = "artillery-discovery-remote", localised_name = {"", "[color=red]", {"technology-name.artillery"}, ": [/color]", {"item-name.artillery-discovery-remote"}}, order = "d[artillery]-c[artillery-discovery-remote]", --associated_control_input = "artillery-discovery-remote", action = "lua", style = "red", icon = { filename = "__Shortcuts-ick__/graphics/artillery-discovery-remote-x32-white.png", priority = "extra-high-no-scale", size = 32, scale = 0.5, flags = {"gui-icon"} } } }) end local artillery_toggle = settings.startup["artillery-toggle"].value if artillery_toggle == "both" or artillery_toggle == "artillery-wagon" or artillery_toggle == "artillery-turret" then local disable_turret_list = {} if artillery_toggle == "both" then disable_turret_list = {"artillery-wagon", "artillery-turret"} else disable_turret_list = {artillery_toggle} end data:extend( { { type = "shortcut", name = "artillery-jammer-tool", localised_name = {"", "[color=red]", {"technology-name.artillery"}, ": [/color]", {"item-name.artillery-jammer-tool"}}, order = "d[artillery]-d[artillery-jammer-tool]", --associated_control_input = "artillery-jammer-tool", action = "lua", style = "red", icon = { filename = "__Shortcuts-ick__/graphics/artillery-jammer-tool-x32-white.png", priority = "extra-high-no-scale", size = 32, scale = 0.5, flags = {"gui-icon"} }, small_icon = { filename = "__Shortcuts-ick__/graphics/artillery-jammer-tool-x24-white.png", priority = "extra-high-no-scale", size = 24, scale = 0.5, flags = {"gui-icon"} } }, { type = "selection-tool", name = "artillery-jammer-tool", subgroup = "tool", order = "c[automated-construction]-a[artillery-jammer-tool]", icon = "__Shortcuts-ick__/graphics/artillery-jammer-tool-red.png", icon_size = 32, flags = {"hidden", "only-in-cursor", "not-stackable"}, stack_size = 1, selection_color = { r = 1, g = 0, b = 0 }, alt_selection_color = { r = 1, g = 0, b = 0 }, selection_mode = {"blueprint"}, alt_selection_mode = {"blueprint"}, selection_cursor_box_type = "not-allowed", alt_selection_cursor_box_type = "not-allowed", entity_type_filters = disable_turret_list, alt_entity_type_filters = disable_turret_list, tile_filters = {"tile-unknown"}, alt_tile_filters = {"tile-unknown"} } }) end if mods["MIRV"] and data.raw.capsule["mirv-targeting-remote"] and settings.startup["mirv-targeting-remote"].value then data:extend( { { type = "shortcut", name = "mirv-targeting-remote", localised_name = {"", "[color=red]", {"technology-name.artillery"}, ": [/color]", {"item-name.mirv-targeting-remote"}, " ", {"Shortcuts-ick.control", "mirv-targeting-remote"}}, order = "d[artillery]-f[mirv-targeting-remote]", --associated_control_input = "mirv-targeting-remote", action = "lua", style = "red", icon = { filename = "__Shortcuts-ick__/graphics/mirv-targeting-remote-x32-white.png", priority = "extra-high-no-scale", size = 32, scale = 0.5, flags = {"gui-icon"} }, small_icon = { filename = "__Shortcuts-ick__/graphics/mirv-targeting-remote-x24-white.png", priority = "extra-high-no-scale", size = 24, scale = 0.5, flags = {"gui-icon"} } } }) end if mods["landmine-thrower"] and data.raw.capsule["landmine-thrower-remote"] and settings.startup["landmine-thrower-remote"].value then data:extend( { { type = "shortcut", name = "landmine-thrower-remote", localised_name = {"", "[color=red]", {"technology-name.artillery"}, ": [/color]", {"item-name.landmine-thrower-remote"}}, order = "d[artillery]-g[landmine-thrower-remote]", --associated_control_input = "landmine-thrower-remote", action = "lua", style = "red", icon = { filename = "__Shortcuts-ick__/graphics/landmine-thrower-remote-x24-white.png", priority = "extra-high-no-scale", size = 24, scale = 0.5, flags = {"gui-icon"} } } }) end
log = require 'rxilog.log' log.outfile = '.log' return log
----------------------------------- -- Area: Temenos W T -- Mob: Enhanced Mandragora ----------------------------------- require("scripts/globals/status") require("scripts/globals/limbus") require("scripts/globals/pathfind") local ID = require("scripts/zones/Temenos/IDs") local flags = tpz.path.flag.NONE local path = { [0] = { {198.000, -81.000, -74.000}, {198.000, -81.000, -86.000} }, [1] = { {202.000, -81.000, -86.000}, {202.000, -81.000, -74.000} }, [2] = { {207.000, -81.000, -88.000}, {193.000, -81.000, -88.000} }, [3] = { {208.000, -81.000, -73.000}, {208.000, -81.000, -87.000} }, [4] = { {193.000, -81.000, -72.000}, {207.000, -81.000, -72.000} }, [5] = { {192.000, -81.000, -87.000}, {192.000, -81.000, -73.000} }, [6] = { {203.560, -80.000, -140.000}, {232.680, -80.000, -140.000} }, [7] = { {205.640, -80.000, -140.000}, {234.600, -80.000, -140.000} }, [8] = { {207.600, -80.000, -140.000}, {236.560, -80.000, -140.000} }, } function onMobRoam(mob) local offset = mob:getID() - ID.mob.TEMENOS_W_MOB[2] local pause = mob:getLocalVar("pause") if pause < os.time() then local point = (mob:getLocalVar("point") % 2)+1 mob:setLocalVar("point", point) mob:pathTo(path[offset][point][1], path[offset][point][2], path[offset][point][3], flags) mob:setLocalVar("pause", os.time()+15) end end function onMobDeath(mob, player, isKiller, noKiller) if isKiller or noKiller then local spawn = math.random(4) == 1 local battlefield = mob:getBattlefield() if GetNPCByID(ID.npc.TEMENOS_W_GATE[2]):getAnimation() == tpz.animation.CLOSE_DOOR then tpz.limbus.handleDoors(battlefield, true, ID.npc.TEMENOS_W_GATE[2]) end if spawn then for i = 0, 2 do if GetNPCByID(ID.npc.TEMENOS_W_CRATE[2]+i):getStatus() == tpz.status.DISAPPEAR then local mobX = mob:getXPos() local mobY = mob:getYPos() local mobZ = mob:getZPos() GetNPCByID(ID.npc.TEMENOS_W_CRATE[2]+i):setPos(mobX, mobY, mobZ) tpz.limbus.spawnRandomCrate(ID.npc.TEMENOS_W_CRATE[2]+i, battlefield, "crateMaskF2", battlefield:getLocalVar("crateMaskF2")) break end end end end end
----------------------------------- -- Area: Alzadaal Undersea Ruins -- NPC: ??? (Spawn Cheese Hoarder Gigiroon(ZNM T1)) -- !pos -184 -8 24 72 ----------------------------------- local ID = require("scripts/zones/Alzadaal_Undersea_Ruins/IDs") require("scripts/globals/npc_util") ----------------------------------- function onTrade(player,npc,trade) if npcUtil.tradeHas(trade, 2582) and npcUtil.popFromQM(player, npc, ID.mob.CHEESE_HOARDER_GIGIROON) then player:confirmTrade() player:messageSpecial(ID.text.DRAWS_NEAR) end end function onTrigger(player,npc) player:messageSpecial(ID.text.HEADY_FRAGRANCE) end
local function poggers() print("this function is quite simple indeed") print("poggers")-- __AUTO_GENERATED_PRINTF__ end
giant_angler = Creature:new { objectName = "@mob/creature_names:giant_angler", socialGroup = "angler", faction = "", level = 35, chanceHit = 0.41, damageMin = 320, damageMax = 350, baseXp = 3460, baseHAM = 8800, baseHAMmax = 10800, armor = 0, resists = {135,25,25,25,25,-1,25,-1,-1}, meatType = "meat_insect", meatAmount = 3, hideType = "hide_scaley", hideAmount = 6, boneType = "", boneAmount = 0, milk = 0, tamingChance = 0.02, ferocity = 0, pvpBitmask = AGGRESSIVE + ATTACKABLE + ENEMY, creatureBitmask = PACK + KILLER, optionsBitmask = AIENABLED, diet = CARNIVORE, templates = {"object/mobile/giant_angler.iff"}, hues = { 24, 25, 26, 27, 28, 29, 30, 31 }, controlDeviceTemplate = "object/intangible/pet/angler_hue.iff", scale = 1.25, lootGroups = {}, weapons = {"creature_spit_small_toxicgreen"}, conversationTemplate = "", attacks = { {"strongpoison",""}, {"blindattack",""} } } CreatureTemplates:addCreatureTemplate(giant_angler, "giant_angler")
local M = {} M.INPUT_TOUCH = hash("touch") M.INPUT_ACQUIRE_FOCUS = hash("acquire_input_focus") M.INPUT_RELEASE_FOCUS = hash("release_input_focus") M.MSG_PHYSICS_CONTACT = hash("contact_point_response") M.MSG_PHYSICS_COLLISION = hash("collision_response") M.MSG_PHYSICS_TRIGGER = hash("trigger_response") M.MSG_PHYSICS_RAY_CAST= hash("ray_cast_response") M.MSG_RENDER_CLEAR_COLOR = hash("clear_color") M.MSG_RENDER_SET_VIEW_PROJECTION = hash("set_view_projection") M.MSG_RENDER_WINDOW_RESIZED = hash("window_resized") M.MSG_PLAY_SOUND = hash("play_sound") M.MSG_ENABLE = hash("enable") M.MSG_DISABLE = hash("disable") M.MSG_PLAY_ANIMATION = hash("play_animation") M.MSG_ACQUIRE_CAMERA_FOCUS = hash("acquire_camera_focus") M.CONTROLLER_LOAD_MAP = hash("load_map") M.CONTROLLER_MAP_CHANGED = hash("map_changed") M.CONTROLLER_SPAWN_WALLS = hash("spawn_walls") M.CONTROLLER_SPAWN_FLOORS = hash("spawn_floors") M.CONTROLLER_SPAWN_CEILS = hash("spawn_ceils") M.CONTROLLER_SPAWN_GEOMETRY = hash("spawn_geometry") M.CONTROLLER_SPAWN_OBJECTS = hash("spawn_objects") M.CONTROLLER_SPAWN_SPRITES = hash("spawn_sprites") M.CONTROLLER_SPAWN_PICKUPS = hash("spawn_pickups") M.CONTROLLER_SPAWN_ENEMIES = hash("spawn_enemies") M.CONTROLLER_SPAWN_3D_SOUNDS = hash("spawn_3d_sounds") M.PLAYER_CHANGE_POSITION = hash("player_change_position") M.RGB = hash("rgb") M.PHYSICS_GROUP_PICKUPS=hash("pickups") M.PHYSICS_GROUP_BLOCK_PROJECTIVES=hash("block_projectives") M.PHYSICS_GROUP_BLOCK_PROJECTIVES_PLAYER=hash("block_projectives_player") M.PHYSICS_GROUP_WALL=hash("wall") M.INPUT_SHOW_MAP = hash("show_map") M.INPUT_UP = hash("up") M.INPUT_DOWN = hash("down") M.INPUT_LEFT = hash("left") M.INPUT_RIGHT = hash("right") M.INPUT_RIGHT_HAND = hash("right_hand") M.INPUT_LEFT_HAND = hash("left_hand") M.INPUT_NEXT_ITEM = hash("next_item") M.INPUT_PREV_ITEM = hash("prev_item") return M
--[[ -- DEV NOTES -- We're storing the houses in this [fucking massive] table as to minimize the need for SQL queries. That way we use more CPU than we do the database, making for less lag. --]] --[[ houseLocs = {"UCDhousing", -- [houseID] = {"UCDhousing", interiorID, x, y, z, streetName, initialPrice} -- interiorID from server.lua (intIDs) [1] = {"UCDhousing", 6, 315.85800170898, -1769.4300537109, 4.6223998069763, "Beach Avenue", 1000000}, [2] = {"UCDhousing", 19, 305.40200805664, -1770.3000488281, 4.5384302139282, "Beach Avenue", 300000}, [3] = {"UCDhousing", 10, 295.37200927734, -1764.1199951172, 4.8699998855591, "Beach Avenue", 340000}, [4] = {"UCDhousing", 11, 280.89401245117, -1767.0699462891, 4.5468797683716, "Beach Avenue", 1}, [5] = {"UCDhousing", 6, 207.01300048828, -1768.8800048828, 4.3698401451111, "Beach Avenue", 600000}, [6] = {"UCDhousing", 6, 192.84599304199, -1769.4000244141, 4.3285999298096, "Beach Avenue", 1}, [7] = {"UCDhousing", 1, 168.28900146484, -1768.4100341797, 4.4869799613953, "Beach Avenue", 1}, [8] = {"UCDhousing", 23, 418.45199584961, -1506.1199951172, 31.308599472046, "Carnival Rd", 35000}, [9] = {"UCDhousing", 19, 462.28799438477, -1529.4399414063, 29.94580078125, "Carnival Rd", 70000}, [10] = {"UCDhousing", 19, 507.49200439453, -1609.6999511719, 16.26070022583, "Carnival Rd", 100000}, [11] = {"UCDhousing", 15, 1179.8900146484, -1261.0100097656, 15.179699897766, "All Saints Apartment", 40000}, [12] = {"UCDhousing", 15, 1187.4399414063, -1260.9399414063, 15.179699897766, "All Saints Apartment", 50000}, [13] = {"UCDhousing", 15, 1187.3599853516, -1254.7199707031, 15.179699897766, "All Saints Apartment", 1}, [14] = {"UCDhousing", 15, 1179.8100585938, -1254.7800292969, 15.179699897766, "All Saints Apartment", 50000}, [15] = {"UCDhousing", 15, 1187.3599853516, -1254.7199707031, 18.890800476074, "All Saints Apartment", 40000}, [16] = {"UCDhousing", 15, 1179.8100585938, -1254.7900390625, 18.890800476074, "All Saints Apartment", 50000}, [17] = {"UCDhousing", 15, 1187.4399414063, -1260.9499511719, 18.898399353027, "All Saints Apartment", 50000}, [18] = {"UCDhousing", 15, 1179.8900146484, -1261.0200195313, 18.898399353027, "All Saints Apartment", 50000}, [19] = {"UCDhousing", 15, 1179.8900146484, -1233.4000244141, 18.55470085144, "All Saints Apartment", 50000}, [20] = {"UCDhousing", 15, 1187.4399414063, -1233.2600097656, 18.55470085144, "All Saints Apartment", 50000}, [21] = {"UCDhousing", 15, 1179.8100585938, -1227.1300048828, 18.55470085144, "All Saints Apartment", 50000}, [22] = {"UCDhousing", 15, 1187.3599853516, -1227.1099853516, 18.55470085144, "All Saints Apartment", 50000}, [23] = {"UCDhousing", 15, 1187.3599853516, -1227.0999755859, 22.132900238037, "All Saints Apartment", 50000}, [24] = {"UCDhousing", 15, 1179.8100585938, -1227.1700439453, 22.132900238037, "All Saints Apartment", 50000}, [25] = {"UCDhousing", 15, 1187.4399414063, -1233.3000488281, 22.140600204468, "All Saints Apartment", 50000}, [26] = {"UCDhousing", 15, 1179.8900146484, -1233.3800048828, 22.140600204468, "All Saints Apartment", 50000}, [27] = {"UCDhousing", 6, 2787.0700683594, -1952.5799560547, 13.546899795532, "Palin St.", 1}, [28] = {"UCDhousing", 6, 2787.080078125, -1926.1999511719, 13.546899795532, "Palin St.", 1}, [29] = {"UCDhousing", 6, 2751.5, -1962.8699951172, 13.546899795532, "Palin St.", 200000}, [30] = {"UCDhousing", 6, 2751.5, -1936.4399414063, 13.539400100708, "Palin St.", 200000}, [31] = {"UCDhousing", 6, 2736.6499023438, -1926.2600097656, 13.546899795532, "Palin St.", 200000}, [32] = {"UCDhousing", 6, 2736.6499023438, -1952.5600585938, 13.546899795532, "Palin St.", 200000}, [33] = {"UCDhousing", 21, 2696.4099121094, -1990.3599853516, 14.222900390625, "New Avenue St.", 150000}, [34] = {"UCDhousing", 21, 2695.3601074219, -2020.5500488281, 14.022299766541, "New Avenue St.", 150000}, [35] = {"UCDhousing", 6, 2801.919921875, -1936.2700195313, 13.546899795532, "Palin St.", 200000}, [36] = {"UCDhousing", 21, 2672.7800292969, -1989.4699707031, 14.324000358582, "New Avenue St.", 150000}, [37] = {"UCDhousing", 6, 2801.919921875, -1962.8100585938, 13.546899795532, "Palin St.", 200000}, [38] = {"UCDhousing", 21, 2673.1101074219, -2020.2800292969, 14.168199539185, "New Avenue St.", 150000}, [39] = {"UCDhousing", 21, 2650.6999511719, -2021.8800048828, 14.176600456238, "New Avenue St.", 150000}, [40] = {"UCDhousing", 21, 2635.580078125, -2012.8800048828, 14.144300460815, "New Avenue St.", 150000}, [41] = {"UCDhousing", 21, 2637.0600585938, -1991.7199707031, 14.324000358582, "New Avenue St.", 150000}, [42] = {"UCDhousing", 21, 2652.7800292969, -1989.4200439453, 13.99880027771, "New Avenue St.", 150000}, [43] = {"UCDhousing", 21, 2437.8999023438, -2020.8399658203, 13.902500152588, "Belmont Drive", 250000}, [44] = {"UCDhousing", 21, 2465.1398925781, -1995.75, 14.019300460815, "Belmont Drive", 250000}, [45] = {"UCDhousing", 21, 2465.3898925781, -2020.7900390625, 14.124199867249, "Belmont Drive", 250000}, [46] = {"UCDhousing", 21, 2483.4599609375, -1995.3399658203, 13.834300041199, "Belmont Drive", 250000}, [47] = {"UCDhousing", 21, 2486.419921875, -2021.5500488281, 13.99880027771, "Belmont Drive", 250000}, [48] = {"UCDhousing", 21, 2508.3000488281, -1998.3699951172, 13.902500152588, "Belmont Drive", 250000}, [49] = {"UCDhousing", 21, 2507.919921875, -2021.0500488281, 14.21010017395, "Belmont Drive", 250000}, [50] = {"UCDhousing", 21, 2522.7800292969, -2018.9699707031, 14.07439994812, "Belmont Drive", 250000}, [51] = {"UCDhousing", 21, 2524.3500976563, -1998.3100585938, 14.11310005188, "Belmont Drive", 250000}, [52] = {"UCDhousing", 2, 2385.3500976563, -1711.6600341797, 14.242199897766, "Tory Street", 100000}, [53] = {"UCDhousing", 2, 2326.75, -1716.6999511719, 14.237899780273, "Tory Street", 100000}, [54] = {"UCDhousing", 2, 2308.8601074219, -1714.3299560547, 14.98009967804, "Tory Street", 300000}, [55] = {"UCDhousing", 17, 2380.6799316406, -1785.8100585938, 13.546899795532, "Bijlmer Flat", 70000}, [56] = {"UCDhousing", 17, 2359.8601074219, -1795.9699707031, 13.546899795532, "Bijlmer Flat", 70000}, [57] = {"UCDhousing", 17, 2394.9599609375, -1796.0100097656, 13.546899795532, "Bijlmer Flat", 70000}, [58] = {"UCDhousing", 14, 2247.0700683594, -1795.9200439453, 13.546899795532, "Bijlmer Flat", 70000}, [59] = {"UCDhousing", 17, 2321.9599609375, -1796.0200195313, 13.546899795532, "Bijlmer Flat", 70000}, [60] = {"UCDhousing", 14, 2275.8500976563, -1785.7900390625, 13.546899795532, "Bijlmer Flat", 70000}, [61] = {"UCDhousing", 17, 2345.580078125, -1785.7299804688, 13.546899795532, "Bijlmer Flat", 70000}, [62] = {"UCDhousing", 11, 2495.3701171875, -1691.1400146484, 14.765600204468, "Grove Street", 1}, [63] = {"UCDhousing", 3, 2514.3400878906, -1691.5899658203, 14.045999526978, "Grove Street", 120000}, [64] = {"UCDhousing", 3, 2524.7099609375, -1658.5899658203, 15.824000358582, "Grove Street", 120000}, [65] = {"UCDhousing", 3, 2513.7099609375, -1650.2399902344, 14.355699539185, "Grove Street", 120000}, [66] = {"UCDhousing", 23, 2068.1398925781, -1588.8599853516, 13.490500450134, "Hobo Place", 1}, [67] = {"UCDhousing", 3, 2498.5600585938, -1642.2600097656, 14.11310005188, "Grove Street", 200000}, [68] = {"UCDhousing", 23, 2065.3100585938, -1583.3599853516, 13.481100082397, "Hobo Place", 1}, [69] = {"UCDhousing", 23, 2073.3701171875, -1583.1600341797, 13.473899841309, "Hobo Place", 1}, [70] = {"UCDhousing", 23, 2076.25, -1588.6700439453, 13.491700172424, "Hobo Place", 1}, [71] = {"UCDhousing", 23, 2072.4399414063, -1559.3100585938, 13.409199714661, "Hobo Place", 8000}, [72] = {"UCDhousing", 23, 2066.9599609375, -1562.0300292969, 13.428600311279, "Hobo Place", 1}, [73] = {"UCDhousing", 23, 2066.8000488281, -1554.0899658203, 13.435000419617, "Hobo Place", 1}, [74] = {"UCDhousing", 23, 2072.2700195313, -1551.2900390625, 13.423299789429, "Hobo Place", 8000}, [75] = {"UCDhousing", 6, 2486.4799804688, -1644.5300292969, 14.077199935913, "Grove Street", 1}, [76] = {"UCDhousing", 2, 2469.5100097656, -1646.3499755859, 13.780099868774, "Grove Street", 120000}, [77] = {"UCDhousing", 2, 2452, -1641.4100341797, 14.066200256348, "Grove Street", 120000}, [78] = {"UCDhousing", 2, 2413.8500976563, -1646.7900390625, 14.01189994812, "Grove Street", 500000}, [79] = {"UCDhousing", 2, 2408.9499511719, -1674.9300537109, 14.375, "Grove Street", 120000}, [80] = {"UCDhousing", 2, 2393.1899414063, -1646.0300292969, 13.905099868774, "Grove Street", 130000}, [81] = {"UCDhousing", 2, 2384.7099609375, -1675.8399658203, 15.245699882507, "Grove Street", 120000}, [82] = {"UCDhousing", 2, 2368.2399902344, -1675.3499755859, 14.168199539185, "Grove Street", 120000}, [83] = {"UCDhousing", 2, 2362.919921875, -1643.1400146484, 14.351599693298, "Grove Street", 120000}, [84] = {"UCDhousing", 4, 2067.6999511719, -1628.8900146484, 14.206600189209, "Kennedy Park", 100000}, [85] = {"UCDhousing", 4, 2067.5600585938, -1643.75, 14.136300086975, "Kennedy Park", 100000}, [86] = {"UCDhousing", 4, 2066.7399902344, -1656.4499511719, 14.132800102234, "Kennedy Park", 100000}, [87] = {"UCDhousing", 2, 2326.8798828125, -1681.8699951172, 14.929699897766, "Grove Street", 120000}, [88] = {"UCDhousing", 4, 2013.5799560547, -1656.3900146484, 14.136300086975, "Kennedy Park", 100000}, [89] = {"UCDhousing", 2, 2306.9799804688, -1679.1999511719, 14.331600189209, "Grove Street", 120000}, [90] = {"UCDhousing", 4, 2016.5400390625, -1641.7700195313, 14.112899780273, "Kennedy Park", 100000}, [91] = {"UCDhousing", 4, 2018.0600585938, -1629.8900146484, 14.04259967804, "Kennedy Park", 100000}, [92] = {"UCDhousing", 2, 2282.3200683594, -1641.2099609375, 15.889800071716, "Grove Street", 120000}, [93] = {"UCDhousing", 2, 2257.1201171875, -1643.9399414063, 15.808199882507, "Grove Street", 120000}, [94] = {"UCDhousing", 2, 2244.5400390625, -1637.6400146484, 16.237899780273, "Grove Street", 120000}, [95] = {"UCDhousing", 17, 2018.2399902344, -1703.2299804688, 14.234399795532, "McCain Park", 100000}, [96] = {"UCDhousing", 17, 2016.1999511719, -1717.0400390625, 14.125, "McCain Park", 100000}, [97] = {"UCDhousing", 17, 2015.3499755859, -1732.6199951172, 14.234399795532, "McCain Park", 100000}, [98] = {"UCDhousing", 17, 2067.0500488281, -1731.6199951172, 14.206600189209, "McCain Park", 100000}, [99] = {"UCDhousing", 17, 2066.2399902344, -1717.1600341797, 14.136300086975, "McCain Park", 100000}, [100] = {"UCDhousing", 17, 2065.1000976563, -1703.4499511719, 14.148400306702, "McCain Park", 100000}, [101] = {"UCDhousing", 14, 2143.1298828125, -1604.7199707031, 14.351599693298, "Grove Street", 20000}, [102] = {"UCDhousing", 14, 2158.3500976563, -1611.3100585938, 14.351599693298, "Grove Street", 9000}, [103] = {"UCDhousing", 14, 2172.6101074219, -1615.2399902344, 14.283499717712, "Grove Street", 9000}, [104] = {"UCDhousing", 14, 2158.3000488281, -1611.2900390625, 14.351400375366, "Grove Street", 10000}, [105] = {"UCDhousing", 14, 2179.1000976563, -1600.0799560547, 14.345999717712, "Grove Street", 9000}, [106] = {"UCDhousing", 14, 2165.6101074219, -1590.5200195313, 14.346199989319, "Grove Street", 9000}, [107] = {"UCDhousing", 14, 2150.419921875, -1583.9699707031, 14.336000442505, "Grove Street", 9000}, [108] = {"UCDhousing", 14, 2151.1799316406, -1598.4699707031, 14.345700263977, "Grove Street", 9000}, [109] = {"UCDhousing", 14, 2135.9699707031, -1591.9799804688, 14.351599693298, "Grove Street", 9000}, [110] = {"UCDhousing", 14, 2143.1999511719, -1571.1700439453, 14.193900108337, "Grove Street", 9000}, [111] = {"UCDhousing", 14, 2158.4799804688, -1577.6999511719, 14.282699584961, "Grove Street", 9000}, [112] = {"UCDhousing", 14, 2191.8999023438, -1592.9699707031, 14.351599693298, "Grove Street", 9000}, [113] = {"UCDhousing", 14, 2185.330078125, -1608.1099853516, 14.359399795532, "Grove Street", 9000}, [114] = {"UCDhousing", 14, 2163.7600097656, -1661.1999511719, 15.085900306702, "Grove Street", 9000}, [115] = {"UCDhousing", 14, 2156.1201171875, -1651.8100585938, 15.078399658203, "Grove Street", 9000}, [116] = {"UCDhousing", 14, 2143.6499023438, -1662.8599853516, 15.085900306702, "Grove Street", 9000}, [117] = {"UCDhousing", 14, 2151.4099121094, -1672.2600097656, 15.085900306702, "Grove Street", 9000}, [118] = {"UCDhousing", 14, 2144.5900878906, -1688.9100341797, 15.085900306702, "Grove Street", 15000}, [119] = {"UCDhousing", 14, 2128.169921875, -1687.9899902344, 15.085900306702, "Grove Street", 15000}, [120] = {"UCDhousing", 14, 2139.1000976563, -1697.5100097656, 15.085900306702, "Grove Street", 15000}, [121] = {"UCDhousing", 14, 2155.5600585938, -1698.5100097656, 15.085900306702, "Grove Street", 20000}, [122] = {"UCDhousing", 14, 2157.0600585938, -1709.2199707031, 15.085900306702, "Grove Street", 15000}, [123] = {"UCDhousing", 14, 2168.0900878906, -1718.8199462891, 15.167200088501, "Grove Street", 15000}, [124] = {"UCDhousing", 14, 2151.6499023438, -1717.8299560547, 15.085900306702, "Grove Street", 9000}, [125] = {"UCDhousing", 14, 2140.6499023438, -1708.3100585938, 15.085900306702, "Grove Street", 9000}, [126] = {"UCDhousing", 14, 2141.4599609375, -1652.8900146484, 15.085900306702, "Grove Street", 9000}, [127] = {"UCDhousing", 14, 2129.1999511719, -1663.8499755859, 15.085900306702, "Grove Street", 9000}, [128] = {"UCDhousing", 14, 2178.330078125, -1660.1999511719, 14.978300094604, "Grove Street", 9000}, [129] = {"UCDhousing", 14, 2165.919921875, -1671.2099609375, 15.07320022583, "Grove Street", 20000}, [130] = {"UCDhousing", 14, 2232.7900390625, -1785.7299804688, 13.560000419617, "Bijlmer Flat", 70000}, [131] = {"UCDhousing", 30, 2011.4699707031, -1594.2800292969, 13.583700180054, "Mason St.", 120000}, [132] = {"UCDhousing", 30, 2002.5200195313, -1593.9000244141, 13.577699661255, "Mason St.", 120000}, [133] = {"UCDhousing", 30, 1986.6099853516, -1605.0300292969, 13.532099723816, "Mason St.", 40000}, [134] = {"UCDhousing", 30, 1972.9799804688, -1559.8199462891, 13.639800071716, "Mason St.", 150000}, [135] = {"UCDhousing", 30, 1958.6899414063, -1560.3299560547, 13.594300270081, "Mason St.", 120000}, [136] = {"UCDhousing", 15, 1967.4899902344, -1633.7099609375, 15.968799591064, "St. Anthony St.", 100000}, [137] = {"UCDhousing", 15, 1972.2700195313, -1633.7099609375, 15.968799591064, "St. Anthony St.", 100000}, [138] = {"UCDhousing", 15, 1967.5500488281, -1633.7099609375, 18.569000244141, "St. Anthony St.", 100000}, [139] = {"UCDhousing", 15, 1972.1300048828, -1633.7099609375, 18.569000244141, "St. Anthony St.", 100000}, [140] = {"UCDhousing", 15, 1976.2099609375, -1634.0600585938, 18.569000244141, "St. Anthony St.", 100000}, [141] = {"UCDhousing", 15, 1976.2099609375, -1634.0400390625, 16.211099624634, "St. Anthony St.", 100000}, [142] = {"UCDhousing", 15, 1969.4000244141, -1654.6700439453, 15.968799591064, "St. Anthony St.", 100000}, [143] = {"UCDhousing", 15, 1973.3199462891, -1654.6700439453, 15.968799591064, "St. Anthony St.", 100000}, [144] = {"UCDhousing", 15, 1970.0400390625, -1671.1899414063, 18.545600891113, "St. Anthony St.", 100000}, [145] = {"UCDhousing", 15, 1974.8599853516, -1671.1899414063, 18.545600891113, "St. Anthony St.", 100000}, [146] = {"UCDhousing", 15, 1978.7700195313, -1671.5300292969, 18.545600891113, "St. Anthony St.", 100000}, [147] = {"UCDhousing", 15, 1978.7700195313, -1671.5799560547, 16.187599182129, "St. Anthony St.", 100000}, [148] = {"UCDhousing", 15, 1974.8100585938, -1671.1899414063, 15.968799591064, "St. Anthony St.", 100000}, [149] = {"UCDhousing", 15, 1970.0100097656, -1671.1899414063, 15.968799591064, "St. Anthony St.", 100000}, [150] = {"UCDhousing", 15, 1969.3100585938, -1705.1400146484, 15.968799591064, "St. Anthony St.", 100000}, [151] = {"UCDhousing", 15, 1973.2299804688, -1705.1400146484, 15.968799591064, "St. Anthony St.", 100000}, [152] = {"UCDhousing", 1, 1980.3800048828, -1718.9200439453, 17.030300140381, "St. Anthony St.", 120000}, [153] = {"UCDhousing", 1, 1981.0100097656, -1682.8399658203, 17.053699493408, "St. Anthony St.", 500000}, [154] = {"UCDhousing", 27, 2707.3100585938, -1238.0400390625, 59.674198150635, "Carson Quadrant", 8000}, [155] = {"UCDhousing", 27, 2707.3100585938, -1233.5, 61.071399688721, "Carson Quadrant", 8000}, [156] = {"UCDhousing", 27, 2707.3100585938, -1229.2399902344, 62.300899505615, "Carson Quadrant", 8000}, [157] = {"UCDhousing", 27, 2707.3100585938, -1224.6999511719, 63.586498260498, "Carson Quadrant", 8000}, [158] = {"UCDhousing", 27, 2707.3100585938, -1220.4799804688, 64.87979888916, "Carson Quadrant", 8000}, [159] = {"UCDhousing", 27, 2707.3100585938, -1216.2700195313, 66.228996276855, "Carson Quadrant", 8000}, [160] = {"UCDhousing", 27, 2707.3100585938, -1211.8000488281, 67.61840057373, "Carson Quadrant", 8000}, [161] = {"UCDhousing", 27, 2707.3100585938, -1207.6199951172, 68.751998901367, "Carson Quadrant", 8000}, [162] = {"UCDhousing", 27, 2707.3100585938, -1203.0699462891, 69.68620300293, "Carson Quadrant", 8000}, [163] = {"UCDhousing", 27, 2707.3100585938, -1200.0799560547, 70.460403442383, "Carson Quadrant", 8000}, [164] = {"UCDhousing", 19, 2750.3898925781, -1205.6800537109, 67.484397888184, "Emerald Avenue", 120000}, [165] = {"UCDhousing", 19, 2750.3798828125, -1222.2600097656, 64.601600646973, "Emerald Avenue", 120000}, [166] = {"UCDhousing", 19, 2750.3798828125, -1238.7399902344, 61.524501800537, "Emerald Avenue", 120000}, [167] = {"UCDhousing", 27, 2700.2099609375, -1200.0799560547, 68.970596313477, "Carson Quadrant", 8000}, [168] = {"UCDhousing", 27, 2700.1999511719, -1203.1199951172, 68.195899963379, "Carson Quadrant", 8000}, [169] = {"UCDhousing", 27, 2700.2099609375, -1207.6899414063, 67.261901855469, "Carson Quadrant", 8000}, [170] = {"UCDhousing", 27, 2700.1999511719, -1211.9100341797, 66.127998352051, "Carson Quadrant", 8000}, [171] = {"UCDhousing", 27, 2700.2099609375, -1216.3699951172, 64.738998413086, "Carson Quadrant", 8000}, [172] = {"UCDhousing", 27, 2700.2099609375, -1220.5300292969, 63.389701843262, "Carson Quadrant", 8000}, [173] = {"UCDhousing", 16, 2755.8500976563, -1276.5500488281, 56.593799591064, "Emerald Avenue", 100000}, [174] = {"UCDhousing", 27, 2700.2099609375, -1224.7600097656, 62.0964012146, "Carson Quadrant", 8000}, [175] = {"UCDhousing", 27, 2700.2099609375, -1229.2099609375, 60.810699462891, "Carson Quadrant", 8000}, [176] = {"UCDhousing", 27, 2700.2099609375, -1233.6700439453, 59.581298828125, "Carson Quadrant", 8000}, [177] = {"UCDhousing", 27, 2700.2099609375, -1238.1600341797, 58.184101104736, "Carson Quadrant", 8000}, [178] = {"UCDhousing", 27, 2690.5400390625, -1237.9399414063, 57.510501861572, "Carson Quadrant", 8000}, [179] = {"UCDhousing", 16, 2756.2900390625, -1302.4899902344, 53.093799591064, "Emerald Avenue", 100000}, [180] = {"UCDhousing", 27, 2690.5400390625, -1233.5600585938, 58.907398223877, "Carson Quadrant", 8000}, [181] = {"UCDhousing", 27, 2690.5400390625, -1229.2700195313, 60.137001037598, "Carson Quadrant", 8000}, [182] = {"UCDhousing", 27, 2690.5400390625, -1224.6899414063, 61.422199249268, "Carson Quadrant", 8000}, [183] = {"UCDhousing", 27, 2690.5400390625, -1220.5200195313, 62.715599060059, "Carson Quadrant", 8000}, [184] = {"UCDhousing", 27, 2690.5400390625, -1216.3800048828, 64.065101623535, "Carson Quadrant", 8000}, [185] = {"UCDhousing", 27, 2690.5400390625, -1211.7900390625, 65.454299926758, "Carson Quadrant", 8000}, [186] = {"UCDhousing", 27, 2690.5400390625, -1207.5500488281, 66.587898254395, "Carson Quadrant", 8000}, [187] = {"UCDhousing", 27, 2690.5400390625, -1203.0400390625, 67.522003173828, "Carson Quadrant", 8000}, [188] = {"UCDhousing", 27, 2690.5400390625, -1200.0699462891, 68.296401977539, "Carson Quadrant", 8000}, [189] = {"UCDhousing", 27, 2683.4399414063, -1200.1099853516, 66.806503295898, "Carson Quadrant", 8000}, [190] = {"UCDhousing", 27, 2683.4399414063, -1203.0799560547, 66.031898498535, "Carson Quadrant", 8000}, [191] = {"UCDhousing", 27, 2683.4399414063, -1207.6500244141, 65.097801208496, "Carson Quadrant", 8000}, [192] = {"UCDhousing", 27, 2683.4399414063, -1211.7700195313, 63.96369934082, "Carson Quadrant", 8000}, [193] = {"UCDhousing", 27, 2683.4399414063, -1216.3299560547, 62.574798583984, "Carson Quadrant", 8000}, [194] = {"UCDhousing", 27, 2683.4399414063, -1220.5100097656, 61.225498199463, "Carson Quadrant", 8000}, [195] = {"UCDhousing", 27, 2683.4399414063, -1224.7800292969, 59.932300567627, "Carson Quadrant", 8000}, [196] = {"UCDhousing", 27, 2683.4399414063, -1229.3299560547, 58.646800994873, "Carson Quadrant", 8000}, [197] = {"UCDhousing", 27, 2683.4399414063, -1233.6700439453, 57.417301177979, "Carson Quadrant", 8000}, [198] = {"UCDhousing", 27, 2683.4399414063, -1238.0799560547, 56.020099639893, "Carson Quadrant", 8000}, [199] = {"UCDhousing", 27, 2670.2800292969, -1238.0500488281, 55.728900909424, "Carson Quadrant", 8000}, [200] = {"UCDhousing", 27, 2670.2800292969, -1233.5400390625, 57.118698120117, "Carson Quadrant", 8000}, [201] = {"UCDhousing", 27, 2670.2800292969, -1229.2900390625, 58.350601196289, "Carson Quadrant", 8000}, [202] = {"UCDhousing", 27, 2670.2800292969, -1224.7199707031, 59.631801605225, "Carson Quadrant", 8000}, [203] = {"UCDhousing", 27, 2670.2800292969, -1220.5600585938, 60.916999816895, "Carson Quadrant", 8000}, [204] = {"UCDhousing", 16, 2747.3798828125, -1351.9200439453, 44.615600585938, "Emerald Avenue", 100000}, [205] = {"UCDhousing", 27, 2670.2800292969, -1211.7800292969, 63.665500640869, "Carson Quadrant", 8000}, [206] = {"UCDhousing", 27, 2670.2800292969, -1207.6199951172, 64.798896789551, "Carson Quadrant", 8000}, [207] = {"UCDhousing", 27, 2670.2800292969, -1203.0100097656, 65.731300354004, "Carson Quadrant", 8000}, [208] = {"UCDhousing", 27, 2670.2800292969, -1200.0500488281, 66.494400024414, "Carson Quadrant", 8000}, [209] = {"UCDhousing", 27, 2663.1799316406, -1200.0999755859, 66.46720123291, "Carson Quadrant", 8000}, [210] = {"UCDhousing", 27, 2663.1799316406, -1203.0899658203, 65.685401916504, "Carson Quadrant", 8000}, [211] = {"UCDhousing", 27, 2663.1799316406, -1207.6199951172, 64.760902404785, "Carson Quadrant", 8000}, [212] = {"UCDhousing", 27, 2663.1799316406, -1211.7700195313, 63.623798370361, "Carson Quadrant", 8000}, [213] = {"UCDhousing", 27, 2663.1799316406, -1216.2600097656, 62.223701477051, "Carson Quadrant", 8000}, [214] = {"UCDhousing", 27, 2663.1799316406, -1220.5999755859, 60.874801635742, "Carson Quadrant", 8000}, [215] = {"UCDhousing", 27, 2663.1799316406, -1224.8100585938, 59.586498260498, "Carson Quadrant", 8000}, [216] = {"UCDhousing", 27, 2663.1799316406, -1229.2600097656, 58.299999237061, "Carson Quadrant", 8000}, [217] = {"UCDhousing", 27, 2663.1799316406, -1233.5400390625, 57.07149887085, "Carson Quadrant", 8000}, [218] = {"UCDhousing", 27, 2663.1799316406, -1238.1300048828, 55.673801422119, "Carson Quadrant", 8000}, [219] = {"UCDhousing", 17, 2851.8500976563, -1366.0600585938, 14.170800209045, "Black Avenue", 120000}, [220] = {"UCDhousing", 3, 2842.1499023438, -1334.7900390625, 14.742099761963, "Black Avenue", 1}, [221] = {"UCDhousing", 3, 2847, -1309.7199707031, 14.701000213623, "Black Avenue", 1}, [222] = {"UCDhousing", 10, 2808, -1190.8800048828, 25.343200683594, "Black Avenue", 70000}, [223] = {"UCDhousing", 9, 2808.0100097656, -1175.9200439453, 25.382099151611, "Black Avenue", 250000}, [224] = {"UCDhousing", 21, 2628.1000976563, -1067.7900390625, 69.715599060059, "Dennis Street", 110000}, [225] = {"UCDhousing", 21, 2627.6499023438, -1085.0999755859, 69.715599060059, "Dennis Street", 110000}, [226] = {"UCDhousing", 21, 2625.9399414063, -1098.6500244141, 69.366996765137, "Dennis Street", 110000}, [227] = {"UCDhousing", 21, 2625.9499511719, -1112.5600585938, 67.995300292969, "Dennis Street", 110000}, [228] = {"UCDhousing", 17, 2581.5, -969.28302001953, 81.364601135254, "Free Rd", 15000}, [229] = {"UCDhousing", 17, 2582.9599609375, -952.91900634766, 81.388198852539, "Free Rd", 15000}, [230] = {"UCDhousing", 17, 2552.0300292969, -958.31298828125, 82.618103027344, "Free Rd", 15000}, [231] = {"UCDhousing", 17, 2531.1298828125, -963.29602050781, 82.368598937988, "Free Rd", 15000}, [232] = {"UCDhousing", 17, 2517.8601074219, -965.35998535156, 82.328399658203, "Free Rd", 15000}, [233] = {"UCDhousing", 17, 2492.1101074219, -965.70001220703, 82.548896789551, "Free Rd", 15000}, [234] = {"UCDhousing", 17, 2499.5600585938, -946.9990234375, 82.470802307129, "Free Rd", 15000}, [235] = {"UCDhousing", 17, 2459.3798828125, -947.70001220703, 80.08260345459, "Free Rd", 15000}, [236] = {"UCDhousing", 17, 2472.3898925781, -962.04400634766, 80.525497436523, "Free Rd", 15000}, [237] = {"UCDhousing", 4, 2576.6799316406, -1070.6899414063, 69.83219909668, "Hill Avenue", 100000}, [238] = {"UCDhousing", 4, 2572.3500976563, -1091.8000488281, 67.225700378418, "Hill Avenue", 100000}, [239] = {"UCDhousing", 17, 2454.1799316406, -964.97601318359, 80.073097229004, "Free Rd", 15000}, [240] = {"UCDhousing", 2, 2519.0300292969, -1112.9899902344, 56.592601776123, "Hill Avenue", 120000}, [241] = {"UCDhousing", 2, 2470.7199707031, -1105.3199462891, 44.487899780273, "Hill Avenue", 120000}, [242] = {"UCDhousing", 2, 2457.1101074219, -1102.4899902344, 43.867198944092, "Hill Avenue", 120000}, [243] = {"UCDhousing", 2, 2438.5500488281, -1105.7800292969, 43.081600189209, "Hill Avenue", 120000}, [244] = {"UCDhousing", 2, 2407.8500976563, -1106.9699707031, 40.295700073242, "Hill Avenue", 120000}, [245] = {"UCDhousing", 2, 2510.5600585938, -1132.5999755859, 41.620700836182, "Mullholland Street", 120000}, [246] = {"UCDhousing", 17, 2579.6101074219, -1033.1999511719, 69.579803466797, "Forest Rd", 10000}, [247] = {"UCDhousing", 2, 2488.1298828125, -1135.2399902344, 39.585899353027, "Mullholland Street", 120000}, [248] = {"UCDhousing", 17, 2562.1101074219, -1034.4200439453, 69.869201660156, "Forest Rd", 15000}, [249] = {"UCDhousing", 17, 2549.1999511719, -1032.1500244141, 69.578796386719, "Forest Rd", 15000}, [250] = {"UCDhousing", 2, 2427.3999023438, -1135.7800292969, 34.710899353027, "Mullholland Street", 120000}, [251] = {"UCDhousing", 17, 2534.4699707031, -1063.2800292969, 69.56559753418, "Forest Rd", 15000}, [252] = {"UCDhousing", 17, 2526.0900878906, -1060.7199707031, 69.970802307129, "Forest Rd", 15000}, [253] = {"UCDhousing", 17, 2526.8898925781, -1033.5200195313, 69.579399108887, "Forest Rd", 15000}, [254] = {"UCDhousing", 3, 2394.9299316406, -1133.5400390625, 30.718799591064, "Mullholland Street", 120000}, [255] = {"UCDhousing", 17, 2512.6799316406, -1027.1600341797, 70.085899353027, "Forest Rd", 15000}, [256] = {"UCDhousing", 4, 2373.9899902344, -1138.9300537109, 29.058799743652, "Mullholland Street", 120000}, [257] = {"UCDhousing", 17, 2499.75, -1065.5999755859, 70.235900878906, "Forest Rd", 15000}, [258] = {"UCDhousing", 17, 2479.7199707031, -1063.8699951172, 66.998199462891, "Forest Rd", 15000}, [259] = {"UCDhousing", 17, 2457.7600097656, -1054.6199951172, 59.959201812744, "Forest Rd", 15000}, [260] = {"UCDhousing", 17, 2462.3400878906, -1011.1099853516, 60.113700866699, "Forest Rd", 15000}, [261] = {"UCDhousing", 5, 2207.5, -1100.4300537109, 31.55470085144, "Mullholland Street", 1}, [262] = {"UCDhousing", 17, 2439.8601074219, -1010.7399902344, 54.343799591064, "Forest Rd", 15000}, [263] = {"UCDhousing", 17, 2440.5600585938, -1057.3399658203, 54.738700866699, "Forest Rd", 15000}, [264] = {"UCDhousing", 6, 2145.330078125, -1084.7099609375, 25.035299301147, "Mullholland Street", 1}, [265] = {"UCDhousing", 6, 2140.5300292969, -1082.4799804688, 25.033899307251, "Mullholland Street", 1}, [266] = {"UCDhousing", 17, 2389.169921875, -1037.1199951172, 53.547298431396, "Forest Rd", 10000}, [267] = {"UCDhousing", 7, 2108.7199707031, -1082.2700195313, 25.490100860596, "Mullholland Street", 110000}, [268] = {"UCDhousing", 7, 2101.669921875, -1075.9100341797, 25.930999755859, "Mullholland Street", 110000}, [269] = {"UCDhousing", 24, 2350.9799804688, -1039.7900390625, 54.335800170898, "Forest Rd", 10000}, [270] = {"UCDhousing", 7, 2091.5700683594, -1068.1800537109, 28.076000213623, "Mullholland Street", 110000}, [271] = {"UCDhousing", 24, 2362.7800292969, -1046.3900146484, 54.273300170898, "Forest Rd", 10000}, [272] = {"UCDhousing", 7, 2077.2800292969, -1056.9699707031, 31.346399307251, "Mullholland Street", 110000}, [273] = {"UCDhousing", 24, 2373.0300292969, -1051.3299560547, 54.132900238037, "Forest Rd", 8000}, [274] = {"UCDhousing", 7, 2083.0500488281, -1039.6600341797, 32.208499908447, "Mullholland Avenue", 110000}, [275] = {"UCDhousing", 24, 2370.25, -1034.5500488281, 54.410598754883, "Forest Rd", 9000}, [276] = {"UCDhousing", 7, 2093.830078125, -1047.3599853516, 30.107500076294, "Mullholland Avenue", 110000}, [277] = {"UCDhousing", 7, 2099.7800292969, -1051.7099609375, 28.80890083313, "Mullholland Avenue", 110000}, [278] = {"UCDhousing", 24, 2348.1398925781, -1047.5500488281, 53.869998931885, "Forest Rd", 8000}, [279] = {"UCDhousing", 7, 2105.5500488281, -1056.0999755859, 27.141199111938, "Mullholland Avenue", 110000}, [280] = {"UCDhousing", 24, 2335.169921875, -1046.0100097656, 52.552898406982, "Forest Rd", 8000}, [281] = {"UCDhousing", 24, 2355.830078125, -1058.7900390625, 54.07799911499, "Forest Rd", 8000}, [282] = {"UCDhousing", 24, 2330, -1060.9100341797, 52.468601226807, "Forest Rd", 8000}, [283] = {"UCDhousing", 7, 2157.1899414063, -1072.3299560547, 40.49340057373, "Mullholland Avenue", 1}, [284] = {"UCDhousing", 24, 2319.7399902344, -1053.1899414063, 52.460800170898, "Forest Rd", 8000}, [285] = {"UCDhousing", 24, 2297.5900878906, -1053.0200195313, 49.93399810791, "Forest Rd", 8000}, [286] = {"UCDhousing", 7, 2188.7600097656, -1081.5100097656, 43.834701538086, "Mullholland Avenue", 110000}, [287] = {"UCDhousing", 24, 2284.1899414063, -1046.0899658203, 49.887100219727, "Forest Rd", 10000}, [288] = {"UCDhousing", 7, 2287.4899902344, -1081.0400390625, 48.246101379395, "Forest Road", 150000}, [289] = {"UCDhousing", 7, 2278.7199707031, -1077.4000244141, 48.238098144531, "Forest Road", 150000}, [290] = {"UCDhousing", 10, 2249.2800292969, -1060.2700195313, 55.968799591064, "Forest Road", 170000}, [291] = {"UCDhousing", 10, 2218.8601074219, -1031.7800292969, 60.268798828125, "Forest Road", 170000}, [292] = {"UCDhousing", 10, 2208.1298828125, -1026.6099853516, 61.3464012146, "Forest Road", 170000}, [293] = {"UCDhousing", 18, 2186.4899902344, -997.32702636719, 66.468803405762, "Forest Road", 170000}, [294] = {"UCDhousing", 18, 2139.8400878906, -1008.450012207, 61.986499786377, "Forest Road", 170000}, [295] = {"UCDhousing", 19, 2108.9699707031, -1000.7899780273, 60.507801055908, "Forest Road", 170000}, [296] = {"UCDhousing", 19, 2089.4499511719, -996.22497558594, 53.061199188232, "Forest Road", 170000}, [297] = {"UCDhousing", 4, 2066.1899414063, -993.20599365234, 48.799701690674, "Fortest Road", 140000}, [298] = {"UCDhousing", 13, 2049.1999511719, -987.27697753906, 44.978500366211, "Fortest Road", 140000}, [299] = {"UCDhousing", 13, 2044.6199951172, -991.32397460938, 43.219898223877, "Fortest Road", 140000}, [300] = {"UCDhousing", 5, 2090.6999511719, -972.36999511719, 51.871101379395, "Fortest Road", 140000}, [301] = {"UCDhousing", 5, 2073.3601074219, -965.15301513672, 49.390300750732, "Fortest Road", 140000}, [302] = {"UCDhousing", 7, 2051.2600097656, -954.68402099609, 48.034099578857, "Fortest Road", 140000}, [303] = {"UCDhousing", 7, 2045.1700439453, -965.75, 44.552299499512, "Fortest Road", 50000}, [304] = {"UCDhousing", 18, 2015.4000244141, -977.66198730469, 36.953098297119, "Fortest Road", 130000}, [305] = {"UCDhousing", 18, 2007.3399658203, -984.60198974609, 34.460899353027, "Fortest Road", 130000}, [306] = {"UCDhousing", 18, 2000.1700439453, -991.67297363281, 32.131401062012, "Fortest Road", 130000}, [307] = {"UCDhousing", 2, 2023.0200195313, -1052.9399414063, 25.596099853516, "Mullholland Street", 95000}, [308] = {"UCDhousing", 2, 2035.8699951172, -1059.2299804688, 25.650800704956, "Mullholland Street", 95000}, [309] = {"UCDhousing", 2, 2050.7900390625, -1065.6400146484, 25.783599853516, "Mullholland Street", 95000}, [310] = {"UCDhousing", 7, 2061.0400390625, -1075.3599853516, 25.676000595093, "Mullholland Street", 120000}, [311] = {"UCDhousing", 2, 2075.2399902344, -1081.8800048828, 25.677200317383, "Mullholland Street", 96000}, [312] = {"UCDhousing", 2, 2082.5200195313, -1085.1800537109, 25.685300827026, "Mullholland Street", 96000}, [313] = {"UCDhousing", 13, 2094.0300292969, -1122.6700439453, 27.68989944458, "Central Park Avenue", 140000}, [314] = {"UCDhousing", 13, 2095.3601074219, -1145.1600341797, 26.59289932251, "Central Park Avenue", 1}, [315] = {"UCDhousing", 13, 2092.2399902344, -1166.5300292969, 26.585899353027, "Central Park Avenue", 140000}, [316] = {"UCDhousing", 4, 2091.5700683594, -1184.3000488281, 27.057100296021, "Central Park Avenue", 1}, [317] = {"UCDhousing", 12, 2090.8500976563, -1235.1700439453, 26.019100189209, "Broker Street", 100000}, [318] = {"UCDhousing", 12, 2110.9299316406, -1244.4000244141, 25.851600646973, "Broker Street", 100000}, [319] = {"UCDhousing", 2, 2133.4099121094, -1233, 24.421899795532, "Broker Street", 100000}, [320] = {"UCDhousing", 5, 2153.6999511719, -1243.8000488281, 25.36720085144, "Broker Street", 100000}, [321] = {"UCDhousing", 15, 2191.9799804688, -1239.2299804688, 24.487899780273, "Broker Street", 90000}, [322] = {"UCDhousing", 15, 2209.7600097656, -1240.2399902344, 24.480100631714, "Broker Street", 90000}, [323] = {"UCDhousing", 13, 2229.6201171875, -1241.5899658203, 25.656200408936, "Broker Street", 130000}, [324] = {"UCDhousing", 13, 2249.919921875, -1238.9100341797, 25.898399353027, "Broker Street", 130000}, [325] = {"UCDhousing", 13, 2250.1899414063, -1280.0500488281, 25.476600646973, "New Dream Avenue", 200000}, [326] = {"UCDhousing", 13, 2230.1101074219, -1280.0799560547, 25.628499984741, "New Dream Avenue", 150000}, [327] = {"UCDhousing", 13, 2207.9399414063, -1280.8199462891, 25.120700836182, "New Dream Avenue", 150000}, [328] = {"UCDhousing", 13, 2191.4699707031, -1275.6099853516, 25.156200408936, "New Dream Avenue", 1}, [329] = {"UCDhousing", 13, 2132.3999023438, -1280.0500488281, 25.890600204468, "New Dream Avenue", 150000}, [330] = {"UCDhousing", 14, 2150.3100585938, -1285.0400390625, 24.526899337769, "New Dream Avenue", 60000}, [331] = {"UCDhousing", 13, 2148.5700683594, -1320.0799560547, 26.073799133301, "New Dream Avenue", 150000}, [332] = {"UCDhousing", 13, 2090.9799804688, -1277.8499755859, 26.17970085144, "New Dream Avenue", 150000}, [333] = {"UCDhousing", 13, 2111.3100585938, -1279, 25.835899353027, "New Dream Avenue", 150000}, [334] = {"UCDhousing", 13, 2100.9299316406, -1321.8800048828, 25.953100204468, "New Dream Avenue", 150000}, [335] = {"UCDhousing", 8, 2126.6799316406, -1320.8699951172, 26.624099731445, "New Dream Avenue", 3000000}, [336] = {"UCDhousing", 3, 2495.3400878906, -1359.0999755859, 29.313100814819, "Wells St.", 14000}, [337] = {"UCDhousing", 3, 2492.0900878906, -1359.0999755859, 29.313100814819, "Wells St.", 14000}, [338] = {"UCDhousing", 3, 2487.2900390625, -1359.0999755859, 29.313100814819, "Wells St.", 14000}, [339] = {"UCDhousing", 3, 2495.3701171875, -1366.1999511719, 29.313100814819, "Wells St.", 14000}, [340] = {"UCDhousing", 3, 2492.2199707031, -1366.1999511719, 29.313100814819, "Wells St.", 14000}, [341] = {"UCDhousing", 3, 2487.3500976563, -1366.1999511719, 29.313100814819, "Wells St.", 14000}, [342] = {"UCDhousing", 3, 2476.3999023438, -1366.1999511719, 29.313100814819, "Wells St.", 14000}, [343] = {"UCDhousing", 3, 2473.1298828125, -1366.1999511719, 29.313100814819, "Wells St.", 14000}, [344] = {"UCDhousing", 3, 2468.3601074219, -1366.1999511719, 29.313100814819, "Wells St.", 14000}, [345] = {"UCDhousing", 3, 2468.2700195313, -1376.2700195313, 29.313100814819, "Wells St.", 14000}, [346] = {"UCDhousing", 3, 2473.169921875, -1376.2700195313, 29.313100814819, "Wells St.", 14000}, [347] = {"UCDhousing", 3, 2476.330078125, -1376.2700195313, 29.313100814819, "Wells St.", 14000}, [348] = {"UCDhousing", 3, 2487.2900390625, -1376.2700195313, 29.313100814819, "Wells St.", 14000}, [349] = {"UCDhousing", 3, 2492.1899414063, -1376.2700195313, 29.313100814819, "Wells St.", 14000}, [350] = {"UCDhousing", 3, 2495.3400878906, -1376.2700195313, 29.313100814819, "Wells St.", 14000}, [351] = {"UCDhousing", 3, 2495.3999023438, -1383.3699951172, 29.313100814819, "Wells St.", 14000}, [352] = {"UCDhousing", 3, 2492.1899414063, -1383.3699951172, 29.313100814819, "Wells St.", 14000}, [353] = {"UCDhousing", 3, 2487.3798828125, -1383.3699951172, 29.313100814819, "Wells St.", 14000}, [354] = {"UCDhousing", 3, 2476.3400878906, -1383.3699951172, 29.313100814819, "Wells St.", 14000}, [355] = {"UCDhousing", 3, 2473.1999511719, -1383.3699951172, 29.313100814819, "Wells St.", 14000}, [356] = {"UCDhousing", 3, 2468.3000488281, -1383.3699951172, 29.313100814819, "Wells St.", 14000}, [357] = {"UCDhousing", 3, 2468.25, -1391.7099609375, 29.313100814819, "Wells St.", 14000}, [358] = {"UCDhousing", 3, 2473.1899414063, -1391.7099609375, 29.313100814819, "Wells St.", 14000}, [359] = {"UCDhousing", 3, 2476.2800292969, -1391.7099609375, 29.313100814819, "Wells St.", 14000}, [360] = {"UCDhousing", 3, 2487.3100585938, -1391.7099609375, 29.313100814819, "Wells St.", 14000}, [361] = {"UCDhousing", 3, 2492.1899414063, -1391.7099609375, 29.313100814819, "Wells St.", 14000}, [362] = {"UCDhousing", 3, 2495.2700195313, -1391.7099609375, 29.313100814819, "Wells St.", 14000}, [363] = {"UCDhousing", 3, 2495.4299316406, -1398.8100585938, 29.313100814819, "Wells St.", 14000}, [364] = {"UCDhousing", 3, 2492.1799316406, -1398.8100585938, 29.313100814819, "Wells St.", 14000}, [365] = {"UCDhousing", 3, 2487.419921875, -1398.8100585938, 29.313100814819, "Wells St.", 14000}, [366] = {"UCDhousing", 3, 2476.3701171875, -1398.8100585938, 29.313100814819, "Wells St.", 14000}, [367] = {"UCDhousing", 3, 2473.1899414063, -1398.8100585938, 29.313100814819, "Wells St.", 14000}, [368] = {"UCDhousing", 3, 2468.3000488281, -1398.8100585938, 29.313100814819, "Wells St.", 14000}, [369] = {"UCDhousing", 3, 2468.1899414063, -1410.3399658203, 29.313100814819, "Wells St.", 14000}, [370] = {"UCDhousing", 3, 2473.1000976563, -1410.3399658203, 29.313100814819, "Wells St.", 14000}, [371] = {"UCDhousing", 3, 2476.3100585938, -1410.3399658203, 29.313100814819, "Wells St.", 14000}, [372] = {"UCDhousing", 3, 2487.2099609375, -1410.3399658203, 29.313100814819, "Wells St.", 14000}, [373] = {"UCDhousing", 3, 2492.1599121094, -1410.3399658203, 29.313100814819, "Wells St.", 14000}, [374] = {"UCDhousing", 3, 2495.2800292969, -1410.3399658203, 29.313100814819, "Wells St.", 14000}, [375] = {"UCDhousing", 3, 2495.5100097656, -1417.4399414063, 29.313100814819, "Wells St.", 14000}, [376] = {"UCDhousing", 3, 2492.25, -1417.4399414063, 29.313100814819, "Wells St.", 14000}, [377] = {"UCDhousing", 3, 2487.4499511719, -1417.4399414063, 29.313100814819, "Wells St.", 14000}, [378] = {"UCDhousing", 3, 2476.3400878906, -1417.4399414063, 29.313100814819, "Wells St.", 14000}, [379] = {"UCDhousing", 3, 2473.25, -1417.4399414063, 29.313100814819, "Wells St.", 14000}, [380] = {"UCDhousing", 3, 2468.2900390625, -1417.4399414063, 29.313100814819, "Wells St.", 14000}, [381] = {"UCDhousing", 3, 2468.330078125, -1424.5799560547, 29.313100814819, "Wells St.", 14000}, [382] = {"UCDhousing", 3, 2473.1201171875, -1424.5799560547, 29.313100814819, "Wells St.", 14000}, [383] = {"UCDhousing", 3, 2476.3400878906, -1424.5799560547, 29.313100814819, "Wells St.", 14000}, [384] = {"UCDhousing", 3, 2487.2700195313, -1424.5799560547, 29.016199111938, "Wells St.", 14000}, [385] = {"UCDhousing", 3, 2492.1000976563, -1424.5799560547, 29.016199111938, "Wells St.", 14000}, [386] = {"UCDhousing", 3, 2495.2600097656, -1424.5799560547, 29.016199111938, "Wells St.", 14000}, [387] = {"UCDhousing", 3, 2495.4299316406, -1431.6800537109, 29.016199111938, "Wells St.", 14000}, [388] = {"UCDhousing", 3, 2492.1398925781, -1431.6800537109, 29.016199111938, "Wells St.", 14000}, [389] = {"UCDhousing", 3, 2487.2800292969, -1431.6800537109, 29.016199111938, "Wells St.", 14000}, [390] = {"UCDhousing", 3, 2476.3000488281, -1431.6800537109, 29.313100814819, "Wells St.", 14000}, [391] = {"UCDhousing", 3, 2473.1201171875, -1431.6800537109, 29.313100814819, "Wells St.", 14000}, [392] = {"UCDhousing", 3, 2468.3400878906, -1431.6800537109, 29.313100814819, "Wells St.", 14000}, [393] = {"UCDhousing", 17, 2522.9699707031, -1343.7600097656, 31.048999786377, "Wells St.", 50000}, [394] = {"UCDhousing", 17, 2522.9599609375, -1324.3000488281, 34.164001464844, "Wells St.", 50000}, [395] = {"UCDhousing", 26, 2521.3999023438, -1281.8199462891, 34.851600646973, "Wells St.", 130000}, [396] = {"UCDhousing", 21, 2439.5900878906, -1357.1099853516, 24.100500106812, "Penn St.", 100000}, [397] = {"UCDhousing", 21, 2439.5900878906, -1338.8599853516, 24.101600646973, "Penn St.", 100000}, [398] = {"UCDhousing", 4, 2433.9299316406, -1320.7299804688, 25.323400497437, "Penn St.", 100000}, [399] = {"UCDhousing", 4, 2433.9299316406, -1303.3399658203, 25.323400497437, "Penn St.", 100000}, [400] = {"UCDhousing", 4, 2434.8000488281, -1289.3299560547, 25.347900390625, "Penn St.", 100000}, [401] = {"UCDhousing", 4, 2433.6000976563, -1275.0100097656, 24.756700515747, "Penn St.", 100000}, [402] = {"UCDhousing", 4, 2388.419921875, -1279.5899658203, 25.129100799561, "Penn St.", 100000}, [403] = {"UCDhousing", 4, 2387.8601074219, -1328.4499511719, 25.124200820923, "Penn St.", 100000}, [404] = {"UCDhousing", 4, 2389.7299804688, -1346.1500244141, 25.076999664307, "Penn St.", 100000}, [405] = {"UCDhousing", 4, 2383.5400390625, -1366.3100585938, 24.491399765015, "Penn St.", 100000}, [406] = {"UCDhousing", 16, 2469.1799316406, -1278.3599853516, 30.366399765015, "Wells St.", 200000}, [407] = {"UCDhousing", 16, 2470.3701171875, -1295.4899902344, 30.233200073242, "Wells St.", 200000}, [408] = {"UCDhousing", 16, 2472.8798828125, -1238.1199951172, 32.569499969482, "Wells St.", 200000}, [409] = {"UCDhousing", 16, 2492.1599121094, -1239.0100097656, 37.90539932251, "Wells St.", 200000}, [410] = {"UCDhousing", 16, 2529.6101074219, -1243.3100585938, 43.971900939941, "Wells St.", 200000}, [411] = {"UCDhousing", 16, 2514.580078125, -1240.4499511719, 39.340599060059, "Wells St.", 200000}, [412] = {"UCDhousing", 16, 2551.0300292969, -1233.7900390625, 49.331798553467, "Wells St.", 200000}, [413] = {"UCDhousing", 27, 2622.2099609375, -1238.0100097656, 51.268100738525, "John Paul St.", 8000}, [414] = {"UCDhousing", 27, 2622.2099609375, -1233.5200195313, 52.665100097656, "John Paul St.", 8000}, [415] = {"UCDhousing", 27, 2622.2099609375, -1229.1999511719, 53.895000457764, "John Paul St.", 8000}, [416] = {"UCDhousing", 27, 2622.2099609375, -1224.6999511719, 55.180099487305, "John Paul St.", 8000}, [417] = {"UCDhousing", 27, 2622.2099609375, -1220.5500488281, 56.473598480225, "John Paul St.", 8000}, [418] = {"UCDhousing", 27, 2622.2099609375, -1216.3699951172, 57.822799682617, "John Paul St.", 8000}, [419] = {"UCDhousing", 27, 2622.2099609375, -1211.7600097656, 59.212299346924, "John Paul St.", 8000}, [420] = {"UCDhousing", 27, 2622.2099609375, -1207.6099853516, 60.345798492432, "John Paul St.", 8000}, [421] = {"UCDhousing", 27, 2622.2099609375, -1202.9799804688, 61.279899597168, "John Paul St.", 8000}, [422] = {"UCDhousing", 27, 2622.2099609375, -1199.9899902344, 62.054401397705, "John Paul St.", 8000}, [423] = {"UCDhousing", 27, 2615.1101074219, -1200.0799560547, 60.781200408936, "John Paul St.", 8000}, [424] = {"UCDhousing", 27, 2615.1101074219, -1203.0799560547, 60, "John Paul St.", 8000}, [425] = {"UCDhousing", 27, 2615.1101074219, -1207.5200195313, 59.070301055908, "John Paul St.", 8000}, [426] = {"UCDhousing", 27, 2615.1101074219, -1211.7199707031, 57.9375, "John Paul St.", 8000}, [427] = {"UCDhousing", 27, 2615.1101074219, -1216.4300537109, 56.539100646973, "John Paul St.", 8000}, [428] = {"UCDhousing", 27, 2615.1101074219, -1220.7099609375, 55.1875, "John Paul St.", 8000}, [429] = {"UCDhousing", 27, 2615.1101074219, -1224.8199462891, 53.898399353027, "John Paul St.", 8000}, [430] = {"UCDhousing", 27, 2615.1101074219, -1229.2800292969, 52.609401702881, "John Paul St.", 8000}, [431] = {"UCDhousing", 27, 2615.1101074219, -1233.6099853516, 51.382801055908, "John Paul St.", 8000}, [432] = {"UCDhousing", 27, 2615.1101074219, -1238.0899658203, 49.984401702881, "John Paul St.", 8000}, [433] = {"UCDhousing", 27, 2608.1499023438, -1237.9499511719, 50.205699920654, "John Paul St.", 8000}, [434] = {"UCDhousing", 27, 2608.1499023438, -1233.5400390625, 51.60290145874, "John Paul St.", 8000}, [435] = {"UCDhousing", 27, 2608.1499023438, -1229.1899414063, 52.832298278809, "John Paul St.", 8000}, [436] = {"UCDhousing", 27, 2608.1499023438, -1224.8100585938, 54.117599487305, "John Paul St.", 8000}, [437] = {"UCDhousing", 27, 2608.1499023438, -1220.5699462891, 55.411098480225, "John Paul St.", 8000}, [438] = {"UCDhousing", 27, 2608.1499023438, -1216.2600097656, 56.760299682617, "John Paul St.", 8000}, [439] = {"UCDhousing", 27, 2608.1499023438, -1211.8100585938, 58.149501800537, "John Paul St.", 8000}, [440] = {"UCDhousing", 27, 2608.1499023438, -1207.5899658203, 59.283298492432, "John Paul St.", 8000}, [441] = {"UCDhousing", 27, 2608.1499023438, -1203.0899658203, 60.217800140381, "John Paul St.", 8000}, [442] = {"UCDhousing", 27, 2608.1499023438, -1200.0600585938, 60.991901397705, "John Paul St.", 8000}, [443] = {"UCDhousing", 27, 2601.0500488281, -1200.0999755859, 59.501800537109, "John Paul St.", 8000}, [444] = {"UCDhousing", 27, 2601.0500488281, -1203.0600585938, 58.727401733398, "John Paul St.", 8000}, [445] = {"UCDhousing", 27, 2601.0500488281, -1207.6999511719, 57.793098449707, "John Paul St.", 8000}, [446] = {"UCDhousing", 27, 2601.0500488281, -1211.8599853516, 56.659400939941, "John Paul St.", 8000}, [447] = {"UCDhousing", 27, 2601.0500488281, -1216.3599853516, 55.270198822021, "John Paul St.", 8000}, [448] = {"UCDhousing", 27, 2601.0500488281, -1220.5500488281, 53.920700073242, "John Paul St.", 8000}, [449] = {"UCDhousing", 27, 2601.0500488281, -1224.7199707031, 52.627601623535, "John Paul St.", 8000}, [450] = {"UCDhousing", 27, 2601.0500488281, -1229.3199462891, 51.341899871826, "John Paul St.", 8000}, [451] = {"UCDhousing", 27, 2601.0500488281, -1233.5899658203, 50.112598419189, "John Paul St.", 8000}, [452] = {"UCDhousing", 27, 2601.0500488281, -1238.0600585938, 48.715198516846, "John Paul St.", 8000}, [453] = {"UCDhousing", 27, 2594.5, -1238.1199951172, 48.564399719238, "John Paul St.", 8000}, [454] = {"UCDhousing", 27, 2594.5, -1233.4599609375, 49.962100982666, "John Paul St.", 8000}, [455] = {"UCDhousing", 27, 2594.5, -1229.2299804688, 51.190601348877, "John Paul St.", 8000}, [456] = {"UCDhousing", 27, 2594.5, -1224.6500244141, 52.477100372314, "John Paul St.", 8000}, [457] = {"UCDhousing", 27, 2594.5, -1220.5400390625, 53.765399932861, "John Paul St.", 8000}, [458] = {"UCDhousing", 27, 2594.5, -1216.25, 55.114398956299, "John Paul St.", 8000}, [459] = {"UCDhousing", 27, 2594.5, -1211.6899414063, 56.514400482178, "John Paul St.", 8000}, [460] = {"UCDhousing", 27, 2594.5, -1207.4899902344, 57.651500701904, "John Paul St.", 8000}, [461] = {"UCDhousing", 27, 2594.5, -1202.9899902344, 58.576000213623, "John Paul St.", 8000}, [462] = {"UCDhousing", 27, 2594.5, -1200.0699462891, 59.357799530029, "John Paul St.", 8000}, [463] = {"UCDhousing", 27, 2587.3999023438, -1200.1400146484, 59.357799530029, "John Paul St.", 8000}, [464] = {"UCDhousing", 27, 2587.3999023438, -1203.1700439453, 58.576000213623, "John Paul St.", 8000}, [465] = {"UCDhousing", 27, 2587.3999023438, -1207.75, 57.651500701904, "John Paul St.", 8000}, [466] = {"UCDhousing", 27, 2587.3999023438, -1211.8800048828, 56.514400482178, "John Paul St.", 8000}, [467] = {"UCDhousing", 27, 2587.3999023438, -1216.3900146484, 55.114398956299, "John Paul St.", 8000}, [468] = {"UCDhousing", 27, 2587.3999023438, -1220.6500244141, 53.765399932861, "John Paul St.", 8000}, [469] = {"UCDhousing", 27, 2587.3999023438, -1224.7600097656, 52.477100372314, "John Paul St.", 8000}, [470] = {"UCDhousing", 27, 2587.3999023438, -1229.2199707031, 51.190601348877, "John Paul St.", 8000}, [471] = {"UCDhousing", 27, 2587.3999023438, -1233.5799560547, 49.962100982666, "John Paul St.", 8000}, [472] = {"UCDhousing", 27, 2587.3898925781, -1238.0799560547, 48.564399719238, "John Paul St.", 8000}, [473] = {"UCDhousing", 16, 2550.1899414063, -1197.5200195313, 60.842601776123, "Wells St.", 200000}, [474] = {"UCDhousing", 16, 2520.6599121094, -1198, 56.598701477051, "Wells St.", 200000}, [475] = {"UCDhousing", 16, 2467.580078125, -1200.4100341797, 36.811698913574, "Wells St.", 200000}, [476] = {"UCDhousing", 6, 2324.4499511719, -1249.5100097656, 27.976600646973, "Constitution Ave.", 250000}, [477] = {"UCDhousing", 6, 2334.75, -1266.1199951172, 27.969299316406, "Constitution Ave.", 250000}, [478] = {"UCDhousing", 6, 2334.6000976563, -1234.6600341797, 27.976600646973, "Constitution Ave.", 250000}, [479] = {"UCDhousing", 6, 2324.5900878906, -1218.8399658203, 27.976600646973, "Constitution Ave.", 250000}, [480] = {"UCDhousing", 6, 2334.6000976563, -1204, 27.976600646973, "Constitution Ave.", 1}, [481] = {"UCDhousing", 6, 2324.419921875, -1280.9699707031, 27.982099533081, "Constitution Ave.", 250000}, [482] = {"UCDhousing", 20, 2351.9299316406, -1170.7800292969, 28.080299377441, "Mullholland Street", 600000}, [483] = {"UCDhousing", 22, 2233.7299804688, -1333.25, 23.981599807739, "Apple St.", 3000000}, [484] = {"UCDhousing", 2, 2230.4099121094, -1397.2399902344, 24.573799133301, "Harbor Rd", 140000}, [485] = {"UCDhousing", 2, 2243.5200195313, -1397.2399902344, 24.573799133301, "Harbor Rd", 140000}, [486] = {"UCDhousing", 2, 2256.4799804688, -1397.2399902344, 24.573799133301, "Harbor Rd", 140000}, [487] = {"UCDhousing", 2, 2263.9699707031, -1469.3399658203, 24.370700836182, "Harbor Rd", 140000}, [488] = {"UCDhousing", 2, 2247.6999511719, -1469.3299560547, 24.480100631714, "Harbor Rd", 140000}, [489] = {"UCDhousing", 1, 2232.6599121094, -1469.3399658203, 24.581600189209, "Harbor Rd", 140000}, [490] = {"UCDhousing", 3, 2173.1999511719, -1512.6999511719, 23.913499832153, "Harbor Rd", 100000}, [491] = {"UCDhousing", 3, 2180.5, -1514.3100585938, 23.902099609375, "Harbor Rd", 100000}, [492] = {"UCDhousing", 3, 2187.9299316406, -1515.6300048828, 23.907300949097, "Harbor Rd", 100000}, [493] = {"UCDhousing", 3, 2195.4899902344, -1516.9499511719, 23.940799713135, "Harbor Rd", 100000}, [494] = {"UCDhousing", 2, 2146.8000488281, -1470.3900146484, 26.042600631714, "Harbor Rd", 140000}, [495] = {"UCDhousing", 7, 2148.9399414063, -1484.9100341797, 26.624000549316, "Harbor Rd", 180000}, [496] = {"UCDhousing", 7, 2152.2199707031, -1446.4100341797, 26.105100631714, "Harbor Rd", 160000}, [497] = {"UCDhousing", 7, 2149.8601074219, -1433.8100585938, 26.07029914856, "Harbor Rd", 160000}, [498] = {"UCDhousing", 7, 2150.919921875, -1419.1400146484, 25.921899795532, "Harbor Rd", 160000}, [499] = {"UCDhousing", 7, 2151.1799316406, -1400.6700439453, 26.128499984741, "Harbor Rd", 160000}, [500] = {"UCDhousing", 7, 2196.2099609375, -1404.0200195313, 25.948799133301, "Harbor Rd", 160000}, [501] = {"UCDhousing", 7, 2188.5500488281, -1419.25, 26.156200408936, "Harbor Rd", 160000}, [502] = {"UCDhousing", 7, 2194.3500976563, -1443.0400390625, 26.073799133301, "Harbor Rd", 160000}, [503] = {"UCDhousing", 7, 2191.1000976563, -1455.8199462891, 26, "Harbor Rd", 160000}, [504] = {"UCDhousing", 7, 2190.4399414063, -1470.4499511719, 25.914100646973, "Harbor Rd", 160000}, [505] = {"UCDhousing", 7, 2190.3100585938, -1487.7199707031, 26.105100631714, "Harbor Rd", 160000}, [506] = {"UCDhousing", 22, 2129.5600585938, -1361.6899414063, 26.136299133301, "Harbor Rd", 160000}, [507] = {"UCDhousing", 7, 2147.7299804688, -1366.1199951172, 25.972299575806, "Harbor Rd", 160000}, [508] = {"UCDhousing", 7, 2185.2700195313, -1363.7099609375, 26.159799575806, "Harbor Rd", 160000}, [509] = {"UCDhousing", 7, 2202.830078125, -1363.6700439453, 26.190999984741, "Harbor Rd", 160000}, [510] = {"UCDhousing", 3, 2468.3701171875, -1359.0999755859, 29.313100814819, "Wells St.", 14000}, [511] = {"UCDhousing", 3, 2473.1000976563, -1359.0999755859, 29.313100814819, "Wells St.", 14000}, [512] = {"UCDhousing", 3, 2476.3798828125, -1359.0999755859, 29.313100814819, "Wells St.", 14000}, [513] = {"UCDhousing", 22, 1122.7099609375, -2036.9599609375, 69.894302368164, "White House.", 1}, [514] = {"UCDhousing", 1, 833.16400146484, -1054.8699951172, 25.186800003052, "Secret House 1", 10000}, [515] = {"UCDhousing", 2, 2402.6000976563, -1714.8900146484, 14.132800102234, "Tory Street", 100000}, [516] = {"UCDhousing", 5, 2459.5200195313, -1691.6600341797, 13.544799804688, "Grove Street", 1}, [517] = {"UCDhousing", 30, 2523.2700195313, -1679.4499511719, 15.496999740601, "Grove Street", 1000000}, [518] = {"UCDhousing", 10, 2022.9000244141, -1120.2600097656, 26.420999526978, "Central Park Avenue", 270000}, [519] = {"UCDhousing", 10, 2000.0300292969, -1114.0500488281, 27.125, "Central Park Avenue", 270000}, [520] = {"UCDhousing", 3, 1955.1199951172, -1115.4100341797, 27.830499649048, "Central Park Avenue", 190000}, [521] = {"UCDhousing", 10, 1939.0400390625, -1114.4799804688, 27.452299118042, "Central Park Avenue", 190000}, [522] = {"UCDhousing", 3, 1921.3000488281, -1115.1700439453, 27.088300704956, "Central Park Avenue", 230000}, [523] = {"UCDhousing", 3, 1905.9899902344, -1112.9399414063, 26.664100646973, "Central Park Avenue", 1}, [524] = {"UCDhousing", 3, 1885.8800048828, -1113.6600341797, 26.275800704956, "Central Park Avenue", 230000}, [525] = {"UCDhousing", 14, 1909.8299560547, -1597.4200439453, 14.306200027466, "Alhambra Street", 220000}, [526] = {"UCDhousing", 14, 1863.8800048828, -1597.2800292969, 14.306200027466, "Alhambra Street", 220000}, [527] = {"UCDhousing", 4, 1938.5400390625, -1911.3199462891, 15.256799697876, "Martin Luther King Avenue", 240000}, [528] = {"UCDhousing", 13, 1928.5799560547, -1915.9100341797, 15.256799697876, "Martin Luther King Avenue", 250000}, [529] = {"UCDhousing", 13, 1913.3800048828, -1912.0400390625, 15.256799697876, "Martin Luther King Avenue", 250000}, [530] = {"UCDhousing", 4, 1891.8900146484, -1914.4000244141, 15.256799697876, "Martin Luther King Avenue", 105000}, [531] = {"UCDhousing", 4, 1872.25, -1911.7900390625, 15.256799697876, "Martin Luther King Avenue", 1}, [532] = {"UCDhousing", 3, 1854.0400390625, -1914.2600097656, 15.256799697876, "Martin Luther King Avenue", 190000}, [533] = {"UCDhousing", 4, 1895.5400390625, -2068.919921875, 15.668899536133, "Sheldon Q Street", 190000}, [534] = {"UCDhousing", 4, 1873.7099609375, -2070.75, 15.497099876404, "Sheldon Q Street", 190000}, [535] = {"UCDhousing", 4, 1851.7700195313, -2070.4499511719, 15.481200218201, "Sheldon Q Street", 190000}, [536] = {"UCDhousing", 4, 1894.2800292969, -2133.1999511719, 15.466300010681, "Los Santos International Av.", 190000}, [537] = {"UCDhousing", 4, 1872.5699462891, -2132.8999023438, 15.482000350952, "Los Santos International Av.", 190000}, [538] = {"UCDhousing", 4, 1851.8000488281, -2134.8400878906, 15.388199806213, "Los Santos International Av.", 190000}, [539] = {"UCDhousing", 4, 1804.2700195313, -2124.8999023438, 13.942399978638, "Volk Alley", 190000}, [540] = {"UCDhousing", 13, 1782.25, -2126.5100097656, 14.067899703979, "Volk Alley", 190000}, [541] = {"UCDhousing", 13, 1761.3299560547, -2125.4499511719, 14.056599617004, "Volk Alley", 220000}, [542] = {"UCDhousing", 13, 1734.7299804688, -2130.3601074219, 14.020999908447, "Volk Alley", 220000}, [543] = {"UCDhousing", 13, 1715.1800537109, -2125.4499511719, 14.056599617004, "Volk Alley", 220000}, [544] = {"UCDhousing", 13, 1695.6300048828, -2125.8400878906, 13.810099601746, "Volk Alley", 220000}, [545] = {"UCDhousing", 13, 1673.6500244141, -2122.4299316406, 14.145999908447, "Volk Alley", 220000}, [546] = {"UCDhousing", 13, 1667.4100341797, -2106.9399414063, 14.072299957275, "Volk Alley", 220000}, [547] = {"UCDhousing", 13, 1684.8299560547, -2098.1499023438, 13.834300041199, "Volk Alley", 200000}, [548] = {"UCDhousing", 13, 1711.6800537109, -2101.2299804688, 14.020999908447, "Volk Alley", 220000}, [549] = {"UCDhousing", 13, 1734.1199951172, -2097.9699707031, 14.036600112915, "Volk Alley", 220000}, [550] = {"UCDhousing", 13, 1762.3699951172, -2101.9799804688, 13.857000350952, "Volk Alley", 220000}, [551] = {"UCDhousing", 14, 1781.3800048828, -2101.2700195313, 14.056599617004, "Volk Alley", 220000}, [552] = {"UCDhousing", 13, 1802.0400390625, -2098.9399414063, 14.020999908447, "Volk Alley", 220000}, [553] = {"UCDhousing", 14, 1867.6899414063, -1979.6500244141, 13.546899795532, "Carl Johnson Flats", 190000}, [554] = {"UCDhousing", 14, 1866.0400390625, -1979.6400146484, 13.546899795532, "Carl Johnson Flats", 190000}, [555] = {"UCDhousing", 14, 1849.3800048828, -1983.0999755859, 13.546899795532, "Carl Johnson Flats", 190000}, [556] = {"UCDhousing", 14, 1852.3399658203, -1991.9300537109, 13.546899795532, "Carl Johnson Flats", 190000}, [557] = {"UCDhousing", 14, 1867.75, -1998.0699462891, 13.546899795532, "Carl Johnson Flats", 190000}, [558] = {"UCDhousing", 14, 1865.9699707031, -1985.4499511719, 13.546899795532, "Carl Johnson Flats", 190000}, [559] = {"UCDhousing", 14, 1858.9699707031, -2000.9399414063, 13.546899795532, "Carl Johnson Flats", 190000}, [560] = {"UCDhousing", 14, 1849.4499511719, -2001.4599609375, 13.546899795532, "Carl Johnson Flats", 190000}, [561] = {"UCDhousing", 14, 1849.3299560547, -2010.0500488281, 13.546899795532, "Carl Johnson Flats", 190000}, [562] = {"UCDhousing", 15, 1846.5200195313, -1991.9000244141, 13.546899795532, "Carl Johnson Flats", 190000}, [563] = {"UCDhousing", 15, 1846.5300292969, -1990.1500244141, 13.546899795532, "Carl Johnson Flats", 190000}, [564] = {"UCDhousing", 15, 1838.6999511719, -1995.8800048828, 13.546899795532, "Carl Johnson Flats", 190000}, [565] = {"UCDhousing", 15, 1838.6999511719, -1994.25, 13.546899795532, "Carl Johnson Flats", 190000}, [566] = {"UCDhousing", 15, 1835.25, -1977.5699462891, 13.546899795532, "Carl Johnson Flats", 190000}, [567] = {"UCDhousing", 15, 1835.8100585938, -1987.1099853516, 13.546899795532, "Carl Johnson Flats", 190000}, [568] = {"UCDhousing", 15, 1858.9499511719, -1982.5300292969, 13.546899795532, "Carl Johnson Flats", 190000}, [569] = {"UCDhousing", 15, 1888.9300537109, -1982.5999755859, 13.546899795532, "Carl Johnson Flats", 190000}, [570] = {"UCDhousing", 15, 1898.5500488281, -1979.6199951172, 13.546899795532, "Carl Johnson Flats", 190000}, [571] = {"UCDhousing", 15, 1900.3100585938, -1979.6199951172, 13.546899795532, "Carl Johnson Flats", 190000}, [572] = {"UCDhousing", 15, 1898.5400390625, -1985.4200439453, 13.546899795532, "Carl Johnson Flats", 190000}, [573] = {"UCDhousing", 15, 1900.1800537109, -1998.0100097656, 13.546899795532, "Carl Johnson Flats", 190000}, [574] = {"UCDhousing", 15, 1913.9100341797, -1991.5400390625, 13.546899795532, "Carl Johnson Flats", 190000}, [575] = {"UCDhousing", 15, 1907.2800292969, -2000.8199462891, 13.546899795532, "Carl Johnson Flats", 190000}, [576] = {"UCDhousing", 15, 1916.8000488281, -2000.3900146484, 13.546899795532, "Carl Johnson Flats", 190000}, [577] = {"UCDhousing", 15, 1919.7199707031, -1993.2700195313, 13.546899795532, "Carl Johnson Flats", 190000}, [578] = {"UCDhousing", 15, 1919.7199707031, -1991.5699462891, 13.546899795532, "Carl Johnson Flats", 190000}, [579] = {"UCDhousing", 15, 1916.9000244141, -2010.0500488281, 13.546899795532, "Carl Johnson Flats", 190000}, [580] = {"UCDhousing", 15, 1919.7600097656, -2019.6899414063, 13.546899795532, "Carl Johnson Flats", 190000}, [581] = {"UCDhousing", 15, 1919.7600097656, -2021.3499755859, 13.546899795532, "Carl Johnson Flats", 190000}, [582] = {"UCDhousing", 15, 1916.8100585938, -2028.4200439453, 13.546899795532, "Carl Johnson Flats", 190000}, [583] = {"UCDhousing", 15, 1917.3499755859, -2037.8900146484, 13.546899795532, "Carl Johnson Flats", 190000}, [584] = {"UCDhousing", 15, 1907.7600097656, -2035.0500488281, 13.546899795532, "Carl Johnson Flats", 190000}, [585] = {"UCDhousing", 15, 1898.9899902344, -2037.9100341797, 13.546899795532, "Carl Johnson Flats", 190000}, [586] = {"UCDhousing", 15, 1906.0500488281, -2040.8599853516, 13.546899795532, "Carl Johnson Flats", 190000}, [587] = {"UCDhousing", 15, 1907.7099609375, -2040.8499755859, 13.546899795532, "Carl Johnson Flats", 190000}, [588] = {"UCDhousing", 15, 1898.5, -2028.4200439453, 13.546899795532, "Carl Johnson Flats", 190000}, [589] = {"UCDhousing", 15, 1895.5300292969, -2021.3699951172, 13.546899795532, "Carl Johnson Flats", 190000}, [590] = {"UCDhousing", 15, 1895.5300292969, -2019.5600585938, 13.546899795532, "Carl Johnson Flats", 190000}, [591] = {"UCDhousing", 14, 1898.3699951172, -2010.0600585938, 13.546899795532, "Carl Johnson Flats", 220000}, [592] = {"UCDhousing", 14, 1900.1600341797, -2003.8399658203, 13.546899795532, "Carl Johnson Flats", 220000}, [593] = {"UCDhousing", 14, 1898.5899658203, -2003.8399658203, 13.546899795532, "Carl Johnson Flats", 220000}, [594] = {"UCDhousing", 14, 1888.9300537109, -2001, 13.546899795532, "Carl Johnson Flats", 220000}, [595] = {"UCDhousing", 14, 1877.3199462891, -2000.8900146484, 13.546899795532, "Carl Johnson Flats", 220000}, [596] = {"UCDhousing", 14, 1867.8800048828, -2010.0600585938, 13.546899795532, "Carl Johnson Flats", 220000}, [597] = {"UCDhousing", 14, 1867.6899414063, -2003.8699951172, 13.546899795532, "Carl Johnson Flats", 220000}, [598] = {"UCDhousing", 14, 1866.0500488281, -2003.8699951172, 13.546899795532, "Carl Johnson Flats", 220000}, [599] = {"UCDhousing", 14, 1864.9499511719, -2019.5699462891, 13.546899795532, "Carl Johnson Flats", 220000}, [600] = {"UCDhousing", 14, 1852.3399658203, -2021.3800048828, 13.546899795532, "Carl Johnson Flats", 220000}, [601] = {"UCDhousing", 14, 1858.8499755859, -2035.0500488281, 13.546899795532, "Carl Johnson Flats", 220000}, [602] = {"UCDhousing", 14, 1867.9000244141, -2028.4200439453, 13.546899795532, "Carl Johnson Flats", 220000}, [603] = {"UCDhousing", 14, 1870.7600097656, -2021.2800292969, 13.546899795532, "Carl Johnson Flats", 220000}, [604] = {"UCDhousing", 14, 1870.7600097656, -2019.6800537109, 13.546899795532, "Carl Johnson Flats", 220000}, [605] = {"UCDhousing", 14, 1868.3499755859, -2038, 13.546899795532, "Carl Johnson Flats", 220000}, [606] = {"UCDhousing", 14, 1849.4200439453, -2028.4200439453, 13.546899795532, "Carl Johnson Flats", 220000}, [607] = {"UCDhousing", 14, 1849.9899902344, -2037.9200439453, 13.546899795532, "Carl Johnson Flats", 220000}, [608] = {"UCDhousing", 14, 1846.5300292969, -2021.3399658203, 13.546899795532, "Carl Johnson Flats", 220000}, [609] = {"UCDhousing", 14, 1846.5300292969, -2019.5899658203, 13.546899795532, "Carl Johnson Flats", 220000}, [610] = {"UCDhousing", 14, 1835.8299560547, -2005.4899902344, 13.546899795532, "Carl Johnson Flats", 220000}, [611] = {"UCDhousing", 14, 1832.8800048828, -1994.1600341797, 13.546899795532, "Carl Johnson Flats", 220000}, [612] = {"UCDhousing", 14, 1820.2800292969, -1995.9699707031, 13.554400444031, "Carl Johnson Flats", 220000}, [613] = {"UCDhousing", 14, 1826.4899902344, -1980.5, 13.546899795532, "Carl Johnson Flats", 220000}, [614] = {"UCDhousing", 14, 1817.4000244141, -1987.1300048828, 13.554400444031, "Carl Johnson Flats", 220000}, [615] = {"UCDhousing", 14, 1814.4799804688, -1994.1400146484, 13.554400444031, "Carl Johnson Flats", 220000}, [616] = {"UCDhousing", 14, 1814.4799804688, -1995.9399414063, 13.554400444031, "Carl Johnson Flats", 220000}, [617] = {"UCDhousing", 14, 1817.3199462891, -2005.4899902344, 13.554400444031, "Carl Johnson Flats", 220000}, [618] = {"UCDhousing", 14, 1816.8900146484, -1977.5899658203, 13.546899795532, "Carl Johnson Flats", 220000}, [619] = {"UCDhousing", 14, 1826.4599609375, -1974.6899414063, 13.546899795532, "Carl Johnson Flats", 220000}, [620] = {"UCDhousing", 14, 1828.1500244141, -1974.6999511719, 13.546899795532, "Carl Johnson Flats", 220000}, [621] = {"UCDhousing", 23, 1489.0400390625, -1720.25, 8.235969543457, "Liberty Tunnel", 15000}, [622] = {"UCDhousing", 15, 1227.2399902344, -1017.1199951172, 32.601600646973, "Panopticon Ave.", 1}, [623] = {"UCDhousing", 15, 1234.7399902344, -1016.1900024414, 32.606700897217, "Panopticon Ave.", 1}, [624] = {"UCDhousing", 15, 1226.4300537109, -1010.9799804688, 32.601600646973, "Panopticon Ave.", 50000}, [625] = {"UCDhousing", 15, 1233.9300537109, -1010.0399780273, 32.601600646973, "Panopticon Ave.", 1}, [626] = {"UCDhousing", 15, 1233.9300537109, -1010.0300292969, 36.328300476074, "Panopticon Ave.", 50000}, [627] = {"UCDhousing", 15, 1226.4200439453, -1010.8800048828, 36.328300476074, "Panopticon Ave.", 50000}, [628] = {"UCDhousing", 15, 1234.7399902344, -1016.2100219727, 36.335899353027, "Panopticon Ave.", 50000}, [629] = {"UCDhousing", 15, 1227.25, -1017.1699829102, 36.335899353027, "Panopticon Ave.", 50000}, [630] = {"UCDhousing", 15, 1188.9899902344, -1017.9600219727, 32.546901702881, "Panopticon Ave.", 120000}, [631] = {"UCDhousing", 15, 1196.5, -1017.1500244141, 32.546901702881, "Panopticon Ave.", 50000}, [632] = {"UCDhousing", 15, 1188.1800537109, -1011.7700195313, 32.546901702881, "Panopticon Ave.", 50000}, [633] = {"UCDhousing", 15, 1195.6899414063, -1010.9400024414, 32.553100585938, "Panopticon Ave.", 50000}, [634] = {"UCDhousing", 15, 1195.6899414063, -1010.9299926758, 36.226699829102, "Panopticon Ave.", 50000}, [635] = {"UCDhousing", 15, 1188.1899414063, -1011.8300170898, 36.226699829102, "Panopticon Ave.", 50000}, [636] = {"UCDhousing", 15, 1196.5, -1017.1099853516, 36.234401702881, "Panopticon Ave.", 50000}, [637] = {"UCDhousing", 15, 1189, -1018.049987793, 36.234401702881, "Panopticon Ave.", 50000}, [638] = {"UCDhousing", 15, 1246.2099609375, -909.01202392578, 42.882801055908, "Beverly Ave.", 50000}, [639] = {"UCDhousing", 15, 1253.7099609375, -908.1259765625, 42.882801055908, "Beverly Ave.", 50000}, [640] = {"UCDhousing", 15, 1245.4000244141, -902.87701416016, 42.882801055908, "Beverly Ave.", 50000}, [641] = {"UCDhousing", 15, 1252.9000244141, -901.91497802734, 42.882801055908, "Beverly Ave.", 50000}, [642] = {"UCDhousing", 15, 1252.9000244141, -901.91998291016, 46.593898773193, "Beverly Ave.", 50000}, [643] = {"UCDhousing", 15, 1245.3900146484, -902.80102539063, 46.593898773193, "Beverly Ave.", 50000}, [644] = {"UCDhousing", 15, 1253.7099609375, -908.06402587891, 46.601600646973, "Beverly Ave.", 50000}, [645] = {"UCDhousing", 15, 1246.1999511719, -908.91998291016, 46.601600646973, "Beverly Ave.", 50000}, [646] = {"UCDhousing", 15, 1242.1199951172, -878.23297119141, 46.640598297119, "Beverly Ave.", 50000}, [647] = {"UCDhousing", 15, 1249.6199951172, -877.33599853516, 46.640598297119, "Beverly Ave.", 50000}, [648] = {"UCDhousing", 15, 1241.3100585938, -872.07501220703, 46.632900238037, "Beverly Ave.", 50000}, [649] = {"UCDhousing", 15, 1248.8000488281, -871.125, 46.632900238037, "Beverly Ave.", 50000}, [650] = {"UCDhousing", 15, 1241.3000488281, -872.02001953125, 42.882801055908, "Beverly Ave.", 50000}, [651] = {"UCDhousing", 15, 1248.8000488281, -871.13201904297, 42.882801055908, "Beverly Ave.", 50000}, [652] = {"UCDhousing", 15, 1249.6199951172, -877.34997558594, 42.882801055908, "Beverly Ave.", 50000}, [653] = {"UCDhousing", 15, 1242.1099853516, -878.22601318359, 42.875301361084, "Beverly Ave.", 50000}, [654] = {"UCDhousing", 15, 1280.8599853516, -874.81201171875, 46.843799591064, "Beverly Ave.", 50000}, [655] = {"UCDhousing", 15, 1288.3599853516, -873.96398925781, 46.843799591064, "Beverly Ave.", 50000}, [656] = {"UCDhousing", 15, 1280.0500488281, -868.64801025391, 46.836101531982, "Beverly Ave.", 50000}, [657] = {"UCDhousing", 15, 1287.5300292969, -867.72497558594, 46.836101531982, "Beverly Ave.", 50000}, [658] = {"UCDhousing", 15, 1280.0400390625, -868.61798095703, 42.92259979248, "Beverly Ave.", 50000}, [659] = {"UCDhousing", 15, 1287.5400390625, -867.67999267578, 43.148998260498, "Beverly Ave.", 50000}, [660] = {"UCDhousing", 15, 1288.3599853516, -873.92999267578, 43.064498901367, "Beverly Ave.", 50000}, [661] = {"UCDhousing", 15, 1280.8599853516, -874.80902099609, 42.939701080322, "Beverly Ave.", 50000}, [662] = {"UCDhousing", 15, 1291.0200195313, -896.81896972656, 42.882801055908, "Beverly Ave.", 50000}, [663] = {"UCDhousing", 15, 1283.5300292969, -897.82800292969, 42.875301361084, "Beverly Ave.", 50000}, [664] = {"UCDhousing", 15, 1291.8399658203, -903.07897949219, 42.882801055908, "Beverly Ave.", 50000}, [665] = {"UCDhousing", 15, 1284.3399658203, -903.99298095703, 42.882801055908, "Beverly Ave.", 50000}, [666] = {"UCDhousing", 15, 1284.3399658203, -904, 46.632801055908, "Beverly Ave.", 50000}, [667] = {"UCDhousing", 15, 1291.8399658203, -903.03198242188, 46.632801055908, "Beverly Ave.", 50000}, [668] = {"UCDhousing", 15, 1283.5300292969, -897.79602050781, 46.625099182129, "Beverly Ave.", 50000}, [669] = {"UCDhousing", 15, 1291.0300292969, -896.90197753906, 46.625099182129, "Beverly Ave.", 50000}, [670] = {"UCDhousing", 4, 1030.8100585938, 2028.1199951172, 11.468299865723, "Desert Fox", 220000}, [671] = {"UCDhousing", 4, 1029.3599853516, 2005.5300292969, 11.460900306702, "Desert Fox", 220000}, [672] = {"UCDhousing", 4, 985.42498779297, 2000.5600585938, 11.460900306702, "Desert Fox", 220000}, [673] = {"UCDhousing", 4, 983.97100830078, 1978.1899414063, 11.468299865723, "Desert Fox", 220000}, [674] = {"UCDhousing", 4, 1030.2700195313, 1976.0799560547, 11.468799591064, "Desert Fox", 220000}, [675] = {"UCDhousing", 4, 1030.8100585938, 1928.1199951172, 11.468299865723, "Desert Fox", 220000}, [676] = {"UCDhousing", 4, 985.4169921875, 1901.0799560547, 11.460900306702, "Desert Fox", 220000}, [677] = {"UCDhousing", 4, 983.97198486328, 1878.8100585938, 11.468299865723, "Desert Fox", 220000}, [678] = {"UCDhousing", 4, 1030.3699951172, 1876.2399902344, 11.468799591064, "Desert Fox", 220000}, [679] = {"UCDhousing", 4, 1030.8100585938, 1848.25, 11.468299865723, "Desert Fox", 220000}, [680] = {"UCDhousing", 4, 930.80798339844, 1928.0999755859, 11.468299865723, "Oasis St.", 220000}, [681] = {"UCDhousing", 4, 885.41400146484, 1980.5, 11.460900306702, "Oasis St.", 220000}, [682] = {"UCDhousing", 4, 929.06097412109, 2006.3900146484, 11.460900306702, "Oasis St.", 220000}, [683] = {"UCDhousing", 4, 930.80700683594, 2027.9100341797, 11.468299865723, "Oasis St.", 220000}, [684] = {"UCDhousing", 4, 885.4169921875, 2047.1899414063, 11.460900306702, "Oasis St.", 220000}, [685] = {"UCDhousing", 4, 957.00799560547, 2270.2700195313, 11.468799591064, "Milky Way", 220000}, [686] = {"UCDhousing", 4, 986.43701171875, 2271.25, 11.460900306702, "Milky Way", 220000}, [687] = {"UCDhousing", 4, 985.47497558594, 2314.1298828125, 11.460900306702, "Desert Fox", 220000}, [688] = {"UCDhousing", 4, 984.70202636719, 1930.4599609375, 11.468799591064, "Desert Fox", 220000}, [689] = {"UCDhousing", 4, 1029.3599853516, 1905.9899902344, 11.460900306702, "Desert Fox", 220000}, [690] = {"UCDhousing", 4, 984.50799560547, 2029.9899902344, 11.468799591064, "Desert Fox", 220000}, [691] = {"UCDhousing", 4, 1032.6099853516, 2316.6298828125, 11.468299865723, "Milky Way", 250000}, [692] = {"UCDhousing", 4, 1083.9699707031, 2031.75, 11.468299865723, "Desert Turttle", 250000}, [693] = {"UCDhousing", 3, 1085.4100341797, 2000.8900146484, 11.460900306702, "Desert Turttle", 250000}, [694] = {"UCDhousing", 3, 1084.5200195313, 1976.5899658203, 11.468799591064, "Desert Turttle", 250000}, [695] = {"UCDhousing", 23, 766.87701416016, 1989.7600097656, 5.44517993927, "Desert Campers Parking", 80000}, [696] = {"UCDhousing", 23, 767.65301513672, 2007.6099853516, 6.066810131073, "Desert Campers Parking", 80000}, [697] = {"UCDhousing", 23, 793.34002685547, 1991.9100341797, 5.79336977005, "Desert Campers Parking", 80000}, [698] = {"UCDhousing", 23, 790.10998535156, 1973.9599609375, 5.7386798858643, "Desert Campers Parking", 80000}, [699] = {"UCDhousing", 23, 777.88299560547, 1937.5999755859, 5.5779900550842, "Desert Campers Parking", 80000}, [700] = {"UCDhousing", 23, 784.21899414063, 1954.3399658203, 5.7074298858643, "Desert Campers Parking", 80000}, [701] = {"UCDhousing", 23, 753.7080078125, 1973.3000488281, 5.69961977005, "Desert Campers Parking", 80000}, [702] = {"UCDhousing", 23, 755.64099121094, 1958.7900390625, 5.4608001708984, "Desert Campers Parking", 80000}, [703] = {"UCDhousing", 17, -260.25399780273, 1120.0300292969, 20.93989944458, "Carson Quarz", 160000}, [704] = {"UCDhousing", 17, -251.15100097656, 1145.5600585938, 20.93989944458, "Carson Quarz", 160000}, [705] = {"UCDhousing", 17, -258.24899291992, 1168.8499755859, 20.93989944458, "Carson Quarz", 160000}, [706] = {"UCDhousing", 14, -259.04098510742, 1083.0699462891, 20.93989944458, "Carson Main", 160000}, [707] = {"UCDhousing", 17, -258.24700927734, 1043.8699951172, 20.93989944458, "Carson Quarz", 160000}, [708] = {"UCDhousing", 14, -278.81201171875, 1003.0700073242, 20.93989944458, "Carson Yonk", 160000}, [709] = {"UCDhousing", 14, -247.73899841309, 1001.0700073242, 20.93989944458, "Carson Yonk", 160000}, [710] = {"UCDhousing", 17, -127.42600250244, 974.42401123047, 19.851600646973, "Carson Merk", 160000}, [711] = {"UCDhousing", 17, -92.459999084473, 970.02301025391, 19.981700897217, "Carson Merk", 160000}, [712] = {"UCDhousing", 17, -66.950202941895, 971.51702880859, 19.886499404907, "Carson Merk", 160000}, [713] = {"UCDhousing", 17, -83, 933.125, 20.692899703979, "Carson Merk", 160000}, [714] = {"UCDhousing", 17, -123.47100067139, 917.76800537109, 19.956899642944, "Carson Merk", 160000}, [715] = {"UCDhousing", 17, -151.17199707031, 933.97900390625, 19.723100662231, "Carson Merk", 160000}, [716] = {"UCDhousing", 17, -153.29899597168, 907.10998535156, 19.301200866699, "Carson Merk", 160000}, [717] = {"UCDhousing", 17, -123.01399993896, 874.79302978516, 18.730899810791, "Carson Merk", 160000}, [718] = {"UCDhousing", 17, -121.03299713135, 857.50799560547, 18.582399368286, "Carson Merk", 160000}, [719] = {"UCDhousing", 17, -91.957000732422, 887.07598876953, 21.254299163818, "Carson Merk", 160000}, [720] = {"UCDhousing", 17, -86.680702209473, 915.69097900391, 21.107000350952, "Carson Merk", 160000}, [721] = {"UCDhousing", 17, -52.90230178833, 894.15997314453, 22.387100219727, "Carson Merk", 160000}, [722] = {"UCDhousing", 17, -362.83801269531, 1110.6500244141, 20.93989944458, "Carson Merk", 160000}, [723] = {"UCDhousing", 17, -54.688499450684, 918.71600341797, 22.371500015259, "Carson Merk", 160000}, [724] = {"UCDhousing", 17, -56.349601745605, 935.32702636719, 21.207399368286, "Carson Merk", 160000}, [725] = {"UCDhousing", 17, -360.84600830078, 1141.7199707031, 20.93989944458, "Carson Merk", 160000}, [726] = {"UCDhousing", 17, -369.77200317383, 1169.5500488281, 20.271900177002, "Carson Merk", 160000}, [727] = {"UCDhousing", 17, -37.667999267578, 962.38702392578, 20.051200866699, "Carson Merk", 160000}, [728] = {"UCDhousing", 17, -12.842800140381, 974.74298095703, 19.795700073242, "Carson Merk", 160000}, [729] = {"UCDhousing", 17, -328.24700927734, 1118.8000488281, 20.93989944458, "Carson Merk", 160000}, [730] = {"UCDhousing", 17, -4.1122999191284, 951.00500488281, 19.703100204468, "Carson Merk", 160000}, [731] = {"UCDhousing", 17, -324.3630065918, 1165.6700439453, 20.93989944458, "Carson Merk", 160000}, [732] = {"UCDhousing", 17, 20.665000915527, 948.82800292969, 20.316799163818, "Carson Merk", 160000}, [733] = {"UCDhousing", 17, 22.752899169922, 968.15002441406, 19.837600708008, "Carson Merk", 160000}, [734] = {"UCDhousing", 17, 70.285202026367, 973.92901611328, 15.755599975586, "Carson Merk", 160000}, [735] = {"UCDhousing", 17, 64.839797973633, 1005.2299804688, 13.759099960327, "Carson Merk", 160000}, [736] = {"UCDhousing", 14, -298.30700683594, 1115.6099853516, 20.93989944458, "Carson Merk", 160000}, [737] = {"UCDhousing", 17, -290.84600830078, 1176.7900390625, 20.93989944458, "Carson Quarz", 160000}, [738] = {"UCDhousing", 12, 300.11999511719, 1141.3399658203, 9.137490272522, "Old Carson", 1}, [739] = {"UCDhousing", 23, 397.28201293945, 1157.6500244141, 8.3480596542358, "Old Carson", 14000}, [740] = {"UCDhousing", 23, 500.84201049805, 1116.3299560547, 15.035599708557, "Old Carson", 14000}, [741] = {"UCDhousing", 23, 710.43902587891, 1208.0500488281, 13.848099708557, "Old Carson", 7000}, [742] = {"UCDhousing", 12, 709.90997314453, 1194.7700195313, 13.39640045166, "Old Carson", 17000}, [743] = {"UCDhousing", 17, 17.67970085144, 908.95397949219, 23.95890045166, "Carson Merk", 160000}, [744] = {"UCDhousing", 15, 1896.7399902344, 729.17797851563, 10.820300102234, "Atlantica Ave.", 50000}, [745] = {"UCDhousing", 15, 1896.7399902344, 736.68902587891, 10.820300102234, "Atlantica Ave.", 50000}, [746] = {"UCDhousing", 15, 1901.8900146484, 742.87298583984, 10.819800376892, "Atlantica Ave.", 50000}, [747] = {"UCDhousing", 15, 1908.8900146484, 742.875, 10.819800376892, "Atlantica Ave.", 50000}, [748] = {"UCDhousing", 15, 1915.9100341797, 742.875, 10.819800376892, "Atlantica Ave.", 50000}, [749] = {"UCDhousing", 15, 1922.6800537109, 742.875, 10.820300102234, "Atlantica Ave.", 50000}, [750] = {"UCDhousing", 15, 1929.4000244141, 742.8740234375, 10.820300102234, "Atlantica Ave.", 50000}, [751] = {"UCDhousing", 15, 1936, 742.875, 10.820300102234, "Atlantica Ave.", 50000}, [752] = {"UCDhousing", 15, 1942.6600341797, 742.8740234375, 10.820300102234, "Atlantica Ave.", 50000}, [753] = {"UCDhousing", 15, 1949.3100585938, 742.87298583984, 10.820300102234, "Atlantica Ave.", 50000}, [754] = {"UCDhousing", 15, 1955.9599609375, 742.875, 10.820300102234, "Atlantica Ave.", 50000}, [755] = {"UCDhousing", 15, 1957.0400390625, 737.96801757813, 10.820300102234, "Atlantica Ave.", 50000}, [756] = {"UCDhousing", 15, 1957.0400390625, 731.21997070313, 10.820300102234, "Atlantica Ave.", 50000}, [757] = {"UCDhousing", 15, 1957.0300292969, 724.67199707031, 10.820300102234, "Atlantica Ave.", 50000}, [758] = {"UCDhousing", 15, 1957.0400390625, 721.69000244141, 10.820300102234, "Atlantica Ave.", 50000}, [759] = {"UCDhousing", 15, 1957.0400390625, 714.97302246094, 10.820300102234, "Atlantica Ave.", 50000}, [760] = {"UCDhousing", 15, 1957.0400390625, 718.21301269531, 14.281100273132, "Atlantica Ave.", 50000}, [761] = {"UCDhousing", 15, 1957.0400390625, 724.59698486328, 14.281100273132, "Atlantica Ave.", 50000}, [762] = {"UCDhousing", 15, 1957.0400390625, 731.22998046875, 14.281100273132, "Atlantica Ave.", 50000}, [763] = {"UCDhousing", 15, 1957.0400390625, 737.99798583984, 14.281100273132, "Atlantica Ave.", 50000}, [764] = {"UCDhousing", 15, 1956, 742.875, 14.273400306702, "Atlantica Ave.", 50000}, [765] = {"UCDhousing", 15, 1949.4300537109, 742.8740234375, 14.273400306702, "Atlantica Ave.", 50000}, [766] = {"UCDhousing", 15, 1942.7199707031, 742.87298583984, 14.273400306702, "Atlantica Ave.", 50000}, [767] = {"UCDhousing", 15, 1935.9300537109, 742.875, 14.273400306702, "Atlantica Ave.", 50000}, [768] = {"UCDhousing", 15, 1929.4499511719, 742.875, 14.273400306702, "Atlantica Ave.", 50000}, [769] = {"UCDhousing", 15, 1922.7199707031, 742.8740234375, 14.273400306702, "Atlantica Ave.", 50000}, [770] = {"UCDhousing", 15, 1915.8100585938, 742.875, 14.273400306702, "Atlantica Ave.", 50000}, [771] = {"UCDhousing", 15, 1908.8800048828, 742.86798095703, 14.273400306702, "Atlantica Ave.", 50000}, [772] = {"UCDhousing", 15, 1902.0400390625, 742.86901855469, 14.273400306702, "Atlantica Ave.", 50000}, [773] = {"UCDhousing", 15, 1896.7399902344, 736.82397460938, 14.276300430298, "Atlantica Ave.", 50000}, [774] = {"UCDhousing", 15, 1896.7399902344, 729.22802734375, 14.274399757385, "Atlantica Ave.", 50000}, [775] = {"UCDhousing", 15, 1896.7399902344, 681.87298583984, 10.820300102234, "Atlantica Ave.", 50000}, [776] = {"UCDhousing", 15, 1896.7399902344, 675.22497558594, 10.820300102234, "Atlantica Ave.", 50000}, [777] = {"UCDhousing", 15, 1896.7399902344, 668.48498535156, 10.820300102234, "Atlantica Ave.", 50000}, [778] = {"UCDhousing", 15, 1897.9599609375, 663.57702636719, 10.820300102234, "Atlantica Ave.", 50000}, [779] = {"UCDhousing", 15, 1904.9100341797, 663.57702636719, 10.820300102234, "Atlantica Ave.", 50000}, [780] = {"UCDhousing", 15, 1912, 663.57800292969, 10.820300102234, "Atlantica Ave.", 50000}, [781] = {"UCDhousing", 15, 1918.8800048828, 663.57598876953, 10.820300102234, "Atlantica Ave.", 50000}, [782] = {"UCDhousing", 15, 1925.4000244141, 663.57598876953, 10.820300102234, "Atlantica Ave.", 50000}, [783] = {"UCDhousing", 15, 1932.0699462891, 663.57598876953, 10.820300102234, "Atlantica Ave.", 50000}, [784] = {"UCDhousing", 15, 1938.7399902344, 663.57598876953, 10.820300102234, "Atlantica Ave.", 50000}, [785] = {"UCDhousing", 15, 1945.4699707031, 663.57598876953, 10.820300102234, "Atlantica Ave.", 50000}, [786] = {"UCDhousing", 15, 1952.1600341797, 663.57598876953, 10.820300102234, "Atlantica Ave.", 50000}, [787] = {"UCDhousing", 15, 1957.0400390625, 664.61999511719, 10.820300102234, "Atlantica Ave.", 50000}, [788] = {"UCDhousing", 15, 1957.0400390625, 671.31097412109, 10.820300102234, "Atlantica Ave.", 50000}, [789] = {"UCDhousing", 15, 1957.0400390625, 678.01300048828, 10.820300102234, "Atlantica Ave.", 50000}, [790] = {"UCDhousing", 15, 1957.0400390625, 684.68798828125, 10.820300102234, "Atlantica Ave.", 50000}, [791] = {"UCDhousing", 15, 1957.0400390625, 691.46398925781, 10.820300102234, "Atlantica Ave.", 50000}, [792] = {"UCDhousing", 15, 1957.0400390625, 688.13397216797, 14.273200035095, "Atlantica Ave.", 50000}, [793] = {"UCDhousing", 15, 1957.0400390625, 677.9580078125, 14.273200035095, "Atlantica Ave.", 50000}, [794] = {"UCDhousing", 15, 1957.0400390625, 671.34802246094, 14.273200035095, "Atlantica Ave.", 50000}, [795] = {"UCDhousing", 15, 1957.0400390625, 664.55499267578, 14.273200035095, "Atlantica Ave.", 50000}, [796] = {"UCDhousing", 15, 1951.9499511719, 663.57800292969, 14.273400306702, "Atlantica Ave.", 50000}, [797] = {"UCDhousing", 15, 1945.5400390625, 663.57702636719, 14.273400306702, "Atlantica Ave.", 50000}, [798] = {"UCDhousing", 15, 1938.8299560547, 663.57702636719, 14.273400306702, "Atlantica Ave.", 50000}, [799] = {"UCDhousing", 15, 1932.0500488281, 663.57702636719, 14.273400306702, "Atlantica Ave.", 50000}, [800] = {"UCDhousing", 15, 1925.3299560547, 663.57598876953, 14.273400306702, "Atlantica Ave.", 50000}, [801] = {"UCDhousing", 15, 1918.7099609375, 663.57598876953, 14.273400306702, "Atlantica Ave.", 50000}, [802] = {"UCDhousing", 15, 1911.9100341797, 663.57598876953, 14.273400306702, "Atlantica Ave.", 50000}, [803] = {"UCDhousing", 15, 1904.7600097656, 663.57702636719, 14.273400306702, "Atlantica Ave.", 50000}, [804] = {"UCDhousing", 15, 1897.7900390625, 663.57598876953, 14.273400306702, "Atlantica Ave.", 50000}, [805] = {"UCDhousing", 15, 1896.7399902344, 669.84698486328, 14.276200294495, "Atlantica Ave.", 50000}, [806] = {"UCDhousing", 15, 1896.7399902344, 677.36999511719, 14.274399757385, "Atlantica Ave.", 50000}, [807] = {"UCDhousing", 15, 2532.5, 719.54302978516, 10.820300102234, "Liverpool Apartment Park", 50000}, [808] = {"UCDhousing", 15, 2532.5100097656, 713.27600097656, 10.820300102234, "Liverpool Apartment Park", 50000}, [809] = {"UCDhousing", 15, 2540.0600585938, 713.27398681641, 10.820300102234, "Liverpool Apartment Park", 50000}, [810] = {"UCDhousing", 15, 2540.0600585938, 719.55798339844, 10.820300102234, "Liverpool Apartment Park", 50000}, [811] = {"UCDhousing", 15, 2532.5, 719.583984375, 14.73960018158, "Liverpool Apartment Park", 50000}, [812] = {"UCDhousing", 15, 2540.0600585938, 719.48297119141, 14.73960018158, "Liverpool Apartment Park", 50000}, [813] = {"UCDhousing", 15, 2532.5, 713.2919921875, 14.73960018158, "Liverpool Apartment Park", 50000}, [814] = {"UCDhousing", 15, 2540.0600585938, 713.14001464844, 14.73960018158, "Liverpool Apartment Park", 50000}, [815] = {"UCDhousing", 15, 2532.3701171875, 750.09698486328, 10.820300102234, "Liverpool Apartment Park", 50000}, [816] = {"UCDhousing", 15, 2532.330078125, 742.5419921875, 10.820300102234, "Liverpool Apartment Park", 50000}, [817] = {"UCDhousing", 15, 2526.0900878906, 750.09600830078, 10.820300102234, "Liverpool Apartment Park", 50000}, [818] = {"UCDhousing", 15, 2526.0100097656, 742.541015625, 10.820300102234, "Liverpool Apartment Park", 50000}, [819] = {"UCDhousing", 15, 2526.0100097656, 742.5419921875, 14.73960018158, "Liverpool Apartment Park", 50000}, [820] = {"UCDhousing", 15, 2526.1398925781, 750.09698486328, 14.73960018158, "Liverpool Apartment Park", 50000}, [821] = {"UCDhousing", 15, 2532.3000488281, 750.09301757813, 14.73960018158, "Liverpool Apartment Park", 50000}, [822] = {"UCDhousing", 15, 2532.3200683594, 742.54302978516, 14.73960018158, "Liverpool Apartment Park", 50000}, [823] = {"UCDhousing", 15, 2579.080078125, 719.53002929688, 10.820300102234, "Liverpool Apartment Park", 50000}, [824] = {"UCDhousing", 15, 2571.5300292969, 719.58197021484, 10.820300102234, "Liverpool Apartment Park", 50000}, [825] = {"UCDhousing", 15, 2579.080078125, 713.23199462891, 10.820300102234, "Liverpool Apartment Park", 50000}, [826] = {"UCDhousing", 15, 2571.5300292969, 713.28900146484, 10.820300102234, "Liverpool Apartment Park", 50000}, [827] = {"UCDhousing", 15, 2579.080078125, 713.16998291016, 14.73960018158, "Liverpool Apartment Park", 50000}, [828] = {"UCDhousing", 15, 2571.5300292969, 713.25299072266, 14.73960018158, "Liverpool Apartment Park", 50000}, [829] = {"UCDhousing", 15, 2571.5300292969, 719.48400878906, 14.73960018158, "Liverpool Apartment Park", 50000}, [830] = {"UCDhousing", 15, 2579.080078125, 719.48498535156, 14.73960018158, "Liverpool Apartment Park", 50000}, [831] = {"UCDhousing", 15, 2621.0600585938, 719.47601318359, 10.820300102234, "Liverpool Apartment Park", 50000}, [832] = {"UCDhousing", 15, 2613.5, 719.52801513672, 10.820300102234, "Liverpool Apartment Park", 50000}, [833] = {"UCDhousing", 15, 2613.5, 713.25299072266, 10.820300102234, "Liverpool Apartment Park", 50000}, [834] = {"UCDhousing", 15, 2621.0600585938, 713.33001708984, 10.820300102234, "Liverpool Apartment Park", 50000}, [835] = {"UCDhousing", 15, 2621.0600585938, 713.25701904297, 14.73960018158, "Liverpool Apartment Park", 50000}, [836] = {"UCDhousing", 15, 2613.5100097656, 713.26300048828, 14.73960018158, "Liverpool Apartment Park", 50000}, [837] = {"UCDhousing", 15, 2613.5, 719.58197021484, 14.73960018158, "Liverpool Apartment Park", 50000}, [838] = {"UCDhousing", 15, 2621.0600585938, 719.49401855469, 14.73960018158, "Liverpool Apartment Park", 50000}, [839] = {"UCDhousing", 15, 2660.080078125, 719.53302001953, 10.820300102234, "Liverpool Apartment Park", 50000}, [840] = {"UCDhousing", 15, 2652.5300292969, 719.53497314453, 10.820300102234, "Liverpool Apartment Park", 50000}, [841] = {"UCDhousing", 15, 2660.080078125, 713.27502441406, 10.820300102234, "Liverpool Apartment Park", 50000}, [842] = {"UCDhousing", 15, 2652.5300292969, 713.3759765625, 10.820300102234, "Liverpool Apartment Park", 50000}, [843] = {"UCDhousing", 15, 2660.080078125, 713.21697998047, 14.73960018158, "Liverpool Apartment Park", 50000}, [844] = {"UCDhousing", 15, 2652.5300292969, 713.26501464844, 14.73960018158, "Liverpool Apartment Park", 50000}, [845] = {"UCDhousing", 15, 2652.5300292969, 719.53002929688, 14.73960018158, "Liverpool Apartment Park", 50000}, [846] = {"UCDhousing", 15, 2660.080078125, 719.45098876953, 14.73960018158, "Liverpool Apartment Park", 50000}, [847] = {"UCDhousing", 15, 2660.2099609375, 750.09899902344, 10.820300102234, "Liverpool Apartment Park", 50000}, [848] = {"UCDhousing", 15, 2660.3000488281, 742.54400634766, 10.820300102234, "Liverpool Apartment Park", 50000}, [849] = {"UCDhousing", 15, 2666.6201171875, 750.09802246094, 10.820300102234, "Liverpool Apartment Park", 50000}, [850] = {"UCDhousing", 15, 2666.3999023438, 742.54400634766, 10.820300102234, "Liverpool Apartment Park", 50000}, [851] = {"UCDhousing", 15, 2666.5, 750.09802246094, 14.73960018158, "Liverpool Apartment Park", 50000}, [852] = {"UCDhousing", 15, 2666.4499511719, 742.54400634766, 14.73960018158, "Liverpool Apartment Park", 50000}, [853] = {"UCDhousing", 15, 2660.2199707031, 750.09802246094, 14.73960018158, "Liverpool Apartment Park", 50000}, [854] = {"UCDhousing", 15, 2660.2299804688, 742.54400634766, 14.73960018158, "Liverpool Apartment Park", 50000}, [855] = {"UCDhousing", 15, 2535.1999511719, 1703.5799560547, 10.820300102234, "St. Mary St.", 50000}, [856] = {"UCDhousing", 15, 2528.5400390625, 1703.5799560547, 10.820300102234, "St. Mary St.", 50000}, [857] = {"UCDhousing", 15, 2521.8798828125, 1703.5799560547, 10.820300102234, "St. Mary St.", 50000}, [858] = {"UCDhousing", 15, 2515.2399902344, 1703.5799560547, 10.820300102234, "St. Mary St.", 50000}, [859] = {"UCDhousing", 15, 2508.6101074219, 1703.5799560547, 10.820300102234, "St. Mary St.", 50000}, [860] = {"UCDhousing", 15, 2501.8999023438, 1703.5799560547, 10.820300102234, "St. Mary St.", 50000}, [861] = {"UCDhousing", 15, 2495.1599121094, 1703.5799560547, 10.820300102234, "St. Mary St.", 50000}, [862] = {"UCDhousing", 15, 2488.5400390625, 1703.5799560547, 10.820300102234, "St. Mary St.", 50000}, [863] = {"UCDhousing", 15, 2481.9099121094, 1703.5799560547, 10.820300102234, "St. Mary St.", 50000}, [864] = {"UCDhousing", 15, 2475.1298828125, 1703.5799560547, 10.820300102234, "St. Mary St.", 50000}, [865] = {"UCDhousing", 15, 2468.4899902344, 1703.5799560547, 10.820300102234, "St. Mary St.", 50000}, [866] = {"UCDhousing", 15, 2461.8400878906, 1703.5799560547, 10.820300102234, "St. Mary St.", 50000}, [867] = {"UCDhousing", 15, 2461.3898925781, 1682.8699951172, 14.265600204468, "St. Mary St.", 50000}, [868] = {"UCDhousing", 15, 2466.2700195313, 1682.8699951172, 14.265600204468, "St. Mary St.", 50000}, [869] = {"UCDhousing", 15, 2471.419921875, 1682.8699951172, 14.265600204468, "St. Mary St.", 50000}, [870] = {"UCDhousing", 15, 2476.419921875, 1682.8699951172, 14.265600204468, "St. Mary St.", 50000}, [871] = {"UCDhousing", 15, 2481.3400878906, 1682.8699951172, 14.265600204468, "St. Mary St.", 50000}, [872] = {"UCDhousing", 15, 2486.4299316406, 1682.8699951172, 14.265600204468, "St. Mary St.", 50000}, [873] = {"UCDhousing", 15, 2491.3701171875, 1682.8699951172, 14.265600204468, "St. Mary St.", 50000}, [874] = {"UCDhousing", 15, 2496.4399414063, 1682.8699951172, 14.265600204468, "St. Mary St.", 50000}, [875] = {"UCDhousing", 15, 2501.3701171875, 1682.8699951172, 14.265600204468, "St. Mary St.", 50000}, [876] = {"UCDhousing", 15, 2506.4499511719, 1682.8699951172, 14.265600204468, "St. Mary St.", 50000}, [877] = {"UCDhousing", 15, 2511.2399902344, 1682.8699951172, 14.265600204468, "St. Mary St.", 50000}, [878] = {"UCDhousing", 15, 2516.3500976563, 1682.8699951172, 14.265600204468, "St. Mary St.", 50000}, [879] = {"UCDhousing", 15, 2517.0400390625, 1679.3000488281, 14.273200035095, "St. Mary St.", 50000}, [880] = {"UCDhousing", 15, 2517.0400390625, 1674.1899414063, 14.273200035095, "St. Mary St.", 50000}, [881] = {"UCDhousing", 15, 2517.0400390625, 1669.2199707031, 14.273200035095, "St. Mary St.", 50000}, [882] = {"UCDhousing", 15, 2517.0400390625, 1664.2900390625, 14.273200035095, "St. Mary St.", 50000}, [883] = {"UCDhousing", 15, 2517.0400390625, 1659.0899658203, 14.273200035095, "St. Mary St.", 50000}, [884] = {"UCDhousing", 15, 2517.0400390625, 1653.7800292969, 14.273200035095, "St. Mary St.", 50000}, [885] = {"UCDhousing", 15, 2517.0400390625, 1648.5699462891, 14.273200035095, "St. Mary St.", 50000}, [886] = {"UCDhousing", 15, 2517.0400390625, 1643.5799560547, 14.265600204468, "St. Mary St.", 50000}, [887] = {"UCDhousing", 15, 2517.0400390625, 1643.6099853516, 11.015700340271, "St. Mary St.", 50000}, [888] = {"UCDhousing", 15, 2517.0400390625, 1648.6899414063, 11.023400306702, "St. Mary St.", 50000}, [889] = {"UCDhousing", 15, 2517.0400390625, 1653.8599853516, 11.023400306702, "St. Mary St.", 50000}, [890] = {"UCDhousing", 15, 2517.0400390625, 1659.0699462891, 11.023400306702, "St. Mary St.", 50000}, [891] = {"UCDhousing", 15, 2517.0400390625, 1664.4000244141, 11.023400306702, "St. Mary St.", 50000}, [892] = {"UCDhousing", 15, 2517.0400390625, 1669.2099609375, 11.023400306702, "St. Mary St.", 50000}, [893] = {"UCDhousing", 15, 2517.0400390625, 1674.2199707031, 11.023400306702, "St. Mary St.", 50000}, [894] = {"UCDhousing", 15, 2517.0400390625, 1679.3100585938, 11.023400306702, "St. Mary St.", 50000}, [895] = {"UCDhousing", 15, 2516.4099121094, 1682.8699951172, 11.023400306702, "St. Mary St.", 50000}, [896] = {"UCDhousing", 15, 2511.4099121094, 1682.8699951172, 11.023400306702, "St. Mary St.", 50000}, [897] = {"UCDhousing", 15, 2506.2399902344, 1682.8699951172, 11.023400306702, "St. Mary St.", 50000}, [898] = {"UCDhousing", 15, 2501.4599609375, 1682.8699951172, 11.023400306702, "St. Mary St.", 50000}, [899] = {"UCDhousing", 15, 2496.4699707031, 1682.8699951172, 11.023400306702, "St. Mary St.", 50000}, [900] = {"UCDhousing", 15, 2491.4099121094, 1682.8699951172, 11.023400306702, "St. Mary St.", 50000}, [901] = {"UCDhousing", 15, 2486.3400878906, 1682.8699951172, 11.023400306702, "St. Mary St.", 50000}, [902] = {"UCDhousing", 15, 2481.5400390625, 1682.8699951172, 11.023400306702, "St. Mary St.", 50000}, [903] = {"UCDhousing", 15, 2476.3100585938, 1682.8699951172, 11.023400306702, "St. Mary St.", 50000}, [904] = {"UCDhousing", 15, 2471.2099609375, 1682.8699951172, 11.023400306702, "St. Mary St.", 50000}, [905] = {"UCDhousing", 15, 2466.3701171875, 1682.8699951172, 11.023400306702, "St. Mary St.", 50000}, [906] = {"UCDhousing", 15, 2461.330078125, 1682.8699951172, 11.023400306702, "St. Mary St.", 50000}, [907] = {"UCDhousing", 15, 2506.1599121094, 1622.8699951172, 10.820300102234, "St. Mary St.", 50000}, [908] = {"UCDhousing", 15, 2499.6298828125, 1622.8800048828, 10.820300102234, "St. Mary St.", 50000}, [909] = {"UCDhousing", 15, 2512.8000488281, 1622.8699951172, 10.820300102234, "St. Mary St.", 50000}, [910] = {"UCDhousing", 15, 2519.5700683594, 1622.8800048828, 10.820300102234, "St. Mary St.", 50000}, [911] = {"UCDhousing", 15, 2526.1499023438, 1622.8800048828, 10.820300102234, "St. Mary St.", 50000}, [912] = {"UCDhousing", 15, 2533.0400390625, 1622.8699951172, 10.820300102234, "St. Mary St.", 50000}, [913] = {"UCDhousing", 15, 2537.75, 1625.3499755859, 10.820300102234, "St. Mary St.", 50000}, [914] = {"UCDhousing", 15, 2537.75, 1632.0799560547, 10.820300102234, "St. Mary St.", 50000}, [915] = {"UCDhousing", 15, 2537.75, 1638.75, 10.820300102234, "St. Mary St.", 50000}, [916] = {"UCDhousing", 15, 2537.7399902344, 1645.4100341797, 10.820300102234, "St. Mary St.", 50000}, [917] = {"UCDhousing", 15, 2537.75, 1652.2199707031, 10.820300102234, "St. Mary St.", 50000}, [918] = {"UCDhousing", 15, 2537.7399902344, 1658.8499755859, 10.820300102234, "St. Mary St.", 50000}, [919] = {"UCDhousing", 15, 2537.7399902344, 1665.4899902344, 10.820300102234, "St. Mary St.", 50000}, [920] = {"UCDhousing", 15, 2537.7600097656, 1672.0999755859, 10.820300102234, "St. Mary St.", 50000}, [921] = {"UCDhousing", 15, 2537.7399902344, 1678.7299804688, 10.820300102234, "St. Mary St.", 50000}, [922] = {"UCDhousing", 15, 2537.7399902344, 1685.4599609375, 10.820300102234, "St. Mary St.", 50000}, [923] = {"UCDhousing", 15, 2537.7399902344, 1692.0899658203, 10.820300102234, "St. Mary St.", 50000}, [924] = {"UCDhousing", 15, 2537.7399902344, 1698.7299804688, 10.820300102234, "St. Mary St.", 50000}, [925] = {"UCDhousing", 23, -2422.3000488281, 2490.6999511719, 13.202500343323, "Camper", 30000}, [926] = {"UCDhousing", 23, -2446.1499023438, 2490.6999511719, 15.543000221252, "Camper", 30000}, [927] = {"UCDhousing", 23, -2446.8898925781, 2512.330078125, 15.700300216675, "Camper", 30000}, [928] = {"UCDhousing", 23, -2463.3000488281, 2485.9499511719, 17.002500534058, "Camper", 30000}, [929] = {"UCDhousing", 23, -2478.2900390625, 2488.9599609375, 18.229999542236, "Camper", 30000}, [930] = {"UCDhousing", 23, -2479.0600585938, 2510.0700683594, 17.974800109863, "Camper", 30000}, [931] = {"UCDhousing", 9, -2348.4099121094, 2423.6201171875, 7.3295698165894, "Allerton Ave.", 120000}, [932] = {"UCDhousing", 9, -2424.7199707031, 2449.0600585938, 13.139100074768, "Allerton Ave.", 220000}, [933] = {"UCDhousing", 9, -2421.7199707031, 2406.6201171875, 13.025199890137, "Allerton Ave.", 220000}, [934] = {"UCDhousing", 31, -2479.9099121094, 2449.9499511719, 17.322999954224, "Allerton Ave.", 240000}, [935] = {"UCDhousing", 31, -2472.3798828125, 2451.3400878906, 17.322999954224, "Allerton Ave.", 240000}, [936] = {"UCDhousing", 31, -2386.2800292969, 2447.5200195313, 10.169400215149, "Allerton Ave.", 240000}, [937] = {"UCDhousing", 31, -2379.2199707031, 2444.6398925781, 10.169400215149, "Allerton Ave.", 240000}, [938] = {"UCDhousing", 9, -2382.2399902344, 2406.6799316406, 8.8919801712036, "Allerton Ave.", 80000}, [939] = {"UCDhousing", 9, -2634.9499511719, 2401.6999511719, 11.219900131226, "West Ave.", 80000}, [940] = {"UCDhousing", 9, -2630.1000976563, 2426.8601074219, 14.092900276184, "West Ave.", 80000}, [941] = {"UCDhousing", 9, -2632.5900878906, 2374.8798828125, 9.0371503829956, "West Ave.", 80000}, [942] = {"UCDhousing", 9, -2636.3400878906, 2351.0100097656, 8.4887199401855, "West Avep", 80000}, [943] = {"UCDhousing", 31, -2597.3100585938, 2357.0100097656, 9.8830003738403, "West Ave.", 240000}, [944] = {"UCDhousing", 31, -2597.3100585938, 2364.6599121094, 9.8830003738403, "West Ave.", 240000}, [945] = {"UCDhousing", 31, -2583.7399902344, 2307.8100585938, 7.0028901100159, "Allerton Ave.", 240000}, [946] = {"UCDhousing", 31, -2583.1298828125, 2300.1999511719, 7.0028901100159, "Allerton Ave.", 240000}, [947] = {"UCDhousing", 16, -2552.1201171875, 2266.4599609375, 5.4755201339722, "Allerton Ave.", 300000}, [948] = {"UCDhousing", 10, -2627.580078125, 2318.7099609375, 8.3144397735596, "West Ave.", 180000}, [949] = {"UCDhousing", 10, -2627.580078125, 2310, 8.3144397735596, "West Ave.", 180000}, [950] = {"UCDhousing", 10, -2627.6398925781, 2292.0200195313, 8.3148698806763, "West Ave.", 180000}, [951] = {"UCDhousing", 10, -2627.6398925781, 2283.4599609375, 8.3148698806763, "West Ave.", 180000}, [952] = {"UCDhousing", 16, -2523.9599609375, 2238.8601074219, 5.3984398841858, "Allerton Ave.", 1}, [953] = {"UCDhousing", 24, -2385.6201171875, 2215.6398925781, 4.9843797683716, "Watching Tower", 80000}, [954] = {"UCDhousing", 10, 653.59399414063, -1714.0899658203, 14.764800071716, "Hawk St.", 100000}, [955] = {"UCDhousing", 10, 652.65197753906, -1694, 14.55060005188, "Hawk St.", 1}, [956] = {"UCDhousing", 10, 657.20001220703, -1652.5999755859, 15.406200408936, "Hawk St.", 250000}, [957] = {"UCDhousing", 13, 656.09497070313, -1635.8699951172, 15.861700057983, "Hawk St.", 280000}, [958] = {"UCDhousing", 13, 653.23999023438, -1619.8800048828, 15, "Hawk St.", 1}, [959] = {"UCDhousing", 13, 692.7919921875, -1602.7700195313, 15.046899795532, "Hawk St.", 1}, [960] = {"UCDhousing", 16, 697.28900146484, -1627.0300292969, 3.7491700649261, "Pilow St.", 300000}, [961] = {"UCDhousing", 16, 693.76702880859, -1645.8000488281, 4.09375, "Pilow St.", 300000}, [962] = {"UCDhousing", 16, 694.81201171875, -1690.6800537109, 4.3461198806763, "Pilow St.", 300000}, [963] = {"UCDhousing", 16, 693.54901123047, -1705.9000244141, 3.8194799423218, "Pilow St.", 300000}, [964] = {"UCDhousing", 10, 769.22399902344, -1745.9699707031, 13.077300071716, "Hill St.", 200000}, [965] = {"UCDhousing", 10, 769.12097167969, -1726.2299804688, 13.432100296021, "Hill St.", 300000}, [966] = {"UCDhousing", 10, 769.22698974609, -1696.5999755859, 5.1554198265076, "Hill St.", 300000}, [967] = {"UCDhousing", 10, 768.07897949219, -1655.8100585938, 5.6093797683716, "Hill St.", 200000}, [968] = {"UCDhousing", 10, 766.91101074219, -1605.8499755859, 13.803899765015, "Hill St.", 200000}, [969] = {"UCDhousing", 16, -2437.5100097656, 2354.9299316406, 5.443069934845, "Lucy Ave.", 300000}, [970] = {"UCDhousing", 22, 738.96197509766, -1418.5100097656, 13.523400306702, "All Saints Avenue", 3000000}, [971] = {"UCDhousing", 8, 725.68298339844, -1440.4499511719, 13.539099693298, "Boat house", 3000000}, [972] = {"UCDhousing", 15, 657.23297119141, -1434.1099853516, 14.851599693298, "Boat street", 120000}, [973] = {"UCDhousing", 15, 683.53399658203, -1435.4899902344, 14.851599693298, "Boat street", 120000}, [974] = {"UCDhousing", 15, 675.14599609375, -1430.5500488281, 14.851599693298, "Boat street", 120000}, [975] = {"UCDhousing", 15, 662.43103027344, -1440.5300292969, 14.851599693298, "Boat street", 120000}, [976] = {"UCDhousing", 15, 662.43103027344, -1466.8000488281, 14.851599693298, "Boat street", 120000}, [977] = {"UCDhousing", 15, 657.42700195313, -1481.2800292969, 14.851599693298, "Boat street", 120000}, [978] = {"UCDhousing", 15, 662.43200683594, -1487.6199951172, 14.851599693298, "Boat street", 120000}, [979] = {"UCDhousing", 15, 662.43103027344, -1513.8699951172, 14.851599693298, "Boat street", 120000}, [980] = {"UCDhousing", 15, 657.58898925781, -1528.4599609375, 14.851599693298, "Boat street", 120000}, [981] = {"UCDhousing", 15, 662.44201660156, -1534.7800292969, 14.851599693298, "Boat street", 120000}, [982] = {"UCDhousing", 23, -2180.5300292969, -2258.1599121094, 33.320301055908, "Brock St.", 20000}, [983] = {"UCDhousing", 23, -2192, -2255.1101074219, 33.320301055908, "Brock St.", 20000}, [984] = {"UCDhousing", 23, -2193.4099121094, -2253.9899902344, 33.320301055908, "Brock St.", 20000}, [985] = {"UCDhousing", 23, -2198.8898925781, -2243.5900878906, 33.320301055908, "Brock St.", 1}, [986] = {"UCDhousing", 23, -2193.2900390625, -2254.0900878906, 30.703300476074, "Brock St.", 21000}, [987] = {"UCDhousing", 23, -2191.9499511719, -2255.1499023438, 30.69529914856, "Brock St.", 20000}, [988] = {"UCDhousing", 23, -2198.8898925781, -2243.5900878906, 30.784000396729, "Brock St.", 20000}, [989] = {"UCDhousing", 14, 648.85400390625, -1536.7800292969, 14.933699607849, "Hawk St.", 120000}, [990] = {"UCDhousing", 23, -2180.5700683594, -2258.2099609375, 30.639400482178, "Brock St.", 20000}, [991] = {"UCDhousing", 14, 648.85498046875, -1489.6600341797, 14.841799736023, "Hawk St.", 120000}, [992] = {"UCDhousing", 14, 648.84698486328, -1442.4000244141, 14.726099967957, "Hawk St.", 120000}, [993] = {"UCDhousing", 14, 685.48297119141, -1421.9100341797, 14.774600028992, "All Saints Avenue", 120000}, [994] = {"UCDhousing", 26, -2075.7099609375, -2312.7299804688, 31.131299972534, "Brock St.", 150000}, [995] = {"UCDhousing", 23, -2069.3701171875, -2495.1899414063, 31.066799163818, "Camper park", 20000}, [996] = {"UCDhousing", 23, -2058.0500488281, -2503.5700683594, 31.066799163818, "Camper park", 20000}, [997] = {"UCDhousing", 23, -2045.0799560547, -2522.3999023438, 31.066799163818, "Camper park", 20000}, [998] = {"UCDhousing", 19, 934.67297363281, -1443.0600585938, 13.546899795532, "Saints Boulevard", 220000}, [999] = {"UCDhousing", 19, 934.67297363281, -1451.7199707031, 13.546899795532, "Saints Boulevard", 220000}, [1000] = {"UCDhousing", 23, -2031.3299560547, -2538.9599609375, 31.066799163818, "Camper park", 20000}, [1001] = {"UCDhousing", 23, -2042.4200439453, -2558.7800292969, 30.841999053955, "Camper park", 20000}, [1002] = {"UCDhousing", 23, -2053.0200195313, -2544.6599121094, 31.066799163818, "Camper park", 20000}, [1003] = {"UCDhousing", 23, -2067.7700195313, -2536.7900390625, 30.841999053955, "Camper park", 20000}, [1004] = {"UCDhousing", 23, -2075.2399902344, -2526.1201171875, 31.066799163818, "Camper park", 20000}, [1005] = {"UCDhousing", 23, -2087.0700683594, -2510.6101074219, 31.066799163818, "Camper park", 20000}, [1006] = {"UCDhousing", 23, -2101.0600585938, -2532.6398925781, 31.066799163818, "Camper park", 30000}, [1007] = {"UCDhousing", 23, -2081.9399414063, -2548.3100585938, 30.841999053955, "Camper park", 20000}, [1008] = {"UCDhousing", 23, -2068.7600097656, -2561.6298828125, 31.066799163818, "Camper park", 20000}, [1009] = {"UCDhousing", 15, -2220.3798828125, -2399.8701171875, 32.582298278809, "Flower St.", 120000}, [1010] = {"UCDhousing", 15, -2239.3100585938, -2423.7600097656, 32.707298278809, "Flower St.", 120000}, [1011] = {"UCDhousing", 15, -2214, -2451.8999023438, 31.816299438477, "Flower St.", 120000}, [1012] = {"UCDhousing", 19, 893.61999511719, -1635.6999511719, 14.929699897766, "Washington Flats", 280000}, [1013] = {"UCDhousing", 19, 865.19897460938, -1633.8499755859, 14.929699897766, "Washington Flats", 280000}, [1014] = {"UCDhousing", 15, -2224.419921875, -2483, 31.816299438477, "Flower St.", 120000}, [1015] = {"UCDhousing", 15, -2193.0700683594, -2510.3999023438, 31.816299438477, "Flower St.", 120000}, [1016] = {"UCDhousing", 15, -2181.080078125, -2519.9399414063, 31.816299438477, "Flower St.", 120000}, [1017] = {"UCDhousing", 19, 987.4990234375, -1624.5200195313, 14.929699897766, "Washington Flats", 260000}, [1018] = {"UCDhousing", 15, -2173.7800292969, -2481.5500488281, 31.816299438477, "Flower St.", 120000}, [1019] = {"UCDhousing", 15, -2161.3701171875, -2535.6101074219, 31.816299438477, "Flower St.", 150000}, [1020] = {"UCDhousing", 15, -2132.7199707031, -2511.0100097656, 31.816299438477, "Flower St.", 120000}, [1021] = {"UCDhousing", 8, -20.660200119019, 81.875, 3.1096498966217, "CSG Farm", 8000000}, [1022] = {"UCDhousing", 24, 166.2740020752, -120.23400115967, 1.5548900365829, "Peach Ave.", 30000}, [1023] = {"UCDhousing", 24, 178.2559967041, -120.23400115967, 1.5490399599075, "Peach Ave.", 30000}, [1024] = {"UCDhousing", 24, 189.41900634766, -120.2259979248, 1.5484900474548, "Peach Ave.", 30000}, [1025] = {"UCDhousing", 24, 201.42900085449, -120.23300170898, 1.5514199733734, "Peach Ave.", 30000}, [1026] = {"UCDhousing", 24, 209.08399963379, -112.61199951172, 1.5507800579071, "Peach Ave.", 30000}, [1027] = {"UCDhousing", 24, 209.08299255371, -102.59799957275, 1.5582400560379, "Peach Ave.", 30000}, [1028] = {"UCDhousing", 24, 201.47300720215, -94.971702575684, 1.5549900531769, "Peach Ave.", 30000}, [1029] = {"UCDhousing", 24, 166.2740020752, -94.973602294922, 1.5548900365829, "Peach Ave.", 30000}, [1030] = {"UCDhousing", 24, 158.6309967041, -102.58399963379, 1.5567200183868, "Peach Ave.", 30000}, [1031] = {"UCDhousing", 24, 158.6309967041, -112.62899780273, 1.5567200183868, "Peach Ave.", 30000}, [1032] = {"UCDhousing", 24, 160.63200378418, -102.57900238037, 4.8964700698853, "Peach Ave.", 30000}, [1033] = {"UCDhousing", 24, 166.38800048828, -96.971702575684, 4.8964700698853, "Peach Ave.", 30000}, [1034] = {"UCDhousing", 24, 178.3090057373, -96.971702575684, 4.8964700698853, "Peach Ave.", 30000}, [1035] = {"UCDhousing", 24, 160.63200378418, -112.5, 4.8964700698853, "Peach Ave.", 30000}, [1036] = {"UCDhousing", 24, 166.30700683594, -118.23300170898, 4.8964700698853, "Peach Ave.", 30000}, [1037] = {"UCDhousing", 24, 178.33599853516, -118.23300170898, 4.8964700698853, "Peach Ave.", 30000}, [1038] = {"UCDhousing", 24, 201.34300231934, -118.23400115967, 4.8964700698853, "Peach Ave.", 30000}, [1039] = {"UCDhousing", 24, 207.07499694824, -112.40899658203, 4.8964700698853, "Peach Ave.", 30000}, [1040] = {"UCDhousing", 24, 201.4409942627, -96.971702575684, 4.8964700698853, "Peach Ave.", 30000}, [1041] = {"UCDhousing", 24, 189.41400146484, -96.971702575684, 4.8964700698853, "Peach Ave.", 30000}, [1042] = {"UCDhousing", 2, 992.63098144531, -1817.6300048828, 13.894100189209, "boulevard avenue", 200000}, [1043] = {"UCDhousing", 2, 981.05401611328, -1814.8399658203, 13.889100074768, "boulevard avenue", 200000}, [1044] = {"UCDhousing", 2, 969.57397460938, -1812.0200195313, 13.883500099182, "boulevard avenue", 200000}, [1045] = {"UCDhousing", 2, 958.0830078125, -1809.1700439453, 13.881400108337, "boulevard avenue", 100000}, [1046] = {"UCDhousing", 2, 933.74298095703, -1805.2099609375, 13.843299865723, "boulevard avenue", 88000}, [1047] = {"UCDhousing", 2, 921.98199462891, -1803.8900146484, 13.837599754333, "boulevard avenue", 1}, [1048] = {"UCDhousing", 2, 909.84497070313, -1802.6500244141, 13.798199653625, "boulevard avenue", 10000}, [1049] = {"UCDhousing", 31, 883.12799072266, -1800.3800048828, 13.801600456238, "boulevard avenue", 160000}, [1050] = {"UCDhousing", 31, 866.59002685547, -1798.9399414063, 13.815699577332, "boulevard avenue", 200000}, [1051] = {"UCDhousing", 14, 154.31199645996, -1946.6199951172, 5.3894000053406, "Beach Tower", 800000}, [1052] = {"UCDhousing", 23, -89.176803588867, -1564.4499511719, 3.0043098926544, "Camper Park", 10000}, [1053] = {"UCDhousing", 23, -68.662101745605, -1545.7600097656, 3.0043098926544, "Camper Park", 15000}, [1054] = {"UCDhousing", 23, -55.905300140381, -1555.7199707031, 2.6107199192047, "Camper Park", 5000}, [1055] = {"UCDhousing", 23, -44.331100463867, -1563.4300537109, 2.5969300270081, "Camper Park", 5000}, [1056] = {"UCDhousing", 23, -65.222702026367, -1573.8800048828, 2.6107199192047, "Camper Park", 20000}, [1057] = {"UCDhousing", 23, -76.2041015625, -1581.0100097656, 2.6171898841858, "Camper Park", 1}, [1058] = {"UCDhousing", 23, -75.248001098633, -1598.1899414063, 2.6171898841858, "Camper Park", 10000}, [1059] = {"UCDhousing", 23, -91.218803405762, -1592.5699462891, 3.0043098926544, "Camper Park", 10000}, [1060] = {"UCDhousing", 23, -102.50900268555, -1576.0400390625, 2.6171898841858, "Camper Park", 20000}, [1061] = {"UCDhousing", 31, -2789.169921875, -181.43200683594, 10.0625, "Washington St.", 190000}, [1062] = {"UCDhousing", 10, -2791.3701171875, -168.2559967041, 7.2019500732422, "Washington St.", 195000}, [1063] = {"UCDhousing", 31, -2724.6201171875, -191.14399719238, 4.3359398841858, "Apple St.", 190000}, [1064] = {"UCDhousing", 12, -2786.75, -175.39599609375, 10.0625, "Washington St.", 100000}, [1065] = {"UCDhousing", 12, -2791.7900390625, -160.46800231934, 10.054699897766, "Washington St.", 180000}, [1066] = {"UCDhousing", 24, -2792.830078125, -153.07699584961, 7.6349000930786, "Washington St.", 190000}, [1067] = {"UCDhousing", 31, -2686.8200683594, -188.08500671387, 7.2031202316284, "Apple St.", 190000}, [1068] = {"UCDhousing", 25, -2791.580078125, -145.94299316406, 7.8593797683716, "Washington St.", 190000}, [1069] = {"UCDhousing", 10, -2687.8898925781, -175.11199951172, 4.3425798416138, "Apple St.", 180000}, [1070] = {"UCDhousing", 13, -2791.8898925781, -134.46699523926, 10.054699897766, "Washington St.", 180000}, [1071] = {"UCDhousing", 10, -2723.0300292969, -179.07699584961, 7.2031202316284, "Apple St.", 180000}, [1072] = {"UCDhousing", 10, -2723.330078125, -166.39799499512, 5, "Apple St.", 180000}, [1073] = {"UCDhousing", 10, -2724.669921875, -162.65400695801, 4.3425798416138, "Apple St.", 180000}, [1074] = {"UCDhousing", 25, -2793.1398925781, -127.12999725342, 7.1875, "Washington St.", 190000}, [1075] = {"UCDhousing", 10, -2723.1101074219, -139.39100646973, 7.2031202316284, "Apple St.", 180000}, [1076] = {"UCDhousing", 10, -2723.3400878906, -127.87799835205, 5, "Apple St.", 180000}, [1077] = {"UCDhousing", 10, -2723.1201171875, -113.39199829102, 7.2031202316284, "Apple St.", 180000}, [1078] = {"UCDhousing", 10, -2689.5100097656, -167.28799438477, 7.2031202316284, "Apple St.", 180000}, [1079] = {"UCDhousing", 10, -2725.75, -92.439498901367, 7.2031202316284, "Apple St.", 180000}, [1080] = {"UCDhousing", 10, -2724.6799316406, -105.49700164795, 4.3425798416138, "Apple St.", 180000}, [1081] = {"UCDhousing", 10, -2690.5, -159.87800598145, 4.7721199989319, "Apple St.", 180000}, [1082] = {"UCDhousing", 10, -2687.8999023438, -89.497100830078, 4.3359398841858, "Apple St.", 180000}, [1083] = {"UCDhousing", 10, -2689.4499511719, -101.60399627686, 7.2031202316284, "Apple St.", 180000}, [1084] = {"UCDhousing", 12, -2786.7600097656, -118.32299804688, 10.0625, "Washington St.", 100000}, [1085] = {"UCDhousing", 10, -2689.2299804688, -152.74600219727, 5, "Apple St.", 180000}, [1086] = {"UCDhousing", 10, -2689.2399902344, -114.22499847412, 5, "Apple St.", 180000}, [1087] = {"UCDhousing", 10, -2687.8898925781, -117.91600036621, 4.3425798416138, "Apple St.", 180000}, [1088] = {"UCDhousing", 10, -2689.6000976563, -141.28799438477, 7.2031202316284, "Apple St.", 180000}, [1089] = {"UCDhousing", 10, -2690.7900390625, -133.9409942627, 4.3359398841858, "Apple St.", 180000}, [1090] = {"UCDhousing", 10, -2790.25, -111.2379989624, 7.2019500732422, "Washington St.", 195000}, [1091] = {"UCDhousing", 10, -2721.7800292969, -146.68600463867, 4.3359398841858, "Apple St.", 180000}, [1092] = {"UCDhousing", 10, -2790.25, -82.603500366211, 7.1953101158142, "Washington St.", 195000}, [1093] = {"UCDhousing", 10, -2722.0700683594, -120.76100158691, 4.7721199989319, "Apple St.", 180000}, [1094] = {"UCDhousing", 10, -2791.580078125, -107.46800231934, 7.8593797683716, "Washington St.", 195000}, [1095] = {"UCDhousing", 10, -2791.8500976563, -94.781196594238, 10.054699897766, "Apple St.", 180000}, [1096] = {"UCDhousing", 12, -2786.7600097656, -89.754898071289, 10.0625, "Washington St.", 100000}, [1097] = {"UCDhousing", 12, -2728.1599121094, -184.22099304199, 7.2031202316284, "Apple St.", 100000}, [1098] = {"UCDhousing", 12, -2684.5700683594, -182.16900634766, 7.2031202316284, "Apple St.", 100000}, [1099] = {"UCDhousing", 12, -2728.1599121094, -155.65100097656, 7.2031202316284, "Apple St.", 100000}, [1100] = {"UCDhousing", 12, -2684.4099121094, -125.14399719238, 7.2031202316284, "Apple St.", 100000}, [1101] = {"UCDhousing", 12, -2684.5700683594, -96.572303771973, 7.2031202316284, "Apple St.", 100000}, [1102] = {"UCDhousing", 12, -2728, -98.435501098633, 7.2031202316284, "Apple St.", 100000}, [1103] = {"UCDhousing", 12, -2728.1899414063, -50.9541015625, 7.2031202316284, "Apple St.", 100000}, [1104] = {"UCDhousing", 12, -2684.5700683594, 129.97799682617, 7.2031202316284, "Apple St.", 100000}, [1105] = {"UCDhousing", 31, -2686.7900390625, 115.40000152588, 7.1953101158142, "Apple St.", 180000}, [1106] = {"UCDhousing", 31, -2725.7900390625, -36.404300689697, 7.1953101158142, "Apple St.", 180000}, [1107] = {"UCDhousing", 10, -2722.1101074219, -44.8125, 4.7719497680664, "Apple St.", 190000}, [1108] = {"UCDhousing", 10, -2721.8100585938, -23.231399536133, 4.5728001594543, "Apple St.", 190000}, [1109] = {"UCDhousing", 10, -2723.0300292969, -17.318399429321, 7.2031202316284, "Apple St.", 190000}, [1110] = {"UCDhousing", 10, -2724.7099609375, -58.080101013184, 4.3425798416138, "Apple St.", 180000}, [1111] = {"UCDhousing", 10, -2723.0100097656, 4.4833998680115, 7.2031202316284, "Apple St.", 190000}, [1112] = {"UCDhousing", 10, -2722.1000976563, 14.568400382996, 4.7717800140381, "Apple St.", 180000}, [1113] = {"UCDhousing", 10, -2723.2099609375, 21.903299331665, 7.2031202316284, "Apple St.", 190000}, [1114] = {"UCDhousing", 10, -2689.4499511719, 57.086898803711, 7.2031202316284, "Apple St.", 190000}, [1115] = {"UCDhousing", 10, -2689.4799804688, 96.318397521973, 7.2031202316284, "Apple St.", 190000}, [1116] = {"UCDhousing", 10, -2690.7700195313, 102.16400146484, 4.5729598999023, "Apple St.", 190000}, [1117] = {"UCDhousing", 10, -2690.4799804688, 64.494102478027, 4.7714400291443, "Apple St.", 180000}, [1118] = {"UCDhousing", 10, -2690.4799804688, 123.74500274658, 4.7717800140381, "Apple St.", 190000}, [1119] = {"UCDhousing", 10, -2687.8798828125, 136.91299438477, 4.3425798416138, "Apple St.", 190000}, [1120] = {"UCDhousing", 12, -2786.7600097656, 0.1875, 10.0625, "Washington St.", 100000}, [1121] = {"UCDhousing", 10, -2689.5300292969, 74.507797241211, 7.2031202316284, "Apple St.", 180000}, [1122] = {"UCDhousing", 31, -2789.169921875, -52.603500366211, 10.0625, "Washington St.", 190000}, [1123] = {"UCDhousing", 10, -2791.580078125, -35.803699493408, 7.8593797683716, "Washington St.", 195000}, [1124] = {"UCDhousing", 10, -2790.25, 7.3281202316284, 7.1953101158142, "Washington St.", 195000}, [1125] = {"UCDhousing", 10, -2790.25, 126.8929977417, 7.2019500732422, "Washington St.", 195000}, [1126] = {"UCDhousing", 10, -2791.919921875, -41.815399169922, 10.054699897766, "Washington St.", 180000}, [1127] = {"UCDhousing", 10, -2791.8601074219, -24.397499084473, 10.054699897766, "Washington St.", 180000}, [1128] = {"UCDhousing", 10, -2791.9099121094, 77.594703674316, 10.054699897766, "Washington St.", 180000}, [1129] = {"UCDhousing", 10, -2791.8200683594, 103.59600067139, 10.054699897766, "Washington St.", 180000}, [1130] = {"UCDhousing", 12, -2786.75, 62.71480178833, 10.0625, "Washington St.", 100000}, [1131] = {"UCDhousing", 10, -2791.9499511719, 143.27099609375, 10.054699897766, "Washington St.", 180000}, [1132] = {"UCDhousing", 12, -2786.7600097656, 119.73300170898, 10.0625, "Washington St.", 100000}, [1133] = {"UCDhousing", 10, -2791.9399414063, 194.57699584961, 10.054699897766, "Washington St.", 180000}, [1134] = {"UCDhousing", 10, -2791.830078125, 212.00100708008, 10.054699897766, "Washington St.", 180000}, [1135] = {"UCDhousing", 31, -2789.1799316406, 183.56300354004, 10.0625, "Washington St.", 190000}, [1136] = {"UCDhousing", 10, -2791.5900878906, 130.57800292969, 7.8593797683716, "Washington St.", 180000}, [1137] = {"UCDhousing", 10, -2793.1398925781, 110.95099639893, 7.1875, "Washington St.", 180000}, [1138] = {"UCDhousing", 10, -2791.580078125, 92.139602661133, 7.8593797683716, "Washington St.", 180000}, [1139] = {"UCDhousing", 10, -2791.580078125, -17.671899795532, 7.8593797683716, "Washington St.", 195000}, [1140] = {"UCDhousing", 10, -2792.8400878906, 84.950202941895, 7.6311497688293, "Washington St.", 180000}, [1141] = {"UCDhousing", 10, -2790.2399902344, 69.700202941895, 7.2019500732422, "Washington St.", 180000}, [1142] = {"UCDhousing", 10, -2793.1398925781, 21.140600204468, 7.1875, "Washington St.", 180000}, [1143] = {"UCDhousing", 31, -2793.1398925781, 11.144499778748, 7.4328198432922, "Washington St.", 190000}, [1144] = {"UCDhousing", 10, -2791.5900878906, 200.54499816895, 7.8593797683716, "Washington St.", 180000}, [1145] = {"UCDhousing", 31, -2791.6000976563, 218.61599731445, 7.8593797683716, "Washington St.", 190000}, [1146] = {"UCDhousing", 17, 31.410200119019, 923.83898925781, 23.600900650024, "Carson Merk", 160000}, [1147] = {"UCDhousing", 17, -15.243200302124, 934.2919921875, 21.105899810791, "Carson Merk", 160000}, [1148] = {"UCDhousing", 17, -152.52799987793, 881.78601074219, 18.440000534058, "Carson Merk", 160000}, [1149] = {"UCDhousing", 23, 21.372999191284, 1344.1300048828, 9.281120300293, "Harbor Rd", 40000}, [1150] = {"UCDhousing", 23, 26.785200119019, 1361.9200439453, 9.1718797683716, "Harbor Rd", 40000}, [1151] = {"UCDhousing", 23, 4.6074199676514, 1344.3299560547, 9.281120300293, "Harbor Rd", 40000}, [1152] = {"UCDhousing", 23, -21.356399536133, 1348.1199951172, 9.1718797683716, "Harbor Rd", 40000}, [1153] = {"UCDhousing", 23, -29.351600646973, 1363.3599853516, 9.281120300293, "Harbor Rd", 40000}, [1154] = {"UCDhousing", 23, -20.697299957275, 1388.2299804688, 9.281120300293, "Harbor Rd", 40000}, [1155] = {"UCDhousing", 23, -1.2929699420929, 1394.6999511719, 9.1718797683716, "Harbor Rd", 40000}, [1156] = {"UCDhousing", 23, 4.8027300834656, 1380.6099853516, 9.281120300293, "Harbor Rd", 40000}, [1157] = {"UCDhousing", 14, 13.886699676514, 1220.0799560547, 19.33869934082, "Napal Ave.", 20000}, [1158] = {"UCDhousing", 14, 13.886699676514, 1229.3499755859, 19.341400146484, "Napal Ave.", 20000}, [1159] = {"UCDhousing", 14, 13.887700080872, 1210.7299804688, 22.503200531006, "Napal Ave.", 20000}, [1160] = {"UCDhousing", 14, 13.887700080872, 1219.9599609375, 22.503200531006, "Napal Ave.", 20000}, [1161] = {"UCDhousing", 14, 13.887700080872, 1229.25, 22.503200531006, "Napal Ave.", 20000}, [1162] = {"UCDhousing", 14, 13.886699676514, 1210.6899414063, 19.345199584961, "Napal Ave.", 20000}, [1163] = {"UCDhousing", 14, -35.94820022583, 1215.4100341797, 19.352300643921, "Napal Ave.", 20000}, [1164] = {"UCDhousing", 14, -26.771499633789, 1215.4100341797, 19.352300643921, "Napal Ave.", 20000}, [1165] = {"UCDhousing", 14, -17.527299880981, 1215.4100341797, 22.464799880981, "Napal Ave.", 20000}, [1166] = {"UCDhousing", 14, -26.893600463867, 1215.4100341797, 22.464799880981, "Napal Ave.", 20000}, [1167] = {"UCDhousing", 14, -35.984401702881, 1215.4100341797, 22.464799880981, "Napal Ave.", 20000}, [1168] = {"UCDhousing", 14, -17.504899978638, 1215.4100341797, 19.352699279785, "Napal Ave.", 20000}, [1169] = {"UCDhousing", 14, 76.666999816895, 1161.9599609375, 18.664100646973, "Bender St.", 20000}, [1170] = {"UCDhousing", 14, 68.740196228027, 1161.9599609375, 20.940200805664, "Bender St.", 20000}, [1171] = {"UCDhousing", 14, 70.124000549316, 1161.9599609375, 20.940200805664, "Bender St.", 20000}, [1172] = {"UCDhousing", 14, 76.749000549316, 1161.9599609375, 20.940200805664, "Bender St.", 20000}, [1173] = {"UCDhousing", 14, 70.156196594238, 1161.9599609375, 18.664100646973, "Bender St.", 20000}, [1174] = {"UCDhousing", 14, 78.119102478027, 1161.9599609375, 20.940200805664, "Bender St.", 20000}, [1175] = {"UCDhousing", 14, 68.640602111816, 1161.9599609375, 18.664100646973, "Bender St.", 20000}, [1176] = {"UCDhousing", 14, 78.174797058105, 1161.9599609375, 18.664100646973, "Bender St.", 20000}, [1177] = {"UCDhousing", 14, 84.685501098633, 1161.9599609375, 20.940200805664, "Bender St.", 20000}, [1178] = {"UCDhousing", 14, 84.742202758789, 1161.9899902344, 18.656499862671, "Bender St.", 20000}, [1179] = {"UCDhousing", 14, 86.256797790527, 1161.9599609375, 18.656499862671, "Bender St.", 20000}, [1180] = {"UCDhousing", 14, 86.138702392578, 1161.9599609375, 20.940200805664, "Bender St.", 20000}, [1181] = {"UCDhousing", 14, 99.285202026367, 1162.1300048828, 18.656499862671, "Bender St.", 20000}, [1182] = {"UCDhousing", 14, 99.285202026367, 1163.6099853516, 18.664100646973, "Bender St.", 20000}, [1183] = {"UCDhousing", 14, 99.285202026367, 1170.1600341797, 18.664100646973, "Bender St.", 20000}, [1184] = {"UCDhousing", 14, 99.238296508789, 1171.7700195313, 18.664100646973, "Bender St.", 20000}, [1185] = {"UCDhousing", 14, 99.285202026367, 1162.1400146484, 20.940200805664, "Bender St.", 20000}, [1186] = {"UCDhousing", 14, 99.284202575684, 1178.0400390625, 18.664100646973, "Bender St.", 20000}, [1187] = {"UCDhousing", 14, 99.284202575684, 1179.6400146484, 18.664100646973, "Bender St.", 20000}, [1188] = {"UCDhousing", 14, 99.285202026367, 1163.5799560547, 20.940200805664, "Bender St.", 20000}, [1189] = {"UCDhousing", 14, 99.285202026367, 1179.6199951172, 20.940200805664, "Bender St.", 20000}, [1190] = {"UCDhousing", 14, 99.285202026367, 1170.1400146484, 20.940200805664, "Bender St.", 20000}, [1191] = {"UCDhousing", 14, 99.285202026367, 1178.0999755859, 20.940200805664, "Bender St.", 20000}, [1192] = {"UCDhousing", 14, 99.285202026367, 1171.5999755859, 20.940200805664, "Bender St.", 20000}, [1193] = {"UCDhousing", 18, -68.097702026367, 1221.7800292969, 19.661100387573, "Dekker St.", 20000}, [1194] = {"UCDhousing", 18, -68.075202941895, 1223.6099853516, 19.650100708008, "Dekker St.", 20000}, [1195] = {"UCDhousing", 18, -68.073196411133, 1223.0400390625, 22.440299987793, "Dekker St.", 20000}, [1196] = {"UCDhousing", 18, -90.708000183105, 1229.7399902344, 19.74220085144, "Dekker St.", 20000}, [1197] = {"UCDhousing", 18, -68.091796875, 1221.0500488281, 22.440299987793, "Dekker St.", 20000}, [1198] = {"UCDhousing", 18, -88.853500366211, 1229.7399902344, 19.74220085144, "Dekker St.", 20000}, [1199] = {"UCDhousing", 18, -90.708999633789, 1229.7399902344, 22.440299987793, "Dekker St.", 20000}, [1200] = {"UCDhousing", 18, -78.1708984375, 1234.4799804688, 22.440299987793, "Dekker St.", 20000}, [1201] = {"UCDhousing", 18, -88.990196228027, 1229.7399902344, 22.440299987793, "Dekker St.", 20000}, [1202] = {"UCDhousing", 18, -101.6070022583, 1234.5, 22.440299987793, "Dekker St.", 20000}, [1203] = {"UCDhousing", 18, -63.38090133667, 1234.3800048828, 22.440299987793, "Dekker St.", 20000}, [1204] = {"UCDhousing", 18, -63.25, 1210.9499511719, 22.436500549316, "Dekker St.", 20000}, [1205] = {"UCDhousing", 18, -63.300800323486, 1234.3800048828, 19.528699874878, "Dekker St.", 20000}, [1206] = {"UCDhousing", 18, -78.1708984375, 1234.5, 19.74220085144, "Dekker St.", 20000}, [1207] = {"UCDhousing", 18, -101.60800170898, 1234.5500488281, 19.74220085144, "Dekker St.", 20000}, [1208] = {"UCDhousing", 18, -63.378898620605, 1210.9499511719, 19.66489982605, "Dekker St.", 20000}, [1209] = {"UCDhousing", 15, 2373.419921875, 1642.5899658203, 11.023400306702, "St. Mary St.", 50000}, [1210] = {"UCDhousing", 15, 2368.4599609375, 1642.5899658203, 11.023400306702, "St. Mary St.", 50000}, [1211] = {"UCDhousing", 15, 2363.419921875, 1642.5899658203, 11.023400306702, "St. Mary St.", 50000}, [1212] = {"UCDhousing", 15, 2358.4499511719, 1642.5899658203, 11.023400306702, "St. Mary St.", 50000}, [1213] = {"UCDhousing", 15, 2357.7399902344, 1643.4000244141, 11.023400306702, "St. Mary St.", 50000}, [1214] = {"UCDhousing", 15, 2357.7399902344, 1648.6400146484, 11.023400306702, "St. Mary St.", 50000}, [1215] = {"UCDhousing", 15, 2357.7399902344, 1653.8100585938, 11.023400306702, "St. Mary St.", 50000}, [1216] = {"UCDhousing", 15, 2357.7399902344, 1659.0400390625, 11.023400306702, "St. Mary St.", 50000}, [1217] = {"UCDhousing", 15, 2357.7399902344, 1664.2800292969, 11.023400306702, "St. Mary St.", 50000}, [1218] = {"UCDhousing", 15, 2357.7399902344, 1669.3100585938, 11.023400306702, "St. Mary St.", 50000}, [1219] = {"UCDhousing", 15, 2357.7399902344, 1674.2900390625, 11.023400306702, "St. Mary St.", 50000}, [1220] = {"UCDhousing", 15, 2357.7399902344, 1679.2900390625, 11.023400306702, "St. Mary St.", 50000}, [1221] = {"UCDhousing", 15, 2361.4099121094, 1682.8800048828, 11.023400306702, "St. Mary St.", 50000}, [1222] = {"UCDhousing", 15, 2366.3100585938, 1682.8800048828, 11.023400306702, "St. Mary St.", 50000}, [1223] = {"UCDhousing", 15, 2371.3100585938, 1682.8800048828, 11.023400306702, "St. Mary St.", 50000}, [1224] = {"UCDhousing", 15, 2376.3500976563, 1682.8800048828, 11.023400306702, "St. Mary St.", 50000}, [1225] = {"UCDhousing", 15, 2381.2900390625, 1682.8800048828, 11.023400306702, "St. Mary St.", 50000}, [1226] = {"UCDhousing", 15, 2386.3500976563, 1682.8800048828, 11.023400306702, "St. Mary St.", 50000}, [1227] = {"UCDhousing", 15, 2391.330078125, 1682.8800048828, 11.023400306702, "St. Mary St.", 50000}, [1228] = {"UCDhousing", 15, 2396.3500976563, 1682.8800048828, 11.023400306702, "St. Mary St.", 50000}, [1229] = {"UCDhousing", 15, 2401.3200683594, 1682.8800048828, 11.023400306702, "St. Mary St.", 50000}, [1230] = {"UCDhousing", 15, 2406.2800292969, 1682.8800048828, 11.023400306702, "St. Mary St.", 50000}, [1231] = {"UCDhousing", 15, 2406.3400878906, 1682.8800048828, 14.281100273132, "St. Mary St.", 50000}, [1232] = {"UCDhousing", 15, 2401.3500976563, 1682.8800048828, 14.281100273132, "St. Mary St.", 50000}, [1233] = {"UCDhousing", 15, 2396.3601074219, 1682.8800048828, 14.281100273132, "St. Mary St.", 50000}, [1234] = {"UCDhousing", 15, 2391.3200683594, 1682.8800048828, 14.281100273132, "St. Mary St.", 50000}, [1235] = {"UCDhousing", 15, 2386.3100585938, 1682.8800048828, 14.281100273132, "St. Mary St.", 50000}, [1236] = {"UCDhousing", 15, 2381.3000488281, 1682.8800048828, 14.281100273132, "St. Mary St.", 50000}, [1237] = {"UCDhousing", 15, 2376.3400878906, 1682.8800048828, 14.281100273132, "St. Mary St.", 50000}, [1238] = {"UCDhousing", 15, 2371.3100585938, 1682.8800048828, 14.281100273132, "St. Mary St.", 50000}, [1239] = {"UCDhousing", 15, 2366.3601074219, 1682.8800048828, 14.281100273132, "St. Mary St.", 50000}, [1240] = {"UCDhousing", 15, 2361.3500976563, 1682.8800048828, 14.281100273132, "St. Mary St.", 50000}, [1241] = {"UCDhousing", 15, 2357.7399902344, 1679.2399902344, 14.281100273132, "St. Mary St.", 50000}, [1242] = {"UCDhousing", 15, 2357.7399902344, 1674.3100585938, 14.281100273132, "St. Mary St.", 50000}, [1243] = {"UCDhousing", 15, 2357.7399902344, 1669.3499755859, 14.281100273132, "St. Mary St.", 50000}, [1244] = {"UCDhousing", 15, 2357.7399902344, 1664.3100585938, 14.281100273132, "St. Mary St.", 50000}, [1245] = {"UCDhousing", 15, 2357.7399902344, 1659.2199707031, 14.281100273132, "St. Mary St.", 50000}, [1246] = {"UCDhousing", 15, 2357.7399902344, 1653.8199462891, 14.281100273132, "St. Mary St.", 50000}, [1247] = {"UCDhousing", 15, 2357.7399902344, 1648.6099853516, 14.281100273132, "St. Mary St.", 50000}, [1248] = {"UCDhousing", 15, 2357.7399902344, 1643.3499755859, 14.281100273132, "St. Mary St.", 50000}, [1249] = {"UCDhousing", 15, 2358.4599609375, 1642.5899658203, 14.273400306702, "St. Mary St.", 50000}, [1250] = {"UCDhousing", 15, 2363.4799804688, 1642.5899658203, 14.274399757385, "St. Mary St.", 50000}, [1251] = {"UCDhousing", 15, 2368.5300292969, 1642.5899658203, 14.273200035095, "St. Mary St.", 50000}, [1252] = {"UCDhousing", 15, 2373.5, 1642.5899658203, 14.272000312805, "St. Mary St.", 100}, [1253] = {"UCDhousing", 15, 2372.9399414063, 1622.8900146484, 10.8125, "St. Mary St.", 50000}, [1254] = {"UCDhousing", 15, 2366.3200683594, 1622.8900146484, 10.8125, "St. Mary St.", 50000}, [1255] = {"UCDhousing", 15, 2359.5100097656, 1622.8900146484, 10.8125, "St. Mary St.", 50000}, [1256] = {"UCDhousing", 15, 2352.9299316406, 1622.8900146484, 10.820300102234, "St. Mary St.", 50000}, [1257] = {"UCDhousing", 15, 2346.25, 1622.8900146484, 10.820300102234, "St. Mary St.", 50000}, [1258] = {"UCDhousing", 15, 2339.5900878906, 1622.8900146484, 10.820300102234, "St. Mary St.", 50000}, [1259] = {"UCDhousing", 15, 2337.0400390625, 1627.7099609375, 10.820300102234, "St. Mary St.", 50000}, [1260] = {"UCDhousing", 15, 2337.0400390625, 1634.4200439453, 10.820300102234, "St. Mary St.", 50000}, [1261] = {"UCDhousing", 15, 2337.0400390625, 1641.0699462891, 10.820300102234, "St. Mary St.", 50000}, [1262] = {"UCDhousing", 15, 2337.0400390625, 1647.6700439453, 10.820300102234, "St. Mary St.", 50000}, [1263] = {"UCDhousing", 15, 2337.0400390625, 1654.3000488281, 10.820300102234, "St. Mary St.", 50000}, [1264] = {"UCDhousing", 15, 2337.0400390625, 1661.0699462891, 10.820300102234, "St. Mary St.", 50000}, [1265] = {"UCDhousing", 15, 2337.0400390625, 1667.7199707031, 10.820300102234, "St. Mary St.", 50000}, [1266] = {"UCDhousing", 15, 2337.0400390625, 1674.4000244141, 10.820300102234, "St. Mary St.", 50000}, [1267] = {"UCDhousing", 15, 2337.0400390625, 1681.0100097656, 10.820300102234, "St. Mary St.", 50000}, [1268] = {"UCDhousing", 15, 2337.0400390625, 1687.6899414063, 10.820300102234, "St. Mary St.", 50000}, [1269] = {"UCDhousing", 15, 2337.0400390625, 1694.4200439453, 10.820300102234, "St. Mary St.", 50000}, [1270] = {"UCDhousing", 15, 2337.0400390625, 1701.0600585938, 10.820300102234, "St. Mary St.", 50000}, [1271] = {"UCDhousing", 15, 2342.0200195313, 1703.5999755859, 10.820300102234, "St. Mary St.", 50000}, [1272] = {"UCDhousing", 15, 2349.0200195313, 1703.5999755859, 10.820300102234, "St. Mary St.", 50000}, [1273] = {"UCDhousing", 15, 2356.1398925781, 1703.5999755859, 10.820300102234, "St. Mary St.", 50000}, [1274] = {"UCDhousing", 15, 2363.1298828125, 1703.5999755859, 10.820300102234, "St. Mary St.", 50000}, [1275] = {"UCDhousing", 15, 2370.1599121094, 1703.5999755859, 10.820300102234, "St. Mary St.", 50000}, [1276] = {"UCDhousing", 15, 2377.1101074219, 1703.5999755859, 10.820300102234, "St. Mary St.", 50000}, [1277] = {"UCDhousing", 15, 2384.0500488281, 1703.5999755859, 10.820300102234, "St. Mary St.", 50000}, [1278] = {"UCDhousing", 15, 2391.1298828125, 1703.5999755859, 10.820300102234, "St. Mary St.", 50000}, [1279] = {"UCDhousing", 15, 2398.2099609375, 1703.5999755859, 10.820300102234, "St. Mary St.", 50000}, [1280] = {"UCDhousing", 15, 2405.1499023438, 1703.5999755859, 10.820300102234, "St. Mary St.", 50000}, [1281] = {"UCDhousing", 15, 2824.0400390625, 2268.6899414063, 14.661499977112, "Peach Ave.", 50000}, [1282] = {"UCDhousing", 15, 2816.4899902344, 2268.7399902344, 14.661499977112, "Peach Ave.", 50000}, [1283] = {"UCDhousing", 15, 2794.2900390625, 2268.4899902344, 14.661499977112, "Peach Ave.", 50000}, [1284] = {"UCDhousing", 15, 2816.4899902344, 2274.8601074219, 14.661499977112, "Peach Ave.", 50000}, [1285] = {"UCDhousing", 15, 2824.0400390625, 2274.8999023438, 14.661499977112, "Peach Ave.", 50000}, [1286] = {"UCDhousing", 15, 2824.0400390625, 2274.9099121094, 10.820300102234, "Peach Ave.", 50000}, [1287] = {"UCDhousing", 15, 2794.2600097656, 2260.9399414063, 10.820300102234, "Peach Ave.", 50000}, [1288] = {"UCDhousing", 15, 2816.4899902344, 2274.9499511719, 10.820300102234, "Peach Ave.", 50000}, [1289] = {"UCDhousing", 15, 2816.4899902344, 2268.8100585938, 10.820300102234, "Peach Ave.", 50000}, [1290] = {"UCDhousing", 15, 2794.330078125, 2268.4899902344, 10.820300102234, "Peach Ave.", 50000}, [1291] = {"UCDhousing", 15, 2824.0400390625, 2268.6599121094, 10.820300102234, "Peach Ave.", 50000}, [1292] = {"UCDhousing", 15, 2787.9899902344, 2268.4899902344, 10.820300102234, "Peach Ave.", 50000}, [1293] = {"UCDhousing", 15, 2794.3000488281, 2229.4799804688, 14.661499977112, "Peach Ave.", 50000}, [1294] = {"UCDhousing", 15, 2787.9899902344, 2260.9399414063, 10.820300102234, "Peach Ave.", 50000}, [1295] = {"UCDhousing", 15, 2794.2399902344, 2221.9299316406, 14.661499977112, "Peach Ave.", 50000}, [1296] = {"UCDhousing", 15, 2788.0900878906, 2260.9399414063, 14.661499977112, "Peach Ave.", 50000}, [1297] = {"UCDhousing", 15, 2788.0500488281, 2229.4799804688, 14.661499977112, "Peach Ave.", 50000}, [1298] = {"UCDhousing", 15, 2787.9099121094, 2221.9299316406, 14.661499977112, "Peach Ave.", 50000}, [1299] = {"UCDhousing", 15, 2788.0100097656, 2229.4699707031, 10.820300102234, "Peach Ave.", 50000}, [1300] = {"UCDhousing", 15, 2787.9599609375, 2221.919921875, 10.820300102234, "Peach Ave.", 50000}, [1301] = {"UCDhousing", 15, 2794.2399902344, 2221.9299316406, 10.820300102234, "Peach Ave.", 50000}, [1302] = {"UCDhousing", 15, 2794.3400878906, 2229.4799804688, 10.820300102234, "Peach Ave.", 50000}, [1303] = {"UCDhousing", 15, 2818.5300292969, 2140.919921875, 14.661499977112, "Peach Ave.", 50000}, [1304] = {"UCDhousing", 15, 2826.080078125, 2140.7299804688, 14.661499977112, "Peach Ave.", 50000}, [1305] = {"UCDhousing", 15, 2826.080078125, 2134.6201171875, 14.661499977112, "Peach Ave.", 50000}, [1306] = {"UCDhousing", 15, 2818.5300292969, 2134.419921875, 14.661499977112, "Peach Ave.", 50000}, [1307] = {"UCDhousing", 15, 2818.5300292969, 2134.5500488281, 10.820300102234, "Peach Ave.", 50000}, [1308] = {"UCDhousing", 15, 2826.080078125, 2134.7099609375, 10.820300102234, "Peach Ave.", 50000}, [1309] = {"UCDhousing", 15, 2826.080078125, 2140.9099121094, 10.820300102234, "Peach Ave.", 50000}, [1310] = {"UCDhousing", 15, 2818.5300292969, 2141.0600585938, 10.820300102234, "Peach Ave.", 50000}, [1311] = {"UCDhousing", 18, 2617.7600097656, 2019.2099609375, 10.812899589539, "Yellow Ave.", 48000}, [1312] = {"UCDhousing", 18, 2622.3601074219, 2029.2299804688, 10.820300102234, "Yellow Ave.", 40000}, [1313] = {"UCDhousing", 18, 2625.080078125, 2019.2099609375, 10.820300102234, "Yellow Ave.", 48000}, [1314] = {"UCDhousing", 18, 2629.8000488281, 2029.2299804688, 10.820300102234, "Yellow Ave.", 40000}, [1315] = {"UCDhousing", 18, 2631.5100097656, 2029.2299804688, 10.820300102234, "Yellow Ave.", 40000}, [1316] = {"UCDhousing", 18, 2626.8999023438, 2019.2099609375, 10.820300102234, "Yellow Ave.", 48000}, [1317] = {"UCDhousing", 18, 2638.9599609375, 2029.2299804688, 10.820300102234, "Yellow Ave.", 40000}, [1318] = {"UCDhousing", 18, 2640.8601074219, 2029.2299804688, 10.820300102234, "Yellow Ave.", 40000}, [1319] = {"UCDhousing", 18, 2634.4299316406, 2019.1199951172, 10.820300102234, "Yellow Ave.", 48000}, [1320] = {"UCDhousing", 18, 2636.2600097656, 2019.2099609375, 10.820300102234, "Yellow Ave.", 48000}, [1321] = {"UCDhousing", 18, 2648.25, 2029.2299804688, 10.820300102234, "Yellow Ave.", 40000}, [1322] = {"UCDhousing", 18, 2650.3400878906, 2029.2299804688, 10.812999725342, "Yellow Ave.", 40000}, [1323] = {"UCDhousing", 18, 2643.5500488281, 2019.2099609375, 10.816300392151, "Yellow Ave.", 48000}, [1324] = {"UCDhousing", 18, 2645.6599121094, 2019.2099609375, 10.816900253296, "Yellow Ave.", 48000}, [1325] = {"UCDhousing", 18, 2652.8100585938, 2019.2099609375, 10.818599700928, "Yellow Ave.", 40000}, [1326] = {"UCDhousing", 18, 2623.6599121094, 2046.8299560547, 10.812999725342, "Yellow Ave.", 48000}, [1327] = {"UCDhousing", 18, 2623.6499023438, 2056.0100097656, 10.812999725342, "Yellow Ave.", 40000}, [1328] = {"UCDhousing", 18, 2623.6599121094, 2048.6799316406, 10.812999725342, "Yellow Ave.", 48000}, [1329] = {"UCDhousing", 18, 2623.6499023438, 2058.1201171875, 10.812999725342, "Yellow Ave.", 40000}, [1330] = {"UCDhousing", 18, 2623.6499023438, 2074.8200683594, 10.812999725342, "Yellow Ave.", 40000}, [1331] = {"UCDhousing", 18, 2623.6599121094, 2074.8798828125, 14.116100311279, "Yellow Ave.", 40000}, [1332] = {"UCDhousing", 18, 2623.6499023438, 2067.3701171875, 14.116100311279, "Yellow Ave.", 40000}, [1333] = {"UCDhousing", 18, 2623.6499023438, 2065.3200683594, 14.116100311279, "Yellow Ave.", 40000}, [1334] = {"UCDhousing", 18, 2623.6499023438, 2058.1599121094, 14.116100311279, "Yellow Ave.", 40000}, [1335] = {"UCDhousing", 18, 2613.6298828125, 2072.080078125, 14.116100311279, "Yellow Ave.", 48000}, [1336] = {"UCDhousing", 18, 2623.6499023438, 2056.2399902344, 14.116100311279, "Yellow Ave.", 40000}, [1337] = {"UCDhousing", 18, 2613.6298828125, 2070.0200195313, 14.116100311279, "Yellow Ave.", 48000}, [1338] = {"UCDhousing", 18, 2623.6499023438, 2048.9099121094, 14.116100311279, "Yellow Ave.", 40000}, [1339] = {"UCDhousing", 18, 2623.6499023438, 2047.0200195313, 14.116100311279, "Yellow Ave.", 40000}, [1340] = {"UCDhousing", 18, 2613.6398925781, 2062.8000488281, 14.116100311279, "Yellow Ave.", 48000}, [1341] = {"UCDhousing", 18, 2623.6499023438, 2039.5999755859, 14.116100311279, "Yellow Ave.", 40000}, [1342] = {"UCDhousing", 18, 2613.6398925781, 2061.0400390625, 14.116100311279, "Yellow Ave.", 48000}, [1343] = {"UCDhousing", 18, 2613.6398925781, 2053.3701171875, 14.116100311279, "Yellow Ave.", 48000}, [1344] = {"UCDhousing", 18, 2613.6398925781, 2044, 14.116100311279, "Yellow Ave.", 40000}, [1345] = {"UCDhousing", 18, 2613.6398925781, 2051.6799316406, 14.116100311279, "Yellow Ave.", 48000}, [1346] = {"UCDhousing", 18, 2620.6899414063, 2029.2299804688, 14.116100311279, "Yellow Ave.", 48000}, [1347] = {"UCDhousing", 18, 2617.7600097656, 2019.2099609375, 14.116100311279, "Yellow Ave.", 40000}, [1348] = {"UCDhousing", 18, 2622.2299804688, 2029.2299804688, 14.116100311279, "Yellow Ave.", 48000}, [1349] = {"UCDhousing", 18, 2625.0200195313, 2019.2099609375, 14.116100311279, "Yellow Ave.", 40000}, [1350] = {"UCDhousing", 18, 2627.1999511719, 2019.2099609375, 14.116100311279, "Yellow Ave.", 40000}, [1351] = {"UCDhousing", 18, 2629.7199707031, 2029.2299804688, 14.116100311279, "Yellow Ave.", 48000}, [1352] = {"UCDhousing", 18, 2632.0600585938, 2029.2299804688, 14.116100311279, "Yellow Ave.", 48000}, [1353] = {"UCDhousing", 18, 2634.1799316406, 2019.2099609375, 14.116100311279, "Yellow Ave.", 40000}, [1354] = {"UCDhousing", 18, 2636.330078125, 2019.2099609375, 14.116100311279, "Yellow Ave.", 40000}, [1355] = {"UCDhousing", 18, 2639.1298828125, 2029.2299804688, 14.116100311279, "Yellow Ave.", 48000}, [1356] = {"UCDhousing", 18, 2643.7099609375, 2019.2099609375, 14.116100311279, "Yellow Ave.", 40000}, [1357] = {"UCDhousing", 18, 2640.9099121094, 2029.2299804688, 14.116100311279, "Yellow Ave.", 48000}, [1358] = {"UCDhousing", 18, 2645.7700195313, 2019.2099609375, 14.116100311279, "Yellow Ave.", 40000}, [1359] = {"UCDhousing", 18, 2648.0900878906, 2029.4000244141, 14.116100311279, "Yellow Ave.", 48000}, [1360] = {"UCDhousing", 18, 2653.1799316406, 2019.2099609375, 14.116100311279, "Yellow Ave.", 40000}, [1361] = {"UCDhousing", 18, 2650.25, 2029.2299804688, 14.116100311279, "Yellow Ave.", 48000}, [1362] = {"UCDhousing", 18, 2623.9099121094, 1978.8399658203, 10.820300102234, "Yellow Ave.", 40000}, [1363] = {"UCDhousing", 18, 2631.1999511719, 1978.8399658203, 10.820300102234, "Yellow Ave.", 40000}, [1364] = {"UCDhousing", 18, 2633.1000976563, 1978.8399658203, 10.820300102234, "Yellow Ave.", 40000}, [1365] = {"UCDhousing", 18, 2640.4799804688, 1978.8399658203, 10.820300102234, "Yellow Ave.", 40000}, [1366] = {"UCDhousing", 18, 2642.419921875, 1978.8399658203, 10.820300102234, "Yellow Ave.", 40000}, [1367] = {"UCDhousing", 18, 2613.6398925781, 2042.2199707031, 10.820300102234, "Yellow Ave.", 48000}, [1368] = {"UCDhousing", 18, 2649.8100585938, 1978.8399658203, 10.820300102234, "Yellow Ave.", 40000}, [1369] = {"UCDhousing", 18, 2651.6599121094, 1978.8399658203, 10.820300102234, "Yellow Ave.", 40000}, [1370] = {"UCDhousing", 18, 2613.6398925781, 2044.1800537109, 10.820300102234, "Yellow Ave.", 48000}, [1371] = {"UCDhousing", 18, 2659.1799316406, 1978.8399658203, 10.820199966431, "Yellow Ave.", 40000}, [1372] = {"UCDhousing", 18, 2613.6298828125, 2051.580078125, 10.820300102234, "Yellow Ave.", 48000}, [1373] = {"UCDhousing", 18, 2659.2399902344, 1978.8399658203, 14.116100311279, "Yellow Ave.", 40000}, [1374] = {"UCDhousing", 18, 2651.75, 1978.8399658203, 14.116100311279, "Yellow Ave.", 40000}, [1375] = {"UCDhousing", 18, 2613.6398925781, 2053.6201171875, 10.812999725342, "Yellow Ave.", 48000}, [1376] = {"UCDhousing", 18, 2649.830078125, 1978.8399658203, 14.116100311279, "Yellow Ave.", 40000}, [1377] = {"UCDhousing", 18, 2613.6398925781, 2061.0900878906, 10.812999725342, "Yellow Ave.", 48000}, [1378] = {"UCDhousing", 18, 2613.6398925781, 2062.6398925781, 10.812999725342, "Yellow Ave.", 48000}, [1379] = {"UCDhousing", 18, 2642.5100097656, 1978.8399658203, 14.116100311279, "Yellow Ave.", 40000}, [1380] = {"UCDhousing", 18, 2640.5, 1978.8399658203, 14.116100311279, "Yellow Ave.", 40000}, [1381] = {"UCDhousing", 18, 2613.6398925781, 2070.1899414063, 10.820300102234, "Yellow Ave.", 48000}, [1382] = {"UCDhousing", 18, 2633.1398925781, 1978.8399658203, 14.116100311279, "Yellow Ave.", 40000}, [1383] = {"UCDhousing", 18, 2613.6398925781, 2072.1101074219, 10.820300102234, "Yellow Ave.", 48000}, [1384] = {"UCDhousing", 18, 2631.3200683594, 1978.8399658203, 14.116100311279, "Yellow Ave.", 40000}, [1385] = {"UCDhousing", 18, 2623.7299804688, 1978.8399658203, 14.116100311279, "Yellow Ave.", 40000}, [1386] = {"UCDhousing", 18, 2626.5400390625, 1968.8199462891, 14.116100311279, "Yellow Ave.", 40000}, [1387] = {"UCDhousing", 18, 2628.5500488281, 1968.8199462891, 14.116100311279, "Yellow Ave.", 40000}, [1388] = {"UCDhousing", 18, 2635.7600097656, 1968.8199462891, 14.116100311279, "Yellow Ave.", 40000}, [1389] = {"UCDhousing", 18, 2637.8500976563, 1968.8199462891, 14.116100311279, "Yellow Ave.", 40000}, [1390] = {"UCDhousing", 18, 2645.419921875, 1968.8299560547, 14.116100311279, "Yellow Ave.", 40000}, [1391] = {"UCDhousing", 18, 2647.1799316406, 1968.8299560547, 14.116100311279, "Yellow Ave.", 40000}, [1392] = {"UCDhousing", 18, 2654.4099121094, 1968.8499755859, 14.116100311279, "Yellow Ave.", 40000}, [1393] = {"UCDhousing", 18, 2656.25, 1968.8199462891, 14.116100311279, "Yellow Ave.", 48000}, [1394] = {"UCDhousing", 18, 2656.669921875, 1968.8199462891, 10.820300102234, "Yellow Ave.", 40000}, [1395] = {"UCDhousing", 18, 2654.580078125, 1968.8199462891, 10.820300102234, "Yellow Ave.", 40000}, [1396] = {"UCDhousing", 18, 2647.0700683594, 1968.8299560547, 10.820300102234, "Yellow Ave.", 40000}, [1397] = {"UCDhousing", 18, 2645.1398925781, 1968.8299560547, 10.820300102234, "Yellow Ave.", 40000}, [1398] = {"UCDhousing", 18, 2637.7700195313, 1968.8199462891, 10.820300102234, "Yellow Ave.", 40000}, [1399] = {"UCDhousing", 18, 2635.8000488281, 1968.8199462891, 10.820300102234, "Yellow Ave.", 40000}, [1400] = {"UCDhousing", 18, 2628.5100097656, 1968.8299560547, 10.820300102234, "Yellow Ave.", 40000}, [1401] = {"UCDhousing", 18, 2626.6000976563, 1968.8299560547, 10.820300102234, "Yellow Ave.", 40000}, [1402] = {"UCDhousing", 18, 2623.6499023438, 2065.5400390625, 10.820300102234, "Yellow Ave.", 40000}, [1403] = {"UCDhousing", 18, 2623.6499023438, 2039.5200195313, 10.820300102234, "Yellow Ave.", 40000}, [1404] = {"UCDhousing", 18, 2623.6599121094, 2067.3000488281, 10.820300102234, "Yellow Ave.", 40000}, [1405] = {"UCDhousing", 18, 2620.3100585938, 2029.2299804688, 10.820300102234, "Yellow Ave.", 40000}, [1406] = {"UCDhousing", 18, 2613.6398925781, 2042.1999511719, 14.116100311279, "Yellow Ave.", 40000}, [1407] = {"UCDhousing", 18, 2610.330078125, 2162.9299316406, 10.820300102234, "Garden Ave.", 40000}, [1408] = {"UCDhousing", 18, 2610.330078125, 2160.9399414063, 10.820300102234, "Garden Ave.", 40000}, [1409] = {"UCDhousing", 18, 2610.2700195313, 2162.9599609375, 14.116100311279, "Garden Ave.", 40000}, [1410] = {"UCDhousing", 18, 2610.330078125, 2153.580078125, 10.820300102234, "Garden Ave.", 40000}, [1411] = {"UCDhousing", 18, 2610.330078125, 2161.0300292969, 14.116100311279, "Garden Ave.", 40000}, [1412] = {"UCDhousing", 18, 2610.330078125, 2151.6599121094, 10.820300102234, "Garden Ave.", 40000}, [1413] = {"UCDhousing", 18, 2610.330078125, 2144.2299804688, 10.820300102234, "Garden Ave.", 40000}, [1414] = {"UCDhousing", 18, 2610.330078125, 2153.6201171875, 14.116100311279, "Garden Ave.", 40000}, [1415] = {"UCDhousing", 18, 2610.330078125, 2142.3200683594, 10.820300102234, "Garden Ave.", 40000}, [1416] = {"UCDhousing", 18, 2610.330078125, 2151.7099609375, 14.116100311279, "Garden Ave.", 40000}, [1417] = {"UCDhousing", 18, 2610.330078125, 2134.919921875, 10.820300102234, "Garden Ave.", 40000}, [1418] = {"UCDhousing", 18, 2610.330078125, 2144.2900390625, 14.116100311279, "Garden Ave.", 40000}, [1419] = {"UCDhousing", 18, 2610.330078125, 2142.3898925781, 14.116100311279, "Garden Ave.", 40000}, [1420] = {"UCDhousing", 18, 2610.330078125, 2134.9299316406, 14.116100311279, "Garden Ave.", 40000}, [1421] = {"UCDhousing", 18, 2620.3500976563, 2147.0700683594, 10.820300102234, "Garden Ave.", 40000}, [1422] = {"UCDhousing", 18, 2610.330078125, 2133.1398925781, 14.116100311279, "Garden Ave.", 40000}, [1423] = {"UCDhousing", 18, 2620.3500976563, 2148.9799804688, 10.820300102234, "Garden Ave.", 40000}, [1424] = {"UCDhousing", 18, 2620.3601074219, 2130.2800292969, 14.116100311279, "Garden Ave.", 40000}, [1425] = {"UCDhousing", 18, 2620.3500976563, 2156.4499511719, 10.820300102234, "Garden Ave.", 40000}, [1426] = {"UCDhousing", 18, 2620.3500976563, 2158.25, 10.820300102234, "Garden Ave.", 40000}, [1427] = {"UCDhousing", 18, 2620.3500976563, 2137.7099609375, 14.116100311279, "Garden Ave.", 40000}, [1428] = {"UCDhousing", 18, 2620.3500976563, 2165.669921875, 10.812999725342, "Garden Ave.", 40000}, [1429] = {"UCDhousing", 18, 2620.3500976563, 2139.6101074219, 14.116100311279, "Garden Ave.", 40000}, [1430] = {"UCDhousing", 18, 2620.3500976563, 2165.6298828125, 14.116100311279, "Garden Ave.", 40000}, [1431] = {"UCDhousing", 18, 2620.3601074219, 2146.919921875, 14.116100311279, "Garden Ave.", 40000}, [1432] = {"UCDhousing", 18, 2620.3500976563, 2158.25, 14.116100311279, "Garden Ave.", 40000}, [1433] = {"UCDhousing", 18, 2620.3500976563, 2148.9399414063, 14.116100311279, "Garden Ave.", 40000}, [1434] = {"UCDhousing", 18, 2620.3500976563, 2156.3200683594, 14.116100311279, "Garden Ave.", 40000}, [1435] = {"UCDhousing", 18, 2611.2299804688, 2185.5400390625, 10.812999725342, "Garden Ave.", 40000}, [1436] = {"UCDhousing", 18, 2613.1101074219, 2185.5400390625, 10.812999725342, "Garden Ave.", 40000}, [1437] = {"UCDhousing", 18, 2620.5100097656, 2185.5400390625, 10.820300102234, "Garden Ave.", 40000}, [1438] = {"UCDhousing", 18, 2620.3898925781, 2185.5400390625, 14.116100311279, "Garden Ave.", 40000}, [1439] = {"UCDhousing", 18, 2622.4799804688, 2185.5400390625, 10.820300102234, "Garden Ave.", 40000}, [1440] = {"UCDhousing", 18, 2622.330078125, 2185.5400390625, 14.116100311279, "Garden Ave.", 40000}, [1441] = {"UCDhousing", 18, 2629.8400878906, 2185.5400390625, 10.820300102234, "Garden Ave.", 40000}, [1442] = {"UCDhousing", 18, 2647.1101074219, 2233.0900878906, 10.7515001297, "Garden Ave.", 40000}, [1443] = {"UCDhousing", 18, 2631.8200683594, 2185.5400390625, 10.820300102234, "Garden Ave.", 40000}, [1444] = {"UCDhousing", 18, 2629.8400878906, 2185.5400390625, 14.116100311279, "Garden Ave.", 40000}, [1445] = {"UCDhousing", 18, 2631.5500488281, 2185.5400390625, 14.116100311279, "Garden Ave.", 40000}, [1446] = {"UCDhousing", 18, 2639.2299804688, 2185.5400390625, 10.820300102234, "Garden Ave.", 40000}, [1447] = {"UCDhousing", 18, 2647.1101074219, 2240.419921875, 10.7515001297, "Garden Ave.", 40000}, [1448] = {"UCDhousing", 18, 2641.0600585938, 2185.5400390625, 10.820300102234, "Garden Ave.", 40000}, [1449] = {"UCDhousing", 18, 2647.1101074219, 2242.2900390625, 10.7515001297, "Garden Ave.", 40000}, [1450] = {"UCDhousing", 18, 2639.169921875, 2185.5400390625, 14.116100311279, "Garden Ave.", 40000}, [1451] = {"UCDhousing", 18, 2643.7099609375, 2195.5600585938, 10.820300102234, "Garden Ave.", 40000}, [1452] = {"UCDhousing", 18, 2647.1101074219, 2249.8500976563, 10.790200233459, "Garden Ave.", 40000}, [1453] = {"UCDhousing", 18, 2647.1101074219, 2251.7700195313, 10.801300048828, "Garden Ave.", 40000}, [1454] = {"UCDhousing", 18, 2636.3701171875, 2195.5600585938, 10.820300102234, "Garden Ave.", 40000}, [1455] = {"UCDhousing", 18, 2640.9499511719, 2185.5300292969, 14.116100311279, "Garden Ave.", 40000}, [1456] = {"UCDhousing", 18, 2647.1101074219, 2259.1201171875, 10.796999931335, "Garden Ave.", 40000}, [1457] = {"UCDhousing", 18, 2634.419921875, 2195.5600585938, 10.820300102234, "Garden Ave.", 40000}, [1458] = {"UCDhousing", 18, 2643.8701171875, 2195.5700683594, 14.116100311279, "Garden Ave.", 40000}, [1459] = {"UCDhousing", 18, 2647.1101074219, 2260.9499511719, 10.806900024414, "Garden Ave.", 40000}, [1460] = {"UCDhousing", 18, 2626.9799804688, 2195.5600585938, 10.820300102234, "Garden Ave.", 40000}, [1461] = {"UCDhousing", 18, 2636.330078125, 2195.5600585938, 14.116100311279, "Garden Ave.", 40000}, [1462] = {"UCDhousing", 18, 2625.0600585938, 2195.5600585938, 10.820300102234, "Garden Ave.", 40000}, [1463] = {"UCDhousing", 18, 2647.1101074219, 2268.5, 14.116100311279, "Garden Ave.", 40000}, [1464] = {"UCDhousing", 18, 2634.5100097656, 2195.5700683594, 14.116100311279, "Garden Ave.", 40000}, [1465] = {"UCDhousing", 18, 2617.7299804688, 2195.5600585938, 10.820300102234, "Garden Ave.", 40000}, [1466] = {"UCDhousing", 18, 2627.0700683594, 2195.5600585938, 14.116100311279, "Garden Ave.", 40000}, [1467] = {"UCDhousing", 18, 2647.1101074219, 2260.9699707031, 14.116100311279, "Garden Ave.", 40000}, [1468] = {"UCDhousing", 18, 2615.7900390625, 2195.5600585938, 10.812999725342, "Garden Ave.", 40000}, [1469] = {"UCDhousing", 18, 2647.1101074219, 2259.0900878906, 14.116100311279, "Garden Ave.", 40000}, [1470] = {"UCDhousing", 18, 2625.0900878906, 2195.5600585938, 14.116100311279, "Garden Ave.", 40000}, [1471] = {"UCDhousing", 18, 2647.1101074219, 2251.6899414063, 14.116100311279, "Garden Ave.", 40000}, [1472] = {"UCDhousing", 18, 2608.3798828125, 2195.5600585938, 10.812999725342, "Garden Ave.", 40000}, [1473] = {"UCDhousing", 18, 2647.1101074219, 2249.8100585938, 14.116100311279, "Garden Ave.", 40000}, [1474] = {"UCDhousing", 18, 2608.4599609375, 2195.5600585938, 14.116100311279, "Garden Ave.", 40000}, [1475] = {"UCDhousing", 18, 2647.1101074219, 2242.3601074219, 14.116100311279, "Garden Ave.", 40000}, [1476] = {"UCDhousing", 18, 2617.6999511719, 2195.5700683594, 14.116100311279, "Garden Ave.", 40000}, [1477] = {"UCDhousing", 18, 2647.1101074219, 2240.3999023438, 14.116100311279, "Garden Ave.", 40000}, [1478] = {"UCDhousing", 18, 2615.7900390625, 2195.5500488281, 14.116100311279, "Garden Ave.", 40000}, [1479] = {"UCDhousing", 18, 2647.1101074219, 2233.0500488281, 14.116100311279, "Garden Ave.", 40000}, [1480] = {"UCDhousing", 18, 2601.6298828125, 2183.3798828125, 10.812999725342, "Garden Ave.", 40000}, [1481] = {"UCDhousing", 18, 2601.6298828125, 2185.3400878906, 10.812999725342, "Garden Ave.", 40000}, [1482] = {"UCDhousing", 18, 2601.6298828125, 2192.7800292969, 10.812999725342, "Garden Ave.", 40000}, [1483] = {"UCDhousing", 18, 2657.1799316406, 2235.8500976563, 14.116100311279, "Garden Ave.", 40000}, [1484] = {"UCDhousing", 18, 2601.6298828125, 2194.6899414063, 10.812999725342, "Garden Ave.", 40000}, [1485] = {"UCDhousing", 18, 2657.1298828125, 2237.7700195313, 14.116100311279, "Garden Ave.", 40000}, [1486] = {"UCDhousing", 18, 2601.6398925781, 2202.0300292969, 10.826600074768, "Garden Ave.", 40000}, [1487] = {"UCDhousing", 18, 2657.1298828125, 2245.2399902344, 14.116100311279, "Garden Ave.", 40000}, [1488] = {"UCDhousing", 18, 2601.6398925781, 2202.0900878906, 14.116100311279, "Garden Ave.", 40000}, [1489] = {"UCDhousing", 18, 2601.6398925781, 2203.9799804688, 10.820300102234, "Garden Ave.", 40000}, [1490] = {"UCDhousing", 18, 2657.1298828125, 2247.0900878906, 14.116100311279, "Garden Ave.", 40000}, [1491] = {"UCDhousing", 18, 2601.6499023438, 2203.9599609375, 14.116100311279, "Garden Ave.", 40000}, [1492] = {"UCDhousing", 18, 2601.6298828125, 2211.3500976563, 10.820300102234, "Garden Ave.", 40000}, [1493] = {"UCDhousing", 18, 2657.1298828125, 2254.5100097656, 14.116100311279, "Garden Ave.", 40000}, [1494] = {"UCDhousing", 18, 2601.6398925781, 2211.3701171875, 14.116100311279, "Garden Ave.", 40000}, [1495] = {"UCDhousing", 18, 2601.6298828125, 2213.3000488281, 10.820300102234, "Garden Ave.", 40000}, [1496] = {"UCDhousing", 18, 2657.1298828125, 2256.4099121094, 14.116100311279, "Garden Ave.", 40000}, [1497] = {"UCDhousing", 18, 2601.6398925781, 2213.1499023438, 14.116100311279, "Garden Ave.", 40000}, [1498] = {"UCDhousing", 18, 2591.6201171875, 2215.9099121094, 10.820300102234, "Garden Ave.", 40000}, [1499] = {"UCDhousing", 18, 2657.1298828125, 2263.8601074219, 14.116100311279, "Garden Ave.", 40000}, [1500] = {"UCDhousing", 18, 2601.6398925781, 2194.6298828125, 14.116100311279, "Garden Ave.", 40000}, [1501] = {"UCDhousing", 18, 2657.1298828125, 2265.7299804688, 14.116100311279, "Garden Ave.", 40000}, [1502] = {"UCDhousing", 18, 2591.6201171875, 2208.5200195313, 10.820300102234, "Garden Ave.", 40000}, [1503] = {"UCDhousing", 18, 2601.6499023438, 2192.669921875, 14.116100311279, "Garden Ave.", 40000}, [1504] = {"UCDhousing", 18, 2591.6201171875, 2206.6298828125, 10.820300102234, "Garden Ave.", 40000}, [1505] = {"UCDhousing", 18, 2657.1298828125, 2265.6799316406, 10.820300102234, "Garden Ave.", 40000}, [1506] = {"UCDhousing", 18, 2601.6398925781, 2185.2399902344, 14.116100311279, "Garden Ave.", 40000}, [1507] = {"UCDhousing", 18, 2591.6201171875, 2199.2299804688, 10.820300102234, "Garden Ave.", 40000}, [1508] = {"UCDhousing", 18, 2601.6398925781, 2183.3601074219, 14.116100311279, "Garden Ave.", 40000}, [1509] = {"UCDhousing", 18, 2657.1298828125, 2263.7900390625, 10.820300102234, "Garden Ave.", 40000}, [1510] = {"UCDhousing", 18, 2591.6201171875, 2197.330078125, 10.820300102234, "Garden Ave.", 40000}, [1511] = {"UCDhousing", 18, 2657.1298828125, 2256.4399414063, 10.782699584961, "Garden Ave.", 40000}, [1512] = {"UCDhousing", 18, 2591.6101074219, 2180.6000976563, 14.116100311279, "Garden Ave.", 40000}, [1513] = {"UCDhousing", 18, 2657.1298828125, 2254.4899902344, 10.772100448608, "Garden Ave.", 40000}, [1514] = {"UCDhousing", 18, 2591.6201171875, 2189.9599609375, 10.820300102234, "Garden Ave.", 40000}, [1515] = {"UCDhousing", 18, 2591.6101074219, 2188.0900878906, 14.116100311279, "Garden Ave.", 40000}, [1516] = {"UCDhousing", 18, 2657.1298828125, 2247.0500488281, 10.72439956665, "Garden Ave.", 40000}, [1517] = {"UCDhousing", 18, 2591.6201171875, 2188.0100097656, 10.825099945068, "Garden Ave.", 40000}, [1518] = {"UCDhousing", 18, 2657.1298828125, 2245.1201171875, 10.71399974823, "Garden Ave.", 40000}, [1519] = {"UCDhousing", 18, 2591.6201171875, 2189.9599609375, 14.116100311279, "Garden Ave.", 40000}, [1520] = {"UCDhousing", 18, 2591.6201171875, 2180.5700683594, 10.812999725342, "Garden Ave.", 40000}, [1521] = {"UCDhousing", 18, 2657.1298828125, 2237.7700195313, 10.781000137329, "Garden Ave.", 40000}, [1522] = {"UCDhousing", 18, 2591.6101074219, 2197.3798828125, 14.116100311279, "Garden Ave.", 40000}, [1523] = {"UCDhousing", 18, 2657.1298828125, 2235.8000488281, 10.789999961853, "Garden Ave.", 40000}, [1524] = {"UCDhousing", 18, 2591.6201171875, 2199.3000488281, 14.116100311279, "Garden Ave.", 40000}, [1525] = {"UCDhousing", 18, 2591.6201171875, 2206.6398925781, 14.116100311279, "Garden Ave.", 40000}, [1526] = {"UCDhousing", 18, 2577.0300292969, 2203.0600585938, 10.820300102234, "Garden Ave.", 40000}, [1527] = {"UCDhousing", 18, 2575.0100097656, 2203.0600585938, 10.820300102234, "Garden Ave.", 40000}, [1528] = {"UCDhousing", 18, 2591.6201171875, 2208.6298828125, 14.116100311279, "Garden Ave.", 40000}, [1529] = {"UCDhousing", 18, 2567.6799316406, 2203.0600585938, 10.820300102234, "Garden Ave.", 40000}, [1530] = {"UCDhousing", 18, 2591.6201171875, 2216.0600585938, 14.116100311279, "Garden Ave.", 40000}, [1531] = {"UCDhousing", 18, 2565.7399902344, 2203.0600585938, 10.820300102234, "Garden Ave.", 35000}, [1532] = {"UCDhousing", 18, 2579.6298828125, 2213.0700683594, 10.820300102234, "Garden Ave.", 40000}, [1533] = {"UCDhousing", 18, 2558.3100585938, 2203.0600585938, 10.820300102234, "Garden Ave.", 20000}, [1534] = {"UCDhousing", 18, 2572.1298828125, 2213.0700683594, 10.820300102234, "Garden Ave.", 40000}, [1535] = {"UCDhousing", 18, 2570.1899414063, 2213.0700683594, 10.820300102234, "Garden Ave.", 40000}, [1536] = {"UCDhousing", 18, 2579.6599121094, 2213.1499023438, 14.116100311279, "Garden Ave.", 40000}, [1537] = {"UCDhousing", 18, 2556.419921875, 2203.0600585938, 10.820300102234, "Garden Ave.", 10000}, [1538] = {"UCDhousing", 18, 2562.9399414063, 2213.0700683594, 10.820300102234, "Garden Ave.", 40000}, [1539] = {"UCDhousing", 18, 2572.2900390625, 2213.0700683594, 14.116100311279, "Garden Ave.", 40000}, [1540] = {"UCDhousing", 18, 2549.0400390625, 2203.0600585938, 10.820300102234, "Garden Ave.", 20000}, [1541] = {"UCDhousing", 18, 2560.9399414063, 2213.080078125, 10.820300102234, "Garden Ave.", 40000}, [1542] = {"UCDhousing", 18, 2570.2099609375, 2213.0700683594, 14.116100311279, "Garden Ave.", 40000}, [1543] = {"UCDhousing", 18, 2547.0900878906, 2203.0600585938, 10.820300102234, "Garden Ave.", 35000}, [1544] = {"UCDhousing", 18, 2553.5900878906, 2213.0700683594, 10.820300102234, "Garden Ave.", 40000}, [1545] = {"UCDhousing", 18, 2551.6599121094, 2213.0700683594, 10.820300102234, "Garden Ave.", 40000}, [1546] = {"UCDhousing", 18, 2563.0500488281, 2213.080078125, 14.116100311279, "Garden Ave.", 40000}, [1547] = {"UCDhousing", 18, 2544.3200683594, 2213.0700683594, 10.820300102234, "Garden Ave.", 40000}, [1548] = {"UCDhousing", 18, 2561.0300292969, 2213.080078125, 14.116100311279, "Garden Ave.", 40000}, [1549] = {"UCDhousing", 18, 2544.330078125, 2213.0700683594, 14.116100311279, "Garden Ave.", 40000}, [1550] = {"UCDhousing", 18, 2553.6499023438, 2213.1000976563, 14.116100311279, "Garden Ave.", 40000}, [1551] = {"UCDhousing", 18, 2547.1101074219, 2203.0600585938, 14.116100311279, "Garden Ave.", 40000}, [1552] = {"UCDhousing", 18, 2551.7099609375, 2213.0700683594, 14.116100311279, "Garden Ave.", 40000}, [1553] = {"UCDhousing", 18, 2548.9699707031, 2203.0600585938, 14.116100311279, "Garden Ave.", 40000}, [1554] = {"UCDhousing", 18, 2556.4699707031, 2203.0600585938, 14.116100311279, "Garden Ave.", 40000}, [1555] = {"UCDhousing", 18, 2576.9599609375, 2203.0600585938, 14.116100311279, "Garden Ave.", 40000}, [1556] = {"UCDhousing", 18, 2558.3500976563, 2203.0600585938, 14.116100311279, "Garden Ave.", 40000}, [1557] = {"UCDhousing", 18, 2575.0500488281, 2203.0600585938, 14.116100311279, "Garden Ave.", 40000}, [1558] = {"UCDhousing", 18, 2565.7700195313, 2203.0600585938, 14.116100311279, "Garden Ave.", 40000}, [1559] = {"UCDhousing", 18, 2567.6101074219, 2203.0600585938, 14.116100311279, "Garden Ave.", 40000}, [1560] = {"UCDhousing", 18, 2611.2099609375, 2185.5400390625, 14.116100311279, "Garden Ave.", 40000}, [1561] = {"UCDhousing", 18, 2613.0400390625, 2185.5400390625, 14.116100311279, "Garden Ave.", 40000}, [1562] = {"UCDhousing", 18, 2620.3500976563, 2130.3100585938, 10.820300102234, "Garden Ave.", 40000}, [1563] = {"UCDhousing", 18, 2610.330078125, 2133.1000976563, 10.820300102234, "Garden Ave.", 40000}, [1564] = {"UCDhousing", 18, 2620.3500976563, 2137.6999511719, 10.820300102234, "Garden Ave.", 40000}, [1565] = {"UCDhousing", 18, 2620.3500976563, 2139.6201171875, 10.820300102234, "Garden Ave.", 40000}, [1566] = {"UCDhousing", 18, 2094.8701171875, 2189.5400390625, 10.820300102234, "Yelp Motel", 25000}, [1567] = {"UCDhousing", 18, 2086.8601074219, 2153.669921875, 10.820300102234, "Yelp Motel", 25000}, [1568] = {"UCDhousing", 18, 2090.919921875, 2189.5300292969, 10.820300102234, "Yelp Motel", 19500}, [1569] = {"UCDhousing", 18, 2085.419921875, 2153.669921875, 10.820300102234, "Yelp Motel", 1}, [1570] = {"UCDhousing", 18, 2089.4299316406, 2189.5400390625, 10.820300102234, "Yelp Motel", 1}, [1571] = {"UCDhousing", 18, 2078.830078125, 2153.669921875, 10.820300102234, "Yelp Motel", 25000}, [1572] = {"UCDhousing", 18, 2082.8701171875, 2189.5400390625, 10.820300102234, "Yelp Motel", 25000}, [1573] = {"UCDhousing", 18, 2081.4399414063, 2189.5400390625, 10.820300102234, "Yelp Motel", 25000}, [1574] = {"UCDhousing", 18, 2077.4399414063, 2153.669921875, 10.820300102234, "Yelp Motel", 25000}, [1575] = {"UCDhousing", 18, 2070.8400878906, 2153.669921875, 10.820300102234, "Yelp Motel", 25000}, [1576] = {"UCDhousing", 18, 2074.8200683594, 2189.5400390625, 10.820300102234, "Yelp Motel", 25000}, [1577] = {"UCDhousing", 18, 2069.419921875, 2153.669921875, 10.820300102234, "Yelp Motel", 25000}, [1578] = {"UCDhousing", 18, 2073.5200195313, 2189.5400390625, 10.820300102234, "Yelp Motel", 25000}, [1579] = {"UCDhousing", 18, 2064.2299804688, 2156.3200683594, 10.820300102234, "Yelp Motel", 25000}, [1580] = {"UCDhousing", 18, 2066.9099121094, 2189.5400390625, 10.820300102234, "Yelp Motel", 25000}, [1581] = {"UCDhousing", 18, 2064.2299804688, 2162.9099121094, 10.820300102234, "Yelp Motel", 25000}, [1582] = {"UCDhousing", 18, 2064.2299804688, 2186.8701171875, 10.820300102234, "Yelp Motel", 25000}, [1583] = {"UCDhousing", 18, 2064.2299804688, 2164.3601074219, 10.820300102234, "Yelp Motel", 25000}, [1584] = {"UCDhousing", 18, 2064.2299804688, 2180.3400878906, 10.820300102234, "Yelp Motel", 25000}, [1585] = {"UCDhousing", 18, 2064.2299804688, 2178.8000488281, 10.820300102234, "Yelp Motel", 25000}, [1586] = {"UCDhousing", 18, 2064.2299804688, 2170.919921875, 10.820300102234, "Yelp Motel", 25000}, [1587] = {"UCDhousing", 18, 2064.2299804688, 2172.3601074219, 10.820300102234, "Yelp Motel", 25000}, [1588] = {"UCDhousing", 18, 2094.8898925781, 2189.5400390625, 13.596699714661, "Yelp Motel", 25000}, [1589] = {"UCDhousing", 18, 2064.2299804688, 2186.919921875, 13.596699714661, "Yelp Motel", 25000}, [1590] = {"UCDhousing", 18, 2090.9099121094, 2189.5400390625, 13.596699714661, "Yelp Motel", 25000}, [1591] = {"UCDhousing", 18, 2064.2299804688, 2180.3701171875, 13.596699714661, "Yelp Motel", 25000}, [1592] = {"UCDhousing", 18, 2089.4399414063, 2189.5400390625, 13.596699714661, "Yelp Motel", 25000}, [1593] = {"UCDhousing", 18, 2064.2299804688, 2178.8100585938, 13.596699714661, "Yelp Motel", 25000}, [1594] = {"UCDhousing", 18, 2082.9099121094, 2189.5400390625, 13.596699714661, "Yelp Motel", 25000}, [1595] = {"UCDhousing", 18, 2064.2299804688, 2172.3000488281, 13.596699714661, "Yelp Motel", 25000}, [1596] = {"UCDhousing", 18, 2081.4699707031, 2189.5400390625, 13.596699714661, "Yelp Motel", 25000}, [1597] = {"UCDhousing", 18, 2064.2299804688, 2170.8798828125, 13.596699714661, "Yelp Motel", 25000}, [1598] = {"UCDhousing", 18, 2074.8798828125, 2189.5400390625, 13.596699714661, "Yelp Motel", 25000}, [1599] = {"UCDhousing", 18, 2064.2299804688, 2164.2700195313, 13.596699714661, "Yelp Motel", 25000}, [1600] = {"UCDhousing", 18, 2073.5, 2189.5400390625, 13.596699714661, "Yelp Motel", 25000}, [1601] = {"UCDhousing", 18, 2066.9399414063, 2189.5400390625, 13.596699714661, "Yelp Motel", 25000}, [1602] = {"UCDhousing", 18, 2064.2299804688, 2162.9299316406, 13.596699714661, "Yelp Motel", 25000}, [1603] = {"UCDhousing", 18, 2064.2299804688, 2156.3000488281, 13.596699714661, "Yelp Motel", 25000}, [1604] = {"UCDhousing", 18, 2070.7900390625, 2153.669921875, 13.596699714661, "Yelp Motel", 25000}, [1605] = {"UCDhousing", 18, 2077.4499511719, 2153.6799316406, 13.596699714661, "Yelp Motel", 25000}, [1606] = {"UCDhousing", 18, 2078.9499511719, 2153.669921875, 13.596699714661, "Yelp Motel", 25000}, [1607] = {"UCDhousing", 18, 2085.4299316406, 2153.669921875, 13.596699714661, "Yelp Motel", 25000}, [1608] = {"UCDhousing", 18, 2093.4299316406, 2153.6799316406, 13.596699714661, "Yelp Motel", 25000}, [1609] = {"UCDhousing", 18, 2086.8999023438, 2153.669921875, 13.596699714661, "Yelp Motel", 25000}, [1610] = {"UCDhousing", 18, 2094.9299316406, 2153.669921875, 13.596699714661, "Yelp Motel", 25000}, [1611] = {"UCDhousing", 18, 2069.3601074219, 2153.669921875, 13.596699714661, "Yelp Motel", 25000}, [1612] = {"UCDhousing", 18, 2085.580078125, 2153.6799316406, 16.371099472046, "Yelp Motel", 1}, [1613] = {"UCDhousing", 18, 2078.8100585938, 2153.669921875, 16.371099472046, "Yelp Motel", 25000}, [1614] = {"UCDhousing", 18, 2077.4599609375, 2153.6899414063, 16.371099472046, "Yelp Motel", 25000}, [1615] = {"UCDhousing", 18, 2070.8601074219, 2153.6799316406, 16.371099472046, "Yelp Motel", 25000}, [1616] = {"UCDhousing", 18, 2069.4499511719, 2153.6899414063, 16.371099472046, "Yelp Motel", 25000}, [1617] = {"UCDhousing", 18, 2078.9099121094, 2148.7700195313, 16.371099472046, "Yelp Motel", 25000}, [1618] = {"UCDhousing", 18, 2064.2299804688, 2158.9299316406, 16.371099472046, "Yelp Motel", 25000}, [1619] = {"UCDhousing", 18, 2074.8999023438, 2148.7700195313, 16.371099472046, "Yelp Motel", 25000}, [1620] = {"UCDhousing", 18, 2064.2299804688, 2160.3400878906, 16.371099472046, "Yelp Motel", 25000}, [1621] = {"UCDhousing", 18, 2070.8798828125, 2148.7700195313, 16.371099472046, "Yelp Motel", 25000}, [1622] = {"UCDhousing", 18, 2064.2299804688, 2166.919921875, 16.371099472046, "Yelp Motel", 25000}, [1623] = {"UCDhousing", 18, 2066.8798828125, 2148.7700195313, 16.371099472046, "Yelp Motel", 25000}, [1624] = {"UCDhousing", 18, 2064.2299804688, 2168.2800292969, 16.371099472046, "Yelp Motel", 25000}, [1625] = {"UCDhousing", 18, 2062.8601074219, 2148.7700195313, 16.371099472046, "Yelp Motel", 25000}, [1626] = {"UCDhousing", 18, 2059.330078125, 2154.5700683594, 16.371099472046, "Yelp Motel", 25000}, [1627] = {"UCDhousing", 18, 2059.330078125, 2158.8500976563, 16.371099472046, "Yelp Motel", 25000}, [1628] = {"UCDhousing", 18, 2059.330078125, 2162.8601074219, 16.371099472046, "Yelp Motel", 25000}, [1629] = {"UCDhousing", 18, 2059.330078125, 2166.8798828125, 16.371099472046, "Yelp Motel", 25000}, [1630] = {"UCDhousing", 18, 2097.4099121094, 2194.4399414063, 13.47859954834, "Yelp Motel", 25000}, [1631] = {"UCDhousing", 18, 2090.8400878906, 2194.4399414063, 13.47859954834, "Yelp Motel", 25000}, [1632] = {"UCDhousing", 18, 2089.3898925781, 2194.4399414063, 13.47859954834, "Yelp Motel", 25000}, [1633] = {"UCDhousing", 18, 2022.9899902344, 2132.9099121094, 10.820300102234, "Merch Motel", 25000}, [1634] = {"UCDhousing", 18, 2017.7800292969, 2132.9099121094, 10.820300102234, "Merch Motel", 25000}, [1635] = {"UCDhousing", 18, 2082.8000488281, 2194.4399414063, 13.47859954834, "Yelp Motel", 25000}, [1636] = {"UCDhousing", 18, 2081.3999023438, 2194.4399414063, 13.47859954834, "Yelp Motel", 25000}, [1637] = {"UCDhousing", 18, 2074.7900390625, 2194.4399414063, 13.47859954834, "Yelp Motel", 25000}, [1638] = {"UCDhousing", 18, 2073.3701171875, 2194.5200195313, 13.47859954834, "Yelp Motel", 25000}, [1639] = {"UCDhousing", 18, 2066.7099609375, 2194.4399414063, 13.47859954834, "Yelp Motel", 25000}, [1640] = {"UCDhousing", 18, 2012.5999755859, 2132.9099121094, 10.820300102234, "Merch Motel", 25000}, [1641] = {"UCDhousing", 18, 2007.4000244141, 2132.9099121094, 10.820300102234, "Merch Motel", 25000}, [1642] = {"UCDhousing", 18, 2003.6899414063, 2136.1899414063, 10.820300102234, "Merch Motel", 25000}, [1643] = {"UCDhousing", 18, 2065.2299804688, 2194.4399414063, 13.596699714661, "Yelp Motel", 25000}, [1644] = {"UCDhousing", 18, 2003.6800537109, 2140.6599121094, 10.820300102234, "Merch Motel", 25000}, [1645] = {"UCDhousing", 18, 2059.330078125, 2191.330078125, 13.596699714661, "Yelp Motel", 25000}, [1646] = {"UCDhousing", 18, 2003.6800537109, 2145.330078125, 10.820300102234, "Merch Motel", 25000}, [1647] = {"UCDhousing", 18, 2059.330078125, 2187.1599121094, 13.596699714661, "Yelp Motel", 25000}, [1648] = {"UCDhousing", 18, 2003.6800537109, 2149.8898925781, 10.820300102234, "Merch Motel", 25000}, [1649] = {"UCDhousing", 18, 2059.330078125, 2182.8000488281, 13.596699714661, "Yelp Motel", 25000}, [1650] = {"UCDhousing", 18, 2003.6800537109, 2154.5200195313, 10.820300102234, "Merch Motel", 25000}, [1651] = {"UCDhousing", 18, 2059.330078125, 2179.0100097656, 13.596699714661, "Yelp Motel", 25000}, [1652] = {"UCDhousing", 18, 2003.6800537109, 2159.0700683594, 10.820300102234, "Merch Motel", 25000}, [1653] = {"UCDhousing", 18, 2059.330078125, 2175, 13.596699714661, "Yelp Motel", 25000}, [1654] = {"UCDhousing", 18, 2003.6800537109, 2163.6398925781, 10.820300102234, "Merch Motel", 25000}, [1655] = {"UCDhousing", 18, 2003.6800537109, 2168.1499023438, 10.820300102234, "Merch Motel", 25000}, [1656] = {"UCDhousing", 18, 2059.330078125, 2170.9299316406, 13.596699714661, "Yelp Motel", 25000}, [1657] = {"UCDhousing", 18, 2006.7299804688, 2168.8100585938, 10.820300102234, "Merch Motel", 25000}, [1658] = {"UCDhousing", 18, 2010.9200439453, 2168.8000488281, 10.820300102234, "Merch Motel", 25000}, [1659] = {"UCDhousing", 18, 2059.330078125, 2166.8798828125, 13.596699714661, "Yelp Motel", 25000}, [1660] = {"UCDhousing", 18, 2059.330078125, 2162.8701171875, 13.596699714661, "Yelp Motel", 25000}, [1661] = {"UCDhousing", 18, 2010.8599853516, 2168.8000488281, 13.842100143433, "Merch Motel", 25000}, [1662] = {"UCDhousing", 18, 2059.330078125, 2158.8100585938, 13.596699714661, "Yelp Motel", 25000}, [1663] = {"UCDhousing", 18, 2059.330078125, 2154.6398925781, 13.596699714661, "Yelp Motel", 25000}, [1664] = {"UCDhousing", 18, 2006.6700439453, 2168.8000488281, 13.842100143433, "Merch Motel", 25000}, [1665] = {"UCDhousing", 18, 2003.6999511719, 2168.2800292969, 13.842100143433, "Merch Motel", 25000}, [1666] = {"UCDhousing", 18, 2062.830078125, 2148.7700195313, 13.596699714661, "Yelp Motel", 25000}, [1667] = {"UCDhousing", 18, 2003.6899414063, 2163.7199707031, 13.842100143433, "Merch Motel", 25000}, [1668] = {"UCDhousing", 18, 2066.8798828125, 2148.7700195313, 13.596699714661, "Yelp Motel", 25000}, [1669] = {"UCDhousing", 18, 2003.6899414063, 2159.0400390625, 13.842100143433, "Merch Motel", 25000}, [1670] = {"UCDhousing", 18, 2070.9699707031, 2148.7700195313, 13.596699714661, "Yelp Motel", 25000}, [1671] = {"UCDhousing", 18, 2003.6899414063, 2154.4499511719, 13.842100143433, "Merch Motel", 25000}, [1672] = {"UCDhousing", 18, 2074.8500976563, 2148.7700195313, 13.596699714661, "Yelp Motel", 25000}, [1673] = {"UCDhousing", 18, 2003.6800537109, 2149.9299316406, 13.842100143433, "Merch Motel", 25000}, [1674] = {"UCDhousing", 18, 2078.9399414063, 2148.7700195313, 13.596699714661, "Yelp Motel", 25000}, [1675] = {"UCDhousing", 18, 2003.6899414063, 2145.3200683594, 13.842100143433, "Merch Motel", 25000}, [1676] = {"UCDhousing", 18, 2082.9099121094, 2148.7700195313, 13.596699714661, "Yelp Motel", 25000}, [1677] = {"UCDhousing", 18, 2003.6800537109, 2140.8000488281, 13.842100143433, "Merch Motel", 25000}, [1678] = {"UCDhousing", 18, 2003.6899414063, 2136.169921875, 13.842100143433, "Merch Motel", 25000}, [1679] = {"UCDhousing", 18, 2086.9299316406, 2148.7700195313, 13.596699714661, "Yelp Motel", 25000}, [1680] = {"UCDhousing", 18, 2007.3800048828, 2132.919921875, 13.842100143433, "Merch Motel", 25000}, [1681] = {"UCDhousing", 18, 2090.9099121094, 2148.7700195313, 13.596699714661, "Yelp Motel", 25000}, [1682] = {"UCDhousing", 18, 2012.6199951172, 2132.9099121094, 13.842100143433, "Merch Motel", 25000}, [1683] = {"UCDhousing", 18, 2017.6999511719, 2132.9099121094, 13.842100143433, "Merch Motel", 25000}, [1684] = {"UCDhousing", 18, 2094.8898925781, 2148.7700195313, 13.596699714661, "Yelp Motel", 25000}, [1685] = {"UCDhousing", 18, 2022.8900146484, 2132.9099121094, 13.842100143433, "Merch Motel", 25000}, [1686] = {"UCDhousing", 15, 1542.2700195313, 2026.9200439453, 14.73960018158, "Green Ave.", 50000}, [1687] = {"UCDhousing", 15, 1534.7199707031, 2027.0100097656, 14.73960018158, "Green Ave.", 50000}, [1688] = {"UCDhousing", 15, 1542.2700195313, 2033.1700439453, 14.73960018158, "Green Ave.", 50000}, [1689] = {"UCDhousing", 15, 1453.7399902344, 2026.9200439453, 10.820300102234, "Green Ave.", 50000}, [1690] = {"UCDhousing", 15, 1461.2700195313, 2027, 10.820300102234, "Green Ave.", 50000}, [1691] = {"UCDhousing", 15, 1534.7199707031, 2033.1899414063, 14.73960018158, "Green Ave.", 50000}, [1692] = {"UCDhousing", 15, 1453.7199707031, 2033.1899414063, 10.820300102234, "Green Ave.", 50000}, [1693] = {"UCDhousing", 15, 1461.2700195313, 2033.1700439453, 10.820300102234, "Green Ave.", 50000}, [1694] = {"UCDhousing", 15, 1542.2700195313, 2033.1700439453, 10.820300102234, "Green Ave.", 50000}, [1695] = {"UCDhousing", 15, 1534.7099609375, 2033.2299804688, 10.820300102234, "Green Ave.", 50000}, [1696] = {"UCDhousing", 15, 1453.7199707031, 2033.0699462891, 14.73960018158, "Green Ave.", 50000}, [1697] = {"UCDhousing", 15, 1542.2700195313, 2026.9399414063, 10.820300102234, "Green Ave.", 50000}, [1698] = {"UCDhousing", 15, 1461.2800292969, 2033.0799560547, 14.73960018158, "Green Ave.", 50000}, [1699] = {"UCDhousing", 15, 1534.7199707031, 2027.0200195313, 10.820300102234, "Green Ave.", 50000}, [1700] = {"UCDhousing", 15, 1453.7199707031, 2026.9000244141, 14.73960018158, "Green Ave.", 50000}, [1701] = {"UCDhousing", 15, 1461.2700195313, 2026.8800048828, 14.73960018158, "Green Ave.", 50000}, [1702] = {"UCDhousing", 15, 1503.25, 2026.9300537109, 14.73960018158, "Green Ave.", 50000}, [1703] = {"UCDhousing", 15, 1495.6899414063, 2026.9699707031, 14.73960018158, "Green Ave.", 50000}, [1704] = {"UCDhousing", 15, 1414.6999511719, 2026.8800048828, 10.820300102234, "Green Ave.", 50000}, [1705] = {"UCDhousing", 15, 1503.25, 2033.1500244141, 14.73960018158, "Green Ave.", 50000}, [1706] = {"UCDhousing", 15, 1422.25, 2027.0200195313, 10.820300102234, "Green Ave.", 50000}, [1707] = {"UCDhousing", 15, 1495.6899414063, 2033.2299804688, 14.73960018158, "Green Ave.", 50000}, [1708] = {"UCDhousing", 15, 1422.25, 2033.1500244141, 10.820300102234, "Green Ave.", 50000}, [1709] = {"UCDhousing", 15, 1503.25, 2033.1300048828, 10.820300102234, "Green Ave.", 50000}, [1710] = {"UCDhousing", 15, 1414.6999511719, 2033.1099853516, 10.820300102234, "Green Ave.", 50000}, [1711] = {"UCDhousing", 15, 1495.6899414063, 2033.2199707031, 10.820300102234, "Green Ave.", 50000}, [1712] = {"UCDhousing", 15, 1495.6899414063, 2026.9499511719, 10.820300102234, "Green Ave.", 50000}, [1713] = {"UCDhousing", 15, 1408.2800292969, 1996.3599853516, 10.820300102234, "Green Ave.", 50000}, [1714] = {"UCDhousing", 15, 1503.25, 2026.9699707031, 10.820300102234, "Green Ave.", 50000}, [1715] = {"UCDhousing", 15, 1408.25, 2003.9100341797, 10.820300102234, "Green Ave.", 50000}, [1716] = {"UCDhousing", 15, 1414.5100097656, 1996.3599853516, 10.820300102234, "Green Ave.", 50000}, [1717] = {"UCDhousing", 15, 1414.4300537109, 2003.9100341797, 10.820300102234, "Green Ave.", 50000}, [1718] = {"UCDhousing", 15, 1542.4499511719, 1996.3499755859, 14.73960018158, "Green Ave.", 50000}, [1719] = {"UCDhousing", 15, 1414.4499511719, 2003.9100341797, 14.73960018158, "Green Ave.", 50000}, [1720] = {"UCDhousing", 15, 1542.4699707031, 2003.9000244141, 14.73960018158, "Green Ave.", 50000}, [1721] = {"UCDhousing", 15, 1414.5500488281, 1996.3599853516, 14.73960018158, "Green Ave.", 50000}, [1722] = {"UCDhousing", 15, 1548.6700439453, 1996.3499755859, 14.73960018158, "Green Ave.", 50000}, [1723] = {"UCDhousing", 15, 1408.2399902344, 2003.9100341797, 14.73960018158, "Green Ave.", 50000}, [1724] = {"UCDhousing", 15, 1548.6899414063, 2003.9100341797, 14.73960018158, "Green Ave.", 50000}, [1725] = {"UCDhousing", 15, 1408.3100585938, 1996.3599853516, 14.73960018158, "Green Ave.", 50000}, [1726] = {"UCDhousing", 15, 1548.6999511719, 1996.3599853516, 10.820300102234, "Green Ave.", 50000}, [1727] = {"UCDhousing", 15, 1548.7900390625, 2003.9100341797, 10.820300102234, "Green Ave.", 50000}, [1728] = {"UCDhousing", 15, 1542.4399414063, 1996.3499755859, 10.820300102234, "Green Ave.", 50000}, [1729] = {"UCDhousing", 15, 1542.4899902344, 2003.9100341797, 10.820300102234, "Green Ave.", 50000}, [1730] = {"UCDhousing", 15, 1422.25, 2026.9200439453, 14.73960018158, "Green Ave.", 50000}, [1731] = {"UCDhousing", 15, 1422.25, 2033.2199707031, 14.73960018158, "Green Ave.", 50000}, [1732] = {"UCDhousing", 15, 1414.7099609375, 2033.1600341797, 14.73960018158, "Green Ave.", 50000}, [1733] = {"UCDhousing", 15, 1414.6999511719, 2026.8000488281, 14.73960018158, "Green Ave.", 50000}, [1734] = {"UCDhousing", 18, 2505.169921875, 1003.5800170898, 10.820300102234, "Pilon St.", 50000}, [1735] = {"UCDhousing", 18, 2513.4399414063, 1003.5800170898, 10.820300102234, "Pilon St.", 50000}, [1736] = {"UCDhousing", 18, 2502.6599121094, 1003.5800170898, 10.820300102234, "Pilon St.", 50000}, [1737] = {"UCDhousing", 18, 2516.1298828125, 1003.5800170898, 10.820300102234, "Pilon St.", 50000}, [1738] = {"UCDhousing", 18, 2521.3601074219, 1003.5800170898, 10.820300102234, "Pilon St.", 50000}, [1739] = {"UCDhousing", 18, 2518.7800292969, 1003.5800170898, 10.820300102234, "Pilon St.", 50000}, [1740] = {"UCDhousing", 18, 2529.669921875, 1003.5800170898, 10.820300102234, "Pilon St.", 50000}, [1741] = {"UCDhousing", 18, 2532.1101074219, 1003.5800170898, 10.820300102234, "Pilon St.", 50000}, [1742] = {"UCDhousing", 18, 2533.9499511719, 997.63500976563, 14.272500038147, "Pilon St.", 50000}, [1743] = {"UCDhousing", 18, 2532.1499023438, 962.88000488281, 10.820300102234, "Pilon St.", 50000}, [1744] = {"UCDhousing", 18, 2529.7099609375, 962.88098144531, 10.820300102234, "Pilon St.", 50000}, [1745] = {"UCDhousing", 18, 2521.3100585938, 962.88098144531, 10.820300102234, "Pilon St.", 50000}, [1746] = {"UCDhousing", 18, 2518.8200683594, 962.88098144531, 10.820300102234, "Pilon St.", 50000}, [1747] = {"UCDhousing", 18, 2472.0600585938, 962.87799072266, 10.820300102234, "Pilon St.", 50000}, [1748] = {"UCDhousing", 18, 2469.6499023438, 962.88098144531, 10.820300102234, "Pilon St.", 50000}, [1749] = {"UCDhousing", 18, 2516.0700683594, 962.88098144531, 10.820300102234, "Pilon St.", 50000}, [1750] = {"UCDhousing", 18, 2461.3100585938, 962.88000488281, 10.820300102234, "Pilon St.", 50000}, [1751] = {"UCDhousing", 18, 2513.5600585938, 962.88098144531, 10.820300102234, "Pilon St.", 50000}, [1752] = {"UCDhousing", 18, 2458.7600097656, 962.88000488281, 10.820300102234, "Pilon St.", 50000}, [1753] = {"UCDhousing", 18, 2505.1298828125, 962.88098144531, 10.820300102234, "Pilon St.", 50000}, [1754] = {"UCDhousing", 18, 2456.0300292969, 962.88000488281, 10.820300102234, "Pilon St.", 50000}, [1755] = {"UCDhousing", 18, 2453.5500488281, 962.88098144531, 10.820300102234, "Pilon St.", 50000}, [1756] = {"UCDhousing", 18, 2502.6201171875, 962.88098144531, 10.820300102234, "Pilon St.", 50000}, [1757] = {"UCDhousing", 18, 2445.0600585938, 962.88000488281, 10.820300102234, "Pilon St.", 50000}, [1758] = {"UCDhousing", 18, 2500.830078125, 968.79302978516, 14.272500038147, "Pilon St.", 50000}, [1759] = {"UCDhousing", 18, 2442.5900878906, 962.87902832031, 10.820300102234, "Pilon St.", 50000}, [1760] = {"UCDhousing", 18, 2440.830078125, 968.81402587891, 14.272500038147, "Pilon St.", 50000}, [1761] = {"UCDhousing", 18, 2473.9499511719, 997.68902587891, 14.272500038147, "Pilon St.", 50000}, [1762] = {"UCDhousing", 18, 2472.1398925781, 1003.5800170898, 10.820300102234, "Pilon St.", 50000}, [1763] = {"UCDhousing", 18, 2442.6899414063, 1003.5800170898, 10.820300102234, "Pilon St.", 50000}, [1764] = {"UCDhousing", 18, 2445.25, 1003.5800170898, 10.820300102234, "Pilon St.", 50000}, [1765] = {"UCDhousing", 18, 2469.6201171875, 1003.5800170898, 10.820300102234, "Pilon St.", 50000}, [1766] = {"UCDhousing", 18, 2453.5700683594, 1003.5800170898, 10.820300102234, "Pilon St.", 50000}, [1767] = {"UCDhousing", 18, 2461.3000488281, 1003.5800170898, 10.820300102234, "Pilon St.", 50000}, [1768] = {"UCDhousing", 18, 2456.0700683594, 1003.5800170898, 10.820300102234, "Pilon St.", 50000}, [1769] = {"UCDhousing", 18, 2458.7600097656, 1003.5800170898, 10.820300102234, "Pilon St.", 50000}, [1770] = {"UCDhousing", 18, 2411.7900390625, 1019.75, 14.272500038147, "Pilon St.", 50000}, [1771] = {"UCDhousing", 18, 2417.75, 1017.9899902344, 10.820300102234, "Pilon St.", 50000}, [1772] = {"UCDhousing", 18, 2417.7399902344, 1015.450012207, 10.820300102234, "Pilon St.", 50000}, [1773] = {"UCDhousing", 18, 2417.7399902344, 964.57000732422, 10.820300102234, "Pilon St.", 50000}, [1774] = {"UCDhousing", 18, 2417.7399902344, 1007.2299804688, 10.820300102234, "Pilon St.", 50000}, [1775] = {"UCDhousing", 18, 2417.7399902344, 966.98400878906, 10.820300102234, "Pilon St.", 50000}, [1776] = {"UCDhousing", 18, 2417.7399902344, 975.13397216797, 10.820300102234, "Pilon St.", 50000}, [1777] = {"UCDhousing", 18, 2417.7399902344, 1004.5700073242, 10.820300102234, "Pilon St.", 50000}, [1778] = {"UCDhousing", 18, 2417.7399902344, 977.59197998047, 10.820300102234, "Pilon St.", 50000}, [1779] = {"UCDhousing", 18, 2417.7399902344, 985.47100830078, 10.820300102234, "Pilon St.", 50000}, [1780] = {"UCDhousing", 18, 2417.7399902344, 997.14099121094, 10.820300102234, "Pilon St.", 50000}, [1781] = {"UCDhousing", 18, 2417.7399902344, 987.50201416016, 10.820300102234, "Pilon St.", 50000}, [1782] = {"UCDhousing", 18, 2417.7399902344, 994.94000244141, 10.820300102234, "Pilon St.", 50000}, [1783] = {"UCDhousing", 18, 2410.7399902344, 962.88098144531, 10.820300102234, "Pilon St.", 50000}, [1784] = {"UCDhousing", 18, 2408.2399902344, 962.88098144531, 10.820300102234, "Pilon St.", 50000}, [1785] = {"UCDhousing", 18, 2400.1398925781, 962.88098144531, 10.820300102234, "Pilon St.", 50000}, [1786] = {"UCDhousing", 18, 2397.6398925781, 962.87902832031, 10.820300102234, "Pilon St.", 50000}, [1787] = {"UCDhousing", 18, 2416.1398925781, 1063.5799560547, 10.820300102234, "Pilon St.", 50000}, [1788] = {"UCDhousing", 18, 2370.9799804688, 962.83801269531, 10.820300102234, "Pilon St.", 50000}, [1789] = {"UCDhousing", 18, 2368.5100097656, 962.83697509766, 10.820300102234, "Pilon St.", 50000}, [1790] = {"UCDhousing", 18, 2413.8200683594, 1063.5799560547, 10.820300102234, "Pilon St.", 50000}, [1791] = {"UCDhousing", 18, 2360.9799804688, 962.83697509766, 10.820300102234, "Pilon St.", 50000}, [1792] = {"UCDhousing", 18, 2406.0600585938, 1063.5799560547, 10.820300102234, "Pilon St.", 50000}, [1793] = {"UCDhousing", 18, 2358.6000976563, 962.83697509766, 10.820300102234, "Pilon St.", 50000}, [1794] = {"UCDhousing", 18, 2403.830078125, 1063.5799560547, 10.820300102234, "Pilon St.", 50000}, [1795] = {"UCDhousing", 18, 2362.9299316406, 1006.6599731445, 14.272500038147, "Pilon St.", 50000}, [1796] = {"UCDhousing", 18, 2377.0700683594, 1063.5799560547, 10.820300102234, "Pilon St.", 50000}, [1797] = {"UCDhousing", 18, 2357.0400390625, 1010.9400024414, 10.820300102234, "Pilon St.", 1}, [1798] = {"UCDhousing", 18, 2374.7099609375, 1063.5799560547, 10.820300102234, "Pilon St.", 50000}, [1799] = {"UCDhousing", 18, 2357.0400390625, 1008.3400268555, 10.820300102234, "Pilon St.", 1}, [1800] = {"UCDhousing", 18, 2366.4699707031, 1063.5799560547, 10.820300102234, "Pilon St.", 50000}, [1801] = {"UCDhousing", 18, 2357.0400390625, 1019.2399902344, 10.820300102234, "Pilon St.", 1}, [1802] = {"UCDhousing", 18, 2357.0400390625, 1021.8900146484, 10.820300102234, "Pilon St.", 30000}, [1803] = {"UCDhousing", 18, 2364.169921875, 1063.5799560547, 10.820300102234, "Pilon St.", 50000}, [1804] = {"UCDhousing", 18, 2357.0400390625, 1029.2600097656, 10.8125, "Pilon St.", 50000}, [1805] = {"UCDhousing", 18, 2357.0400390625, 1031.5100097656, 10.8125, "Pilon St.", 50000}, [1806] = {"UCDhousing", 18, 2357.0500488281, 1061.8900146484, 10.820300102234, "Pilon St.", 50000}, [1807] = {"UCDhousing", 18, 2357.0500488281, 1059.4300537109, 10.8125, "Pilon St.", 50000}, [1808] = {"UCDhousing", 18, 2357.0400390625, 1038.8399658203, 10.8125, "Pilon St.", 50000}, [1809] = {"UCDhousing", 18, 2357.0400390625, 1040.9699707031, 10.8125, "Pilon St.", 50000}, [1810] = {"UCDhousing", 18, 2357.0500488281, 1051.4000244141, 10.8125, "Pilon St.", 50000}, [1811] = {"UCDhousing", 18, 2357.0500488281, 1048.9100341797, 10.8125, "Pilon St.", 50000}, [1812] = {"UCDhousing", 24, 1879.9300537109, 2790.330078125, 11.343799591064, "Guantanamo Apartments", 25000}, [1813] = {"UCDhousing", 24, 1882.0400390625, 2792.3000488281, 11.343799591064, "Guantanamo Apartments", 25000}, [1814] = {"UCDhousing", 24, 1873.7099609375, 2784.0400390625, 11.343799591064, "Guantanamo Apartments", 25000}, [1815] = {"UCDhousing", 24, 1871.6199951172, 2782.0300292969, 11.343799591064, "Guantanamo Apartments", 25000}, [1816] = {"UCDhousing", 24, 1888.2299804688, 2798.6101074219, 11.343799591064, "Guantanamo Apartments", 25000}, [1817] = {"UCDhousing", 24, 1890.3100585938, 2800.6298828125, 11.343799591064, "Guantanamo Apartments", 25000}, [1818] = {"UCDhousing", 24, 1865.4300537109, 2775.7199707031, 14.273400306702, "Guantanamo Apartments", 25000}, [1819] = {"UCDhousing", 24, 1873.6999511719, 2784.0600585938, 14.273400306702, "Guantanamo Apartments", 25000}, [1820] = {"UCDhousing", 24, 1871.6300048828, 2782.0300292969, 14.273400306702, "Guantanamo Apartments", 25000}, [1821] = {"UCDhousing", 24, 1890.3000488281, 2800.6398925781, 14.273400306702, "Guantanamo Apartments", 25000}, [1822] = {"UCDhousing", 24, 1888.2299804688, 2798.6101074219, 14.273400306702, "Guantanamo Apartments", 25000}, [1823] = {"UCDhousing", 24, 1881.9599609375, 2792.3798828125, 14.273400306702, "Guantanamo Apartments", 25000}, [1824] = {"UCDhousing", 24, 1879.9200439453, 2790.3500976563, 14.273400306702, "Guantanamo Apartments", 25000}, [1825] = {"UCDhousing", 24, 1865.4200439453, 2775.7299804688, 11.343799591064, "Guantanamo Apartments", 25000}, [1826] = {"UCDhousing", 24, 1855.4399414063, 2765.6999511719, 11.35089969635, "Guantanamo Apartments", 25000}, [1827] = {"UCDhousing", 24, 1847.0600585938, 2757.4699707031, 11.343799591064, "Guantanamo Apartments", 25000}, [1828] = {"UCDhousing", 24, 1855.3599853516, 2765.7700195313, 14.265700340271, "Guantanamo Apartments", 25000}, [1829] = {"UCDhousing", 24, 1849.1500244141, 2759.4699707031, 11.343799591064, "Guantanamo Apartments", 25000}, [1830] = {"UCDhousing", 24, 1849.1400146484, 2759.4899902344, 14.273400306702, "Guantanamo Apartments", 25000}, [1831] = {"UCDhousing", 24, 1838.7700195313, 2749.169921875, 11.35089969635, "Guantanamo Apartments", 25000}, [1832] = {"UCDhousing", 24, 1847.0500488281, 2757.4799804688, 14.273400306702, "Guantanamo Apartments", 25000}, [1833] = {"UCDhousing", 24, 1840.8599853516, 2751.1599121094, 11.343799591064, "Guantanamo Apartments", 25000}, [1834] = {"UCDhousing", 24, 1838.7600097656, 2749.169921875, 14.273400306702, "Guantanamo Apartments", 25000}, [1835] = {"UCDhousing", 24, 1830.4399414063, 2740.8999023438, 11.343799591064, "Guantanamo Apartments", 25000}, [1836] = {"UCDhousing", 24, 1840.8499755859, 2751.169921875, 14.273400306702, "Guantanamo Apartments", 25000}, [1837] = {"UCDhousing", 24, 1832.5200195313, 2742.8999023438, 11.343799591064, "Guantanamo Apartments", 25000}, [1838] = {"UCDhousing", 24, 1830.4499511719, 2740.8798828125, 14.273400306702, "Guantanamo Apartments", 25000}, [1839] = {"UCDhousing", 24, 1832.5899658203, 2742.830078125, 14.273400306702, "Guantanamo Apartments", 25000}, [1840] = {"UCDhousing", 24, 1824.25, 2734.5700683594, 14.273400306702, "Guantanamo Apartments", 25000}, [1841] = {"UCDhousing", 24, 1791.5999755859, 2741.669921875, 11.343799591064, "Guantanamo Apartments", 25000}, [1842] = {"UCDhousing", 24, 1792.4399414063, 2744.4399414063, 11.343799591064, "Guantanamo Apartments", 25000}, [1843] = {"UCDhousing", 24, 1800.75, 2775.6899414063, 14.273500442505, "Guantanamo Apartments", 25000}, [1844] = {"UCDhousing", 24, 1795.4899902344, 2755.7800292969, 11.343799591064, "Guantanamo Apartments", 25000}, [1845] = {"UCDhousing", 24, 1798.5799560547, 2767.1101074219, 14.273500442505, "Guantanamo Apartments", 25000}, [1846] = {"UCDhousing", 24, 1794.6300048828, 2753.0200195313, 11.343799591064, "Guantanamo Apartments", 25000}, [1847] = {"UCDhousing", 24, 1797.6800537109, 2764.3500976563, 14.273500442505, "Guantanamo Apartments", 25000}, [1848] = {"UCDhousing", 24, 1794.7099609375, 2753, 14.273500442505, "Guantanamo Apartments", 25000}, [1849] = {"UCDhousing", 24, 1798.5300292969, 2767.1201171875, 11.343799591064, "Guantanamo Apartments", 25000}, [1850] = {"UCDhousing", 24, 1795.4200439453, 2755.7900390625, 14.273500442505, "Guantanamo Apartments", 25000}, [1851] = {"UCDhousing", 24, 1797.7199707031, 2764.3400878906, 11.343799591064, "Guantanamo Apartments", 25000}, [1852] = {"UCDhousing", 24, 1791.6800537109, 2741.6499023438, 14.273500442505, "Guantanamo Apartments", 25000}, [1853] = {"UCDhousing", 24, 1792.3800048828, 2744.4599609375, 14.273500442505, "Guantanamo Apartments", 25000}, [1854] = {"UCDhousing", 24, 1789.4799804688, 2733.080078125, 14.273500442505, "Guantanamo Apartments", 25000}, [1855] = {"UCDhousing", 24, 1800.7900390625, 2775.6799316406, 11.343799591064, "Guantanamo Apartments", 25000}, [1856] = {"UCDhousing", 24, 1804.4000244141, 2789.3500976563, 11.343799591064, "Guantanamo Apartments", 25000}, [1857] = {"UCDhousing", 24, 1807.5, 2800.6799316406, 11.343799591064, "Guantanamo Apartments", 25000}, [1858] = {"UCDhousing", 24, 1789.8100585938, 2778.6201171875, 11.35089969635, "Guantanamo Apartments", 25000}, [1859] = {"UCDhousing", 24, 1806.6800537109, 2797.8999023438, 11.343799591064, "Guantanamo Apartments", 25000}, [1860] = {"UCDhousing", 24, 1793.5100097656, 2792.2700195313, 11.35089969635, "Guantanamo Apartments", 25000}, [1861] = {"UCDhousing", 24, 1810.5300292969, 2812.0200195313, 11.343799591064, "Guantanamo Apartments", 25000}, [1862] = {"UCDhousing", 24, 1809.6899414063, 2809.25, 11.343799591064, "Guantanamo Apartments", 25000}, [1863] = {"UCDhousing", 24, 1786.7800292969, 2767.2700195313, 11.343799591064, "Guantanamo Apartments", 25000}, [1864] = {"UCDhousing", 24, 1787.5699462891, 2770.0600585938, 11.343799591064, "Guantanamo Apartments", 25000}, [1865] = {"UCDhousing", 24, 1813.6099853516, 2823.3500976563, 11.343799591064, "Guantanamo Apartments", 25000}, [1866] = {"UCDhousing", 24, 1812.7800292969, 2820.580078125, 11.343799591064, "Guantanamo Apartments", 25000}, [1867] = {"UCDhousing", 24, 1783.8900146484, 2755.8999023438, 11.343799591064, "Guantanamo Apartments", 25000}, [1868] = {"UCDhousing", 24, 1784.5300292969, 2758.7199707031, 11.343799591064, "Guantanamo Apartments", 25000}, [1869] = {"UCDhousing", 24, 1815.8299560547, 2831.9099121094, 11.343799591064, "Guantanamo Apartments", 25000}, [1870] = {"UCDhousing", 24, 1780.7399902344, 2744.580078125, 11.343799591064, "Guantanamo Apartments", 25000}, [1871] = {"UCDhousing", 24, 1781.4899902344, 2747.3798828125, 11.343799591064, "Guantanamo Apartments", 25000}, [1872] = {"UCDhousing", 24, 1815.8800048828, 2831.8999023438, 14.273500442505, "Guantanamo Apartments", 25000}, [1873] = {"UCDhousing", 24, 1778.5100097656, 2736.0200195313, 14.273500442505, "Guantanamo Apartments", 25000}, [1874] = {"UCDhousing", 24, 1813.5899658203, 2823.3500976563, 14.273500442505, "Guantanamo Apartments", 25000}, [1875] = {"UCDhousing", 24, 1781.5, 2747.3701171875, 14.273500442505, "Guantanamo Apartments", 25000}, [1876] = {"UCDhousing", 24, 1812.7700195313, 2820.5700683594, 14.273500442505, "Guantanamo Apartments", 25000}, [1877] = {"UCDhousing", 24, 1780.7399902344, 2744.580078125, 14.273500442505, "Guantanamo Apartments", 25000}, [1878] = {"UCDhousing", 24, 1784.6999511719, 2758.669921875, 14.273500442505, "Guantanamo Apartments", 25000}, [1879] = {"UCDhousing", 24, 1809.75, 2809.2299804688, 14.273500442505, "Guantanamo Apartments", 25000}, [1880] = {"UCDhousing", 24, 1783.75, 2755.9299316406, 14.273500442505, "Guantanamo Apartments", 25000}, [1881] = {"UCDhousing", 24, 1810.5799560547, 2812.0100097656, 14.273500442505, "Guantanamo Apartments", 25000}, [1882] = {"UCDhousing", 24, 1787.6999511719, 2770.0200195313, 14.273500442505, "Guantanamo Apartments", 25000}, [1883] = {"UCDhousing", 24, 1786.9499511719, 2767.2299804688, 14.273500442505, "Guantanamo Apartments", 25000}, [1884] = {"UCDhousing", 24, 1807.5200195313, 2800.669921875, 14.273500442505, "Guantanamo Apartments", 25000}, [1885] = {"UCDhousing", 24, 1789.8499755859, 2778.6000976563, 14.273500442505, "Guantanamo Apartments", 25000}, [1886] = {"UCDhousing", 24, 1806.6800537109, 2797.8999023438, 14.273500442505, "Guantanamo Apartments", 25000}, [1887] = {"UCDhousing", 24, 1804.4899902344, 2789.330078125, 14.273500442505, "Guantanamo Apartments", 25000}, [1888] = {"UCDhousing", 24, 1789.3800048828, 2733.1101074219, 11.343799591064, "Guantanamo Apartments", 25000}, [1889] = {"UCDhousing", 24, 1795.8499755859, 2800.8000488281, 11.343799591064, "Guantanamo Apartments", 25000}, [1890] = {"UCDhousing", 24, 1754.5699462891, 2736.0300292969, 11.343799591064, "Guantanamo Apartments", 25000}, [1891] = {"UCDhousing", 24, 1796.6999511719, 2803.5700683594, 11.343799591064, "Guantanamo Apartments", 25000}, [1892] = {"UCDhousing", 24, 1743.5600585938, 2733.080078125, 11.35089969635, "Guantanamo Apartments", 25000}, [1893] = {"UCDhousing", 24, 1798.8900146484, 2812.1398925781, 11.343799591064, "Guantanamo Apartments", 25000}, [1894] = {"UCDhousing", 24, 1740.6700439453, 2744.4599609375, 11.343799591064, "Guantanamo Apartments", 25000}, [1895] = {"UCDhousing", 24, 1741.2600097656, 2741.6201171875, 11.343799591064, "Guantanamo Apartments", 25000}, [1896] = {"UCDhousing", 24, 1799.6700439453, 2814.9299316406, 11.343799591064, "Guantanamo Apartments", 25000}, [1897] = {"UCDhousing", 24, 1737.5600585938, 2755.7800292969, 11.343799591064, "Guantanamo Apartments", 25000}, [1898] = {"UCDhousing", 24, 1802.7600097656, 2826.25, 11.343799591064, "Guantanamo Apartments", 25000}, [1899] = {"UCDhousing", 24, 1738.2199707031, 2752.9599609375, 11.343799591064, "Guantanamo Apartments", 25000}, [1900] = {"UCDhousing", 24, 1801.9200439453, 2823.4899902344, 11.343799591064, "Guantanamo Apartments", 18000}, [1901] = {"UCDhousing", 24, 1734.5200195313, 2767.1201171875, 11.343799591064, "Guantanamo Apartments", 25000}, [1902] = {"UCDhousing", 24, 1735.25, 2764.3200683594, 11.343799591064, "Guantanamo Apartments", 25000}, [1903] = {"UCDhousing", 24, 1804.9399414063, 2834.830078125, 11.35089969635, "Guantanamo Apartments", 25000}, [1904] = {"UCDhousing", 24, 1732.25, 2775.669921875, 14.273500442505, "Guantanamo Apartments", 25000}, [1905] = {"UCDhousing", 24, 1734.4499511719, 2767.1000976563, 14.273500442505, "Guantanamo Apartments", 25000}, [1906] = {"UCDhousing", 24, 1735.1400146484, 2764.2900390625, 14.273500442505, "Guantanamo Apartments", 25000}, [1907] = {"UCDhousing", 24, 1804.9599609375, 2834.8200683594, 14.273500442505, "Guantanamo Apartments", 25000}, [1908] = {"UCDhousing", 24, 1738.2399902344, 2752.9599609375, 14.273500442505, "Guantanamo Apartments", 25000}, [1909] = {"UCDhousing", 24, 1737.5699462891, 2755.7800292969, 14.273500442505, "Guantanamo Apartments", 25000}, [1910] = {"UCDhousing", 24, 1802.7700195313, 2826.25, 14.273500442505, "Guantanamo Apartments", 25000}, [1911] = {"UCDhousing", 24, 1801.9200439453, 2823.4799804688, 14.273500442505, "Guantanamo Apartments", 25000}, [1912] = {"UCDhousing", 24, 1741.1899414063, 2741.6000976563, 14.273500442505, "Guantanamo Apartments", 25000}, [1913] = {"UCDhousing", 24, 1740.6099853516, 2744.4399414063, 14.273500442505, "Guantanamo Apartments", 25000}, [1914] = {"UCDhousing", 24, 1798.8499755859, 2812.1499023438, 14.273500442505, "Guantanamo Apartments", 25000}, [1915] = {"UCDhousing", 24, 1743.7099609375, 2733.1201171875, 14.273500442505, "Guantanamo Apartments", 25000}, [1916] = {"UCDhousing", 24, 1799.7900390625, 2814.8898925781, 14.273500442505, "Guantanamo Apartments", 25000}, [1917] = {"UCDhousing", 24, 1795.8699951172, 2800.8000488281, 14.273500442505, "Guantanamo Apartments", 25000}, [1918] = {"UCDhousing", 24, 1796.6700439453, 2803.580078125, 14.273500442505, "Guantanamo Apartments", 25000}, [1919] = {"UCDhousing", 24, 1752.1500244141, 2744.5400390625, 11.343799591064, "Guantanamo Apartments", 25000}, [1920] = {"UCDhousing", 24, 1751.4599609375, 2747.3500976563, 11.343799591064, "Guantanamo Apartments", 25000}, [1921] = {"UCDhousing", 24, 1793.5899658203, 2792.2399902344, 14.273500442505, "Guantanamo Apartments", 25000}, [1922] = {"UCDhousing", 24, 1748.4000244141, 2758.6899414063, 11.343799591064, "Guantanamo Apartments", 25000}, [1923] = {"UCDhousing", 24, 1749.0899658203, 2755.8701171875, 11.343799591064, "Guantanamo Apartments", 25000}, [1924] = {"UCDhousing", 24, 1745.4200439453, 2770.0400390625, 11.343799591064, "Guantanamo Apartments", 25000}, [1925] = {"UCDhousing", 24, 1796.7700195313, 2861.5700683594, 11.335900306702, "Guantanamo Apartments", 25000}, [1926] = {"UCDhousing", 24, 1746.0600585938, 2767.2199707031, 11.343799591064, "Guantanamo Apartments", 25000}, [1927] = {"UCDhousing", 24, 1794.4399414063, 2863.4099121094, 11.335900306702, "Guantanamo Apartments", 25000}, [1928] = {"UCDhousing", 24, 1743, 2778.5500488281, 14.273500442505, "Guantanamo Apartments", 25000}, [1929] = {"UCDhousing", 24, 1786.5, 2867.6398925781, 11.335900306702, "Guantanamo Apartments", 25000}, [1930] = {"UCDhousing", 24, 1745.3800048828, 2770.0300292969, 14.273500442505, "Guantanamo Apartments", 25000}, [1931] = {"UCDhousing", 24, 1746.0300292969, 2767.2099609375, 14.273500442505, "Guantanamo Apartments", 25000}, [1932] = {"UCDhousing", 24, 1783.75, 2868.75, 11.335900306702, "Guantanamo Apartments", 25000}, [1933] = {"UCDhousing", 24, 1749.1800537109, 2755.8999023438, 14.273500442505, "Guantanamo Apartments", 25000}, [1934] = {"UCDhousing", 24, 1748.4499511719, 2758.6999511719, 14.273500442505, "Guantanamo Apartments", 25000}, [1935] = {"UCDhousing", 24, 1752.1899414063, 2744.5500488281, 14.273500442505, "Guantanamo Apartments", 25000}, [1936] = {"UCDhousing", 24, 1775.0200195313, 2870.8999023438, 11.335900306702, "Guantanamo Apartments", 25000}, [1937] = {"UCDhousing", 24, 1751.4300537109, 2747.3400878906, 14.273500442505, "Guantanamo Apartments", 25000}, [1938] = {"UCDhousing", 24, 1772.0899658203, 2871.3601074219, 11.335900306702, "Guantanamo Apartments", 25000}, [1939] = {"UCDhousing", 24, 1754.4699707031, 2736, 14.273500442505, "Guantanamo Apartments", 25000}, [1940] = {"UCDhousing", 24, 1763.1099853516, 2871.3000488281, 11.335900306702, "Guantanamo Apartments", 25000}, [1941] = {"UCDhousing", 24, 1760.1500244141, 2871.0100097656, 11.335900306702, "Guantanamo Apartments", 25000}, [1942] = {"UCDhousing", 24, 1737.0799560547, 2800.7900390625, 11.343799591064, "Guantanamo Apartments", 25000}, [1943] = {"UCDhousing", 24, 1736.3000488281, 2803.5700683594, 11.343799591064, "Guantanamo Apartments", 25000}, [1944] = {"UCDhousing", 24, 1751.4399414063, 2868.7399902344, 11.335900306702, "Guantanamo Apartments", 25000}, [1945] = {"UCDhousing", 24, 1733.3299560547, 2814.9299316406, 11.343799591064, "Guantanamo Apartments", 25000}, [1946] = {"UCDhousing", 24, 1748.6800537109, 2867.6799316406, 11.335900306702, "Guantanamo Apartments", 25000}, [1947] = {"UCDhousing", 24, 1734.0100097656, 2812.1201171875, 11.343799591064, "Guantanamo Apartments", 25000}, [1948] = {"UCDhousing", 24, 1730.4000244141, 2826.2900390625, 11.343799591064, "Guantanamo Apartments", 25000}, [1949] = {"UCDhousing", 24, 1740.7800292969, 2863.3500976563, 11.335900306702, "Guantanamo Apartments", 25000}, [1950] = {"UCDhousing", 24, 1731.0699462891, 2823.4799804688, 11.343799591064, "Guantanamo Apartments", 25000}, [1951] = {"UCDhousing", 24, 1738.3399658203, 2861.669921875, 11.335900306702, "Guantanamo Apartments", 25000}, [1952] = {"UCDhousing", 24, 1727.9300537109, 2834.8000488281, 14.273500442505, "Guantanamo Apartments", 25000}, [1953] = {"UCDhousing", 24, 1730.8900146484, 2823.4299316406, 14.273500442505, "Guantanamo Apartments", 25000}, [1954] = {"UCDhousing", 24, 1730.3199462891, 2826.2700195313, 14.273500442505, "Guantanamo Apartments", 25000}, [1955] = {"UCDhousing", 24, 1731.7900390625, 2855.5, 11.335900306702, "Guantanamo Apartments", 25000}, [1956] = {"UCDhousing", 24, 1733.9599609375, 2812.1101074219, 14.273500442505, "Guantanamo Apartments", 25000}, [1957] = {"UCDhousing", 24, 1733.4799804688, 2814.9699707031, 14.273500442505, "Guantanamo Apartments", 25000}, [1958] = {"UCDhousing", 24, 1731.7900390625, 2855.5100097656, 14.265600204468, "Guantanamo Apartments", 25000}, [1959] = {"UCDhousing", 24, 1736.9699707031, 2800.7600097656, 14.273500442505, "Guantanamo Apartments", 25000}, [1960] = {"UCDhousing", 24, 1736.5200195313, 2803.6298828125, 14.273500442505, "Guantanamo Apartments", 25000}, [1961] = {"UCDhousing", 24, 1740.8000488281, 2863.330078125, 14.257900238037, "Guantanamo Apartments", 25000}, [1962] = {"UCDhousing", 24, 1739.4699707031, 2792.2700195313, 14.273500442505, "Guantanamo Apartments", 25000}, [1963] = {"UCDhousing", 24, 1738.3499755859, 2861.6499023438, 14.265600204468, "Guantanamo Apartments", 25000}, [1964] = {"UCDhousing", 24, 1739.3800048828, 2792.2399902344, 11.343799591064, "Guantanamo Apartments", 25000}, [1965] = {"UCDhousing", 24, 1728.6099853516, 2789.3601074219, 11.35089969635, "Guantanamo Apartments", 25000}, [1966] = {"UCDhousing", 24, 1751.4599609375, 2868.6899414063, 14.265600204468, "Guantanamo Apartments", 25000}, [1967] = {"UCDhousing", 24, 1725.5999755859, 2800.6999511719, 11.343799591064, "Guantanamo Apartments", 25000}, [1968] = {"UCDhousing", 24, 1726.3199462891, 2797.8999023438, 11.343799591064, "Guantanamo Apartments", 25000}, [1969] = {"UCDhousing", 24, 1748.6600341797, 2867.7099609375, 14.265600204468, "Guantanamo Apartments", 25000}, [1970] = {"UCDhousing", 24, 1722.4799804688, 2812.0200195313, 11.343799591064, "Guantanamo Apartments", 25000}, [1971] = {"UCDhousing", 24, 1723.2299804688, 2809.2299804688, 11.343799591064, "Guantanamo Apartments", 25000}, [1972] = {"UCDhousing", 24, 1763.1099853516, 2871.2600097656, 14.265600204468, "Guantanamo Apartments", 25000}, [1973] = {"UCDhousing", 24, 1719.5300292969, 2823.3798828125, 11.343799591064, "Guantanamo Apartments", 25000}, [1974] = {"UCDhousing", 24, 1760.1600341797, 2870.9599609375, 14.265600204468, "Guantanamo Apartments", 25000}, [1975] = {"UCDhousing", 24, 1720.25, 2820.580078125, 11.343799591064, "Guantanamo Apartments", 25000}, [1976] = {"UCDhousing", 24, 1717.1600341797, 2831.9099121094, 11.35089969635, "Guantanamo Apartments", 25000}, [1977] = {"UCDhousing", 24, 1775.0200195313, 2870.8798828125, 14.265600204468, "Guantanamo Apartments", 25000}, [1978] = {"UCDhousing", 24, 1772.0999755859, 2871.3701171875, 14.265600204468, "Guantanamo Apartments", 25000}, [1979] = {"UCDhousing", 24, 1727.9399414063, 2834.8000488281, 11.343799591064, "Guantanamo Apartments", 25000}, [1980] = {"UCDhousing", 24, 1786.4799804688, 2867.6000976563, 14.265600204468, "Guantanamo Apartments", 25000}, [1981] = {"UCDhousing", 24, 1717.0500488281, 2831.8798828125, 14.273500442505, "Guantanamo Apartments", 25000}, [1982] = {"UCDhousing", 24, 1783.7700195313, 2868.7900390625, 14.265600204468, "Guantanamo Apartments", 25000}, [1983] = {"UCDhousing", 24, 1719.4000244141, 2823.3500976563, 14.273500442505, "Guantanamo Apartments", 25000}, [1984] = {"UCDhousing", 24, 1720.2600097656, 2820.580078125, 14.273500442505, "Guantanamo Apartments", 25000}, [1985] = {"UCDhousing", 24, 1796.8000488281, 2861.6101074219, 14.265600204468, "Guantanamo Apartments", 25000}, [1986] = {"UCDhousing", 24, 1794.4399414063, 2863.4099121094, 14.265600204468, "Guantanamo Apartments", 25000}, [1987] = {"UCDhousing", 24, 1723.0699462891, 2809.1799316406, 14.273500442505, "Guantanamo Apartments", 25000}, [1988] = {"UCDhousing", 24, 1722.3900146484, 2812, 14.273500442505, "Guantanamo Apartments", 25000}, [1989] = {"UCDhousing", 24, 1803.4200439453, 2855.5300292969, 14.265600204468, "Guantanamo Apartments", 25000}, [1990] = {"UCDhousing", 24, 1726.1700439453, 2797.8701171875, 14.273500442505, "Guantanamo Apartments", 25000}, [1991] = {"UCDhousing", 24, 1725.5200195313, 2800.6799316406, 14.273500442505, "Guantanamo Apartments", 25000}, [1992] = {"UCDhousing", 24, 1728.5400390625, 2789.3400878906, 14.273500442505, "Guantanamo Apartments", 25000}, [1993] = {"UCDhousing", 24, 1803.4300537109, 2855.5300292969, 11.335900306702, "Guantanamo Apartments", 25000}, [1994] = {"UCDhousing", 24, 1743.0600585938, 2778.5700683594, 11.343799591064, "Guantanamo Apartments", 25000}, [1995] = {"UCDhousing", 24, 1732.1700439453, 2775.6499023438, 11.35089969635, "Guantanamo Apartments", 25000}, [1996] = {"UCDhousing", 24, 1778.4699707031, 2736.0400390625, 11.35089969635, "Guantanamo Apartments", 25000}, [1997] = {"UCDhousing", 24, 1824.1700439453, 2734.6499023438, 11.343799591064, "Guantanamo Apartments", 25000}, [1998] = {"UCDhousing", 24, 1896.5300292969, 2806.9299316406, 11.35089969635, "Guantanamo Apartments", 25000}, [1999] = {"UCDhousing", 24, 1896.5500488281, 2806.9099121094, 14.265700340271, "Guantanamo Apartments", 25000}, [2000] = {"UCDhousing", 6, -2737.5500488281, 866.32702636719, 64.632797241211, "Republican Ave", 260000}, [2001] = {"UCDhousing", 6, -2736.8701171875, 846.62902832031, 59.272800445557, "Republican Ave", 260000}, [2002] = {"UCDhousing", 6, -2737.8400878906, 836.79998779297, 56.252998352051, "Republican Ave", 260000}, [2003] = {"UCDhousing", 6, -2738.3200683594, 801.57800292969, 53.0625, "Republican Ave", 260000}, [2004] = {"UCDhousing", 6, -2738.3100585938, 797.66101074219, 53.267601013184, "Republican Ave", 260000}, [2005] = {"UCDhousing", 6, -2738.3200683594, 789.15399169922, 54.382801055908, "Republican Ave", 260000}, [2006] = {"UCDhousing", 6, -2738.3100585938, 771.58697509766, 54.382801055908, "Republican Ave", 260000}, [2007] = {"UCDhousing", 6, -2738.3200683594, 758.77899169922, 54.382801055908, "Republican Ave", 260000}, [2008] = {"UCDhousing", 6, -2738.3100585938, 755.10400390625, 52.772300720215, "Republican Ave", 260000}, [2009] = {"UCDhousing", 6, -2738.3200683594, 746.67901611328, 49.187301635742, "Republican Ave", 260000}, [2010] = {"UCDhousing", 31, -2731.5300292969, 723.69799804688, 41.273399353027, "Glendale St ", 400000}, [2011] = {"UCDhousing", 31, -2723.4599609375, 722.85900878906, 41.265998840332, "Glendale St ", 400000}, [2012] = {"UCDhousing", 31, -2710.8200683594, 722.85998535156, 39.718799591064, "Glendale St ", 400000}, [2013] = {"UCDhousing", 31, -2706.9899902344, 722.85797119141, 37.539100646973, "Glendale St ", 400000}, [2014] = {"UCDhousing", 31, -2686.169921875, 722.85900878906, 32.225700378418, "Glendale St ", 400000}, [2015] = {"UCDhousing", 31, -2678.1899414063, 722.25201416016, 28.596200942993, "Glendale St ", 400000}, [2016] = {"UCDhousing", 31, -2665.4299316406, 722.25201416016, 27.962400436401, "Glendale St ", 400000}, [2017] = {"UCDhousing", 31, -2661.6499023438, 722.25402832031, 27.962400436401, "Glendale St ", 400000}, [2018] = {"UCDhousing", 31, -2642.1398925781, 728.03302001953, 27.960899353027, "Glendale St ", 400000}, [2019] = {"UCDhousing", 19, -2581.419921875, 719.03002929688, 27.94529914856, "Glendale St ", 560000}, [2020] = {"UCDhousing", 19, -2553.9599609375, 719.02899169922, 27.94529914856, "Glendale St ", 560000}, [2021] = {"UCDhousing", 19, -2594.1899414063, 733.08898925781, 28.137500762939, "Aces St ", 310000}, [2022] = {"UCDhousing", 19, -2594.1899414063, 750.90002441406, 33.704700469971, "Aces St ", 310000}, [2023] = {"UCDhousing", 19, -2594.1899414063, 768.03399658203, 40.017398834229, "Aces St ", 310000}, [2024] = {"UCDhousing", 19, -2594.1899414063, 785.20300292969, 46.231899261475, "Aces St ", 310000}, [2025] = {"UCDhousing", 6, -2625.4799804688, 733.16497802734, 28.010599136353, "Aces St ", 310000}, [2026] = {"UCDhousing", 6, -2622.5200195313, 749.78698730469, 31.421899795532, "Aces St ", 310000}, [2027] = {"UCDhousing", 6, -2622.5200195313, 757.81896972656, 35.328098297119, "Aces St ", 310000}, [2028] = {"UCDhousing", 6, -2622.5200195313, 766.25799560547, 36.835899353027, "Aces St ", 310000}, [2029] = {"UCDhousing", 6, -2622.2900390625, 772.34600830078, 41.342700958252, "Aces St ", 310000}, [2030] = {"UCDhousing", 6, -2622.5200195313, 782.63702392578, 44.859401702881, "Aces St ", 310000}, [2031] = {"UCDhousing", 1, -2621.6799316406, 790.73101806641, 48.583400726318, "Aces St ", 700000}, [2032] = {"UCDhousing", 31, -2621.669921875, 802.86499023438, 49.984401702881, "Aces St ", 560000}, [2033] = {"UCDhousing", 24, -789.70300292969, 2747.75, 45.854598999023, "Red Motel", 50000}, [2034] = {"UCDhousing", 24, -789.70300292969, 2749.3100585938, 45.854598999023, "Red Motel", 50000}, [2035] = {"UCDhousing", 24, -789.70300292969, 2755.8200683594, 45.854598999023, "Red Motel", 50000}, [2036] = {"UCDhousing", 24, -789.70300292969, 2757.2800292969, 45.854598999023, "Red Motel", 50000}, [2037] = {"UCDhousing", 24, -789.70300292969, 2763.7900390625, 45.854598999023, "Red Motel", 50000}, [2038] = {"UCDhousing", 24, -789.70300292969, 2765.2199707031, 45.854598999023, "Red Motel", 50000}, [2039] = {"UCDhousing", 24, -789.70202636719, 2765.2800292969, 48.255599975586, "Red Motel", 50000}, [2040] = {"UCDhousing", 24, -789.70300292969, 2763.6999511719, 48.255599975586, "Red Motel", 50000}, [2041] = {"UCDhousing", 24, -789.70300292969, 2757.2800292969, 48.255599975586, "Red Motel", 50000}, [2042] = {"UCDhousing", 24, -789.70300292969, 2755.7800292969, 48.255599975586, "Red Motel", 50000}, [2043] = {"UCDhousing", 24, -789.70300292969, 2749.2099609375, 48.255599975586, "Red Motel", 50000}, [2044] = {"UCDhousing", 24, -789.70300292969, 2747.8200683594, 48.255599975586, "Red Motel", 50000}, [2045] = {"UCDhousing", 24, -776.60198974609, 2765.3999023438, 45.855598449707, "Red Motel", 50000}, [2046] = {"UCDhousing", 24, -775.05798339844, 2765.3999023438, 45.855598449707, "Red Motel", 50000}, [2047] = {"UCDhousing", 24, -768.67602539063, 2765.3999023438, 45.855598449707, "Red Motel", 50000}, [2048] = {"UCDhousing", 24, -767.13500976563, 2765.3999023438, 45.855598449707, "Red Motel", 50000}, [2049] = {"UCDhousing", 24, -760.54797363281, 2765.3999023438, 45.855598449707, "Red Motel", 50000}, [2050] = {"UCDhousing", 24, -759.15997314453, 2765.3999023438, 45.855598449707, "Red Motel", 50000}, [2051] = {"UCDhousing", 24, -759.10400390625, 2765.3999023438, 48.255599975586, "Red Motel", 50000}, [2052] = {"UCDhousing", 24, -760.56799316406, 2765.3999023438, 48.255599975586, "Red Motel", 50000}, [2053] = {"UCDhousing", 24, -767.10302734375, 2765.3999023438, 48.255599975586, "Red Motel", 50000}, [2054] = {"UCDhousing", 24, -775.19000244141, 2765.3999023438, 48.255599975586, "Red Motel", 50000}, [2055] = {"UCDhousing", 24, -776.56500244141, 2765.3999023438, 48.255599975586, "Red Motel", 50000}, [2056] = {"UCDhousing", 3, 2551.2199707031, 57.166999816895, 27.67560005188, "Square St.", 140000}, [2057] = {"UCDhousing", 3, 2551.2199707031, 91.708999633789, 27.67560005188, "Square St.", 140000}, [2058] = {"UCDhousing", 3, 2536.2600097656, 128.98699951172, 27.683500289917, "Square St.", 140000}, [2059] = {"UCDhousing", 3, 2518.4099121094, 128.98699951172, 27.67560005188, "Square St.", 140000}, [2060] = {"UCDhousing", 3, 2458.8000488281, 128.98500061035, 27.67560005188, "Square St.", 140000}, [2061] = {"UCDhousing", 3, 2479.4699707031, 94.395500183105, 27.683500289917, "Square St.", 140000}, [2062] = {"UCDhousing", 3, 2514.0400390625, 94.394500732422, 27.683500289917, "Square St.", 140000}, [2063] = {"UCDhousing", 3, 2518.6201171875, 58.434600830078, 27.683500289917, "Square St.", 150000}, [2064] = {"UCDhousing", 3, 2481.2199707031, 64.349601745605, 27.683500289917, "Square St.", 140000}, [2065] = {"UCDhousing", 3, 2480.7299804688, 126.9940032959, 27.67560005188, "Square St.", 150000}, [2066] = {"UCDhousing", 3, 2443.8500976563, 92.310501098633, 28.441600799561, "Square St.", 150000}, [2067] = {"UCDhousing", 3, 2549.2299804688, 25.141599655151, 27.67560005188, "Cresson Crescent", 150000}, [2068] = {"UCDhousing", 3, 2551.2199707031, -5.5888700485229, 27.67560005188, "Cresson Crescent", 140000}, [2069] = {"UCDhousing", 3, 2513.3100585938, -28.403299331665, 28.441600799561, "Cresson Crescent", 150000}, [2070] = {"UCDhousing", 3, 2509.5, 11.761699676514, 28.441600799561, "Cresson Crescent", 150000}, [2071] = {"UCDhousing", 3, 2488.4699707031, 11.762700080872, 28.441600799561, "Cresson Crescent", 150000}, [2072] = {"UCDhousing", 3, 2484.4399414063, -28.402299880981, 28.441600799561, "Cresson Crescent", 150000}, [2073] = {"UCDhousing", 3, 2446.6298828125, 19.050800323486, 27.683500289917, "Cheesman Ave.", 140000}, [2074] = {"UCDhousing", 3, 2448.4799804688, -11.019499778748, 27.683500289917, "Cheesman Ave.", 140000}, [2075] = {"UCDhousing", 14, 2438.7700195313, -54.963901519775, 28.153499603271, "Cheesman Ave.", 100000}, [2076] = {"UCDhousing", 6, -2618.75, 830.90802001953, 49.984401702881, "Aces St.", 350000}, [2077] = {"UCDhousing", 6, -2594.6899414063, 830.98199462891, 49.984401702881, "Aces St.", 350000}, [2078] = {"UCDhousing", 6, -2619.7399902344, 845.21801757813, 50.596698760986, "Aces St.", 350000}, [2079] = {"UCDhousing", 6, -2593.6999511719, 845.28997802734, 50.59289932251, "Aces St.", 350000}, [2080] = {"UCDhousing", 6, -2620.7099609375, 855.04400634766, 53.568698883057, "Aces St.", 350000}, [2081] = {"UCDhousing", 6, -2592.7299804688, 855.08801269531, 53.59400177002, "Aces St.", 350000}, [2082] = {"UCDhousing", 6, -2620.0200195313, 874.86297607422, 58.921901702881, "Aces St.", 350000}, [2083] = {"UCDhousing", 6, -2593.419921875, 874.76202392578, 58.921901702881, "Aces St.", 350000}, [2084] = {"UCDhousing", 6, -2620.2399902344, 883.16900634766, 63.25, "Aces St.", 350000}, [2085] = {"UCDhousing", 6, -2593.2099609375, 883.11297607422, 63.25, "Aces St.", 350000}, [2086] = {"UCDhousing", 6, -2591.169921875, 927.93902587891, 65.015602111816, "Aces St.", 350000}, [2087] = {"UCDhousing", 6, -2591.169921875, 935.96301269531, 68.929702758789, "Aces St.", 350000}, [2088] = {"UCDhousing", 6, -2591.169921875, 944.32202148438, 70.429702758789, "Aces St.", 350000}, [2089] = {"UCDhousing", 6, -2591.169921875, 960.75, 78.453102111816, "Aces St.", 350000}, [2090] = {"UCDhousing", 6, -2597.330078125, 968.94000244141, 78.284202575684, "Aces St", 350000}, [2091] = {"UCDhousing", 31, -2597.3200683594, 979.83599853516, 78.273399353027, "Aces St", 570000}, [2092] = {"UCDhousing", 6, -2596.6499023438, 986.33099365234, 78.273399353027, "Aces St", 360000}, [2093] = {"UCDhousing", 29, -2655.3999023438, 985.83197021484, 64.991302490234, "Panopticon Ave", 4200000}, [2094] = {"UCDhousing", 25, -2710.830078125, 967.46997070313, 54.460899353027, "Panopticon Ave", 4600000}, [2095] = {"UCDhousing", 31, -2584.0500488281, 992.25, 78.273399353027, "Panopticon Ave", 590000}, [2096] = {"UCDhousing", 6, -2573.6000976563, 992.25201416016, 78.273399353027, "Panopticon Ave", 380000}, [2097] = {"UCDhousing", 6, -2564.2099609375, 992.25500488281, 78.273399353027, "Panopticon Ave", 380000}, [2098] = {"UCDhousing", 31, -2553.7600097656, 992.25, 78.273399353027, "Panopticon Ave", 600000}, [2099] = {"UCDhousing", 6, -2510.919921875, 1053.9300537109, 65.185897827148, "Sewers Rd ", 230000}, [2100] = {"UCDhousing", 6, -2511.7099609375, 1045.4799804688, 65.507797241211, "Sewers Rd ", 230000}, [2101] = {"UCDhousing", 6, -2510.919921875, 1028.9699707031, 73.573303222656, "Sewers Rd ", 230000}, [2102] = {"UCDhousing", 6, -2511.7700195313, 1020.9899902344, 77.21240234375, "Sewers Rd ", 230000}, [2103] = {"UCDhousing", 6, -2511.7700195313, 1008.7600097656, 78.343803405762, "Sewers Rd ", 230000}, [2104] = {"UCDhousing", 6, -2511.7700195313, 1000.5700073242, 78.343803405762, "Sewers Rd ", 230000}, [2105] = {"UCDhousing", 6, -2511.7700195313, 992.40600585938, 78.33570098877, "Sewers Rd ", 230000}, [2106] = {"UCDhousing", 6, -2511.7700195313, 987.90997314453, 78.343803405762, "Sewers Rd ", 230000}, [2107] = {"UCDhousing", 6, -2511.7399902344, 975.73602294922, 77.22380065918, "Sewers Rd ", 230000}, [2108] = {"UCDhousing", 6, -2510.8999023438, 967.68499755859, 73.530799865723, "Sewers Rd ", 230000}, [2109] = {"UCDhousing", 6, -2541.6599121094, 987.96301269531, 78.289100646973, "Sewers Rd ", 410000}, [2110] = {"UCDhousing", 31, -2541.6599121094, 975.71997070313, 77.25170135498, "Sewers Rd ", 210000}, [2111] = {"UCDhousing", 6, -2542.5100097656, 967.64898681641, 73.53630065918, "Sewers Rd ", 230000}, [2112] = {"UCDhousing", 6, -2542.5, 951.20697021484, 65.505302429199, "Sewers Rd ", 230000}, [2113] = {"UCDhousing", 6, -2542.5, 942.69897460938, 64, "Sewers Rd ", 230000}, [2114] = {"UCDhousing", 6, -2510.8999023438, 951.22100830078, 65.609802246094, "Sewers Rd ", 230000}, [2115] = {"UCDhousing", 6, -2510.8898925781, 942.84899902344, 65.289100646973, "Sewers Rd ", 230000}, [2116] = {"UCDhousing", 31, -2537.1398925781, 929.55297851563, 65.013000488281, "Sewers Rd ", 230000}, [2117] = {"UCDhousing", 13, -2513.5, 885.77600097656, 62.778099060059, "Sewers Rd ", 210000}, [2118] = {"UCDhousing", 13, -2513.5, 867.48101806641, 57.742198944092, "Sewers Rd ", 210000}, [2119] = {"UCDhousing", 13, -2513.5100097656, 849.18798828125, 52.695301055908, "Sewers Rd ", 210000}, [2120] = {"UCDhousing", 13, -2513.5, 830.82299804688, 49.99829864502, "Sewers Rd ", 210000}, [2121] = {"UCDhousing", 6, -2540.2099609375, 883.18597412109, 63.25, "Sewers Rd ", 230000}, [2122] = {"UCDhousing", 6, -2540, 874.82800292969, 58.921901702881, "Sewers Rd ", 230000}, [2123] = {"UCDhousing", 6, -2540.6799316406, 855.09899902344, 53.179698944092, "Sewers Rd ", 230000}, [2124] = {"UCDhousing", 6, -2539.7199707031, 845.27301025391, 50.597499847412, "Sewers Rd ", 230000}, [2125] = {"UCDhousing", 6, -2538.7299804688, 830.02001953125, 49.984401702881, "Sewers Rd ", 230000}, [2126] = {"UCDhousing", 13, -2541.25, 785.22998046875, 46.229999542236, "Sewers Rd ", 590000}, [2127] = {"UCDhousing", 19, -2541.25, 768.10400390625, 40.019901275635, "Sewers Rd ", 590000}, [2128] = {"UCDhousing", 19, -2541.2399902344, 750.93798828125, 33.705799102783, "Sewers Rd ", 590000}, [2129] = {"UCDhousing", 19, -2541.2900390625, 733.09698486328, 28.05179977417, "Sewers Rd ", 590000}, [2130] = {"UCDhousing", 6, -2737.3601074219, 822.98999023438, 53.730499267578, "Carson St.", 590000}, [2131] = {"UCDhousing", 31, -2726.8400878906, 822.98999023438, 53.730499267578, "Carson St.", 590000}, [2132] = {"UCDhousing", 19, -2700.3500976563, 820.86102294922, 49.984401702881, "Carson St.", 590000}, [2133] = {"UCDhousing", 6, -2709.7700195313, 803.07897949219, 49.976600646973, "Carson St.", 590000}, [2134] = {"UCDhousing", 31, -2698.7299804688, 803.07897949219, 49.97029876709, "Carson St.", 670000}, [2135] = {"UCDhousing", 31, -2687.8100585938, 803.08001708984, 49.976600646973, "Carson St.", 670000}, [2136] = {"UCDhousing", 13, -2685.0300292969, 820.51800537109, 49.984401702881, "Carson St.", 590000}, [2137] = {"UCDhousing", 6, -2677.1899414063, 803.07897949219, 49.976600646973, "Carson St.", 590000}, [2138] = {"UCDhousing", 6, -2666.9499511719, 820.30603027344, 49.984401702881, "Carson St.", 590000}, [2139] = {"UCDhousing", 6, -2670.5300292969, 803.08697509766, 49.976600646973, "Carson St.", 590000}, [2140] = {"UCDhousing", 6, -2660.0200195313, 803.0830078125, 49.976600646973, "Carson St.", 590000}, [2141] = {"UCDhousing", 6, -2652.5900878906, 820.31896972656, 49.984401702881, "Carson St.", 590000}, [2142] = {"UCDhousing", 6, -2645.6201171875, 803.083984375, 49.976600646973, "Carson St.", 590000}, [2143] = {"UCDhousing", 6, -2641.9699707031, 820.31597900391, 49.984401702881, "Carson St.", 590000}, [2144] = {"UCDhousing", 6, -2590.9899902344, 819.79498291016, 49.99100112915, "Carson St.", 590000}, [2145] = {"UCDhousing", 6, -2576.5600585938, 819.79901123047, 49.984401702881, "Carson St.", 590000}, [2146] = {"UCDhousing", 6, -2565.8898925781, 819.79901123047, 49.99100112915, "Carson St.", 590000}, [2147] = {"UCDhousing", 19, -2586.0600585938, 794.17602539063, 49.423599243164, "Carson St.", 590000}, [2148] = {"UCDhousing", 13, -2569.1398925781, 794.17797851563, 49.423801422119, "Carson St.", 590000}, [2149] = {"UCDhousing", 13, -2550.7800292969, 794.17401123047, 49.423301696777, "Carson St.", 590000}, [2150] = {"UCDhousing", 6, -2559.2099609375, 819.78497314453, 49.984401702881, "Carson St.", 590000}, [2151] = {"UCDhousing", 6, -2548.7800292969, 819.79901123047, 49.984401702881, "Carson St.", 590000}, [2152] = {"UCDhousing", 13, -2504.6298828125, 821.30798339844, 45.987400054932, "Carson St.", 230000}, [2153] = {"UCDhousing", 13, -2487.3999023438, 821.30700683594, 38.384799957275, "Carson St.", 230000}, [2154] = {"UCDhousing", 28, -2447.4399414063, 821.60998535156, 35.179698944092, "Carson St.", 3750000}, [2155] = {"UCDhousing", 13, -2409.1201171875, 819.97100830078, 35.179698944092, "Carson St.", 210000}, [2156] = {"UCDhousing", 13, -2358.3701171875, 820.03198242188, 38.536399841309, "Carson St.", 210000}, [2157] = {"UCDhousing", 13, -2358.5300292969, 796.75598144531, 38.349899291992, "Carson St.", 210000}, [2158] = {"UCDhousing", 13, -2340.1000976563, 796.76000976563, 41.989200592041, "Carson St.", 210000}, [2159] = {"UCDhousing", 13, -2340.0500488281, 820.03302001953, 41.982799530029, "Carson St.", 210000}, [2160] = {"UCDhousing", 13, -2321.7399902344, 796.75500488281, 45.345100402832, "Carson St.", 210000}, [2161] = {"UCDhousing", 13, -2321.7099609375, 820.02502441406, 45.341598510742, "Carson St.", 210000}, [2162] = {"UCDhousing", 13, -2303.3601074219, 820.03198242188, 48.700199127197, "Carson St.", 210000}, [2163] = {"UCDhousing", 13, -2303.3798828125, 796.75598144531, 48.691600799561, "Carson St.", 210000}, [2164] = {"UCDhousing", 13, -2286.5700683594, 796.75500488281, 49.445301055908, "Carson St.", 210000}, [2165] = {"UCDhousing", 13, -2223.6799316406, 821.13098144531, 49.438701629639, "Carson St.", 210000}, [2166] = {"UCDhousing", 13, -2223.7900390625, 795.70397949219, 49.434299468994, "Carson St.", 210000}, [2167] = {"UCDhousing", 13, -2205.4099121094, 821.13098144531, 50.486698150635, "Carson St.", 210000}, [2168] = {"UCDhousing", 13, -2205.4299316406, 795.70098876953, 50.483798980713, "Carson St.", 210000}, [2169] = {"UCDhousing", 13, -2187.0400390625, 821.13598632813, 57.552898406982, "Carson St.", 210000}, [2170] = {"UCDhousing", 13, -2187.1000976563, 795.8759765625, 57.53870010376, "Carson St.", 210000}, [2171] = {"UCDhousing", 13, -2168.7800292969, 795.70397949219, 64.976600646973, "Carson St.", 210000}, [2172] = {"UCDhousing", 13, -2168.6799316406, 821.13598632813, 64.97380065918, "Carson St.", 210000}, [2173] = {"UCDhousing", 13, -2112.4799804688, 823.55401611328, 69.5625, "Carson St.", 210000}, [2174] = {"UCDhousing", 13, -2112.5500488281, 795.74700927734, 69.5625, "Carson St.", 210000}, [2175] = {"UCDhousing", 13, -2094.169921875, 795.74102783203, 69.568397521973, "Carson St.", 210000}, [2176] = {"UCDhousing", 13, -2094.080078125, 823.55401611328, 69.5625, "Carson St.", 210000}, [2177] = {"UCDhousing", 13, -2066.5200195313, 820.69201660156, 64.925300598145, "Carson St.", 210000}, [2178] = {"UCDhousing", 13, -2066.4599609375, 796.09997558594, 64.920402526855, "Carson St.", 210000}, [2179] = {"UCDhousing", 13, -2048.1101074219, 796.09802246094, 57.030200958252, "Carson St.", 210000}, [2180] = {"UCDhousing", 13, -2048.1101074219, 820.68499755859, 57.023601531982, "Carson St.", 210000}, [2181] = {"UCDhousing", 13, -2029.8000488281, 820.69000244141, 49.465000152588, "Carson St.", 210000}, [2182] = {"UCDhousing", 13, -2029.7900390625, 796.09698486328, 49.466499328613, "Carson St.", 210000}, [2183] = {"UCDhousing", 28, -2720.8601074219, 923.86602783203, 67.593803405762, "Republican Ave", 5000000}, [2184] = {"UCDhousing", 6, -2706.6799316406, 864.45202636719, 70.703102111816, "Republican Ave", 650000}, [2185] = {"UCDhousing", 29, -2662.0300292969, 876.33099365234, 79.773803710938, "Panopticon Ave", 6000000}, [2186] = {"UCDhousing", 28, -2641.1201171875, 935.71997070313, 71.953102111816, "Panopticon Ave", 6000000}, [2187] = {"UCDhousing", 6, -2583.8100585938, 896.25402832031, 64.984397888184, "Panopticon Ave", 210000}, [2188] = {"UCDhousing", 6, -2580.9599609375, 920.37701416016, 64.984397888184, "Panopticon Ave", 210000}, [2189] = {"UCDhousing", 6, -2573.1499023438, 896.25500488281, 64.984397888184, "Panopticon Ave", 210000}, [2190] = {"UCDhousing", 6, -2570.0100097656, 920.37902832031, 64.984397888184, "Panopticon Ave", 210000}, [2191] = {"UCDhousing", 6, -2566.5700683594, 896.64099121094, 64.984397888184, "Panopticon Ave", 210000}, [2192] = {"UCDhousing", 6, -2562.4699707031, 920.37799072266, 64.984397888184, "Panopticon Ave", 210000}, [2193] = {"UCDhousing", 6, -2556.0400390625, 896.64001464844, 64.984397888184, "Panopticon Ave", 210000}, [2194] = {"UCDhousing", 6, -2551.8898925781, 920.38000488281, 64.984397888184, "Panopticon Ave", 210000}, [2195] = {"UCDhousing", 6, -2541.4499511719, 896.63897705078, 64.984397888184, "Panopticon Ave", 210000}, [2196] = {"UCDhousing", 6, -2545.3000488281, 920.34002685547, 64.976600646973, "Panopticon Ave", 210000}, [2197] = {"UCDhousing", 13, -2502.8898925781, 921.36602783203, 65.239898681641, "Panopticon Ave", 210000}, [2198] = {"UCDhousing", 13, -2502.9599609375, 895.23400878906, 65.259498596191, "Panopticon Ave", 210000}, [2199] = {"UCDhousing", 13, -2471.7800292969, 895.23297119141, 63.168399810791, "Panopticon Ave", 210000}, [2200] = {"UCDhousing", 13, -2471.8200683594, 921.27398681641, 63.164600372314, "Panopticon Ave", 210000}, [2201] = {"UCDhousing", 13, -2449.7800292969, 895.23400878906, 58.146499633789, "Panopticon Ave", 210000}, [2202] = {"UCDhousing", 13, -2449.7900390625, 921.42602539063, 58.144901275635, "Panopticon Ave", 210000}, [2203] = {"UCDhousing", 13, -2431.3000488281, 921.42498779297, 50.578098297119, "Panopticon Ave", 210000}, [2204] = {"UCDhousing", 13, -2431.3601074219, 895.23400878906, 50.5458984375, "Panopticon Ave", 210000}, [2205] = {"UCDhousing", 13, -2413, 895.22802734375, 45.466800689697, "Panopticon Ave", 210000}, [2206] = {"UCDhousing", 13, -2412.9699707031, 921.42999267578, 45.469100952148, "Panopticon Ave", 210000}, [2207] = {"UCDhousing", 13, -2402.2299804688, 930.66302490234, 45.445301055908, "San Pedro Ave", 210000}, [2208] = {"UCDhousing", 13, -2402.4099121094, 886.0830078125, 45.445301055908, "San Pedro Ave", 210000}, [2209] = {"UCDhousing", 13, -2402.419921875, 869.15100097656, 44.203098297119, "San Pedro Ave", 210000}, [2210] = {"UCDhousing", 13, -2372.5700683594, 871.89697265625, 44.508598327637, "San Pedro Ave", 210000}, [2211] = {"UCDhousing", 13, -2372.5600585938, 851.74597167969, 41.076801300049, "San Pedro Ave", 210000}, [2212] = {"UCDhousing", 13, -2402.419921875, 849.10797119141, 40.593799591064, "San Pedro Ave", 210000}, [2213] = {"UCDhousing", 13, -2402.4099121094, 829.18701171875, 36.855499267578, "San Pedro Ave", 210000}, [2214] = {"UCDhousing", 13, -2372.5600585938, 834.333984375, 37.977298736572, "San Pedro Ave", 210000}, [2215] = {"UCDhousing", 13, -2372.5300292969, 783.88000488281, 35.115200042725, "San Pedro Ave", 210000}, [2216] = {"UCDhousing", 13, -2368.8200683594, 763.49102783203, 35.151699066162, "San Pedro Ave", 210000}, [2217] = {"UCDhousing", 13, -2368.8200683594, 740.56201171875, 35.151500701904, "San Pedro Ave", 210000}, [2218] = {"UCDhousing", 13, -2368.8200683594, 711.84399414063, 35.173198699951, "San Pedro Ave", 210000}, [2219] = {"UCDhousing", 13, -2372.5300292969, 692.77398681641, 35.164100646973, "San Pedro Ave", 210000}, [2220] = {"UCDhousing", 13, -2372.5300292969, 643.87799072266, 35.171901702881, "San Pedro Ave", 210000}, [2221] = {"UCDhousing", 13, -2372.5300292969, 632.44598388672, 34.259700775146, "San Pedro Ave", 210000}, [2222] = {"UCDhousing", 13, -2372.5300292969, 614.14697265625, 30.937000274658, "San Pedro Ave", 210000}, [2223] = {"UCDhousing", 13, -2372.5300292969, 595.68499755859, 27.628900527954, "San Pedro Ave", 210000}, [2224] = {"UCDhousing", 19, -2359.1999511719, 730.94097900391, 38.664798736572, "Backstreet", 210000}, [2225] = {"UCDhousing", 19, -2359.2900390625, 721.63897705078, 38.642700195313, "Backstreet", 210000}, [2226] = {"UCDhousing", 19, -2341.0300292969, 721.63702392578, 42.928699493408, "Backstreet", 210000}, [2227] = {"UCDhousing", 19, -2340.9899902344, 730.92102050781, 42.940601348877, "Backstreet", 210000}, [2228] = {"UCDhousing", 19, -2322.669921875, 730.93798828125, 47.253700256348, "Backstreet", 210000}, [2229] = {"UCDhousing", 19, -2322.6298828125, 721.63897705078, 47.261901855469, "Backstreet", 210000}, [2230] = {"UCDhousing", 19, -2303.1499023438, 730.94000244141, 49.451599121094, "Backstreet", 210000}, [2231] = {"UCDhousing", 19, -2293.6398925781, 730.94000244141, 49.443801879883, "Backstreet", 210000}, [2232] = {"UCDhousing", 19, -2278.830078125, 747.88702392578, 49.439300537109, "Hongkong Ave", 210000}, [2233] = {"UCDhousing", 19, -2240.5100097656, 753.5009765625, 49.376800537109, "Hongkong Ave", 210000}, [2234] = {"UCDhousing", 19, -2278.830078125, 767.78302001953, 49.445301055908, "Hongkong Ave", 210000}, [2235] = {"UCDhousing", 19, -2240.5100097656, 786.10400390625, 49.376800537109, "Hongkong Ave", 210000}, [2236] = {"UCDhousing", 19, -2278.830078125, 787.78802490234, 49.445301055908, "Hongkong Ave", 210000}, [2237] = {"UCDhousing", 19, -2233.2600097656, 830.59802246094, 54.304698944092, "Hongkong Ave", 210000}, [2238] = {"UCDhousing", 19, -2285.3100585938, 829.34497070313, 57.1702003479, "Hongkong Ave", 210000}, [2239] = {"UCDhousing", 19, -2285.080078125, 849.78900146484, 65.641098022461, "Hongkong Ave", 210000}, [2240] = {"UCDhousing", 19, -2233.2600097656, 848.97998046875, 61.890598297119, "Hongkong Ave", 210000}, [2241] = {"UCDhousing", 19, -2233.8200683594, 870.39801025391, 66.640899658203, "Hongkong Ave", 210000}, [2242] = {"UCDhousing", 19, -2282.4099121094, 873.1669921875, 66.917701721191, "Hongkong Ave", 210000}, [2243] = {"UCDhousing", 19, -2233.830078125, 888.85400390625, 66.652496337891, "Hongkong Ave", 210000}, [2244] = {"UCDhousing", 19, -2282.5300292969, 916.58099365234, 66.648399353027, "Hongkong Ave", 210000}, [2245] = {"UCDhousing", 19, -2238.8000488281, 943.93597412109, 66.652198791504, "Hongkong Ave", 210000}, [2246] = {"UCDhousing", 19, -2238.7900390625, 962.17797851563, 66.652198791504, "Hongkong Ave", 210000}, [2247] = {"UCDhousing", 19, -2238.7900390625, 980.51898193359, 71.421600341797, "Hongkong Ave", 210000}, [2248] = {"UCDhousing", 19, -2238.7900390625, 998.81298828125, 78.986198425293, "Hongkong Ave", 210000}, [2249] = {"UCDhousing", 19, -2282.419921875, 979.23901367188, 70.82869720459, "Hongkong Ave", 210000}, [2250] = {"UCDhousing", 19, -2282.419921875, 999.49798583984, 79.25170135498, "Hongkong Ave", 210000}, [2251] = {"UCDhousing", 19, -2282.419921875, 1023.0999755859, 84.112800598145, "Hongkong Ave", 210000}, [2252] = {"UCDhousing", 19, -2239.7399902344, 1037.4300537109, 83.849899291992, "Hongkong Ave", 210000}, [2253] = {"UCDhousing", 19, -2282.419921875, 1046.75, 84.120796203613, "Hongkong Ave", 210000}, [2254] = {"UCDhousing", 19, -2239.7399902344, 1054.1199951172, 82.844802856445, "Hongkong Ave", 210000}, [2255] = {"UCDhousing", 19, -2282.419921875, 1070.3399658203, 81.703002929688, "Hongkong Ave", 210000}, [2256] = {"UCDhousing", 19, -2239.7399902344, 1070.5500488281, 81.023399353027, "Hongkong Ave", 210000}, [2257] = {"UCDhousing", 19, -2282.419921875, 1088.9699707031, 80.405601501465, "Hongkong Ave", 210000}, [2258] = {"UCDhousing", 19, -2280.8400878906, 1112.5699462891, 76.984397888184, "Hongkong Ave", 210000}, [2259] = {"UCDhousing", 19, -2238.3100585938, 1117.4799804688, 74.819900512695, "Hongkong Ave", 210000}, [2260] = {"UCDhousing", 19, -2280.8400878906, 1130.9699707031, 69.226600646973, "Hongkong Ave", 210000}, [2261] = {"UCDhousing", 19, -2238.3100585938, 1135.8499755859, 67.261199951172, "Hongkong Ave", 210000}, [2262] = {"UCDhousing", 13, -2238.3100585938, 1154.2199707031, 59.692798614502, "Hongkong Ave", 210000}, [2263] = {"UCDhousing", 13, -2280.8400878906, 1149.25, 61.609401702881, "Hongkong Ave", 210000}, [2264] = {"UCDhousing", 13, -2228.0100097656, 1079.9899902344, 80.007797241211, "North Collins Street", 210000}, [2265] = {"UCDhousing", 13, -2227.9399414063, 1108.0500488281, 80.007797241211, "North Collins Street", 210000}, [2266] = {"UCDhousing", 13, -2208, 1108.0500488281, 80.007797241211, "North Collins Street", 210000}, [2267] = {"UCDhousing", 13, -2209.6799316406, 1079.9899902344, 80.007797241211, "North Collins Street", 210000}, [2268] = {"UCDhousing", 13, -2191.3200683594, 1079.9899902344, 80.007797241211, "North Collins Street", 210000}, [2269] = {"UCDhousing", 13, -2188.1101074219, 1108.0500488281, 80.007797241211, "North Collins Street", 210000}, [2270] = {"UCDhousing", 13, -2173.0100097656, 1079.9899902344, 80.007797241211, "North Collins Street", 210000}, [2271] = {"UCDhousing", 13, -2168.169921875, 1108.0400390625, 80.007797241211, "North Collins Street", 210000}, [2272] = {"UCDhousing", 13, -2158.3601074219, 1148.6700439453, 61.849098205566, "Peters Street", 210000}, [2273] = {"UCDhousing", 13, -2158.3601074219, 1117.5600585938, 74.486297607422, "Peters Street", 210000}, [2274] = {"UCDhousing", 13, -2126.4299316406, 1087.6500244141, 80.007797241211, "Peters Street", 210000}, [2275] = {"UCDhousing", 13, -2126.4399414063, 1069.2299804688, 80.007797241211, "Peters Street", 210000}, [2276] = {"UCDhousing", 13, -2160.1499023438, 1066.9799804688, 80.007797241211, "Peters Street", 210000}, [2277] = {"UCDhousing", 13, -2126.4299316406, 1050.8900146484, 80.007797241211, "Peters Street", 210000}, [2278] = {"UCDhousing", 13, -2160.1499023438, 1048.5600585938, 80.007797241211, "Peters Street", 210000}, [2279] = {"UCDhousing", 13, -2126.4499511719, 1032.4899902344, 80.007797241211, "Peters Street", 210000}, [2280] = {"UCDhousing", 13, -2160.1499023438, 1030.5500488281, 80.007797241211, "Peters Street", 210000}, [2281] = {"UCDhousing", 13, -2126.4299316406, 1014.1799926758, 80.007797241211, "Peters Street", 210000}, [2282] = {"UCDhousing", 13, -2160.1499023438, 1002.1199951172, 80, "Peters Street", 210000}, [2283] = {"UCDhousing", 13, -2126.4399414063, 996.27899169922, 80.007797241211, "Peters Street", 210000}, [2284] = {"UCDhousing", 13, -2160.1499023438, 983.78802490234, 80, "Peters Street", 210000}, [2285] = {"UCDhousing", 13, -2126.4299316406, 978.53497314453, 80.007797241211, "Peters Street", 210000}, [2286] = {"UCDhousing", 13, -2160.1499023438, 965.37902832031, 80, "Peters Street", 210000}, [2287] = {"UCDhousing", 13, -2160.1499023438, 947.21197509766, 80, "Peters Street", 210000}, [2288] = {"UCDhousing", 13, -2129.6298828125, 942.51599121094, 80, "Peters Street", 210000}, [2289] = {"UCDhousing", 13, -2116.8898925781, 927.82897949219, 86.0791015625, "Oakwood Ave", 210000}, [2290] = {"UCDhousing", 13, -2158.6599121094, 889.22900390625, 80.007797241211, "Peters Street", 210000}, [2291] = {"UCDhousing", 13, -2159.2299804688, 866.37701416016, 75.289703369141, "Peters Street", 210000}, [2292] = {"UCDhousing", 13, -2126.0500488281, 832.64398193359, 69.5625, "Peters Street", 210000}, [2293] = {"UCDhousing", 13, -2159.2299804688, 830.7080078125, 69.522903442383, "Peters Street", 210000}, [2294] = {"UCDhousing", 13, -2159.2399902344, 786.17999267578, 69.514701843262, "Peters Street", 210000}, [2295] = {"UCDhousing", 13, -2159.2399902344, 770.09301757813, 69.514801025391, "Peters Street", 210000}, [2296] = {"UCDhousing", 13, -2126.0400390625, 773.81597900391, 69.5625, "Peters Street", 210000}, [2297] = {"UCDhousing", 13, -2159.2299804688, 753.54302978516, 69.51490020752, "Peters Street", 210000}, [2298] = {"UCDhousing", 13, -2126.0400390625, 755.54302978516, 69.5625, "Peters Street", 210000}, [2299] = {"UCDhousing", 19, -2174.2299804688, 934.38598632813, 80, "Trinity Avenue", 230000}, [2300] = {"UCDhousing", 19, -2192.6101074219, 934.38500976563, 74.996200561523, "Trinity Avenue", 210000}, [2301] = {"UCDhousing", 19, -2174.2800292969, 902.66198730469, 80.007797241211, "Trinity Avenue", 210000}, [2302] = {"UCDhousing", 19, -2192.6599121094, 902.66302490234, 74.980499267578, "Trinity Avenue", 210000}, [2303] = {"UCDhousing", 19, -2210.9499511719, 902.66302490234, 68.965698242188, "Trinity Avenue", 210000}, [2304] = {"UCDhousing", 19, -2210.830078125, 934.38702392578, 69.002998352051, "Trinity Avenue", 210000}, [2305] = {"UCDhousing", 19, -2229.1999511719, 934.38702392578, 66.648399353027, "Trinity Avenue", 210000}, [2306] = {"UCDhousing", 19, -2224.9099121094, 902.66400146484, 66.648399353027, "Trinity Avenue", 210000}, [2307] = {"UCDhousing", 13, -2230.4299316406, 1028.0200195313, 83.843803405762, "Ralph David Abernathy Boulevard", 210000}, [2308] = {"UCDhousing", 13, -2221.0200195313, 1051.1800537109, 80.007797241211, "Ralph David Abernathy Boulevard", 210000}, [2309] = {"UCDhousing", 13, -2211.8898925781, 1057.6500244141, 80.01309967041, "Ralph David Abernathy Boulevard", 210000}, [2310] = {"UCDhousing", 13, -2203.2299804688, 1043.2399902344, 80.01309967041, "Ralph David Abernathy Boulevard", 210000}, [2311] = {"UCDhousing", 13, -2169.6201171875, 1028.0200195313, 80.007797241211, "Ralph David Abernathy Boulevard", 210000}, [2312] = {"UCDhousing", 13, -2173.580078125, 992.84301757813, 80, "Ralph David Abernathy Boulevard", 210000}, [2313] = {"UCDhousing", 13, -2173.580078125, 974.15301513672, 80, "Ralph David Abernathy Boulevard", 210000}, [2314] = {"UCDhousing", 13, -2182.8999023438, 956.60998535156, 80, "Ralph David Abernathy Boulevard", 210000}, [2315] = {"UCDhousing", 13, -2218.169921875, 956.60900878906, 80, "Ralph David Abernathy Boulevard", 210000}, [2316] = {"UCDhousing", 13, -2225.9599609375, 980.57702636719, 82.195297241211, "Ralph David Abernathy Boulevard", 210000}, [2317] = {"UCDhousing", 13, -2225.9599609375, 1001.5399780273, 83.843803405762, "Ralph David Abernathy Boulevard", 210000}, [2318] = {"UCDhousing", 6, -2358.8999023438, 1118.0799560547, 55.726600646973, "South Collins Street", 210000}, [2319] = {"UCDhousing", 6, -2369.419921875, 1122.3299560547, 55.733299255371, "South Collins Street", 210000}, [2320] = {"UCDhousing", 6, -2383.8500976563, 1128.1700439453, 55.726600646973, "South Collins Street", 1}, [2321] = {"UCDhousing", 6, -2396.5500488281, 1132.7199707031, 55.733299255371, "South Collins Street", 210000}, [2322] = {"UCDhousing", 6, -2407.0600585938, 1135.9000244141, 55.726600646973, "South Collins Street", 210000}, [2323] = {"UCDhousing", 6, -2413.7099609375, 1137.5600585938, 55.726600646973, "South Collins Street", 210000}, [2324] = {"UCDhousing", 6, -2424.0100097656, 1139.4399414063, 55.726600646973, "South Collins Street", 210000}, [2325] = {"UCDhousing", 6, -2438.3701171875, 1141.0200195313, 55.726600646973, "South Collins Street", 210000}, [2326] = {"UCDhousing", 6, -2451.2199707031, 1141.7600097656, 55.733299255371, "South Collins Street", 210000}, [2327] = {"UCDhousing", 6, -2461.7099609375, 1141.9000244141, 55.726600646973, "South Collins Street", 210000}, [2328] = {"UCDhousing", 6, -2468.4399414063, 1141.9000244141, 55.733299255371, "South Collins Street", 210000}, [2329] = {"UCDhousing", 6, -2478.8999023438, 1141.9899902344, 55.726600646973, "South Collins Street", 220000}, [2330] = {"UCDhousing", 6, -2493.3000488281, 1141.9799804688, 55.726600646973, "South Collins Street", 210000}, [2331] = {"UCDhousing", 6, -2506.3999023438, 1142.1500244141, 55.726600646973, "South Collins Street", 210000}, [2332] = {"UCDhousing", 6, -2517.0400390625, 1142.4200439453, 55.726600646973, "South Collins Street", 210000}, [2333] = {"UCDhousing", 6, -2523.8000488281, 1142.6899414063, 55.726600646973, "South Collins Street", 210000}, [2334] = {"UCDhousing", 6, -2534.5200195313, 1143.7800292969, 55.726600646973, "South Collins Street", 210000}, [2335] = {"UCDhousing", 6, -2549.1000976563, 1145.7299804688, 55.726600646973, "South Collins Street", 210000}, [2336] = {"UCDhousing", 6, -2563.0900878906, 1149.0999755859, 55.726600646973, "South Collins Street", 210000}, [2337] = {"UCDhousing", 12, -2620.8100585938, 120.81600189209, 7.2031202316284, "Hill Street", 180000}, [2338] = {"UCDhousing", 12, -2620.7600097656, 103.38999938965, 7.2031202316284, "Hill Street", 180000}, [2339] = {"UCDhousing", 31, -2623.4599609375, 131.61599731445, 7.2031202316284, "Hill Street", 190000}, [2340] = {"UCDhousing", 31, -2621.0300292969, 96.710899353027, 5, "Hill Street", 190000}, [2341] = {"UCDhousing", 31, -2621.0400390625, 114.95700073242, 5, "Hill Street", 190000}, [2342] = {"UCDhousing", 2, -2622.3798828125, 71.683601379395, 4.3359398841858, "Hill Street", 160000}, [2343] = {"UCDhousing", 5, -2619.4799804688, 67.902297973633, 4.5724802017212, "Hill Street", 180000}, [2344] = {"UCDhousing", 7, -2619.4799804688, 57.6083984375, 4.3359398841858, "Hill Street", 200000}, [2345] = {"UCDhousing", 30, -2663.1201171875, 189.74000549316, 4.5172801017761, "Peach St", 200000}, [2346] = {"UCDhousing", 32, -2654.1201171875, 190.94799804688, 4.3281202316284, "Peach St", 200000}, [2347] = {"UCDhousing", 10, -2639.3999023438, 168.6309967041, 7.1953101158142, "Peach St", 160000}, [2348] = {"UCDhousing", 10, -2621.9699707031, 168.59599304199, 7.1953101158142, "Peach St", 160000}, [2349] = {"UCDhousing", 25, -2627.8400878906, 168.9049987793, 5, "Peach St", 185000}, [2350] = {"UCDhousing", 25, -2672.2399902344, 190.02900695801, 4.3281202316284, "Peach St", 190000}, [2351] = {"UCDhousing", 16, -2682.919921875, 192.81500244141, 7.1953101158142, "Peach St", 170000}, [2352] = {"UCDhousing", 13, -2692.8999023438, 189.45500183105, 7.2031202316284, "Peach St", 160000}, [2353] = {"UCDhousing", 13, -2617.1298828125, 176.32299804688, 7.1953101158142, "Beverly Ave", 160000}, [2354] = {"UCDhousing", 9, -2627.8999023438, 179.11000061035, 4.3401899337769, "Beverly Ave", 165000}, [2355] = {"UCDhousing", 7, -2636.9799804688, 179.40100097656, 4.5172801017761, "Beverly Ave", 175000}, [2356] = {"UCDhousing", 7, -2654.0600585938, 200.2380065918, 5, "Aces St", 180000}, [2357] = {"UCDhousing", 7, -2688.9699707031, 197.82699584961, 7.2031202316284, "Aces St", 180000}, [2358] = {"UCDhousing", 31, -2672.2600097656, 200.23199462891, 5, "Aces St", 190000}, [2359] = {"UCDhousing", 12, -2660.7299804688, 200.58299255371, 7.1953101158142, "Aces St", 120000}, [2360] = {"UCDhousing", 12, -2678.1599121094, 200.49499511719, 7.1953101158142, "Aces St", 120000}, [2361] = {"UCDhousing", 12, 1242.2600097656, -1099.5200195313, 27.976600646973, "Lombard St.", 160000}, [2362] = {"UCDhousing", 12, 1285.2600097656, -1090.0100097656, 28.25779914856, "Lombard St.", 160000}, [2363] = {"UCDhousing", 12, 1241.9499511719, -1076.4499511719, 31.55470085144, "Lombard St.", 170000}, [2364] = {"UCDhousing", 11, 1285.2600097656, -1067.25, 31.678899765015, "Lombard St.", 170000}, [2365] = {"UCDhousing", 11, 1183.4699707031, -1075.9399414063, 31.678899765015, "St. George St", 160000}, [2366] = {"UCDhousing", 11, 1141.8499755859, -1069.75, 31.765600204468, "St. George St", 160000}, [2367] = {"UCDhousing", 12, 1142.1199951172, -1092.9499511719, 28.1875, "St. George St", 150000}, [2368] = {"UCDhousing", 12, 1183.4799804688, -1099.0500488281, 28.25779914856, "St. George St", 150000}, [2369] = {"UCDhousing", 13, 1440.5500488281, -926.11999511719, 39.647701263428, "George St.", 290000}, [2370] = {"UCDhousing", 13, 1411.0100097656, -920.84698486328, 38.421901702881, "George St.", 700000}, [2371] = {"UCDhousing", 10, 793.97497558594, -1707.5200195313, 14.038200378418, "Carson St", 250000}, [2372] = {"UCDhousing", 31, 797.23498535156, -1729.3499755859, 13.546899795532, "Carson St", 300000}, [2373] = {"UCDhousing", 2, 795.02197265625, -1692.0899658203, 14.463299751282, "Carson St", 190000}, [2374] = {"UCDhousing", 31, 790.84399414063, -1661.1400146484, 13.484199523926, "Yelp St", 350000}, [2375] = {"UCDhousing", 19, 850.66497802734, -1686.4699707031, 14.938300132751, "Washington Flats", 280000}, [2376] = {"UCDhousing", 19, 846.72497558594, -1717.3199462891, 14.929699897766, "Washington Flats", 280000}, [2377] = {"UCDhousing", 19, 936.83001708984, -1612.7099609375, 14.937399864197, "Carson Flats", 280000}, [2378] = {"UCDhousing", 19, 965.18499755859, -1612.6099853516, 14.940899848938, "Washington Flats", 260000}, [2379] = {"UCDhousing", 19, 987.52099609375, -1704.2299804688, 14.929699897766, "Washington Flats", 250000}, [2380] = {"UCDhousing", 31, 791.42498779297, -1753.2099609375, 13.460599899292, "Liverpool Rd", 190000}, [2381] = {"UCDhousing", 27, 1341.3199462891, -1675.2099609375, 17.715700149536, "Pilon St", 80000}, [2382] = {"UCDhousing", 27, 1341.3199462891, -1669.4000244141, 17.717100143433, "Pilon St", 80000}, [2383] = {"UCDhousing", 27, 1341.3199462891, -1654.4100341797, 17.719100952148, "Pilon St", 80000}, [2384] = {"UCDhousing", 27, 1341.3199462891, -1648.9100341797, 17.719100952148, "Pilon St", 80000}, [2385] = {"UCDhousing", 27, 1341.3199462891, -1633.8199462891, 17.731399536133, "Pilon St", 80000}, [2386] = {"UCDhousing", 27, 1341.3699951172, -1628.9200439453, 17.732599258423, "Pilon St", 80000}, [2387] = {"UCDhousing", 27, 1620.3800048828, -1778.8100585938, 13.540200233459, "De Wallen", 30000}, [2388] = {"UCDhousing", 23, 2151.0400390625, -1789.1800537109, 13.509300231934, "Republican Ave", 60000}, [2389] = {"UCDhousing", 23, 2151.0400390625, -1807.9100341797, 13.546299934387, "Republican Ave", 60000}, [2390] = {"UCDhousing", 23, 2151.0900878906, -1814.9200439453, 13.549799919128, "Republican Ave", 60000}, [2391] = {"UCDhousing", 23, 2155.7800292969, -1815.2299804688, 13.546899795532, "Republican Ave", 60000}, [2392] = {"UCDhousing", 23, 2162.5700683594, -1815.2299804688, 13.546899795532, "Republican Ave", 60000}, [2393] = {"UCDhousing", 23, 2169.080078125, -1815.2299804688, 13.546899795532, "Republican Ave", 60000}, [2394] = {"UCDhousing", 23, 2176.0600585938, -1815.0999755859, 13.546899795532, "Republican Ave", 60000}, [2395] = {"UCDhousing", 23, 2185.6298828125, -1815.2299804688, 13.546899795532, "Republican Ave", 60000}, [2396] = {"UCDhousing", 23, 2192.2299804688, -1815.1800537109, 13.546899795532, "Republican Ave", 60000}, [2397] = {"UCDhousing", 27, 2176.4899902344, -1828.5500488281, 16.140899658203, "Republican Ave", 60000}, [2398] = {"UCDhousing", 27, 2176.4899902344, -1821.6400146484, 16.145999908447, "Republican Ave", 60000}, [2399] = {"UCDhousing", 27, 2172.3798828125, -1819.6999511719, 16.140600204468, "Republican Ave", 60000}, [2400] = {"UCDhousing", 27, 2164.8798828125, -1819.6999511719, 16.140600204468, "Republican Ave", 60000}, [2401] = {"UCDhousing", 27, 2158.3798828125, -1819.6999511719, 16.140600204468, "Republican Ave", 60000}, [2402] = {"UCDhousing", 27, 2152, -1819.5100097656, 16.140600204468, "Republican Ave", 60000}, [2403] = {"UCDhousing", 27, 2146.919921875, -1815.0799560547, 16.140600204468, "Republican Ave", 60000}, [2404] = {"UCDhousing", 27, 2146.7900390625, -1808.5600585938, 16.140600204468, "Republican Ave", 60000}, [2405] = {"UCDhousing", 23, 2140.9299316406, -1802.0500488281, 16.147499084473, "Republican Ave", 60000}, [2406] = {"UCDhousing", 23, 2144.8500976563, -1801.7700195313, 16.140600204468, "Republican Ave", 60000}, [2407] = {"UCDhousing", 31, 2776.0600585938, -1245.3800048828, 49.578098297119, "Glendale St", 190000}, [2408] = {"UCDhousing", 31, 2797.75, -1245.3699951172, 47.384998321533, "Glendale St", 160000}, [2409] = {"UCDhousing", 31, 2782.1499023438, -1281.1700439453, 44.372501373291, "Glendale St", 160000}, [2410] = {"UCDhousing", 31, 2809.5100097656, -1281.0100097656, 43.890899658203, "Glendale St", 160000}, [2411] = {"UCDhousing", 31, 2782.1599121094, -1306.2099609375, 38.888999938965, "Glendale St", 160000}, [2412] = {"UCDhousing", 31, 2809.5300292969, -1303.1099853516, 38.918701171875, "Glendale St", 160000}, [2413] = {"UCDhousing", 31, 2781.9399414063, -1333.4200439453, 32.398998260498, "Glendale St", 160000}, [2414] = {"UCDhousing", 31, 2809.5300292969, -1324.7900390625, 33.872398376465, "Glendale St", 160000}, [2415] = {"UCDhousing", 31, 2781.9399414063, -1358.4200439453, 26.370700836182, "Glendale St", 160000}, [2416] = {"UCDhousing", 32, 2807.9799804688, -1353.9399414063, 27.218200683594, "Glendale St", 145000}, [2417] = {"UCDhousing", 32, 2807.9799804688, -1369.4899902344, 23.582899093628, "Glendale St", 145000}, [2418] = {"UCDhousing", 24, 2154.0200195313, -979.91302490234, 63.293399810791, "Forest Road", 10000}, [2419] = {"UCDhousing", 24, 2142.6499023438, -978.28100585938, 61.379299163818, "Forest Road", 8000}, [2420] = {"UCDhousing", 24, 2131.919921875, -974.1240234375, 59.785598754883, "Forest Road", 8000}, [2421] = {"UCDhousing", 24, 2122.0200195313, -970.45599365234, 58.207401275635, "Forest Road", 8000}, [2422] = {"UCDhousing", 23, 1939.2600097656, -1066.5100097656, 24.418399810791, "Park Ave", 20000}, [2423] = {"UCDhousing", 23, 1934.0699462891, -1071.3499755859, 24.415700912476, "Park Ave", 20000}, [2424] = {"UCDhousing", 23, 1954.3499755859, -1075.1600341797, 24.796699523926, "Park Ave", 20000}, [2425] = {"UCDhousing", 23, 1959.5699462891, -1070.1700439453, 24.796699523926, "Park Ave", 20000}, [2426] = {"UCDhousing", 23, 1916.8900146484, -1064.8100585938, 24.124700546265, "Park Ave", 20000}, [2427] = {"UCDhousing", 23, 1912.6199951172, -1070.2600097656, 24.23690032959, "Park Ave", 20000}, [2428] = {"UCDhousing", 23, 1891.7700195313, -1070.6300048828, 23.9375, "Park Ave", 20000}, [2429] = {"UCDhousing", 23, 1896.0500488281, -1064.9899902344, 23.9375, "Park Ave", 20000}, [2430] = {"UCDhousing", 27, 260.52301025391, -303.06201171875, 1.9183700084686, "Atlantica Ave ", 20000}, [2431] = {"UCDhousing", 23, 253.25, -289.89801025391, 1.7029900550842, "Atlantica Ave ", 10000}, [2432] = {"UCDhousing", 23, 242.05599975586, -298.52899169922, 1.6873699426651, "Atlantica Ave ", 10000}, [2433] = {"UCDhousing", 23, 235.22099304199, -309.32501220703, 1.7108000516891, "Atlantica Ave ", 10000}, [2434] = {"UCDhousing", 23, 261.96099853516, -269.98001098633, 1.6404900550842, "Atlantica Ave ", 10000}, [2435] = {"UCDhousing", 23, 256.23599243164, -278.51501464844, 1.5781199932098, "Atlantica Ave ", 10000}, [2436] = {"UCDhousing", 23, 253.50999450684, -274.50601196289, 1.6561199426651, "Atlantica Ave ", 10000}, [2437] = {"UCDhousing", 23, 241.69299316406, -282.36599731445, 1.6326800584793, "Atlantica Ave ", 10000}, [2438] = {"UCDhousing", 23, 238.93800354004, -286.26400756836, 1.6326800584793, "Atlantica Ave ", 10000}, [2439] = {"UCDhousing", 27, 226.52499389648, -302.81500244141, 1.9261800050735, "Atlantica Ave ", 15000}, [2440] = {"UCDhousing", 7, 736.64398193359, -556.43298339844, 18.012899398804, "Broad Str", 50000}, [2441] = {"UCDhousing", 31, 743.30401611328, -509.54800415039, 18.012899398804, "Broad Str", 1000}, [2442] = {"UCDhousing", 31, 766.63000488281, -556.78198242188, 18.012899398804, "Broad St", 200000}, [2443] = {"UCDhousing", 32, 776.65502929688, -503.48400878906, 18.012899398804, "Broad St", 140000}, [2444] = {"UCDhousing", 30, 795.17901611328, -506.14801025391, 18.012899398804, "Broad St", 140000}, [2445] = {"UCDhousing", 7, 818.24798583984, -509.32000732422, 18.012899398804, "Broad St", 140000}, [2446] = {"UCDhousing", 27, 1295.4399414063, 174.6190032959, 20.910600662231, "Camper Park", 10000}, [2447] = {"UCDhousing", 27, 1303.6099853516, 186.10000610352, 20.538900375366, "Camper Park", 10000}, [2448] = {"UCDhousing", 27, 1283.3100585938, 158.43299865723, 20.793399810791, "Camper Park", 10000}, [2449] = {"UCDhousing", 27, 1315.6199951172, 180.12399291992, 20.554599761963, "Camper Park", 10000}, [2450] = {"UCDhousing", 27, 1311.9100341797, 169.52499389648, 20.631099700928, "Camper Park", 10000}, [2451] = {"UCDhousing", 27, 1294.4799804688, 157.71000671387, 20.57799911499, "Camper Park", 10000}, [2452] = {"UCDhousing", 27, 1299.1600341797, 140.42900085449, 20.538900375366, "Camper Park", 10000}, [2453] = {"UCDhousing", 27, 1305.7600097656, 148.76499938965, 20.492099761963, "Camper Park", 10000}, [2454] = {"UCDhousing", 27, 1307.4599609375, 152.92900085449, 20.390600204468, "Camper Park", 10000}, [2455] = {"UCDhousing", 27, 1296.3000488281, 191.02799987793, 20.523300170898, "Camper Park", 10000}, [2456] = {"UCDhousing", 27, 1300.3699951172, 193.23899841309, 20.523300170898, "Camper Park", 10000}, [2457] = {"UCDhousing", 17, -36.034198760986, 2350.5200195313, 24.302600860596, "Snakes Farm", 200000}, [2458] = {"UCDhousing", 27, -12.238300323486, 2346.25, 24.140600204468, "Snakes farm", 10000}, [2459] = {"UCDhousing", 27, -581.96899414063, 2713.0100097656, 72.046699523926, "Poter Ally", 10000}, [2460] = {"UCDhousing", 27, -604.041015625, 2716.6101074219, 72.723098754883, "Porter Ally.", 10000}, [2461] = {"UCDhousing", 27, -624.29602050781, 2709.919921875, 72.460800170898, "Porter Ally.", 10000}, [2462] = {"UCDhousing", 27, -624.00701904297, 2714.6398925781, 72.460800170898, "Porter Ally.", 10000}, [2463] = {"UCDhousing", 27, -673.27899169922, 2705.6101074219, 70.663299560547, "Porter Ally.", 12000}, [2464] = {"UCDhousing", 24, -814.46099853516, 2752.8601074219, 46, "Tee Pee Motel", 25000}, [2465] = {"UCDhousing", 24, -825.79797363281, 2752.1799316406, 46, "Tee Pee Motel", 25000}, [2466] = {"UCDhousing", 24, -816.14697265625, 2766.0400390625, 46, "Tee Pee Motel", 25000}, [2467] = {"UCDhousing", 24, -838.94500732422, 2762.6101074219, 46, "Tee Pee Motel", 25000}, [2468] = {"UCDhousing", 24, -827.43597412109, 2765.2600097656, 46, "Tee Pee Motel", 25000}, [2469] = {"UCDhousing", 24, -851.41400146484, 2761.4399414063, 46, "Tee Pee Motel", 25000}, [2470] = {"UCDhousing", 24, -867.17401123047, 2762.1599121094, 46, "Tee Pee Motel", 25000}, [2471] = {"UCDhousing", 24, -865.72399902344, 2749.1599121094, 45.995498657227, "Tee Pee Motel", 25000}, [2472] = {"UCDhousing", 24, -879.10498046875, 2747.919921875, 46, "Tee Pee Motel", 1}, [2473] = {"UCDhousing", 24, -880.08801269531, 2761.1101074219, 46, "Tee Pee Motel", 25000}, [2474] = {"UCDhousing", 17, -910.93798828125, 2685.9399414063, 42.370300292969, "Randolph Street", 250000}, [2475] = {"UCDhousing", 24, -1446.6899414063, 2637.25, 56.254299163818, "El Quebrados", 15000}, [2476] = {"UCDhousing", 24, -1445.1300048828, 2653.1599121094, 56.269901275635, "El Quebrados", 15000}, [2477] = {"UCDhousing", 24, -1450.2299804688, 2690.9299316406, 56.176200866699, "El Quebrados", 15000}, [2478] = {"UCDhousing", 24, -1459.4599609375, 2653.5200195313, 55.835899353027, "El Quebrados", 15000}, [2479] = {"UCDhousing", 24, -1465.8599853516, 2693.0200195313, 56.269901275635, "El Quebrados", 15000}, [2480] = {"UCDhousing", 24, -1491.4799804688, 2686.0200195313, 55.859401702881, "El Quebrados", 15000}, [2481] = {"UCDhousing", 24, -1482.6099853516, 2702.7099609375, 56.254299163818, "El Quebrados", 15000}, [2482] = {"UCDhousing", 24, -1511.9699707031, 2695.8798828125, 56.072299957275, "El Quebrados", 15000}, [2483] = {"UCDhousing", 24, -1529.7700195313, 2686.3701171875, 55.835899353027, "El Quebrados", 15000}, [2484] = {"UCDhousing", 24, -1550.4300537109, 2699.7600097656, 56.269901275635, "El Quebrados", 15000}, [2485] = {"UCDhousing", 24, -1565.1300048828, 2711.9099121094, 55.859401702881, "El Quebrados", 15000}, [2486] = {"UCDhousing", 24, -1577.5999755859, 2687.0100097656, 55.835899353027, "El Quebrados", 15000}, [2487] = {"UCDhousing", 24, -1604.1999511719, 2689.669921875, 55.285598754883, "El Quebrados", 1}, [2488] = {"UCDhousing", 24, -1589.8000488281, 2706.5, 56.176200866699, "El Quebrados", 15000}, [2489] = {"UCDhousing", 24, -1587.0200195313, 2650.0100097656, 55.859401702881, "El Quebrados", 15000}, [2490] = {"UCDhousing", 24, -1563.5600585938, 2651.0600585938, 55.923400878906, "El Quebrados", 15000}, [2491] = {"UCDhousing", 24, -1568.0699462891, 2630.3200683594, 55.840301513672, "El Quebrados", 15000}, [2492] = {"UCDhousing", 24, -1512.4499511719, 2646.7299804688, 56.176200866699, "El Quebrados", 15000}, [2493] = {"UCDhousing", 4, -1532.5400390625, 2656.5300292969, 56.281398773193, "El Quebrados", 150000}, [2494] = {"UCDhousing", 3, -1465.6400146484, 2611.9899902344, 56.179698944092, "El Quebrados", 100000}, [2495] = {"UCDhousing", 3, -1471.6600341797, 2591.7600097656, 55.835899353027, "El Quebrados", 100000}, [2496] = {"UCDhousing", 24, -1476.2299804688, 2563.3000488281, 56.176200866699, "El Quebrados", 15000}, [2497] = {"UCDhousing", 3, -1536, 2564.1101074219, 55.835899353027, "El Quebrados", 100000}, [2498] = {"UCDhousing", 24, -1450.0799560547, 2562.4699707031, 56.023300170898, "El Quebrados", 15000}, [2499] = {"UCDhousing", 24, -1445.2900390625, 2562.3100585938, 56.023300170898, "El Quebrados", 15000}, [2500] = {"UCDhousing", 3, -1507.3900146484, 2560.8000488281, 55.835899353027, "El Quebrados", 100000}, [2501] = {"UCDhousing", 24, -1478.4899902344, 2547.3500976563, 56.254299163818, "El Quebrados", 15000}, [2502] = {"UCDhousing", 23, -1669.6099853516, 2597.5200195313, 81.445297241211, "El Quebrados Hill", 10000}, [2503] = {"UCDhousing", 23, -1670.2600097656, 2546.3798828125, 85.239700317383, "El Quebrados Hill", 10000}, [2504] = {"UCDhousing", 23, -1668.1600341797, 2486.3798828125, 87.172302246094, "El Quebrados Hill", 10000}, [2505] = {"UCDhousing", 27, -1827.0400390625, 2042.3199462891, 8.6605596542358, "Equitable Place", 10000}, [2506] = {"UCDhousing", 27, -1802.5600585938, 2037.75, 9.5902500152588, "Equitable Place", 10000}, [2507] = {"UCDhousing", 31, -2905.2600097656, 1171.6099853516, 13.664099693298, "Loyd Street", 150000}, [2508] = {"UCDhousing", 30, -2905.1000976563, 1178.7900390625, 13.664099693298, "Loyd Street", 150000}, [2509] = {"UCDhousing", 31, -2905.1899414063, 1154.6999511719, 13.664099693298, "Loyd Street", 150000}, [2510] = {"UCDhousing", 30, -2905.169921875, 1164.7199707031, 13.664099693298, "Loyd Street", 150000}, [2511] = {"UCDhousing", 30, -2904.6999511719, 1118.7900390625, 27.07029914856, "Loyd Street", 150000}, [2512] = {"UCDhousing", 31, -2904.8100585938, 1111.5300292969, 27.07029914856, "Loyd Street", 150000}, [2513] = {"UCDhousing", 30, -2904.4699707031, 1101.0300292969, 27.07029914856, "Loyd Street", 140000}, [2514] = {"UCDhousing", 31, -2900.7199707031, 1080.9699707031, 32.132801055908, "Loyd Street", 150000}, [2515] = {"UCDhousing", 30, -2900.7199707031, 1073.8399658203, 32.132801055908, "Loyd Street", 150000}, [2516] = {"UCDhousing", 31, -2900.7099609375, 1067.0899658203, 32.132801055908, "Loyd Street", 150000}, [2517] = {"UCDhousing", 30, -2900.4699707031, 1056.7900390625, 32.132801055908, "Loyd Street", 150000}, [2518] = {"UCDhousing", 30, -2901.580078125, 1033.3900146484, 36.828098297119, "Loyd Street", 150000}, [2519] = {"UCDhousing", 31, -2899.169921875, 1026.8000488281, 36.828098297119, "Loyd Street", 150000}, [2520] = {"UCDhousing", 30, -2895.5500488281, 1016.8499755859, 36.828098297119, "Loyd Street", 150000}, [2521] = {"UCDhousing", 31, -2888.1298828125, 1001.9299926758, 40.718799591064, "Loyd Street", 150000}, [2522] = {"UCDhousing", 30, -2884.5600585938, 995.73901367188, 40.718799591064, "Loyd Street", 150000}, [2523] = {"UCDhousing", 31, -2881.0700683594, 989.69702148438, 40.718799591064, "Loyd Street", 150000}, [2524] = {"UCDhousing", 30, -2876.0900878906, 981.06402587891, 40.726001739502, "Loyd Street", 150000}, [2525] = {"UCDhousing", 31, -2857.7199707031, 957.14697265625, 44.054698944092, "Loyd Street", 150000}, [2526] = {"UCDhousing", 30, -2860.6599121094, 963.42498779297, 44.054698944092, "Loyd Street", 150000}, [2527] = {"UCDhousing", 30, -2853.1799316406, 947.41497802734, 44.054698944092, "Loyd Street", 150000}, [2528] = {"UCDhousing", 31, -2845.3100585938, 928.3740234375, 44.054698944092, "Loyd Street", 150000}, [2529] = {"UCDhousing", 30, -2844.6899414063, 921.20098876953, 44.054698944092, "Loyd Street", 150000}, [2530] = {"UCDhousing", 31, -2844.1000976563, 914.57702636719, 44.054698944092, "Loyd Street", 150000}, [2531] = {"UCDhousing", 30, -2843.1999511719, 904.31097412109, 44.054698944092, "Loyd Street", 150000}, [2532] = {"UCDhousing", 30, -2840.2299804688, 877.41101074219, 44.054698944092, "Loyd Street", 150000}, [2533] = {"UCDhousing", 31, -2840.2299804688, 884.76000976563, 44.054698944092, "Loyd Street", 150000}, [2534] = {"UCDhousing", 31, -2840.2299804688, 866.86297607422, 44.054698944092, "Loyd Street", 150000}, [2535] = {"UCDhousing", 30, -2856.6298828125, 841.99597167969, 39.648998260498, "Loyd Street", 150000}, [2536] = {"UCDhousing", 30, -2863.6499023438, 829.82897949219, 39.540100097656, "Loyd Street", 150000}, [2537] = {"UCDhousing", 31, -2860.1899414063, 835.82299804688, 39.610698699951, "Loyd Street", 150000}, [2538] = {"UCDhousing", 30, -2880.7299804688, 797.79699707031, 35.147300720215, "Loyd Street", 1}, [2539] = {"UCDhousing", 31, -2868.8100585938, 820.89801025391, 39.461601257324, "Loyd Street", 150000}, [2540] = {"UCDhousing", 30, -2882.2700195313, 779.97497558594, 35.088500976563, "Loyd Street", 150000}, [2541] = {"UCDhousing", 31, -2881.3400878906, 790.59197998047, 35.125099182129, "Loyd Street", 150000}, [2542] = {"UCDhousing", 30, -2884.7900390625, 750.65802001953, 29.201299667358, "Loyd Street", 150000}, [2543] = {"UCDhousing", 30, -2883.5700683594, 736.73400878906, 29.211200714111, "Loyd Street", 150000}, [2544] = {"UCDhousing", 31, -2884.169921875, 743.52197265625, 29.217699050903, "Loyd Street", 150000}, [2545] = {"UCDhousing", 31, -2882.3500976563, 726.82501220703, 29.199899673462, "Loyd Street", 150000}, [2546] = {"UCDhousing", 30, -2872.4599609375, 697.51300048828, 23.462200164795, "Loyd Street", 150000}, [2547] = {"UCDhousing", 30, -2864.9099121094, 681.35601806641, 23.46190071106, "Loyd Street", 150000}, [2548] = {"UCDhousing", 31, -2869.4499511719, 691.05999755859, 23.461099624634, "Loyd Street", 150000}, [2549] = {"UCDhousing", 27, -607.57299804688, -1073.8900146484, 23.499399185181, "Pierce Street", 1500}, [2550] = {"UCDhousing", 27, -601.06201171875, -1065.3800048828, 23.403299331665, "Pierce Street", 1500}, [2551] = {"UCDhousing", 27, -594.73602294922, -1056.8699951172, 23.354400634766, "Pierce Street", 1500}, [2552] = {"UCDhousing", 27, -588.78601074219, -1048.5300292969, 23.334400177002, "Pierce Street", 10000}, [2553] = {"UCDhousing", 27, -582.52301025391, -1040.1999511719, 23.594800949097, "Pierce Street", 10000}, [2554] = {"UCDhousing", 27, -576.73999023438, -1031.8599853516, 23.834600448608, "Pierce Street", 10000}, [2555] = {"UCDhousing", 27, -396.12399291992, -425.09100341797, 16.259399414063, "Hightower Road", 10000}, [2556] = {"UCDhousing", 27, -427.61599731445, -392.72100830078, 16.580200195313, "Hightower Road", 50000}, [2557] = {"UCDhousing", 27, -76.818397521973, -1136.7099609375, 1.0781199932098, "Hightower Road", 25000}, [2558] = {"UCDhousing", 27, -418.87701416016, -1759.1700439453, 6.21875, "Capital Avenue", 70000}, [2559] = {"UCDhousing", 17, -282.74798583984, -2174.419921875, 28.658100128174, "Capital Avenue", 120000}, [2560] = {"UCDhousing", 17, -256.25799560547, -2191.9899902344, 28.993900299072, "Capital Avenue", 120000}, [2561] = {"UCDhousing", 24, -40.189498901367, -2493.6101074219, 36.648399353027, "McDonough Motel", 12000}, [2562] = {"UCDhousing", 24, -36.142601013184, -2490.7299804688, 36.648399353027, "McDonough Motel", 12000}, [2563] = {"UCDhousing", 24, -31.997999191284, -2487.7700195313, 36.648399353027, "McDonough Motel", 12000}, [2564] = {"UCDhousing", 24, -28.000999450684, -2484.919921875, 36.648399353027, "McDonough Motel", 12000}, [2565] = {"UCDhousing", 24, -23.872999191284, -2481.9699707031, 36.648399353027, "McDonough Motel", 12000}, [2566] = {"UCDhousing", 24, -17.938499450684, -2493.1899414063, 36.648399353027, "McDonough Motel", 12000}, [2567] = {"UCDhousing", 24, -15.294899940491, -2497.419921875, 36.648399353027, "McDonough Motel", 12000}, [2568] = {"UCDhousing", 24, -12.668899536133, -2501.6201171875, 36.655498504639, "McDonough Motel", 12000}, [2569] = {"UCDhousing", 24, -9.9521503448486, -2505.9699707031, 36.655498504639, "McDonough Motel", 12000}, [2570] = {"UCDhousing", 24, -7.3574199676514, -2510.1201171875, 36.655498504639, "McDonough Motel", 12000}, [2571] = {"UCDhousing", 24, -4.0351600646973, -2520.2900390625, 36.648399353027, "McDonough Motel", 12000}, [2572] = {"UCDhousing", 24, -8.3681602478027, -2522.6499023438, 36.655498504639, "McDonough Motel", 12000}, [2573] = {"UCDhousing", 24, -12.769499778748, -2525.0300292969, 36.655498504639, "McDonough Motel", 12000}, [2574] = {"UCDhousing", 24, -17.186500549316, -2527.4299316406, 36.655498504639, "McDonough Motel", 12000}, [2575] = {"UCDhousing", 24, -21.620100021362, -2529.8400878906, 36.648399353027, "McDonough Motel", 12000}, [2576] = {"UCDhousing", 20, -1061.3499755859, -1205.4799804688, 129.7559967041, "Piedmont Farm", 2000000}, [2577] = {"UCDhousing", 23, -940.56201171875, -491.22601318359, 26.363700866699, "Calhoun Camper Park", 10000}, [2578] = {"UCDhousing", 23, -960.73999023438, -507.60998535156, 26.238700866699, "Calhoun Camper Parker", 10000}, [2579] = {"UCDhousing", 23, -938.94097900391, -517.89202880859, 26.093599319458, "Calhoun Camper Parker", 10000}, [2580] = {"UCDhousing", 23, -923.73101806641, -496.97299194336, 26.765600204468, "Calhoun Camper Park", 10000}, [2581] = {"UCDhousing", 23, -929.07598876953, -519.18798828125, 26.124900817871, "Calhoun Camper Parker", 10000}, [2582] = {"UCDhousing", 23, -924.45697021484, -536.33697509766, 26.14049911499, "Calhoun Camper Park", 10000}, [2583] = {"UCDhousing", 23, -950.86999511719, -530.76000976563, 25.95359992981, "Calhoun Camper Parker", 10000}, [2584] = {"UCDhousing", 23, -914.34399414063, -533.38098144531, 26.07799911499, "Calhoun Camper Park", 10000}, [2585] = {"UCDhousing", 23, -914.34399414063, -528.77001953125, 26.07799911499, "Calhoun Camper Park", 10000}, [2586] = {"UCDhousing", 23, -940.19201660156, -536.82598876953, 26.109199523926, "Calhoun Camper Park", 10000}, [2587] = {"UCDhousing", 20, -382.93301391602, -1438.8900146484, 26.329399108887, "Poplar Farm", 1}, [2588] = {"UCDhousing", 24, -768.63397216797, 2765.3999023438, 48.255599975586, "Red Motel", 50000}, [2589] = {"UCDhousing", 27, -1310.8699951172, 2549.7600097656, 87.677696228027, "Ghost Town", 10000}, [2590] = {"UCDhousing", 27, -1302.7099609375, 2555.1499023438, 87.124099731445, "Ghost Town", 10000}, [2591] = {"UCDhousing", 27, -1298.5500488281, 2546.1398925781, 87.742202758789, "Ghost Town", 10000}, [2592] = {"UCDhousing", 27, -1291.6800537109, 2533.330078125, 87.742202758789, "Ghost Town", 10000}, [2593] = {"UCDhousing", 27, -1326.5600585938, 2507.4399414063, 87.046897888184, "Ghost Town", 10000}, [2594] = {"UCDhousing", 27, -1322.2600097656, 2498.4599609375, 87.046897888184, "Ghost Town", 10000}, [2595] = {"UCDhousing", 27, -1313.9599609375, 2493.4499511719, 87.097900390625, "Ghost Town", 10000}, [2596] = {"UCDhousing", 27, -1293.5899658203, 2524.5900878906, 87.476303100586, "Ghost Town", 10000}, [2597] = {"UCDhousing", 27, -1324.7900390625, 2532.0900878906, 87.540802001953, "Ghost Town", 10000}, [2598] = {"UCDhousing", 27, -1326.9799804688, 2523.3701171875, 87.119003295898, "Ghost Town", 10000}, [2599] = {"UCDhousing", 17, -257.99099731445, 2782.9499511719, 62.6875, "Woodward Avenue", 100000}, [2600] = {"UCDhousing", 17, -275.22500610352, 2736.3898925781, 62.754299163818, "Woodward Avenue", 100000}, [2601] = {"UCDhousing", 17, -268.69900512695, 2769.4799804688, 61.872798919678, "Woodward Avenue", 100000}, [2602] = {"UCDhousing", 17, -279.38299560547, 2721.8400878906, 62.790599822998, "Woodward Avenue", 100000}, [2603] = {"UCDhousing", 17, -287.64700317383, 2758.1201171875, 62.512100219727, "Woodward Avenue", 100000}, [2604] = {"UCDhousing", 17, -311.42599487305, 2726.7700195313, 63.072299957275, "Woodward Avenue", 100000}, [2605] = {"UCDhousing", 17, -219.66200256348, 2767.5600585938, 62.790599822998, "Woorward Avenue", 100000}, [2606] = {"UCDhousing", 17, -168.58599853516, 2707.2800292969, 62.534000396729, "Woodward Avenue", 100000}, [2607] = {"UCDhousing", 17, -201.79100036621, 2771.7800292969, 62.345798492432, "Woodward Avenue", 100000}, [2608] = {"UCDhousing", 17, -232.21699523926, 2807.7399902344, 62.054698944092, "Woodward Avenue", 100000}, [2609] = {"UCDhousing", 17, -161.45700073242, 2728.0600585938, 62.207500457764, "Woodward", 100000}, [2610] = {"UCDhousing", 17, -155.19799804688, 2759.2600097656, 62.773300170898, "Wookward Avenue", 100000}, [2611] = {"UCDhousing", 17, -165.93499755859, 2768.2800292969, 62.773300170898, "Wookward Avenue", 100000}, [2612] = {"UCDhousing", 17, -271.69799804688, 2691.6599121094, 62.6875, "Woodward Avenue", 80000}, [2613] = {"UCDhousing", 17, -323.45401000977, 2675.5600585938, 63.679698944092, "Woodward Avenue", 100000}, [2614] = {"UCDhousing", 16, -284.58499145508, 2655.419921875, 62.753700256348, "Woodward Avenue", 160000}, [2615] = {"UCDhousing", 16, -300.56799316406, 2658.2299804688, 63.19889831543, "Woodward Avenue", 160000}, [2616] = {"UCDhousing", 27, -208.1369934082, 2713.0900878906, 62.979400634766, "Wookward Avenue", 10000}, [2617] = {"UCDhousing", 17, -288.99099731445, 2689.7900390625, 62.8125, "Woodward Avenue", 80000}, [2618] = {"UCDhousing", 27, -242.84100341797, 2711.9499511719, 62.6875, "Wookward Avenue", 10000}, [2619] = {"UCDhousing", 17, -150.10400390625, 2687.7800292969, 62.429698944092, "Woodward Avenue", 100000}, [2620] = {"UCDhousing", 16, -255.1490020752, 2603.2900390625, 62.858200073242, "Woodward Avenue", 1}, [2621] = {"UCDhousing", 27, -165.93699645996, 2763.580078125, 62.773300170898, "Wookward Avenue", 10000}, [2622] = {"UCDhousing", 27, 263.56298828125, 2895.4399414063, 10.531399726868, "Jones Bay", 10000}, [2623] = {"UCDhousing", 24, -386.78698730469, 2217.4299316406, 42.429698944092, "Woodward Town", 10000}, [2624] = {"UCDhousing", 24, -384.83499145508, 2206.1999511719, 42.423500061035, "Woodward Town", 10000}, [2625] = {"UCDhousing", 24, -390.00100708008, 2230.8000488281, 42.429698944092, "Woodward Town", 10000}, [2626] = {"UCDhousing", 27, -365.6960144043, 2207.3999023438, 43.242198944092, "Woodward Town", 10000}, [2627] = {"UCDhousing", 24, -361.74301147461, 2222.3100585938, 43.007801055908, "Woodward Town", 10000}, [2628] = {"UCDhousing", 24, -393.93899536133, 2249.5, 42.429698944092, "Woodward Town", 10000}, [2629] = {"UCDhousing", 27, -356.76901245117, 2234.9499511719, 42.484401702881, "Woodward Town", 10000}, [2630] = {"UCDhousing", 24, -376.85699462891, 2242.1201171875, 42.618499755859, "Woodward Town", 10000}, [2631] = {"UCDhousing", 24, -375.81298828125, 2260.4499511719, 43.061901092529, "Woodward Town", 10000}, [2632] = {"UCDhousing", 24, -404.78900146484, 2257.9399414063, 42.910499572754, "Woodward Town", 10000}, [2633] = {"UCDhousing", 24, -418.01998901367, 2228.5900878906, 42.429698944092, "Woodward Town", 10000}, [2634] = {"UCDhousing", 27, -431.05499267578, 2241, 42.9833984375, "Woodward Town", 10000}, [2635] = {"UCDhousing", 24, -453.93899536133, 2228.6298828125, 42.525001525879, "Woodward Town", 10000}, [2636] = {"UCDhousing", 24, -438.79699707031, 2226.9099121094, 43.116500854492, "Woodward Town", 10000}, [2637] = {"UCDhousing", 27, -1235.3100585938, 1826.4899902344, 41.556098937988, "State Road", 10000}, [2638] = {"UCDhousing", 27, -881.70501708984, 1513.6800537109, 26.031099319458, "Adamsville Town", 10000}, [2639] = {"UCDhousing", 27, -881.87799072266, 1531.6899414063, 26.062400817871, "Adamsville Town", 10000}, [2640] = {"UCDhousing", 24, -886.47802734375, 1514.0999755859, 26.031099319458, "Adamsville Town", 10000}, [2641] = {"UCDhousing", 27, -879.65100097656, 1538.6800537109, 26.031099319458, "Adamsville Town", 10000}, [2642] = {"UCDhousing", 27, -905.69500732422, 1542.8000488281, 26.062400817871, "Adamsville Town", 10000}, [2643] = {"UCDhousing", 24, -884.34399414063, 1538.2700195313, 26.031099319458, "Adamsville Town", 10000}, [2644] = {"UCDhousing", 27, -883.97497558594, 1552.7099609375, 26.062400817871, "Adamsville Town", 10000}, [2645] = {"UCDhousing", 27, -881.41101074219, 1562.6500244141, 26.218599319458, "Adamsville Town", 10000}, [2646] = {"UCDhousing", 27, -906.45397949219, 1514.6800537109, 26.316799163818, "Adamsville Town", 10000}, [2647] = {"UCDhousing", 27, -905.38000488281, 1528.5899658203, 26.07799911499, "Adamsville Town", 10000}, [2648] = {"UCDhousing", 27, -766.28002929688, 1613.5600585938, 27.273300170898, "Adamsville Town", 10000}, [2649] = {"UCDhousing", 24, -761.69702148438, 1613.1600341797, 27.273300170898, "Adamsville Town", 10000}, [2650] = {"UCDhousing", 24, -742.95202636719, 1432.5799560547, 16.116199493408, "Adamsville Town", 10000}, [2651] = {"UCDhousing", 24, -715.51300048828, 1438.8000488281, 18.887100219727, "Adamsville Town", 10000}, [2652] = {"UCDhousing", 27, -797.98498535156, 1525.7900390625, 27.078699111938, "Adamsville Town", 10000}, [2653] = {"UCDhousing", 24, -690.06799316406, 1444.3299560547, 17.809000015259, "Adamsville Town", 10000}, [2654] = {"UCDhousing", 24, -788.44702148438, 1519.8299560547, 26.926599502563, "Adamsville Town", 10000}, [2655] = {"UCDhousing", 24, -814.11602783203, 1425.6099853516, 13.945300102234, "Tee Pee Motel", 10000}, [2656] = {"UCDhousing", 24, -799.30297851563, 1425.5999755859, 13.945300102234, "Tee Pee Motel", 10000}, [2657] = {"UCDhousing", 24, -658.49102783203, 1447.0400390625, 13.734199523926, "Adamsville Town", 10000}, [2658] = {"UCDhousing", 24, -786.06896972656, 1425.6199951172, 13.945300102234, "Tee Pee Motel", 10000}, [2659] = {"UCDhousing", 24, -773.32800292969, 1425.4300537109, 13.945300102234, "Tee Pee Motel", 10000}, [2660] = {"UCDhousing", 24, -650.76098632813, 1445.6999511719, 13.679599761963, "Adamsville Town", 10000}, [2661] = {"UCDhousing", 24, -775.93597412109, 1448.1800537109, 13.945300102234, "Tee Pee Motel", 10000}, [2662] = {"UCDhousing", 24, -650.34802246094, 1450.4200439453, 13.679599761963, "Adamsville Town", 10000}, [2663] = {"UCDhousing", 24, -788.40899658203, 1448.3100585938, 13.945300102234, "Tee Pee Motel", 10000}, [2664] = {"UCDhousing", 24, -802.916015625, 1448.7399902344, 13.945300102234, "Tee Pee Motel", 10000}, [2665] = {"UCDhousing", 24, -636.36297607422, 1446.7399902344, 13.996500015259, "Adamsville Town", 10000}, [2666] = {"UCDhousing", 24, -816.64697265625, 1448.8299560547, 13.945300102234, "Tee Pee Motel", 10000}, [2667] = {"UCDhousing", 24, -814.18200683594, 1501.7199707031, 20.16250038147, "Tee Pee Motel", 10000}, [2668] = {"UCDhousing", 24, -783.375, 1482.9699707031, 23.481199264526, "Tee Pee Motel", 10000}, [2669] = {"UCDhousing", 24, -821.08801269531, 1603.8100585938, 27.124399185181, "Adamsville Town", 10000}, [2670] = {"UCDhousing", 27, -828.88299560547, 1604.0799560547, 27.11720085144, "Adamsville Town", 10000}, [2671] = {"UCDhousing", 27, -830.63000488281, 1589.0100097656, 26.999900817871, "Adamsville Town", 25000}, [2672] = {"UCDhousing", 24, -824.61999511719, 1569.2199707031, 27.11720085144, "Adamsville Town", 10000}, [2673] = {"UCDhousing", 27, -825.91998291016, 1557.2800292969, 27.11720085144, "Adamsville Town", 10000}, [2674] = {"UCDhousing", 24, -800.28900146484, 1596.6400146484, 27.069999694824, "Adamsville Town", 10000}, [2675] = {"UCDhousing", 17, -1051.75, 1550.0300292969, 33.437599182129, "Down St.", 100000}, [2676] = {"UCDhousing", 4, -794.67901611328, 1557.0999755859, 27.124399185181, "Adamsville Town", 40000}, [2677] = {"UCDhousing", 24, -818.20098876953, 1569.4300537109, 27.11720085144, "Adamsville Town", 10000}, [2678] = {"UCDhousing", 17, -780.26098632813, 1501.4699707031, 23.799999237061, "Adamsville Town", 100000}, [2679] = {"UCDhousing", 17, -777.53497314453, 1482.9699707031, 24.002099990845, "Adamsville Town", 100000}, [2680] = {"UCDhousing", 17, -794.40899658203, 1501.4699707031, 22.256000518799, "Adamsville Town", 100000}, [2681] = {"UCDhousing", 17, -799.59399414063, 1501.4699707031, 21.662300109863, "Adamsville Town", 100000}, [2682] = {"UCDhousing", 17, -793.09997558594, 1481.8800048828, 22.567399978638, "Adamsville Town", 100000}, [2683] = {"UCDhousing", 17, -813.27502441406, 1481.7600097656, 20.335899353027, "Adamsville Town", 100000}, [2684] = {"UCDhousing", 17, -823.49597167969, 1480.9000244141, 19.649200439453, "Adamsville Town", 100000}, [2685] = {"UCDhousing", 17, -832.38702392578, 1482.8299560547, 18.370599746704, "Adamsville Town", 100000}, [2686] = {"UCDhousing", 17, -806.78002929688, 1481.8599853516, 20.968799591064, "Adamsville Town", 100000}, [2687] = {"UCDhousing", 27, -818.19897460938, 1560.4100341797, 27.11720085144, "Adamsville Town", 10000}, [2688] = {"UCDhousing", 24, -818.20098876953, 1551.2800292969, 27.11720085144, "Adamsville Town", 10000}, [2689] = {"UCDhousing", 16, -314.02899169922, 1774.6999511719, 43.640598297119, "Least Rd.", 100000}, [2690] = {"UCDhousing", 19, -18.372100830078, 1115.6700439453, 20.93989944458, "Peace Town", 100000}, [2691] = {"UCDhousing", 19, 12.778300285339, 1113.6700439453, 20.93989944458, "Peace Town", 130000}, [2692] = {"UCDhousing", 19, 1.7529300451279, 1076.1300048828, 20.93989944458, "Peace Town", 130000}, [2693] = {"UCDhousing", 19, -44.992198944092, 1081.0699462891, 20.93989944458, "Peace Town", 130000}, [2694] = {"UCDhousing", 19, -39.480499267578, 1074.0799560547, 20.93989944458, "Peace Town", 130000}, [2695] = {"UCDhousing", 19, -36.014598846436, 1115.6700439453, 20.93989944458, "Peace Town", 130000}, [2696] = {"UCDhousing", 19, -32.245098114014, 1038.6700439453, 20.93989944458, "Peace Town", 130000}, [2697] = {"UCDhousing", 19, -12.728500366211, 1122.7399902344, 20.93989944458, "Peace Town", 130000}, [2698] = {"UCDhousing", 19, -31.07320022583, 1045.7399902344, 20.93989944458, "Peace Town", 130000}, [2699] = {"UCDhousing", 22, -2226.1999511719, 252.09700012207, 35.320301055908, "Pierce Street", 5000000}, [2700] = {"UCDhousing", 31, -2431.2099609375, -27.541000366211, 35.320301055908, "Jesse Hill Jr Street", 250000}, [2701] = {"UCDhousing", 31, -2430.9099121094, -4.8769497871399, 35.320301055908, "Jesse Hill Jr Street", 250000}, [2702] = {"UCDhousing", 31, -2510.8601074219, -109.54599761963, 25.61720085144, "Grubb Street", 250000}, [2703] = {"UCDhousing", 31, -2515.3798828125, -153.9759979248, 25.049600601196, "Grubb Street", 250000}, [2704] = {"UCDhousing", 31, -2515.3798828125, -170.94700622559, 25.049200057983, "Grubb Street", 250000}, [2705] = {"UCDhousing", 31, -2515.3798828125, -189.29200744629, 25.049600601196, "Grubb Street", 250000}, [2706] = {"UCDhousing", 31, -2524.3798828125, -118.72899627686, 21.787900924683, "Fargo Street", 250000}, [2707] = {"UCDhousing", 31, -2524.2800292969, -145.85800170898, 21.859300613403, "Fargo Street", 250000}, [2708] = {"UCDhousing", 31, -2541.4299316406, -118.73600006104, 16.260099411011, "Fargo Street", 250000}, [2709] = {"UCDhousing", 31, -2541.4699707031, -145.85499572754, 15.676500320435, "Fargo Street", 250000}, [2710] = {"UCDhousing", 31, -2558.6599121094, -145.85800170898, 9.4228897094727, "Fargo Street", 250000}, [2711] = {"UCDhousing", 31, -2558.5700683594, -118.72799682617, 11.014699935913, "Fargo Street", 250000}, [2712] = {"UCDhousing", 31, -2576.3701171875, -145.85600280762, 6.6479997634888, "Fargo Street", 250000}, [2713] = {"UCDhousing", 31, -2576.330078125, -118.72799682617, 6.6169600486755, "Fargo Street", 250000}, [2714] = {"UCDhousing", 31, -2524.5100097656, -198.80000305176, 21.76549911499, "Fair Street", 250000}, [2715] = {"UCDhousing", 31, -2541.5, -199.16600036621, 16.194499969482, "Fair Street", 250000}, [2716] = {"UCDhousing", 31, -2558.6899414063, -199.06300354004, 10.951399803162, "Fair Street", 250000}, [2717] = {"UCDhousing", 31, -2576.4399414063, -199.43699645996, 6.5963401794434, "Fair Street", 250000}, [2718] = {"UCDhousing", 31, -2590.5300292969, -186.1009979248, 4.3283200263977, "Florence Avenue", 20000}, [2719] = {"UCDhousing", 31, -2590.5300292969, -158.56199645996, 4.3282399177551, "Florence Avenue", 250000}, [2720] = {"UCDhousing", 31, -2590.5300292969, -106.0059967041, 4.3294801712036, "Florence Avenue", 250000}, [2721] = {"UCDhousing", 31, -2590.5300292969, -95.833000183105, 4.3245000839233, "Florence Avenue", 250000}, [2722] = {"UCDhousing", 31, -2576.5100097656, -82.901397705078, 6.6441202163696, "Fair Street", 250000}, [2723] = {"UCDhousing", 8, -2664.4499511719, -3.5097699165344, 6.1328101158142, "Apple St.", 4500000}, [2724] = {"UCDhousing", 10, -2625.8500976563, -105.35500335693, 7.2031202316284, "Jones Alley", 160000}, [2725] = {"UCDhousing", 31, -2623.4299316406, -99.401397705078, 7.2031202316284, "Jones Alley", 180000}, [2726] = {"UCDhousing", 10, -2625.8500976563, -162.36999511719, 7.2031202316284, "Jones Alley", 160000}, [2727] = {"UCDhousing", 10, -2625.830078125, -190.99699401855, 7.2031202316284, "Jones Alley", 160000}, [2728] = {"UCDhousing", 17, -2620.7700195313, -120.20899963379, 7.2031202316284, "Jones Alley", 155000}, [2729] = {"UCDhousing", 17, -2620.830078125, -146.21200561523, 7.2031202316284, "Jones Alley", 155000}, [2730] = {"UCDhousing", 17, -2620.7900390625, -185.83599853516, 7.2031202316284, "Jones Alley", 155000}, [2731] = {"UCDhousing", 31, -2622.3601074219, -112.43000030518, 4.3425798416138, "Jones Ally", 180000}, [2732] = {"UCDhousing", 32, -2621.0100097656, -134.68899536133, 5, "Jones Ally", 185000}, [2733] = {"UCDhousing", 31, -2619.75, -127.61100006104, 4.7698998451233, "Jones Ally", 180000}, [2734] = {"UCDhousing", 31, -2619.4599609375, -153.58099365234, 4.3359398841858, "Jones Ally", 180000}, [2735] = {"UCDhousing", 31, -2621.0100097656, -173.16200256348, 5, "Jones Alley", 180000}, [2736] = {"UCDhousing", 32, -2622.3601074219, -169.55200195313, 4.3425798416138, "Jones Alley", 185000}, [2737] = {"UCDhousing", 32, -2622.3500976563, -198.07000732422, 4.3359398841858, "Jones Alley", 185000}, [2738] = {"UCDhousing", 17, -2628.5200195313, 267.35400390625, 7.1953101158142, "Holt Avenue", 155000}, [2739] = {"UCDhousing", 17, -2630.919921875, 252.92799377441, 7.1875, "Holt Avenue", 155000}, [2740] = {"UCDhousing", 10, -2634.6101074219, 261.26000976563, 4.7603898048401, "Holt Avenue", 180000}, [2741] = {"UCDhousing", 10, -2632, 274.53799438477, 4.3347702026367, "Hold Avenue", 180000}, [2742] = {"UCDhousing", 16, -2294.8601074219, 969.60302734375, 65.258598327637, "Capital Street", 210000}, [2743] = {"UCDhousing", 16, -2307.3999023438, 944.25897216797, 61.608699798584, "Capital Street", 210000}, [2744] = {"UCDhousing", 16, -2325.8798828125, 944.25598144531, 55.320899963379, "Capital Street", 210000}, [2745] = {"UCDhousing", 13, -2358.5200195313, 679.9580078125, 35.164100646973, "San Pedro Ave", 210000}, [2746] = {"UCDhousing", 13, -2340.1298828125, 679.95300292969, 38.388999938965, "San Pedro Ave", 210000}, [2747] = {"UCDhousing", 13, -2321.7099609375, 679.9580078125, 41.977798461914, "San Pedro Ave", 210000}, [2748] = {"UCDhousing", 13, -2303.3798828125, 679.95397949219, 45.34529876709, "San Pedro Ave", 210000}, [2749] = {"UCDhousing", 18, -2433.0300292969, 1264.1700439453, 28.25779914856, "Cobb Street", 265000}, [2750] = {"UCDhousing", 18, -2434, 1274.1400146484, 25.311399459839, "Cobb Street", 265000}, [2751] = {"UCDhousing", 18, -2433.7299804688, 1281.6099853516, 23.74220085144, "Cobb Street", 265000}, [2752] = {"UCDhousing", 18, -2433.0500488281, 1301.2800292969, 18.38279914856, "Cobb Street", 265000}, [2753] = {"UCDhousing", 18, -2434.0200195313, 1311.0100097656, 15.416700363159, "Cobb Street", 265000}, [2754] = {"UCDhousing", 18, -2433.75, 1318.4699707031, 13.867199897766, "Cobb Street", 265000}, [2755] = {"UCDhousing", 18, -2477.1999511719, 1318.4000244141, 13.851599693298, "Cobb Street", 265000}, [2756] = {"UCDhousing", 18, -2477.8898925781, 1338.3399658203, 8.5038795471191, "Cobb Street", 265000}, [2757] = {"UCDhousing", 18, -2476.9399414063, 1311.0699462891, 15.409899711609, "Cobb Street", 265000}, [2758] = {"UCDhousing", 18, -2477.8999023438, 1301.1899414063, 18.375, "Cobb Street", 265000}, [2759] = {"UCDhousing", 18, -2477.2299804688, 1281.3900146484, 23.726600646973, "Cobb Street", 265000}, [2760] = {"UCDhousing", 18, -2476.9599609375, 1274.0699462891, 25.302799224854, "Cobb Street", 265000}, [2761] = {"UCDhousing", 18, -2477.7199707031, 1264.0300292969, 28.25, "Cobb Street", 265000}, [2762] = {"UCDhousing", 18, -2477.25, 1244.6400146484, 33.609401702881, "Cobb Street", 265000}, [2763] = {"UCDhousing", 16, 1845.4399414063, 741.39300537109, 11.460900306702, "Yucca St.", 160000}, [2764] = {"UCDhousing", 19, 1844, 718.65197753906, 11.468299865723, "Yucca St.", 160000}, [2765] = {"UCDhousing", 16, 1844.5300292969, 690.47900390625, 11.453100204468, "Yucca St.", 160000}, [2766] = {"UCDhousing", 10, -2112.5300292969, 746.44097900391, 69.5625, "Mason St", 200000}, [2767] = {"UCDhousing", 19, 1845.4399414063, 661.14501953125, 11.460900306702, "Yucca St.", 160000}, [2768] = {"UCDhousing", 10, -2094.1999511719, 746.44299316406, 69.5625, "Mason St", 200000}, [2769] = {"UCDhousing", 10, -2066.5, 746.08001708984, 64.885696411133, "Mason St", 200000}, [2770] = {"UCDhousing", 10, -2048.2900390625, 746.08801269531, 57.058399200439, "Mason St", 200000}, [2771] = {"UCDhousing", 19, 2014.0200195313, 650.41101074219, 11.460900306702, "Yucca St.", 160000}, [2772] = {"UCDhousing", 10, -2029.8900146484, 746.08898925781, 49.470901489258, "Mason St", 200000}, [2773] = {"UCDhousing", 11, 2043.2600097656, 651.31298828125, 11.460900306702, "Bronson Ave.", 170000}, [2774] = {"UCDhousing", 9, 2065.7700195313, 649.86297607422, 11.468299865723, "Bronson Ave.", 170000}, [2775] = {"UCDhousing", 17, 2094.0900878906, 650.40600585938, 11.460900306702, "Bronson Ave.", 170000}, [2776] = {"UCDhousing", 13, -2018.5500488281, 766.31201171875, 45.445301055908, "Liverpool Rd", 220000}, [2777] = {"UCDhousing", 19, 2123.4099121094, 651.31298828125, 11.460900306702, "Bronson Ave.", 160000}, [2778] = {"UCDhousing", 19, 2120.4699707031, 696.09197998047, 11.453100204468, "Bronson Ave.", 160000}, [2779] = {"UCDhousing", 13, -2018.5500488281, 784.72998046875, 45.445301055908, "Liverpool Rd", 220000}, [2780] = {"UCDhousing", 9, 2091.2199707031, 695.18798828125, 11.460900306702, "Bronson Ave.", 165000}, [2781] = {"UCDhousing", 11, 2069.0600585938, 696.61798095703, 11.468299865723, "Bronson Ave.", 165000}, [2782] = {"UCDhousing", 13, -2018.5400390625, 748.11999511719, 45.445301055908, "Liverpool Rd", 220000}, [2783] = {"UCDhousing", 11, 2040.7199707031, 696.09002685547, 11.453100204468, "Bronson Ave.", 1}, [2784] = {"UCDhousing", 13, 2011.5600585938, 695.18103027344, 11.460900306702, "Bronson Ave.", 170000}, [2785] = {"UCDhousing", 13, 2013.2099609375, 730.35797119141, 11.453100204468, "Ivar Ave.", 170000}, [2786] = {"UCDhousing", 17, 2042.5999755859, 731.26702880859, 11.460900306702, "Ivar Ave.", 150000}, [2787] = {"UCDhousing", 11, 2065, 729.83099365234, 11.468299865723, "Ivar Ave.", 155000}, [2788] = {"UCDhousing", 9, 2093.419921875, 730.35900878906, 11.453100204468, "Ivar Ave.", 165000}, [2789] = {"UCDhousing", 9, 2122.3400878906, 731.26702880859, 11.460900306702, "Ivar Ave.", 165000}, [2790] = {"UCDhousing", 13, 2123.2700195313, 776.09997558594, 11.445300102234, "Ivar Ave.", 170000}, [2791] = {"UCDhousing", 11, 2094.1101074219, 775.19396972656, 11.453100204468, "Ivar Ave.", 1}, [2792] = {"UCDhousing", 13, 2071.5300292969, 776.63702392578, 11.460499763489, "Ivar Ave.", 170000}, [2793] = {"UCDhousing", 11, 2043.2800292969, 776.09802246094, 11.453100204468, "Ivar Ave.", 165000}, [2794] = {"UCDhousing", 13, 2014.1099853516, 775.18298339844, 11.460900306702, "Ivar Ave.", 165000}, [2795] = {"UCDhousing", 11, 2228.9499511719, 655.18499755859, 11.460900306702, "Caesar Rd", 160000}, [2796] = {"UCDhousing", 11, 2178.1499023438, 655.97100830078, 11.460900306702, "Caesar Rd", 160000}, [2797] = {"UCDhousing", 11, 2206.330078125, 656.6259765625, 11.468299865723, "Caesar Rd", 160000}, [2798] = {"UCDhousing", 11, 2258.169921875, 655.97698974609, 11.453100204468, "Caesar Rd", 160000}, [2799] = {"UCDhousing", 13, 2177.2199707031, 690.38201904297, 11.460900306702, "Lombard St", 170000}, [2800] = {"UCDhousing", 13, 2206.419921875, 691.25299072266, 11.460900306702, "Lombard St", 170000}, [2801] = {"UCDhousing", 13, 2228.5600585938, 689.80999755859, 11.460499763489, "Lombard St", 170000}, [2802] = {"UCDhousing", 13, 2256.8999023438, 690.34399414063, 11.453100204468, "Lombard St", 170000}, [2803] = {"UCDhousing", 9, 2257.6201171875, 736.09997558594, 11.460900306702, "Lombard St", 150000}, [2804] = {"UCDhousing", 9, 2228.4299316406, 735.20098876953, 11.460900306702, "Lombard St", 150000}, [2805] = {"UCDhousing", 9, 2205.8400878906, 736.63500976563, 11.468299865723, "Lombard St", 150000}, [2806] = {"UCDhousing", 9, 2177.5600585938, 736.08898925781, 11.460900306702, "Lombard St", 150000}, [2807] = {"UCDhousing", 13, 2317.1599121094, 690.34997558594, 11.460900306702, "Lombard St.", 170000}, [2808] = {"UCDhousing", 13, 2346.4299316406, 691.27001953125, 11.460900306702, "Lombard St.", 170000}, [2809] = {"UCDhousing", 19, 2368.5400390625, 689.80700683594, 11.460499763489, "Lombard St.", 170000}, [2810] = {"UCDhousing", 19, 2396.8200683594, 690.34899902344, 11.453100204468, "Lombard St.", 170000}, [2811] = {"UCDhousing", 13, 2398.3798828125, 736.07501220703, 11.460900306702, "Lombard St.", 170000}, [2812] = {"UCDhousing", 19, 2369.0700683594, 735.19396972656, 11.460900306702, "Lombard St.", 170000}, [2813] = {"UCDhousing", 13, 2346.6499023438, 736.63800048828, 11.468299865723, "Lombard St.", 170000}, [2814] = {"UCDhousing", 13, 2346.1599121094, 656.63702392578, 11.460499763489, "Caeser Rd.", 170000}, [2815] = {"UCDhousing", 19, 2368.3898925781, 655.21099853516, 11.460900306702, "Caeser Rd.", 170000}, [2816] = {"UCDhousing", 19, 2397.5300292969, 656.09100341797, 11.460900306702, "Caeser Rd.", 170000}, [2817] = {"UCDhousing", 13, 2317.9099121094, 656.10302734375, 11.453100204468, "Caeser Rd.", 170000}, [2818] = {"UCDhousing", 13, 1680.4000244141, 2069.2399902344, 11.359399795532, "Alameda St.", 190000}, [2819] = {"UCDhousing", 19, 1684.5100097656, 2046.5699462891, 11.468799591064, "Alameda St.", 170000}, [2820] = {"UCDhousing", 13, 1684.5100097656, 2123.3798828125, 11.460900306702, "Alameda St.", 190000}, [2821] = {"UCDhousing", 19, 1685.4200439453, 2093.7399902344, 11.460900306702, "Alameda St.", 170000}, [2822] = {"UCDhousing", 13, 1640.3399658203, 2075.6999511719, 11.3125, "Lawrence St.", 190000}, [2823] = {"UCDhousing", 19, 1641.7900390625, 2044.8900146484, 11.319899559021, "Lawrence St.", 170000}, [2824] = {"UCDhousing", 19, 1595.5, 2038.3599853516, 11.468799591064, "Lawrence St.", 170000}, [2825] = {"UCDhousing", 13, 1594.9599609375, 2071.1899414063, 11.319899559021, "Lawrence St.", 190000}, [2826] = {"UCDhousing", 13, 1595.5, 2123.2800292969, 11.460900306702, "Lawrence St.", 190000}, [2827] = {"UCDhousing", 19, 1596.4100341797, 2093.6499023438, 11.3125, "Lawrence St.", 170000}, [2828] = {"UCDhousing", 13, 1645.3800048828, 2127.3798828125, 11.203100204468, "Lawrence St.", 190000}, [2829] = {"UCDhousing", 19, 1640.3399658203, 2102.8500976563, 11.3125, "Lawrence St.", 170000}, [2830] = {"UCDhousing", 13, 1596.4200439453, 2147.4499511719, 11.460900306702, "Lawrence St.", 190000}, [2831] = {"UCDhousing", 19, 1641.2600097656, 2149.7700195313, 11.3125, "Lawrence St.", 170000}, [2832] = {"UCDhousing", 13, 1550.2700195313, 2096.4299316406, 11.460900306702, "Merchant St.", 190000}, [2833] = {"UCDhousing", 19, 1549.3599853516, 2125.6000976563, 11.460900306702, "Merchant St.", 170000}, [2834] = {"UCDhousing", 19, 1554.4300537109, 2074.0600585938, 11.359399795532, "Merchant St.", 170000}, [2835] = {"UCDhousing", 19, 1407.75, 1897.0300292969, 11.460900306702, "Olvera St.", 180000}, [2836] = {"UCDhousing", 19, 1364.5100097656, 1896.7299804688, 11.468799591064, "Olvera St.", 180000}, [2837] = {"UCDhousing", 19, 1409.3499755859, 1919.9799804688, 11.468799591064, "Olvera St.", 180000}, [2838] = {"UCDhousing", 19, 1364.3299560547, 1931.6899414063, 11.468299865723, "Olvera St.", 180000}, [2839] = {"UCDhousing", 19, 1365.8800048828, 1974.2199707031, 11.460900306702, "Olvera St.", 180000}, [2840] = {"UCDhousing", 19, 1364.7299804688, 2003.7399902344, 11.460900306702, "Olvera St.", 180000}, [2841] = {"UCDhousing", 13, 1412.6099853516, 1951.25, 11.453100204468, "Flower St.", 190000}, [2842] = {"UCDhousing", 19, 1365.9899902344, 2027.9599609375, 11.460900306702, "Olvera St.", 180000}, [2843] = {"UCDhousing", 13, 1439.6899414063, 1951.25, 11.460900306702, "Flower St.", 190000}, [2844] = {"UCDhousing", 13, 1462.3100585938, 1949.8100585938, 11.468299865723, "Flower St.", 190000}, [2845] = {"UCDhousing", 13, 1464.5, 1920.0200195313, 11.460900306702, "Flower St.", 190000}, [2846] = {"UCDhousing", 13, 1464.5, 1895.0600585938, 11.460900306702, "Flower St.", 1}, [2847] = {"UCDhousing", 13, 1309.3100585938, 1931.25, 11.460900306702, "Oliva St.", 190000}, [2848] = {"UCDhousing", 19, 1336.4100341797, 1931.7299804688, 11.460900306702, "Oliva St.", 180000}, [2849] = {"UCDhousing", 13, 1319.3000488281, 2005.6199951172, 11.460900306702, "Oliva St.", 190000}, [2850] = {"UCDhousing", 19, 1320.1199951172, 1976.1400146484, 11.468799591064, "Oliva St.", 180000}, [2851] = {"UCDhousing", 19, 1320.5500488281, 2028.1099853516, 11.468299865723, "Oliva St.", 180000}, [2852] = {"UCDhousing", 19, 984.46997070313, 2343.7199707031, 11.468799591064, "Vignes St.", 175000}, [2853] = {"UCDhousing", 2, 2415.4499511719, -52.282199859619, 28.153499603271, "Cleveland St.", 220000}, [2854] = {"UCDhousing", 2, 2392.3400878906, -54.958000183105, 28.153600692749, "Cleveland St.", 220000}, [2855] = {"UCDhousing", 2, 2367.3500976563, -49.106399536133, 28.153499603271, "Cleveland St.", 220000}, [2856] = {"UCDhousing", 2, 2270.5, -7.5, 28.153499603271, "Cleveland St.", 220000}, [2857] = {"UCDhousing", 2, 2245.4399414063, -1.660159945488, 28.153600692749, "Cleveland St.", 220000}, [2858] = {"UCDhousing", 2, 2197.2800292969, -60.742198944092, 28.153499603271, "Cleveland St.", 220000}, [2859] = {"UCDhousing", 2, 2199.9599609375, -37.288101196289, 28.153499603271, "Cleveland St.", 220000}, [2860] = {"UCDhousing", 2, 2245.3000488281, -122.28199768066, 28.153499603271, "Cleveland St.", 220000}, [2861] = {"UCDhousing", 2, 2272.4099121094, -119.13400268555, 28.153499603271, "Cleveland St.", 220000}, [2862] = {"UCDhousing", 2, 2293.7199707031, -124.96199798584, 28.153499603271, "Cleveland St.", 220000}, [2863] = {"UCDhousing", 2, 2322.3100585938, -124.96199798584, 28.153600692749, "Cleveland St.", 220000}, [2864] = {"UCDhousing", 2, 2203.1101074219, -89.301803588867, 28.153499603271, "Cleveland St.", 220000}, [2865] = {"UCDhousing", 2, 2398.3100585938, 111.7620010376, 28.441600799561, "Cain Street", 220000}, [2866] = {"UCDhousing", 2, 2363.9899902344, 116.21900177002, 28.441600799561, "Cain Street", 220000}, [2867] = {"UCDhousing", 2, 2373.8500976563, -8.6152296066284, 28.441600799561, "Hunter St.", 220000}, [2868] = {"UCDhousing", 2, 2363.9899902344, 142.13000488281, 28.441600799561, "Cain Street", 220000}, [2869] = {"UCDhousing", 2, 2364, 166.17999267578, 28.441600799561, "Cain Street", 220000}, [2870] = {"UCDhousing", 2, 2411.2199707031, -5.6093797683716, 27.683500289917, "Hunter St.", 220000}, [2871] = {"UCDhousing", 2, 2363.9899902344, 187.19200134277, 28.441600799561, "Cain Street", 220000}, [2872] = {"UCDhousing", 2, 2373.919921875, 22.034200668335, 28.441600799561, "Hunter St.", 220000}, [2873] = {"UCDhousing", 2, 2417.0100097656, 17.839799880981, 27.683500289917, "Hunter St.", 220000}, [2874] = {"UCDhousing", 13, 2323.8500976563, 191.03799438477, 28.441600799561, "Cain Street", 255000}, [2875] = {"UCDhousing", 2, 2373.8500976563, 42.237300872803, 28.441600799561, "Hunter St.", 220000}, [2876] = {"UCDhousing", 17, -2634.8999023438, 239.76600646973, 4.5656399726868, "Hot Avenue", 170000}, [2877] = {"UCDhousing", 13, -2303.3999023438, 656.73498535156, 45.332099914551, "San Pedro Ave", 170000}, [2878] = {"UCDhousing", 13, -2321.6999511719, 656.73498535156, 41.979400634766, "San Pedro Ave", 170000}, [2879] = {"UCDhousing", 13, -2340.1101074219, 656.73602294922, 38.388198852539, "San Pedro Ave", 170000}, [2880] = {"UCDhousing", 13, -2358.4899902344, 656.73400878906, 35.171901702881, "San Pedro Ave", 170000}, [2881] = {"UCDhousing", 31, -1732.3000488281, 1115.5200195313, 45.445301055908, "Laurel Canyon Boulevard", 200000}, [2882] = {"UCDhousing", 9, -1776.1199951172, 1115.5300292969, 45.445301055908, "Laurel Canyon Boulevard", 200000}, [2883] = {"UCDhousing", 13, -1728.3399658203, 1138.9200439453, 38.574100494385, "Lombard St", 200000}, [2884] = {"UCDhousing", 19, -1728.3299560547, 1158.9699707031, 30.438400268555, "Lombard St", 200000}, [2885] = {"UCDhousing", 25, -1742.7700195313, 1174.0300292969, 25.125, "Wheat Street", 1}, [2886] = {"UCDhousing", 30, -1761.0100097656, 1174.0899658203, 25.125, "Wheat Street", 200000}, [2887] = {"UCDhousing", 31, -1780.0999755859, 1158.7399902344, 30.451900482178, "Loyd Street", 200000}, [2888] = {"UCDhousing", 32, -1780.0999755859, 1138.8399658203, 38.582401275635, "Loyd Street", 200000}, [2889] = {"UCDhousing", 32, -1831.6999511719, 1165.8399658203, 33.686599731445, "Wheat Street", 200000}, [2890] = {"UCDhousing", 31, -1852.3399658203, 1162.2099609375, 40.942901611328, "Wheat Street", 200000}, [2891] = {"UCDhousing", 26, -1872.0699462891, 1146.6300048828, 45.445301055908, "Wheat Street", 180000}, [2892] = {"UCDhousing", 27, -1872.0699462891, 1125.3900146484, 45.445301055908, "Wheat Street", 180000}, [2893] = {"UCDhousing", 27, -1842.3900146484, 1115.5200195313, 45.445301055908, "Hawk St", 180000}, [2894] = {"UCDhousing", 27, -1860.8399658203, 1115.5100097656, 45.445301055908, "Hawk St", 180000}, [2895] = {"UCDhousing", 31, -1820.8100585938, 1117.0600585938, 46.427398681641, "Hawk St", 250000}, [2896] = {"UCDhousing", 31, -2018.5400390625, 832.02099609375, 45.445301055908, "Liverpool Rd", 250000}, [2897] = {"UCDhousing", 30, -2018.5500488281, 849.48400878906, 45.448398590088, "Liverpool Rd", 1}, [2898] = {"UCDhousing", 25, -2018.5500488281, 865.625, 45.445301055908, "Liverpool Rd", 1}, [2899] = {"UCDhousing", 25, -2016.3499755859, 897.44799804688, 45.445301055908, "Liverpool Rd", 200000}, [2900] = {"UCDhousing", 17, -2018.3000488281, 970.10498046875, 45.445301055908, "Liverpool Rd", 150000}, [2901] = {"UCDhousing", 19, -2018.3000488281, 982.79699707031, 47.685298919678, "Liverpool Rd", 180000}, [2902] = {"UCDhousing", 21, -2018.3000488281, 999.95599365234, 50.777900695801, "Liverpool Rd", 180000}, [2903] = {"UCDhousing", 26, -2018.2399902344, 1017.049987793, 53.873100280762, "Liverpool Rd", 180000}, [2904] = {"UCDhousing", 26, -2034.2700195313, 901.46997070313, 50.488700866699, "Oakwood Ave", 180000}, [2905] = {"UCDhousing", 21, -2075.0900878906, 898.64001464844, 64.132797241211, "Oakwood Ave", 180000}, [2906] = {"UCDhousing", 21, -2084.6499023438, 898.63897705078, 64.132797241211, "Oakwood Ave", 180000}, [2907] = {"UCDhousing", 32, -2099.4299316406, 897.3740234375, 76.710899353027, "Oakwood Ave", 250000}, [2908] = {"UCDhousing", 31, -2129.2700195313, 894.76599121094, 80, "Peters Street", 200000}, [2909] = {"UCDhousing", 13, -2222.3500976563, 1163.75, 55.726600646973, "Calton Heights Street", 210000}, [2910] = {"UCDhousing", 13, -2205.8100585938, 1163.75, 55.726600646973, "Calton Heights Street", 210000}, [2911] = {"UCDhousing", 31, -2189.3000488281, 1163.75, 55.726600646973, "Calton Heights Street", 210000}, [2912] = {"UCDhousing", 31, -2172.7099609375, 1163.75, 55.726600646973, "Calton Heights Street", 210000}, [2913] = {"UCDhousing", 32, -2102.5400390625, 1159.8299560547, 53.265598297119, "Calton Heights Street", 250000}, [2914] = {"UCDhousing", 32, -2084.2800292969, 1159.8299560547, 49.953098297119, "Calton Heights Street", 250000}, [2915] = {"UCDhousing", 17, -2065.8601074219, 1159.8299560547, 46.648399353027, "Calton Heights Street", 180000}, [2916] = {"UCDhousing", 17, -1997.6700439453, 1190.5300292969, 45.445301055908, "Calton Heights Street", 180000}, [2917] = {"UCDhousing", 13, -1982.4499511719, 1190.5500488281, 45.445301055908, "Calton Heights Street", 230000}, [2918] = {"UCDhousing", 6, -1929.8800048828, 1190.5400390625, 45.445301055908, "Calton Heights Street", 1}, [2919] = {"UCDhousing", 7, -1915.5400390625, 1190.5300292969, 45.452701568604, "Calton Heights Street", 190000}, [2920] = {"UCDhousing", 9, -2084.669921875, 1232.7700195313, 25.877700805664, "Calton Heights Alley", 190000}, [2921] = {"UCDhousing", 12, -2061.6499023438, 1232.7800292969, 31.448999404907, "Calton Heights Alley", 170000}, [2922] = {"UCDhousing", 14, -2043.8399658203, 1232.6099853516, 31.648399353027, "Calton Heights Alley", 150000}, [2923] = {"UCDhousing", 16, -2026.0600585938, 1232.7600097656, 31.648399353027, "Calton Heights Alley", 170000}, [2924] = {"UCDhousing", 18, -1997.2900390625, 1222.5999755859, 31.786199569702, "Calton Heights Alley", 170000}, [2925] = {"UCDhousing", 23, -1939.3599853516, 1227.5899658203, 31.647399902344, "Calton Heights Alley", 120000}, [2926] = {"UCDhousing", 24, -1955.4300537109, 1222.4499511719, 31.795400619507, "Calton Heights Alley", 120000}, [2927] = {"UCDhousing", 23, -1970.3100585938, 1222.4499511719, 31.795400619507, "Calton Heights Alley", 120000}, [2928] = {"UCDhousing", 31, -2043.7299804688, 1261.4100341797, 9.2012701034546, "Calton Heights Street", 250000}, [2929] = {"UCDhousing", 31, -2024.4599609375, 1275.9100341797, 7.1875, "Calton Heights Street", 250000}, [2930] = {"UCDhousing", 13, -2029, 1275.9100341797, 7.1875, "Calton Heights Street", 200000}, [2931] = {"UCDhousing", 30, -1997.4100341797, 1272.9799804688, 7.6041898727417, "Calton Heights Street", 200000}, [2932] = {"UCDhousing", 31, -1970.3199462891, 1272.9799804688, 7.6040301322937, "Calton Heights Street", 200000}, [2933] = {"UCDhousing", 32, -1955.4599609375, 1272.9899902344, 7.6017799377441, "Calton Heights Street", 180000}, [2934] = {"UCDhousing", 26, -1927.7099609375, 1252.4000244141, 19.5, "Calton Heights Alley", 180000}, [2935] = {"UCDhousing", 26, -1913.3399658203, 1252.4000244141, 19.5, "Calton Heights Alley", 180000}, [2936] = {"UCDhousing", 25, -1901.4000244141, 1203.1999511719, 42.377998352051, "Calton Heights Street", 1}, [2937] = {"UCDhousing", 25, -1901.9699707031, 1222.5899658203, 33.743801116943, "Calton Heights Street", 1}, [2938] = {"UCDhousing", 32, -1901.9799804688, 1239.7299804688, 26.130399703979, "Calton Heights Street", 1}, [2939] = {"UCDhousing", 30, -1713.8399658203, 1366.3900146484, 7.1853199005127, "Beachwood Ave", 200000}, [2940] = {"UCDhousing", 30, -1699.7299804688, 1380.6899414063, 7.1875, "Beachwood Ave", 200000}, [2941] = {"UCDhousing", 31, -1694.1300048828, 1392.2199707031, 7.1821899414063, "Beachwood Ave", 200000}, [2942] = {"UCDhousing", 32, -1684.8299560547, 1401.5400390625, 7.1821699142456, "Beachwood Ave", 190000}, [2943] = {"UCDhousing", 32, -1677.6800537109, 1410.0899658203, 7.1853199005127, "Beachwood Ave", 190000}, [2944] = {"UCDhousing", 26, -1672.1199951172, 1417.9100341797, 7.1860299110413, "Beachwood Ave", 190000}, [2945] = {"UCDhousing", 26, -1664.7199707031, 1425.3199462891, 7.1860299110413, "Beachwood Ave", 190000}, [2946] = {"UCDhousing", 25, -1655.1099853516, 1428.9899902344, 7.1875, "Beachwood Ave", 280000}, [2947] = {"UCDhousing", 25, -1655.1300048828, 1411.8299560547, 7.1796898841858, "Beachwood Ave", 280000}, [2948] = {"UCDhousing", 24, -1664.3199462891, 1406.3399658203, 7.1796898841858, "Beachwood Ave", 120000}, [2949] = {"UCDhousing", 24, -1668.0500488281, 1398.9399414063, 7.1796898841858, "Beachwood Ave", 120000}, [2950] = {"UCDhousing", 23, -1669.8000488281, 1393.5100097656, 7.1796898841858, "Beachwood Ave", 120000}, [2951] = {"UCDhousing", 18, -1675.2700195313, 1377.0100097656, 7.1796898841858, "Beachwood Ave", 180000}, [2952] = {"UCDhousing", 18, -1691.8299560547, 1367.7900390625, 7.1796898841858, "Beachwood Ave", 180000}, [2953] = {"UCDhousing", 18, -1706.5100097656, 1353.0999755859, 7.1796898841858, "Beachwood Ave", 180000}, [2954] = {"UCDhousing", 17, -1681.2700195313, 1349.9799804688, 7.1721901893616, "Beachwood Ave", 180000}, [2955] = {"UCDhousing", 17, -1659.2399902344, 1368.2700195313, 7.1721901893616, "Beachwood Ave", 180000}, [2956] = {"UCDhousing", 16, -1666.5799560547, 1360.9300537109, 7.1721901893616, "Beachwood Ave", 180000}, [2957] = {"UCDhousing", 13, -1650, 1377.5400390625, 7.1721901893616, "Beachwood Ave", 210000}, [2958] = {"UCDhousing", 31, -1642.6300048828, 1384.8800048828, 7.1721901893616, "Beachwood Ave", 280000}, [2959] = {"UCDhousing", 17, -1635.3299560547, 1392.1899414063, 7.1721901893616, "Beachwood Ave", 100000}, [2960] = {"UCDhousing", 24, -1629.2399902344, 1388.3900146484, 7.1875, "Beachwood Ave", 100000}, [2961] = {"UCDhousing", 24, -1631.1600341797, 1376.9699707031, 7.1867098808289, "Beachwood Ave", 100000}, [2962] = {"UCDhousing", 24, -1649.5100097656, 1368.2299804688, 7.1796898841858, "Beachwood Ave", 100000}, [2963] = {"UCDhousing", 23, -1653.1800537109, 1354.9399414063, 7.1859998703003, "Beachwood Ave", 100000}, [2964] = {"UCDhousing", 23, -1686.3699951172, 1325.4499511719, 7.1875, "Beachwood Ave", 100000}, [2965] = {"UCDhousing", 13, -1694.1899414063, 1330.9399414063, 7.182559967041, "Beachwood Ave", 250000}, [2966] = {"UCDhousing", 6, 841.28497314453, -1471.3599853516, 14.313599586487, "Wilshire Blvd.", 480000}, [2967] = {"UCDhousing", 6, 898.46099853516, -1445.6400146484, 14.364700317383, "Wilshire Blvd.", 480000}, [2968] = {"UCDhousing", 6, 898.40899658203, -1472.8299560547, 14.341400146484, "Wilshire Blvd.", 490000}, [2969] = {"UCDhousing", 6, 900.21502685547, -1447.3199462891, 14.370300292969, "Wilshire Blvd.", 480000}, [2970] = {"UCDhousing", 6, 900.19702148438, -1471.0600585938, 14.343999862671, "Wilshire Blvd.", 480000}, [2971] = {"UCDhousing", 6, 849.59301757813, -1519.8900146484, 14.348299980164, "Wilshire Blvd.", 480000}, [2972] = {"UCDhousing", 6, 876.208984375, -1512.8599853516, 14.348799705505, "Wilshire Blvd.", 480000}, [2973] = {"UCDhousing", 6, 878.0419921875, -1514.6400146484, 14.350099563599, "Wilshire Blvd.", 480000}, [2974] = {"UCDhousing", 6, 901.65899658203, -1514.6600341797, 14.363800048828, "Wilshire Blvd.", 300000}, [2975] = {"UCDhousing", 6, 903.39599609375, -1512.9300537109, 14.362999916077, "Wilshire Blvd.", 480000}, [2976] = {"UCDhousing", 6, 813.69000244141, -1456.6500244141, 14.225799560547, "Wilshire Blvd.", 1}, [2977] = {"UCDhousing", 6, 824.51501464844, -1424.1999511719, 14.498900413513, "Wilshire Blvd.", 140000}, [2978] = {"UCDhousing", 6, 852.26501464844, -1423.2700195313, 14.136699676514, "Wilshire Blvd.", 219000}, [2979] = {"UCDhousing", 6, 880.11901855469, -1424.8199462891, 14.484399795532, "Wilshire Blvd.", 1}, [2980] = {"UCDhousing", 6, 761.07000732422, -1564.0300292969, 13.928899765015, "Wilshire Blvd.", 1}, [2981] = {"UCDhousing", 22, 771.125, -1510.6999511719, 13.546899795532, "Wilshire Blvd.", 3000000}, [2982] = {"UCDhousing", 25, 782.79998779297, -1464.3599853516, 13.546899795532, "Wilshire Blvd.", 500000}, [2983] = {"UCDhousing", 20, 816.18701171875, -1386.0799560547, 13.596699714661, "Wilshire Blvd.", 2500000}, [2984] = {"UCDhousing", 22, 948.44702148438, -916.45697021484, 45.143600463867, "Central St.", 5000000}, [2985] = {"UCDhousing", 4, 875.53802490234, -968.74798583984, 37.1875, "Central St.", 320000}, [2986] = {"UCDhousing", 22, 1259.4200439453, -785.43701171875, 92.031196594238, "Madd Dog's Mansion", 6000000}, [2987] = {"UCDhousing", 2, 2203.8500976563, 106.16300201416, 28.441600799561, "Union Ave.", 220000}, [2988] = {"UCDhousing", 2, 2236.5500488281, 168.30400085449, 28.153499603271, "Union Ave.", 220000}, [2989] = {"UCDhousing", 2, 2285.8999023438, 161.77099609375, 28.441600799561, "Union Ave.", 220000}, [2990] = {"UCDhousing", 2, 2258, 168.33700561523, 28.153600692749, "Union Ave.", 220000}, [2991] = {"UCDhousing", 2, 2203.8500976563, 62.279300689697, 28.441600799561, "Union Ave.", 220000}, [2992] = {"UCDhousing", 2, 2249.3000488281, 111.77100372314, 28.441600799561, "Union Ave.", 220000}, [2993] = {"UCDhousing", 2, 2269.5100097656, 111.76999664307, 28.441600799561, "Union Ave.", 230000}, [2994] = {"UCDhousing", 2, 2323.8500976563, 116.19699859619, 28.441600799561, "Cain Street", 220000}, [2995] = {"UCDhousing", 2, 2323.8500976563, 136.40299987793, 28.441600799561, "Cain Street", 220000}, [2996] = {"UCDhousing", 2, 2323.8500976563, 162.25, 28.441600799561, "Cain Street", 1}, [2997] = {"UCDhousing", 13, 2450.2700195313, 662.55603027344, 11.460900306702, "Pico Boulevard", 170000}, [2998] = {"UCDhousing", 19, 2449.2199707031, 689.85400390625, 11.460900306702, "Pico Boulevard", 170000}, [2999] = {"UCDhousing", 13, 2450.8100585938, 714.40698242188, 11.468299865723, "Pico Boulevard", 170000}, [3000] = {"UCDhousing", 13, 2450.2700195313, 742.63800048828, 11.460900306702, "Pico Boulevard", 170000}, [3001] = {"UCDhousing", 17, 309.19900512695, 44.460899353027, 3.0879700183868, "Harold Way", 80000}, [3002] = {"UCDhousing", 17, 317.73901367188, 54.611301422119, 3.375, "Harold Way", 80000}, [3003] = {"UCDhousing", 17, 285.95300292969, 41.094699859619, 2.5484399795532, "Harold Way", 80000}, [3004] = {"UCDhousing", 17, 316.4460144043, 18.23929977417, 4.5156202316284, "Harold Way", 80000}, [3005] = {"UCDhousing", 17, 340.10598754883, 33.557598114014, 6.4070701599121, "Harold Way", 80000}, [3006] = {"UCDhousing", 17, 342.5719909668, 62.790000915527, 3.8627901077271, "Harold Way", 80000}, [3007] = {"UCDhousing", 27, 808.06896972656, 372.30499267578, 19.45299911499, "Alisto Street", 12000}, [3008] = {"UCDhousing", 27, 805.35797119141, 358.36700439453, 19.762100219727, "Alisto Street", 12000}, [3009] = {"UCDhousing", 27, 787.60498046875, 375.81100463867, 21.296699523926, "Alisto Street", 12000}, [3010] = {"UCDhousing", 27, 783.18200683594, 377.55200195313, 21.296699523926, "Alisto Street", 12000}, [3011] = {"UCDhousing", 27, 783.80401611328, 352.5710144043, 19.593799591064, "Alisto Street", 12000}, [3012] = {"UCDhousing", 27, 772.92297363281, 348.23999023438, 20.152700424194, "Alisto Street", 12000}, [3013] = {"UCDhousing", 27, 748.39001464844, 350.87399291992, 20.585800170898, "Alisto Street", 12000}, [3014] = {"UCDhousing", 27, 751.69097900391, 375.35800170898, 23.374900817871, "alisto street", 12000}, [3015] = {"UCDhousing", 27, 758.90802001953, 375.04800415039, 23.392200469971, "alisto street", 12000}, [3016] = {"UCDhousing", 27, 746.39801025391, 305.02099609375, 20.234399795532, "Alisto Street", 12000}, [3017] = {"UCDhousing", 27, 705.27801513672, 292.08200073242, 20.421899795532, "alisto street", 12000}, [3018] = {"UCDhousing", 27, 719.06201171875, 300.64700317383, 20.376600265503, "Alisto Street", 12000}, [3019] = {"UCDhousing", 27, 723.666015625, 269.67498779297, 22.453100204468, "alisto street", 12000}, [3020] = {"UCDhousing", 27, 748.17700195313, 257.10900878906, 27.085899353027, "alisto street", 12000}, [3021] = {"UCDhousing", 27, 747.10900878906, 278.26901245117, 27.218799591064, "Alisto Street", 12000}, [3022] = {"UCDhousing", 14, -0.89550799131393, 1178.6999511719, 19.44939994812, "battle motel", 20000}, [3023] = {"UCDhousing", 14, -0.89257800579071, 1185.7299804688, 19.402200698853, "Battle Motel", 20000}, [3024] = {"UCDhousing", 14, -0.89355498552322, 1172.0799560547, 19.496200561523, "battle motel", 20000}, [3025] = {"UCDhousing", 14, 26.17970085144, 1181.5699462891, 19.255599975586, "Battle Motel", 20000}, [3026] = {"UCDhousing", 14, -0.89550799131393, 1165.0999755859, 19.549600601196, "battle motel", 20000}, [3027] = {"UCDhousing", 14, 26.17970085144, 1174.7600097656, 19.386999130249, "Battle Motel", 20000}, [3028] = {"UCDhousing", 14, 26.178699493408, 1167.9799804688, 19.517999649048, "Battle Motel", 20000}, [3029] = {"UCDhousing", 14, 26.178699493408, 1161.1300048828, 19.637800216675, "battle motel", 20000}, [3030] = {"UCDhousing", 20, -207.87899780273, 1119.1800537109, 20.42970085144, "Prince St.", 600000}, [3031] = {"UCDhousing", 29, 1223.0100097656, 2616.7900390625, 10.826499938965, "Westwood Boulevrad", 400000}, [3032] = {"UCDhousing", 25, 1225.2700195313, 2584.9399414063, 10.820300102234, "Westwood Boulevard", 400000}, [3033] = {"UCDhousing", 29, 1325.6199951172, 2567.3500976563, 10.820300102234, "Westwood Boulevrad", 400000}, [3034] = {"UCDhousing", 29, 1359.7399902344, 2565.4299316406, 10.826499938965, "Westwood Boulevrad", 400000}, [3035] = {"UCDhousing", 25, 1349.6300048828, 2567.6899414063, 10.820300102234, "Westwood Boulevard", 400000}, [3036] = {"UCDhousing", 25, 1451.4599609375, 2565.4299316406, 10.826499938965, "Westwood Boulevard", 400000}, [3037] = {"UCDhousing", 29, 1441.6600341797, 2567.6899414063, 10.820300102234, "Westwood Boulevrad", 400000}, [3038] = {"UCDhousing", 29, 1503.3299560547, 2567.6899414063, 10.820300102234, "Westwood Boulevrad", 320000}, [3039] = {"UCDhousing", 29, 1551.4799804688, 2567.3500976563, 10.820300102234, "Westwood Boulevrad", 400000}, [3040] = {"UCDhousing", 25, 1417.9499511719, 2567.4799804688, 10.820300102234, "Westwood Boulevard", 400000}, [3041] = {"UCDhousing", 29, 1596.4899902344, 2567.6899414063, 10.820300102234, "Westwood Boulevrad", 600000}, [3042] = {"UCDhousing", 25, 1513.3699951172, 2565.4299316406, 10.826499938965, "Westwood Boulevard", 400000}, [3043] = {"UCDhousing", 25, 1564.6099853516, 2565.4299316406, 10.826499938965, "Westwood Boulevard", 400000}, [3044] = {"UCDhousing", 25, 1623.5200195313, 2567.3400878906, 10.820300102234, "Westwood Boulevard", 400000}, [3045] = {"UCDhousing", 16, 1665.5799560547, 2569.419921875, 11.298899650574, "Westwood Boulevrad", 300000}, [3046] = {"UCDhousing", 13, 1646.5100097656, 2569.580078125, 10.820300102234, "Westwood Boulevard", 260000}, [3047] = {"UCDhousing", 16, 1666.9200439453, 2610.1899414063, 11.298899650574, "Westwood Boulevrad", 300000}, [3048] = {"UCDhousing", 13, 1638.1500244141, 2610.7199707031, 10.820300102234, "Westwood Boulevard", 260000}, [3049] = {"UCDhousing", 13, 1618.6700439453, 2610.0300292969, 10.820300102234, "Westwood Boulevard", 260000}, [3050] = {"UCDhousing", 16, 1515.8699951172, 2610.1899414063, 11.298899650574, "Westwood Boulevrad", 300000}, [3051] = {"UCDhousing", 13, 1600.5200195313, 2610.0300292969, 10.820300102234, "Westwood Boulevard", 260000}, [3052] = {"UCDhousing", 13, 1554.5699462891, 2610.7199707031, 10.820300102234, "Westwood Boulevard", 260000}, [3053] = {"UCDhousing", 16, 1344.5699462891, 2610.1899414063, 11.298899650574, "Westwood Boulevrad", 300000}, [3054] = {"UCDhousing", 13, 1535.0300292969, 2610.0300292969, 10.820300102234, "Westwood Boulevard", 260000}, [3055] = {"UCDhousing", 16, 1313.7600097656, 2610.1899414063, 11.298899650574, "Westwood Boulevrad", 300000}, [3056] = {"UCDhousing", 13, 1265.4399414063, 2610.0300292969, 10.820300102234, "Westwood Boulevard", 260000}, [3057] = {"UCDhousing", 13, 1285.0200195313, 2610.7199707031, 10.820300102234, "Westwood Boulevard", 260000}, [3058] = {"UCDhousing", 13, 1565.4699707031, 2757.1000976563, 10.820300102234, "Maple St.", 260000}, [3059] = {"UCDhousing", 13, 1564.7800292969, 2776.5600585938, 10.820300102234, "Maple St.", 260000}, [3060] = {"UCDhousing", 13, 1565.3000488281, 2793.5500488281, 10.820300102234, "Maple St.", 260000}, [3061] = {"UCDhousing", 25, 1550.5100097656, 2846.080078125, 10.826499938965, "Maple St.", 400000}, [3062] = {"UCDhousing", 25, 1575.7600097656, 2844.169921875, 10.820300102234, "Maple St.", 400000}, [3063] = {"UCDhousing", 25, 1622.7199707031, 2846.080078125, 10.826499938965, "Maple St.", 400000}, [3064] = {"UCDhousing", 29, 1601.7099609375, 2846.080078125, 10.826499938965, "Maple St.", 400000}, [3065] = {"UCDhousing", 25, 1664.7399902344, 2846.080078125, 10.826499938965, "Maple St.", 400000}, [3066] = {"UCDhousing", 29, 1632.8399658203, 2843.8200683594, 10.820300102234, "Maple St.", 400000}, [3067] = {"UCDhousing", 25, 1588.5200195313, 2797.330078125, 10.826499938965, "Maple St.", 400000}, [3068] = {"UCDhousing", 13, 1618.3599853516, 2800.7900390625, 10.820300102234, "Maple St.", 260000}, [3069] = {"UCDhousing", 13, 1637.8100585938, 2801.4799804688, 10.820300102234, "Maple St.", 260000}, [3070] = {"UCDhousing", 13, 1654.7199707031, 2800.7900390625, 10.820300102234, "Maple St.", 260000}, [3071] = {"UCDhousing", 13, 1672.9799804688, 2800.9499511719, 10.820300102234, "Maple St.", 260000}, [3072] = {"UCDhousing", 13, 1643.75, 2753.4499511719, 10.820300102234, "Francisco St.", 260000}, [3073] = {"UCDhousing", 29, 1652.5, 2708.8500976563, 10.826499938965, "Francisco St.", 400000}, [3074] = {"UCDhousing", 25, 1627.2700195313, 2710.7600097656, 10.820300102234, "Francisco St.", 400000}, [3075] = {"UCDhousing", 29, 1601.1800537109, 2708.8500976563, 10.826499938965, "Francisco St.", 400000}, [3076] = {"UCDhousing", 13, 1626.6300048828, 2754.1398925781, 10.820300102234, "Francisco St. ", 260000}, [3077] = {"UCDhousing", 13, 1663.1600341797, 2754.1398925781, 10.820300102234, "Francisco St.", 260000}, [3078] = {"UCDhousing", 25, 1580.2600097656, 2708.8500976563, 10.826499938965, "Francisco St.", 400000}, [3079] = {"UCDhousing", 13, 1608.6199951172, 2754.1398925781, 10.820300102234, "Francisco St. ", 260000}, [3080] = {"UCDhousing", 29, 1570.1400146484, 2711.1101074219, 10.820300102234, "Francisco St.", 400000}, [3081] = {"UCDhousing", 25, 1599.4300537109, 2757.6000976563, 10.826499938965, "Francisco St. ", 400000}, [3082] = {"UCDhousing", 22, 1456.1300048828, 2773.3999023438, 10.820300102234, "Golf Club", 8000000}, [3083] = {"UCDhousing", 13, 1573.1099853516, 2657.830078125, 10.820300102234, "Hunter St.", 260000}, [3084] = {"UCDhousing", 29, 1611.7600097656, 2648.3601074219, 10.826499938965, "Hunter St.", 400000}, [3085] = {"UCDhousing", 13, 1555.9499511719, 2658.5200195313, 10.820300102234, "Hunter St.", 260000}, [3086] = {"UCDhousing", 13, 1607.6099853516, 2679.330078125, 10.820300102234, "Hunter St.", 260000}, [3087] = {"UCDhousing", 13, 2037.0899658203, 2664.5100097656, 10.820300102234, "Molino St.", 260000}, [3088] = {"UCDhousing", 13, 1969.6899414063, 2664.5100097656, 10.820300102234, "Molino St.", 260000}, [3089] = {"UCDhousing", 13, 1989.1800537109, 2665.1899414063, 10.820300102234, "Molino St.", 260000}, [3090] = {"UCDhousing", 13, 2056.5500488281, 2665.1899414063, 10.820300102234, "Molino St.", 260000}, [3091] = {"UCDhousing", 13, 1921.75, 2665.1899414063, 10.820300102234, "Molino St.", 260000}, [3092] = {"UCDhousing", 16, 2017.9399414063, 2664.669921875, 11.298899650574, "Molino St.", 300000}, [3093] = {"UCDhousing", 16, 1950.5, 2664.669921875, 11.298899650574, "Molino St.", 300000}, [3094] = {"UCDhousing", 16, 1969.8599853516, 2721.7800292969, 11.298899650574, "Industrial St.", 300000}, [3095] = {"UCDhousing", 13, 1931.3100585938, 2721.2600097656, 10.820300102234, "Industrial St.", 260000}, [3096] = {"UCDhousing", 13, 1950.7600097656, 2721.9499511719, 10.820300102234, "Industrial St.", 260000}, [3097] = {"UCDhousing", 13, 1998.6099853516, 2721.2600097656, 10.820300102234, "Industrial St.", 260000}, [3098] = {"UCDhousing", 13, 2018.1600341797, 2721.9499511719, 10.820300102234, "Industrial St.", 260000}, [3099] = {"UCDhousing", 13, 2066.0400390625, 2721.2600097656, 10.820300102234, "Industrial St.", 260000}, [3100] = {"UCDhousing", 16, 2037.2700195313, 2721.6298828125, 11.543000221252, "Industrial St.", 300000}, [3101] = {"UCDhousing", 25, 2039.5799560547, 2766.5500488281, 10.826499938965, "Industrial St.", 400000}, [3102] = {"UCDhousing", 29, 2049.7399902344, 2764.330078125, 10.820300102234, "Industrial St.", 400000}, [3103] = {"UCDhousing", 29, 2018.5500488281, 2766.5500488281, 10.826499938965, "Industrial St.", 400000}, [3104] = {"UCDhousing", 25, 1992.5799560547, 2764.6298828125, 10.820300102234, "Industrial St.", 1}, [3105] = {"UCDhousing", 29, 1967.3399658203, 2766.5400390625, 10.826499938965, "Industrial St.", 400000}, [3106] = {"UCDhousing", 29, 1929.8499755859, 2774.3701171875, 10.820300102234, "Industrial St.", 400000}, [3107] = {"UCDhousing", 15, 2109.2399902344, 2652.9499511719, 10.812999725342, "Molino St.", 40000}, [3108] = {"UCDhousing", 15, 2104.2399902344, 2678.8601074219, 10.812999725342, "Molino St.", 40000}, [3109] = {"UCDhousing", 2, 2556.830078125, 2022.3199462891, 10.817600250244, "Glendale St ", 160000}, [3110] = {"UCDhousing", 22, 1455.9100341797, 751.03002929688, 11.023400306702, "State House", 6000000}, [3111] = {"UCDhousing", 24, 2441.5400390625, 1213.5100097656, 10.95860004425, "Traction Ave.", 15000}, [3112] = {"UCDhousing", 24, 2437.0400390625, 1204.0600585938, 10.820300102234, "Traction Ave..", 15000}, [3113] = {"UCDhousing", 24, 2441.5300292969, 1220.8199462891, 10.95860004425, "Traction Ave.", 15000}, [3114] = {"UCDhousing", 24, 2437.0400390625, 1209.9699707031, 10.820300102234, "Traction Ave. ", 15000}, [3115] = {"UCDhousing", 24, 2441.5400390625, 1224.3399658203, 10.95860004425, "Traction Ave.", 15000}, [3116] = {"UCDhousing", 24, 2441.5400390625, 1231.5999755859, 10.95860004425, "Traction Ave.", 15000}, [3117] = {"UCDhousing", 24, 2440.6999511719, 1231.6600341797, 14.342599868774, "Traction Ave..", 15000}, [3118] = {"UCDhousing", 24, 2437.0400390625, 1235.2600097656, 10.820300102234, "Traction Ave.", 15000}, [3119] = {"UCDhousing", 24, 2440.6999511719, 1224.5100097656, 14.342599868774, "Traction Ave..", 15000}, [3120] = {"UCDhousing", 24, 2437.0400390625, 1241.1700439453, 10.820300102234, "Traction Ave.", 15000}, [3121] = {"UCDhousing", 24, 2437.0400390625, 1235.3000488281, 14.342599868774, "Traction Ave. ", 15000}, [3122] = {"UCDhousing", 24, 2437.0400390625, 1241.1600341797, 14.342599868774, "Traction Ave. ", 15000}, [3123] = {"UCDhousing", 24, 2440.6999511719, 1220.7600097656, 14.342599868774, "Traction Ave..", 15000}, [3124] = {"UCDhousing", 24, 2440.6999511719, 1213.5699462891, 14.342599868774, "Traction Ave..", 15000}, [3125] = {"UCDhousing", 24, 2437.0400390625, 1210.0300292969, 14.342599868774, "Traction Ave. ", 15000}, [3126] = {"UCDhousing", 24, 2437.0400390625, 1204.1600341797, 14.342599868774, "Traction Ave. ", 15000}, [3127] = {"UCDhousing", 24, 2541.5300292969, 1213.5500488281, 10.95860004425, "Alvarado St.", 15000}, [3128] = {"UCDhousing", 24, 2537.0300292969, 1241.1899414063, 14.342599868774, "Alvarado St.", 15000}, [3129] = {"UCDhousing", 24, 2541.5200195313, 1220.8199462891, 10.95860004425, "Alvarado St.", 15000}, [3130] = {"UCDhousing", 24, 2537.0300292969, 1204.1800537109, 14.342599868774, "Alvardo St.", 15000}, [3131] = {"UCDhousing", 24, 2541.5200195313, 1224.3699951172, 10.95860004425, "Alvarado St.", 15000}, [3132] = {"UCDhousing", 24, 2537.0300292969, 1235.2399902344, 14.342599868774, "Alvarado St.", 15000}, [3133] = {"UCDhousing", 24, 2541.5300292969, 1231.5200195313, 10.95860004425, "Alvarado St.", 15000}, [3134] = {"UCDhousing", 24, 2540.6899414063, 1231.6199951172, 14.342599868774, "Alvarado St.", 15000}, [3135] = {"UCDhousing", 24, 2537.0300292969, 1210.0400390625, 14.342599868774, "Alvardo St.", 15000}, [3136] = {"UCDhousing", 24, 2537.0300292969, 1235.2900390625, 10.820300102234, "Alvarado St.", 15000}, [3137] = {"UCDhousing", 24, 2540.6899414063, 1224.4100341797, 14.342599868774, "Alvarado St.", 15000}, [3138] = {"UCDhousing", 24, 2540.6899414063, 1220.6899414063, 14.342599868774, "Alvarado St.", 15000}, [3139] = {"UCDhousing", 24, 2537.0300292969, 1241.1400146484, 10.820300102234, "Alvarado St.", 15000}, [3140] = {"UCDhousing", 24, 2540.6899414063, 1213.4100341797, 14.342599868774, "Alvardo St.", 15000}, [3141] = {"UCDhousing", 24, 2537, 1210.0500488281, 10.820300102234, "Alvarado St.", 15000}, [3142] = {"UCDhousing", 24, 2537.0300292969, 1204.1600341797, 10.820300102234, "Alvarado St.", 3000}, [3143] = {"UCDhousing", 24, 2566.3601074219, 1242.3000488281, 10.820300102234, "Grandview St.", 15000}, [3144] = {"UCDhousing", 24, 2561.8701171875, 1232.9399414063, 10.95860004425, "Grandview St.", 15000}, [3145] = {"UCDhousing", 24, 2561.8701171875, 1225.6899414063, 10.95860004425, "Grandview St.", 18000}, [3146] = {"UCDhousing", 24, 2561.8701171875, 1222.0400390625, 10.95860004425, "Grandview St.", 1}, [3147] = {"UCDhousing", 24, 2561.8701171875, 1214.8399658203, 10.95860004425, "Grandview St.", 7000}, [3148] = {"UCDhousing", 24, 2566.3601074219, 1236.4200439453, 10.820300102234, "Grandview St.", 15000}, [3149] = {"UCDhousing", 24, 2566.3601074219, 1211.1400146484, 10.820300102234, "Grandview St.", 15000}, [3150] = {"UCDhousing", 24, 2566.3601074219, 1205.2600097656, 10.820300102234, "Grandview St.", 13000}, [3151] = {"UCDhousing", 24, 2566.3601074219, 1205.2199707031, 14.342599868774, "Grandview St.", 15000}, [3152] = {"UCDhousing", 24, 2566.3601074219, 1211.0500488281, 14.342599868774, "Grandview St.", 15000}, [3153] = {"UCDhousing", 24, 2562.7099609375, 1214.7700195313, 14.342599868774, "Grandview St.", 15000}, [3154] = {"UCDhousing", 24, 2562.6999511719, 1221.9499511719, 14.342599868774, "Grandview St.", 15000}, [3155] = {"UCDhousing", 24, 2562.6999511719, 1225.6199951172, 14.342599868774, "Grandview St.", 15000}, [3156] = {"UCDhousing", 24, 2562.6999511719, 1232.8800048828, 14.342599868774, "Grandview St.", 15000}, [3157] = {"UCDhousing", 24, 2566.3601074219, 1236.3800048828, 14.342599868774, "Grandview St.", 15000}, [3158] = {"UCDhousing", 24, 2566.3601074219, 1242.3100585938, 14.342599868774, "Grandview St.", 15000}, [3159] = {"UCDhousing", 15, 2567.919921875, 1572.3100585938, 10.820300102234, "Indiana Motel", 15000}, [3160] = {"UCDhousing", 15, 2567.9299316406, 1546.6999511719, 10.820300102234, "Indiana Motel", 15000}, [3161] = {"UCDhousing", 24, 2567.9299316406, 1551.8399658203, 10.820300102234, "Indiana Motel", 15000}, [3162] = {"UCDhousing", 24, 2567.9299316406, 1541.4699707031, 10.820300102234, "Indiana Motel", 40000}, [3163] = {"UCDhousing", 24, 2567.9299316406, 1541.5, 13.406200408936, "Indiana Motel", 15000}, [3164] = {"UCDhousing", 24, 2567.9299316406, 1545.8299560547, 13.406200408936, "Indiana Motel", 15000}, [3165] = {"UCDhousing", 24, 2567.9299316406, 1550.1999511719, 13.406200408936, "Indiana Motel", 15000}, [3166] = {"UCDhousing", 15, 2567.919921875, 1570.5899658203, 13.406200408936, "Indiana Motel", 15000}, [3167] = {"UCDhousing", 24, 2567.919921875, 1577.9499511719, 10.820300102234, "Indiana Motel", 15000}, [3168] = {"UCDhousing", 15, 2567.919921875, 1579.25, 13.406200408936, "Indiana Motel", 10000}, [3169] = {"UCDhousing", 24, 2567.919921875, 1574.9200439453, 13.406200408936, "Indiana Motel", 15000}, [3170] = {"UCDhousing", 19, 2561.830078125, 1561.7099609375, 10.820300102234, "Indiana Motel Big Suite", 1}, [3171] = {"UCDhousing", 10, 2531.9099121094, 1507.75, 11.781200408936, "Indiana Motel Big Suite", 250000}, [3172] = {"UCDhousing", 10, 2481.0400390625, 1524.9899902344, 11.773699760437, "Indiana Motel Big Suite", 380000}, [3173] = {"UCDhousing", 10, 2461.3000488281, 1558.1500244141, 11.781200408936, "Indiana Motel Big Suite", 250000}, [3174] = {"UCDhousing", 10, 2455.0700683594, 1500.0400390625, 11.617400169373, "Indiana Motel Big Suite", 250000}, [3175] = {"UCDhousing", 27, 1475.3199462891, 372.74700927734, 19.656200408936, "Forest Rd.", 20000}, [3176] = {"UCDhousing", 27, 1488.5500488281, 361.03201293945, 19.414400100708, "Forest Rd.", 15000}, [3177] = {"UCDhousing", 27, 1465.7700195313, 364.18600463867, 19.261299133301, "Forest Rd.", 15000}, [3178] = {"UCDhousing", 27, 1451.6099853516, 375.77398681641, 19.400499343872, "Forest Rd.", 15000}, [3179] = {"UCDhousing", 27, 1447.5, 361.72399902344, 18.908199310303, "Forest Rd.", 15000}, [3180] = {"UCDhousing", 27, 1419.5699462891, 389.46200561523, 19.329700469971, "Forest Rd.", 15000}, [3181] = {"UCDhousing", 27, 1413.1199951172, 363.09201049805, 19.199199676514, "Forest Rd.", 15000}, [3182] = {"UCDhousing", 27, 1428.4899902344, 356.48999023438, 18.875, "Forest Rd.", 15000}, [3183] = {"UCDhousing", 27, 1409.3800048828, 346.84100341797, 19.252000808716, "Forest Rd.", 15000}, [3184] = {"UCDhousing", 27, 1403.2199707031, 333.84399414063, 18.906200408936, "Forest Rd.", 15000}, [3185] = {"UCDhousing", 27, 1415.8699951172, 324.62200927734, 18.843799591064, "Forest Rd.", 15000}, [3186] = {"UCDhousing", 27, 1434.9300537109, 334.88299560547, 18.946899414063, "Forest Rd.", 15000}, [3187] = {"UCDhousing", 27, 1461.0799560547, 342.45599365234, 18.953100204468, "Forest Rd.", 15000}, [3188] = {"UCDhousing", 27, 1469.6300048828, 351.51400756836, 18.926200866699, "Forest Rd.", 15000}, [3189] = {"UCDhousing", 20, 1106.5400390625, -299.75500488281, 74.539100646973, "Red country farm.", 1}, [3190] = {"UCDhousing", 3, 2413.7299804688, 61.762699127197, 28.441600799561, "Summer St.", 140000}, [3191] = {"UCDhousing", 13, 2443.3500976563, 61.762699127197, 28.441600799561, "Summer St.", 180000}, [3192] = {"UCDhousing", 13, 2373.8500976563, 71.105499267578, 28.441600799561, "Hunter St.", 180000}, [3193] = {"UCDhousing", 14, 267.69799804688, -54.542999267578, 2.7772099971771, "Belaire Ave.", 150000}, [3194] = {"UCDhousing", 14, 295.19400024414, -54.544898986816, 2.7772099971771, "Belaire Ave.", 150000}, [3195] = {"UCDhousing", 13, 312.72100830078, -92.501998901367, 3.5353899002075, "Belaire Ave.", 180000}, [3196] = {"UCDhousing", 13, 312.72299194336, -121.27899932861, 3.5353899002075, "Belaire Ave.", 180000}, [3197] = {"UCDhousing", 13, 252.88800048828, -92.362297058105, 3.5353899002075, "Brooks St.", 180000}, [3198] = {"UCDhousing", 13, 252.88800048828, -121.31500244141, 3.5353899002075, "Brooks St.", 180000}, [3199] = {"UCDhousing", 23, 248.71000671387, -33.243198394775, 1.5781199932098, "Brooks St.", 100000}, [3200] = {"UCDhousing", 23, 253.22700500488, -22.278299331665, 1.6340099573135, "Brooks St.", 100000}, [3201] = {"UCDhousing", 20, -1438.8399658203, -1544.8299560547, 102.25800323486, "Yale St.", 1900000}, [3202] = {"UCDhousing", 27, -641.61798095703, 2715.4899902344, 72.375, "Porter Ally.", 10000}, [3203] = {"UCDhousing", 22, 691.57800292969, -1276.2399902344, 13.659999847412, "Tennis Club", 1700000}, [3204] = {"UCDhousing", 21, 2145.9299316406, 2834.5100097656, 10.820300102234, "Hollister Ave.", 120000}, [3205] = {"UCDhousing", 25, 1678.3100585938, 2690.7600097656, 10.820300102234, "Maple St.", 1}, [3206] = {"UCDhousing", 29, 1703.5899658203, 2689.0300292969, 10.826499938965, "Maple St.", 400000}, [3207] = {"UCDhousing", 29, 1735.7600097656, 2691.1101074219, 10.820300102234, "Maple St.", 400000}, [3208] = {"UCDhousing", 29, 1271.8800048828, 2564.5700683594, 10.820300102234, "Orange Ave..", 400000}, [3209] = {"UCDhousing", 29, 1269.6300048828, 2554.4699707031, 10.826499938965, "Orange Ave..", 400000}, [3210] = {"UCDhousing", 29, 1273.9499511719, 2522.4599609375, 10.820300102234, "Orange Ave..", 1}, [3211] = {"UCDhousing", 25, 1316.3800048828, 2524.5, 10.820300102234, "Orange Ave..", 450000}, [3212] = {"UCDhousing", 25, 1408.1800537109, 2524.669921875, 10.820300102234, "Arthure Ave.", 1}, [3213] = {"UCDhousing", 31, 1362.2900390625, 2525.6201171875, 10.820300102234, "Arthure Ave.", 420000}, [3214] = {"UCDhousing", 31, 1453.9499511719, 2525.6101074219, 10.820300102234, "Cole St.", 420000}, [3215] = {"UCDhousing", 31, 1500.8199462891, 2535.25, 10.820300102234, "Cole St.", 420000}, [3216] = {"UCDhousing", 15, 2787.9399414063, 2268.5, 14.661499977112, "Peach Ave.", 50000}, [3217] = {"UCDhousing", 15, 2794.2299804688, 2260.9399414063, 14.661499977112, "Peach Ave.", 50000}, [3218] = {"UCDhousing", 15, 1977.7600097656, 715.1259765625, 10.820300102234, "Atlantica Ave.", 50000}, [3219] = {"UCDhousing", 15, 1977.7600097656, 721.92901611328, 10.820300102234, "Atlantica Ave.", 50000}, [3220] = {"UCDhousing", 15, 1977.7600097656, 725.80902099609, 10.820300102234, "Atlantica Ave.", 50000}, [3221] = {"UCDhousing", 15, 1977.7600097656, 733.84698486328, 10.820300102234, "Atlantica Ave.", 50000}, [3222] = {"UCDhousing", 15, 1977.7600097656, 741.84600830078, 10.820300102234, "Atlantica Ave.", 50000}, [3223] = {"UCDhousing", 15, 1954.8599853516, 763.58801269531, 10.820300102234, "Atlantica Ave.", 50000}, [3224] = {"UCDhousing", 15, 1946.9100341797, 763.58801269531, 10.820300102234, "Atlantica Ave.", 50000}, [3225] = {"UCDhousing", 15, 1938.7700195313, 763.58801269531, 10.820300102234, "Atlantica Ave.", 50000}, [3226] = {"UCDhousing", 15, 1934.5699462891, 763.58801269531, 10.820300102234, "Atlantica Ave.", 50000}, [3227] = {"UCDhousing", 15, 1926.6700439453, 763.58801269531, 10.820300102234, "Atlantica Ave.", 50000}, [3228] = {"UCDhousing", 15, 1918.75, 763.58801269531, 10.820300102234, "Atlantica Ave.", 50000}, [3229] = {"UCDhousing", 15, 1914.5699462891, 763.58801269531, 10.820300102234, "Atlantica Ave.", 50000}, [3230] = {"UCDhousing", 15, 1906.6700439453, 763.58801269531, 10.820300102234, "Atlantica Ave.", 50000}, [3231] = {"UCDhousing", 15, 1898.8699951172, 763.58801269531, 10.820300102234, "Atlantica Ave.", 50000}, [3232] = {"UCDhousing", 15, 1894.6500244141, 763.57702636719, 10.820300102234, "Atlantica Ave.", 50000}, [3233] = {"UCDhousing", 15, 1886.6999511719, 763.57702636719, 10.820300102234, "Atlantica Ave.", 50000}, [3234] = {"UCDhousing", 15, 1878.7399902344, 763.57702636719, 10.820300102234, "Atlantica Ave.", 50000}, [3235] = {"UCDhousing", 15, 1877.0600585938, 760.90002441406, 10.820300102234, "Atlantica Ave.", 50000}, [3236] = {"UCDhousing", 15, 1877.0600585938, 752.55297851563, 10.820300102234, "Atlantica Ave.", 50000}, [3237] = {"UCDhousing", 15, 1877.0600585938, 744.46197509766, 10.820300102234, "Atlantica Ave.", 50000}, [3238] = {"UCDhousing", 15, 1877.0600585938, 741.46600341797, 10.820300102234, "Atlantica Ave.", 50000}, [3239] = {"UCDhousing", 15, 1877.0600585938, 733.05401611328, 10.820300102234, "Atlantica Ave.", 50000}, [3240] = {"UCDhousing", 15, 1877.0600585938, 724.74298095703, 10.820300102234, "Atlantica Ave.", 50000}, [3241] = {"UCDhousing", 15, 1877.0400390625, 681.66900634766, 10.820300102234, "Atlantica Ave.", 50000}, [3242] = {"UCDhousing", 15, 1877.0400390625, 673.27001953125, 10.820300102234, "Atlantica Ave.", 50000}, [3243] = {"UCDhousing", 15, 1877.0400390625, 664.73602294922, 10.820300102234, "Atlantica Ave.", 50000}, [3244] = {"UCDhousing", 15, 1877.0400390625, 660.64202880859, 10.820300102234, "Atlantica Ave.", 50000}, [3245] = {"UCDhousing", 15, 1877.0400390625, 652.52099609375, 10.820300102234, "Atlantica Ave.", 50000}, [3246] = {"UCDhousing", 15, 1877.0400390625, 644.46997070313, 10.820300102234, "Atlantica Ave.", 50000}, [3247] = {"UCDhousing", 15, 1879.7299804688, 642.8759765625, 10.820300102234, "Atlantica Ave.", 50000}, [3248] = {"UCDhousing", 15, 1888.0400390625, 642.875, 10.820300102234, "Atlantica Ave.", 50000}, [3249] = {"UCDhousing", 15, 1896.1199951172, 642.8759765625, 10.820300102234, "Atlantica Ave.", 50000}, [3250] = {"UCDhousing", 15, 1900.0200195313, 642.88201904297, 10.820300102234, "Atlantica Ave.", 50000}, [3251] = {"UCDhousing", 15, 1908.1199951172, 642.88201904297, 10.820300102234, "Atlantica Ave.", 50000}, [3252] = {"UCDhousing", 15, 1915.9399414063, 642.88201904297, 10.820300102234, "Atlantica Ave.", 50000}, [3253] = {"UCDhousing", 15, 1919.9300537109, 642.88201904297, 10.820300102234, "Atlantica Ave.", 50000}, [3254] = {"UCDhousing", 15, 1928.0400390625, 642.88201904297, 10.820300102234, "Atlantica Ave.", 50000}, [3255] = {"UCDhousing", 15, 1936.0799560547, 642.88201904297, 10.820300102234, "Atlantica Ave.", 50000}, [3256] = {"UCDhousing", 15, 1940, 642.88098144531, 10.820300102234, "Atlantica Ave.", 50000}, [3257] = {"UCDhousing", 15, 1947.8800048828, 642.88201904297, 10.820300102234, "Atlantica Ave.", 50000}, [3258] = {"UCDhousing", 15, 1955.9399414063, 642.8740234375, 10.820300102234, "Atlantica Ave.", 50000}, [3259] = {"UCDhousing", 15, 1977.75, 665.83001708984, 10.820300102234, "Atlantica Ave.", 50000}, [3260] = {"UCDhousing", 15, 1977.75, 673.875, 10.820300102234, "Atlantica Ave.", 50000}, [3261] = {"UCDhousing", 15, 1977.75, 681.93798828125, 10.820300102234, "Atlantica Ave.", 50000}, [3262] = {"UCDhousing", 15, 1977.75, 684.46600341797, 10.820300102234, "Atlantica Ave.", 50000}, [3263] = {"UCDhousing", 15, 1977.75, 691.17901611328, 10.820300102234, "Atlantica Ave.", 50000}, [3264] = {"UCDhousing", 18, 2647.1101074219, 2268.4399414063, 10.820300102234, "Garden Ave.", 40000}, [3265] = {"UCDhousing", 15, 2513.3898925781, 1643.5799560547, 11.023400306702, "St. Mary St.", 50000}, [3266] = {"UCDhousing", 15, 2508.330078125, 1643.5799560547, 11.023400306702, "St. Mary St.", 50000}, [3267] = {"UCDhousing", 15, 2503.5200195313, 1643.5799560547, 11.023400306702, "St. Mary St.", 50000}, [3268] = {"UCDhousing", 15, 2498.4899902344, 1643.5799560547, 11.015700340271, "St. Mary St.", 50000}, [3269] = {"UCDhousing", 15, 2513.6201171875, 1643.5799560547, 14.265600204468, "St. Mary St.", 50000}, [3270] = {"UCDhousing", 15, 2508.3601074219, 1643.5799560547, 14.265600204468, "St. Mary St.", 50000}, [3271] = {"UCDhousing", 15, 2503.4899902344, 1643.5799560547, 14.265600204468, "St. Mary St.", 50000}, [3272] = {"UCDhousing", 15, 2498.4699707031, 1643.5799560547, 14.265600204468, "St. Mary St.", 50000}, [3273] = {"UCDhousing", 25, -683.92797851563, 939.55401611328, 13.632800102234, "Clara Ave.", 500000}, [3274] = {"UCDhousing", 27, -939.48297119141, 1425.3000488281, 30.434000015259, "Adamsville Town", 120000}, [3275] = {"UCDhousing", 16, -1500, 1960.0899658203, 49.023399353027, "Alister Ave.", 80000}, [3276] = {"UCDhousing", 16, -1354.0999755859, 2057.6101074219, 53.117198944092, "Barton Ave.", 80000}, [3277] = {"UCDhousing", 15, -1426.9899902344, 2171.4299316406, 50.625, "Barton Ave.", 75000}, [3278] = {"UCDhousing", 19, 1421.8100585938, -886.22998046875, 50.686298370361, "Vinewood Hill", 600000}, [3279] = {"UCDhousing", 7, 1468.5799560547, -906.18499755859, 54.835899353027, "Vinewood Hill", 570000}, [3280] = {"UCDhousing", 17, 1536.1899414063, -885.02099609375, 57.657501220703, "Vinewood Hill", 450000}, [3281] = {"UCDhousing", 6, 1540.4699707031, -851.37799072266, 64.336097717285, "Vinewood Hill", 660000}, [3282] = {"UCDhousing", 13, 1534.9100341797, -800.38000488281, 72.849502563477, "Vinewood Hill", 1}, [3283] = {"UCDhousing", 13, 1527.8100585938, -772.57202148438, 80.578102111816, "Vinewood Hill", 550000}, [3284] = {"UCDhousing", 8, 1496.9499511719, -687.89300537109, 95.563301086426, "Vinewood Hill", 1200000}, [3285] = {"UCDhousing", 10, 1442.6400146484, -628.83197021484, 95.718597412109, "Vinewood Hill", 550000}, [3286] = {"UCDhousing", 16, 1332.0999755859, -633.50799560547, 109.13500213623, "Vinewood Hill", 680000}, [3287] = {"UCDhousing", 6, 1112.6400146484, -742.02398681641, 100.13300323486, "Vinewood Hill", 100000}, [3288] = {"UCDhousing", 28, 1095, -647.91497802734, 113.64800262451, "Vinewood Hill", 1}, [3289] = {"UCDhousing", 25, 1045.1700439453, -642.93798828125, 120.11699676514, "Vinewood Hill", 850000}, [3290] = {"UCDhousing", 8, 980.55902099609, -677.21997070313, 121.9759979248, "Vinewood Hill", 14000000}, [3291] = {"UCDhousing", 10, 946.34100341797, -710.68298339844, 122.62000274658, "Vinewood Hill", 600000}, [3292] = {"UCDhousing", 25, 891.21398925781, -783.14599609375, 101.31400299072, "Vinewood Hill", 1}, [3293] = {"UCDhousing", 12, 1016.9600219727, -763.35998535156, 112.56300354004, "Vinewood Hill", 200000}, [3294] = {"UCDhousing", 16, 1093.9000244141, -806.38397216797, 107.41899871826, "Vinewood Hill", 1}, [3295] = {"UCDhousing", 25, 835.97698974609, -894.87200927734, 68.768898010254, "Vinewood Hill", 1}, [3296] = {"UCDhousing", 10, 827.80798339844, -857.98400878906, 70.33080291748, "Vinewood Hill", 900000}, [3297] = {"UCDhousing", 8, 189.63800048828, -1308.25, 70.249298095703, "Vinewood Hill", 3500000}, [3298] = {"UCDhousing", 16, 1034.8100585938, -813.18499755859, 101.85199737549, "Vinewood Hill", 905000}, [3299] = {"UCDhousing", 10, 897.90197753906, -677.15100097656, 116.88999938965, "Vinewood Hill", 500000}, [3300] = {"UCDhousing", 5, 977.43103027344, -771.71697998047, 112.20300292969, "Vinewood Hill", 200000}, [3301] = {"UCDhousing", 10, 989.82299804688, -828.63598632813, 95.468597412109, "Vinewood Hill", 400000}, [3302] = {"UCDhousing", 12, 910.35498046875, -817.56799316406, 103.12599945068, "Vinewood Hill", 100000}, [3303] = {"UCDhousing", 19, 937.89099121094, -848.70300292969, 93.577301025391, "Vinewood Hill", 500000}, [3304] = {"UCDhousing", 13, 923.95599365234, -853.51702880859, 93.456497192383, "Vinewood Hill", 300000}, [3305] = {"UCDhousing", 3, 785.92700195313, -828.58898925781, 70.289596557617, "Vinewood Hill", 110000}, [3306] = {"UCDhousing", 6, 731.36199951172, -1012.8900146484, 52.737899780273, "Vinewood Hill", 470000}, [3307] = {"UCDhousing", 13, 673.08197021484, -1020.2299804688, 55.759601593018, "Vinewood Hill", 380000}, [3308] = {"UCDhousing", 16, 700.28900146484, -1060.2700195313, 49.421699523926, "Vinewood Hill", 900000}, [3309] = {"UCDhousing", 16, 645.97100830078, -1117.4399414063, 44.207000732422, "Vinewood Hill", 710000}, [3310] = {"UCDhousing", 13, 558.68701171875, -1161.1300048828, 54.429698944092, "Vinewood Hill", 1}, [3311] = {"UCDhousing", 5, 580.53997802734, -1149.75, 53.180099487305, "Vinewood Hill", 120000}, [3312] = {"UCDhousing", 5, 534.91400146484, -1174.0799560547, 58.809700012207, "Vinewood Hill", 120000}, [3313] = {"UCDhousing", 8, 470.77700805664, -1163.5600585938, 67.217903137207, "Vinewood Hill", 2000000}, [3314] = {"UCDhousing", 6, 416.75698852539, -1154.1099853516, 76.687599182129, "Vinewood Hill", 400000}, [3315] = {"UCDhousing", 22, 300.24600219727, -1154.4499511719, 81.391098022461, "Vinewood Hill", 6000000}, [3316] = {"UCDhousing", 13, 352.36801147461, -1197.9599609375, 76.515602111816, "Vinewood Hill", 300000}, [3317] = {"UCDhousing", 5, 432.10998535156, -1253.9399414063, 51.580898284912, "Vinewood Hill", 100000}, [3318] = {"UCDhousing", 16, 398.16799926758, -1271.3699951172, 50.019798278809, "Vinewood Hill", 1}, [3319] = {"UCDhousing", 12, 355.02700805664, -1281.2099609375, 53.703601837158, "Vinewood Hill", 100000}, [3320] = {"UCDhousing", 5, 345.07699584961, -1298.0699462891, 50.75899887085, "Vinewood Hill", 1}, [3321] = {"UCDhousing", 29, 298.83401489258, -1338.5100097656, 53.441501617432, "Vinewood Hill", 1350000}, [3322] = {"UCDhousing", 28, 254.61399841309, -1367.0100097656, 53.109401702881, "Vinewood Hill", 1200000}, [3323] = {"UCDhousing", 28, 253.15400695801, -1270.0400390625, 74.430603027344, "Vinewood Hill", 1}, [3324] = {"UCDhousing", 8, 219.30700683594, -1249.9499511719, 78.335800170898, "Vinewood Hill", 1230000}, [3325] = {"UCDhousing", 22, 251.43699645996, -1220.2099609375, 76.102401733398, "Vinewood Hill", 1200000}, [3326] = {"UCDhousing", 17, 228.08200073242, -1405.5100097656, 51.609401702881, "Vinewood Hill", 700000}, [3327] = {"UCDhousing", 5, 161.47500610352, -1455.9200439453, 32.845001220703, "Vinewood Hill", 200000}, [3328] = {"UCDhousing", 13, 142.59700012207, -1470.3499755859, 25.210899353027, "Vinewood Hill", 300000}, [3329] = {"UCDhousing", 12, 848.01599121094, -745.53802490234, 94.969299316406, "Vinewood Hill", 100000}, [3330] = {"UCDhousing", 22, -2720.919921875, -320.72799682617, 7.84375, "San Fierro Golfclub", 1}, [3331] = {"UCDhousing", 29, -2655.9899902344, 841.77197265625, 64.007797241211, "Aces st.", 1500000}, [3332] = {"UCDhousing", 6, -2573.9899902344, 1152.0999755859, 55.726600646973, "South Collins Street", 210000}, [3333] = {"UCDhousing", 18, -2433.7099609375, 1244.5999755859, 33.617198944092, "Cobb Street", 265000}, [3334] = {"UCDhousing", 18, -2433.0700683594, 1338.2099609375, 8.5078096389771, "Cobb Street", 265000}, [3335] = {"UCDhousing", 29, -2383.1398925781, 1226.4000244141, 33.041599273682, "Coal Ave.", 1150000}, [3336] = {"UCDhousing", 29, -2383.1398925781, 1244.6500244141, 29.684799194336, "Coal Ave.", 1150000}, [3337] = {"UCDhousing", 29, -2383.1398925781, 1263.0200195313, 26.3297996521, "Coal Ave.", 1150000}, [3338] = {"UCDhousing", 29, -2383.1398925781, 1281.3900146484, 22.96310043335, "Coal Ave.", 1150000}, [3339] = {"UCDhousing", 29, -2383.1298828125, 1299.6400146484, 19.599300384521, "Coal Ave.", 1150000}, [3340] = {"UCDhousing", 29, -2383.1101074219, 1317.9899902344, 16.237899780273, "Coal Ave.", 1150000}, [3341] = {"UCDhousing", 29, -2383.1398925781, 1336.4000244141, 12.806799888611, "Coal Ave.", 1150000}, [3342] = {"UCDhousing", 29, -2351.1298828125, 1336.3900146484, 12.787699699402, "Coal Ave.", 1150000}, [3343] = {"UCDhousing", 29, -2351.1398925781, 1318.0400390625, 16.225299835205, "Coal Ave.", 1150000}, [3344] = {"UCDhousing", 29, -2351.1398925781, 1299.6600341797, 19.584899902344, "Coal Ave.", 1150000}, [3345] = {"UCDhousing", 29, -2351.1398925781, 1281.3499755859, 22.944299697876, "Coal Ave.", 1150000}, [3346] = {"UCDhousing", 29, -2351.1398925781, 1263.0300292969, 26.317199707031, "Coal Ave.", 1150000}, [3347] = {"UCDhousing", 29, -2351.1398925781, 1244.6400146484, 29.679100036621, "Coal Ave.", 1150000}, [3348] = {"UCDhousing", 29, -2351.1398925781, 1226.3699951172, 33.030200958252, "Coal Ave.", 1150000}, [3349] = {"UCDhousing", 8, -2036.6199951172, 1197.6800537109, 46.234401702881, "Calton Heights Street", 2300000}, [3350] = {"UCDhousing", 13, -2018.75, 1194.1899414063, 45.457401275635, "Calton Heights Street", 225000}, [3351] = {"UCDhousing", 13, -2054.2600097656, 1194.1800537109, 45.457401275635, "Calton Heights Street", 225000}, [3352] = {"UCDhousing", 14, -2217.3000488281, 578.0419921875, 35.171901702881, "Industrial Ave", 130000}, [3353] = {"UCDhousing", 15, -2240.6101074219, 578.04498291016, 35.171901702881, "Industrial Ave", 150000}, [3354] = {"UCDhousing", 31, -2301.7800292969, 580.03302001953, 34.386798858643, "Industrial Ave", 180000}, [3355] = {"UCDhousing", 31, -2320.1398925781, 580.03601074219, 31.070600509644, "Industrial Ave", 180000}, [3356] = {"UCDhousing", 31, -2338.4399414063, 580.03497314453, 27.762399673462, "Industrial Ave", 180000}, [3357] = {"UCDhousing", 31, -2356.8000488281, 580.03497314453, 24.890600204468, "Industrial Ave", 180000}, [3358] = {"UCDhousing", 3, 919.29602050781, -1266.0200195313, 15.171899795532, "Stage Street", 50000}, [3359] = {"UCDhousing", 3, 919.46697998047, -1252.2299804688, 16.210899353027, "Stage Street.", 50000}, [3360] = {"UCDhousing", 3, 921.75299072266, -1287.5400390625, 14.406200408936, "Stage Street", 50000}, [3361] = {"UCDhousing", 3, 921.73602294922, -1299.1999511719, 14.093799591064, "Stage Street", 50000}, [3362] = {"UCDhousing", 25, 2581.3100585938, 1060.5500488281, 11.782699584961, "Vacancy", 450000}, [3363] = {"UCDhousing", 16, 2605.0300292969, 1265.3800048828, 10.820300102234, "Grandview Street", 300000}, [3364] = {"UCDhousing", 16, 2549.6899414063, 1299.0899658203, 10.820300102234, "Grandview Street", 300000}, [3365] = {"UCDhousing", 13, 2556.0500488281, 1267.8800048828, 10.820300102234, "Grandview Street", 250000}, [3366] = {"UCDhousing", 13, 2598.830078125, 1298.5799560547, 10.820300102234, "Grandview Street", 250000}, [3367] = {"UCDhousing", 19, 2610.330078125, 1281.4799804688, 10.820300102234, "Grandview Street", 270000}, [3368] = {"UCDhousing", 19, 2610.2399902344, 1292.5799560547, 10.820300102234, "Grandview Street", 270000}, [3369] = {"UCDhousing", 19, 2544.5500488281, 1273.8100585938, 10.820300102234, "Grandview Street", 270000}, [3370] = {"UCDhousing", 19, 2544.5500488281, 1285.1099853516, 10.820300102234, "Grandview Street", 270000}, [3371] = {"UCDhousing", 31, 2537.0700683594, 1343.2700195313, 10.820300102234, "Alvardo Street", 240000}, [3372] = {"UCDhousing", 31, 2617.7700195313, 1343.2800292969, 10.820300102234, "Alvardo Street", 240000}, [3373] = {"UCDhousing", 29, 2557.3400878906, 1363.5899658203, 10.820300102234, "Alvardo Street", 600000}, [3374] = {"UCDhousing", 29, 2597.3999023438, 1363.5899658203, 10.820300102234, "Alvardo Street", 450000}, [3375] = {"UCDhousing", 13, 2453.6599121094, 1418.6700439453, 10.906200408936, "Clark Ave", 200000}, [3376] = {"UCDhousing", 13, 2453.5600585938, 1388.2900390625, 10.906200408936, "Clark Ave", 200000}, [3377] = {"UCDhousing", 13, 2521.4099121094, 1388.4300537109, 10.906200408936, "Clark Ave", 200000}, [3378] = {"UCDhousing", 13, 2521.5100097656, 1443.6400146484, 10.906200408936, "Clark Ave", 200000}, [3379] = {"UCDhousing", 13, 2488.2099609375, 1445.9699707031, 10.906200408936, "Clark Ave", 200000}, [3380] = {"UCDhousing", 13, 2442.8500976563, 1446.0799560547, 10.906200408936, "Clark Ave", 200000}, [3381] = {"UCDhousing", 19, 2568.6999511719, 1403.9300537109, 11.070300102234, "Clark Ave", 180000}, [3382] = {"UCDhousing", 19, 2568.6999511719, 1458.4599609375, 11.070300102234, "Clark Ave", 180000}, [3383] = {"UCDhousing", 14, 2442.830078125, 1662.9200439453, 10.820300102234, "St. Mary St.", 75000}, [3384] = {"UCDhousing", 14, 2435.2600097656, 1655.4399414063, 10.820300102234, "St. Mary St.", 1000}, [3385] = {"UCDhousing", 14, 2427.6899414063, 1662.9200439453, 10.820300102234, "St. Mary St.", 75000}, [3386] = {"UCDhousing", 14, 2435.2700195313, 1670.3900146484, 10.820300102234, "St. Mary St.", 75000}, [3387] = {"UCDhousing", 7, 2355.2900390625, 1602.0799560547, 10.820300102234, "St. Mary St.", 100000}, [3388] = {"UCDhousing", 7, 2355.2800292969, 1544.3800048828, 10.820300102234, "St. Mary St.", 100000}, [3389] = {"UCDhousing", 31, 2371.8898925781, 1544.3800048828, 10.820300102234, "St. Mary St.", 120000}, [3390] = {"UCDhousing", 31, 2371.8701171875, 1602.0799560547, 10.820300102234, "St. Mary St.", 200000}, [3391] = {"UCDhousing", 29, 2342.9699707031, 1571.0899658203, 10.820300102234, "St. Mary St.", 300000}, [3392] = {"UCDhousing", 6, 2343.0400390625, 1551.7299804688, 10.820300102234, "St. Mary St.", 250000}, [3393] = {"UCDhousing", 6, 2343.0400390625, 1590.6700439453, 10.820300102234, "St. Mary St.", 250000}, [3394] = {"UCDhousing", 26, 1081.6700439453, 2134.2700195313, 10.820300102234, "North LV Warehouse", 1}, [3395] = {"UCDhousing", 8, -553.85400390625, 2593.8898925781, 53.934799194336, "Sunset Hills", 3500000}, [3396] = {"UCDhousing", 27, -780.52197265625, 2745.5500488281, 45.855598449707, "Red Motel", 50000}, [3397] = {"UCDhousing", 27, -844.72399902344, 2746.5100097656, 46.140899658203, "Tee Pee Motel", 50000}, [3398] = {"UCDhousing", 3, -1463.1999511719, 2628.6101074219, 58.773399353027, "El Quebrados", 100000}, [3399] = {"UCDhousing", 21, -1469.6400146484, 2615.5700683594, 58.787899017334, "El Quebrados", 130000}, [3400] = {"UCDhousing", 9, -2245.2399902344, 2381.7900390625, 5.0763001441956, "Allerton Ave", 130000}, [3401] = {"UCDhousing", 22, -2426.2600097656, 338.00399780273, 36.992198944092, "Vank Hoff", 5000000}, [3402] = {"UCDhousing", 22, 1025.5899658203, -1770.8599853516, 13.546899795532, "South Ave", 3000000}, [3403] = {"UCDhousing", 22, 1026.1099853516, -1583.6400146484, 13.546899795532, "South Ave", 3500000}, [3404] = {"UCDhousing", 8, 1739.25, -1582.0200195313, 14.152299880981, "Unused Libary", 2700000}, [3405] = {"UCDhousing", 5, -2454.5900878906, -135.84399414063, 26.190700531006, "Grubb Street", 400000}, [3406] = {"UCDhousing", 10, 867.69897460938, -717.40600585938, 105.68000030518, "Vinewood Hill", 400000}, [3407] = {"UCDhousing", 10, 808.45202636719, -759.44097900391, 76.531402587891, "Vinewood Hill", 300000}, [3408] = {"UCDhousing", 23, -795.94396972656, 2259.4499511719, 59.468898773193, "Riders Secret Hideout", 8000}, [3409] = {"UCDhousing", 16, 497.61801147461, -1095.0699462891, 82.359199523926, "Vinewood Hill", 675000}, [3410] = {"UCDhousing", 16, 559.14599609375, -1076.3900146484, 72.921997070313, "Vinewood Hill", 370000}, [3411] = {"UCDhousing", 12, 870.39398193359, -24.919900894165, 63.986198425293, "Junglestreet", 12000}, [3412] = {"UCDhousing", 32, -2032.9799804688, 161.41900634766, 29.046100616455, "Doherty Garage", 1}, [3413] = {"UCDhousing", 9, 724.83898925781, -999.46301269531, 52.734401702881, "Vinewood Hill", 420000}, [3414] = {"UCDhousing", 6, 552.92700195313, -1200.2900390625, 44.83150100708, "Vinewood Hill", 300000}, [3415] = {"UCDhousing", 4, 612.14001464844, -1085.7700195313, 58.826698303223, "Vinewood Hill", 250000}, [3416] = {"UCDhousing", 4, 647.99499511719, -1058.3599853516, 52.579898834229, "Vinewood Hill", 139999}, [3417] = {"UCDhousing", 4, 852.14697265625, -831.56402587891, 89.50170135498, "Vinewood Hill", 500000}, [3418] = {"UCDhousing", 13, 1961.7800292969, -1591.9599609375, 13.572600364685, "Super Secret House", 6000000}, [3419] = {"UCDhousing", 13, -347.9700012207, -1045.6700439453, 59.8125, "Beacon Hill", 212000}, [3420] = {"UCDhousing", 21, -2552.3798828125, 55.234401702881, 16.421899795532, "Rolland St", 230000}, [3421] = {"UCDhousing", 7, 2275.1599121094, -930.02099609375, 28.044799804688, "Rolland St", 50000}, [3422] = {"UCDhousing", 24, 612.77099609375, 1549.8399658203, 5.0001401901245, "Desert St.", 20000}, [3423] = {"UCDhousing", 32, 1566.8299560547, 23.226600646973, 24.164100646973, "Red country Farm.", 1000000}, [3424] = {"UCDhousing", 22, 1877.8800048828, -1627.8900146484, 13.334500312805, "Alhambra Street", 5000000}, [3425] = {"UCDhousing", 18, 793.89501953125, 1687.3000488281, 5.28125, "Training House", 5000000}, [3426] = {"UCDhousing", 11, 375.70001220703, -2055.0900878906, 8.0156202316284, "Beach House", 700000}, [3427] = {"UCDhousing", 32, 972.13800048828, -1385.4399414063, 13.54640007019, "Los Santos Avenue", 1000000}, } --]] db = exports.UCDsql:getConnection() function createHouses() qh = dbQuery(db, "SELECT * FROM `housing_old`") result = dbPoll(qh, -1) for i, v in ipairs(result) do local resultOwner = result[i].owner if (resultOwner) then owner = resultOwner end local sale = result[i].sale if (sale == 1) then modelID = 1273 forSale = 1 else modelID = 1272 forSale = 0 end local open = result[i].open if (open == 1) then isOpen = 1 else isOpen = 0 end local x, y, z = result[i].x, result[i].y, result[i].z --housePickup = createPickup(v[2], v[3], v[4], 3, modelID, 0) housePickup = createPickup(x, y, z, 3, modelID, 0) createBlipAttachedTo(housePickup) -- We set the element data setElementData(housePickup, "houseID", i) --setElementData(housePickup, "interiorID", v[1]) --setElementData(housePickup, "streetName", v[5]) --setElementData(housePickup, "initialPrice", v[6]) --setElementData(housePickup, "forSale", forSale) --setElementData(housePickup, "open", isOpen) --setElementData(housePickup, "ownerName", owner) end end addEventHandler("onResourceStart", resourceRoot, createHouses) function setHouseData(houseID, column, data) if (not houseID) or (not column) or (not data) then return nil end if (type(houseID) ~= "number") then return false end if (type(column) ~= "string") then return false end -- data can be a number, string (json) if (type(data) == "table") then outputDebugString("You are a fuckhead for trying to save a table to a MySQL database") return false end -- Check if the column exists -- If it doesn't return and send an error via debugstring end function getHouseData(houseID, column, data) if (not houseID) or (not column) or (not data) then return nil end if (type(houseID) ~= "number") then return false end if (type(column) ~= "string") then return false end if (type(data) ~= "string") or (type(data) ~= "number") then return false end -- Check the SQL database for the column name -- Get the data and return it as its true type (number returns as number, string returns as string) return data end --[[ function foo() for i, v in ipairs(houseLocs) do dbExec(db, "INSERT INTO `housing` VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", "UCDhousing", i, v[1], v[2], v[3], v[4], 1, 1, 0, v[6] ) end end addCommandHandler("dd", foo) ]]
local fio = require('fio') local t = require('luatest') local g = t.group() local helpers = require('test.helper') g.before_all = function() g.cluster = helpers.Cluster:new({ datadir = fio.tempdir(), server_command = helpers.entrypoint('srv_basic'), cookie = require('digest').urandom(6):hex(), use_vshard = true, replicasets = { { alias = 'router', uuid = helpers.uuid('a'), roles = {'vshard-storage', 'vshard-router'}, servers = {{ http_port = 8081, advertise_port = 13301, instance_uuid = helpers.uuid('a', 'a', 1) }}, } }, }) g.server = helpers.Server:new({ alias = 'spare', workdir = fio.pathjoin(g.cluster.datadir, 'spare'), command = helpers.entrypoint('srv_basic'), replicaset_uuid = helpers.uuid('d'), instance_uuid = helpers.uuid('d', 'd', 1), http_port = 8082, cluster_cookie = g.cluster.cookie, advertise_port = 13302, }) g.cluster:start() g.server:start() t.helpers.retrying({}, function() g.server:graphql({query = '{ servers { uri } }'}) end) end g.after_all = function() g.cluster:stop() g.server:stop() fio.rmtree(g.cluster.datadir) end local function get_vshard_groups(cluster) local res = cluster.main_server:graphql({query = [[{ cluster { vshard_groups { name bucket_count bootstrapped rebalancer_max_receiving rebalancer_max_sending collect_lua_garbage sync_timeout collect_bucket_garbage_interval rebalancer_disbalance_threshold } } }]] }) return res.data.cluster.vshard_groups end local function edit_vshard_group(cluster, kv_args) local res = cluster.main_server:graphql({query = [[ mutation( $rebalancer_max_receiving: Int $rebalancer_max_sending: Int $group: String! $collect_lua_garbage: Boolean $sync_timeout: Float $collect_bucket_garbage_interval: Float, $rebalancer_disbalance_threshold: Float ) { cluster { edit_vshard_options( name: $group rebalancer_max_receiving: $rebalancer_max_receiving rebalancer_max_sending: $rebalancer_max_sending collect_lua_garbage: $collect_lua_garbage sync_timeout: $sync_timeout collect_bucket_garbage_interval: $collect_bucket_garbage_interval rebalancer_disbalance_threshold: $rebalancer_disbalance_threshold ) { name bucket_count bootstrapped rebalancer_max_receiving rebalancer_max_sending collect_lua_garbage sync_timeout collect_bucket_garbage_interval rebalancer_disbalance_threshold } } }]], variables = kv_args }) return res end function g.test_api() local request = {query = [[{ cluster { self { uuid } can_bootstrap_vshard vshard_bucket_count vshard_known_groups vshard_groups { name bucket_count bootstrapped rebalancer_max_receiving rebalancer_max_sending collect_lua_garbage sync_timeout collect_bucket_garbage_interval rebalancer_disbalance_threshold sched_ref_quota sched_move_quota } }}]] } local res = g.cluster.main_server:graphql(request) local data = res['data']['cluster'] t.assert_equals(data['self']['uuid'], g.cluster.main_server.instance_uuid) t.assert_equals(data['can_bootstrap_vshard'], false) t.assert_equals(data['vshard_bucket_count'], 3000) t.assert_equals(data['vshard_known_groups'], {'default'}) t.assert_equals(#data['vshard_groups'], 1) t.assert_equals(data['vshard_groups'][1]['name'], 'default') t.assert_equals(data['vshard_groups'][1]['bucket_count'], 3000) t.assert_equals(data['vshard_groups'][1]['bootstrapped'], true) t.assert_equals(data['vshard_groups'][1]['sched_ref_quota'], 300) t.assert_equals(data['vshard_groups'][1]['sched_move_quota'], 1) local res = g.server:graphql(request) t.assert_equals(res['data']['cluster']['self']['uuid'], box.NULL) t.assert_equals(res['data']['cluster']['can_bootstrap_vshard'], false) t.assert_equals(res['data']['cluster']['vshard_bucket_count'], 3000) t.assert_equals(res['data']['cluster']['vshard_known_groups'], {'default'}) t.assert_equals(res['data']['cluster']['vshard_groups'], { { ['collect_bucket_garbage_interval'] = box.NULL, ['collect_lua_garbage'] = false, ['rebalancer_disbalance_threshold'] = 1, ['rebalancer_max_receiving'] = 100, ['rebalancer_max_sending'] = 1, ['sync_timeout'] = 1, ['name'] = 'default', ['bucket_count'] = 3000, ['bootstrapped'] = false, sched_ref_quota = 300, sched_move_quota = 1, } }) end function g.test_router_role() local res = g.cluster.main_server:eval([[ local vshard = require('vshard') local cartridge = require('cartridge') local router_role = assert(cartridge.service_get('vshard-router')) assert(router_role.get() == vshard.router.static, "Default router is initialized") return { null = router_role.get():call(1, 'read', 'get_uuid'), default = router_role.get('default'):call(1, 'read', 'get_uuid'), static = vshard.router.call(1, 'read', 'get_uuid'), } ]]) t.assert_equals(res, { ['null'] = 'aaaaaaaa-aaaa-0000-0000-000000000001', ['static'] = 'aaaaaaaa-aaaa-0000-0000-000000000001', ['default'] = 'aaaaaaaa-aaaa-0000-0000-000000000001' }) end function g.test_set_vshard_options_positive() local res = edit_vshard_group(g.cluster, { group = "default", rebalancer_max_receiving = 42, rebalancer_max_sending = 1, collect_lua_garbage = true, sync_timeout = 24, rebalancer_disbalance_threshold = 14 }) t.assert_equals(res['data']['cluster']['edit_vshard_options'], { ['collect_bucket_garbage_interval'] = box.NULL, ['collect_lua_garbage'] = true, ['rebalancer_disbalance_threshold'] = 14, ['rebalancer_max_receiving'] = 42, ['rebalancer_max_sending'] = 1, ['sync_timeout'] = 24, ['name'] = 'default', ['bucket_count'] = 3000, ['bootstrapped'] = true, }) local res = edit_vshard_group(g.cluster, { group = "default", rebalancer_max_receiving = nil, rebalancer_max_sending = nil, sync_timeout = 25, }) t.assert_equals(res['data']['cluster']['edit_vshard_options'], { ['collect_bucket_garbage_interval'] = box.NULL, ['collect_lua_garbage'] = true, ['rebalancer_disbalance_threshold'] = 14, ['rebalancer_max_receiving'] = 42, ['rebalancer_max_sending'] = 1, ['sync_timeout'] = 25, ['name'] = 'default', ['bucket_count'] = 3000, ['bootstrapped'] = true, }) local res = get_vshard_groups(g.cluster) t.assert_equals(res, { { ['collect_bucket_garbage_interval'] = box.NULL, ['collect_lua_garbage'] = true, ['rebalancer_disbalance_threshold'] = 14, ['rebalancer_max_receiving'] = 42, ['rebalancer_max_sending'] = 1, ['sync_timeout'] = 25, ['name'] = 'default', ['bucket_count'] = 3000, ['bootstrapped'] = true, } }) end function g.test_set_vshard_options_negative() t.assert_error_msg_contains( [[vshard-group "undef" doesn't exist]], edit_vshard_group, g.cluster, {group = "undef", rebalancer_max_receiving = 42} ) t.assert_error_msg_contains( [[vshard_groups["default"].rebalancer_max_receiving must be positive]], edit_vshard_group, g.cluster, {group = "default", rebalancer_max_receiving = -42} ) t.assert_error_msg_contains( [[vshard_groups["default"].rebalancer_max_sending must be positive]], edit_vshard_group, g.cluster, {group = "default", rebalancer_max_sending = -42} ) t.assert_error_msg_contains( [[vshard_groups["default"].sync_timeout must be non-negative]], edit_vshard_group, g.cluster, {group = "default", sync_timeout = -24} ) t.assert_error_msg_contains( [[vshard_groups["default"].collect_bucket_garbage_interval must be positive]], edit_vshard_group, g.cluster, {group = "default", collect_bucket_garbage_interval = -42.24} ) t.assert_error_msg_contains( [[vshard_groups["default"].rebalancer_disbalance_threshold must be non-negative]], edit_vshard_group, g.cluster, {group = "default", rebalancer_disbalance_threshold = -14} ) end
-- deus0ww - 2021-05-07 local ipairs,loadfile,pairs,pcall,tonumber,tostring = ipairs,loadfile,pairs,pcall,tonumber,tostring local debug,io,math,os,string,table,utf8 = debug,io,math,os,string,table,utf8 local min,max,floor,ceil,huge,sqrt = math.min,math.max,math.floor,math.ceil,math.huge,math.sqrt local mp = require 'mp' local msg = require 'mp.msg' local opt = require 'mp.options' local utils = require 'mp.utils' local script_name = mp.get_script_name() local message = { worker = { registration = 'tn_worker_registration', reset = 'tn_worker_reset', queue = 'tn_worker_queue', start = 'tn_worker_start', progress = 'tn_worker_progress', finish = 'tn_worker_finish', }, debug = 'Thumbnailer-debug', queued = 1, processing = 2, ready = 3, failed = 4, } -------------------- -- Data Structure -- -------------------- local state local worker_data local worker_options local worker_extra local worker_stats local work_queue local thumbnail_map_buffer = {} local thumbnail_map_buffer_size = 0 local function reset_all() state = nil worker_data = {} worker_options = {} worker_extra = {} worker_stats = {} worker_stats.name = script_name worker_stats.queued = 0 worker_stats.existing = 0 worker_stats.failed = 0 worker_stats.success = 0 work_queue = {} thumbnail_map_buffer = {} thumbnail_map_buffer_size = 0 end reset_all() ----------- -- Utils -- ----------- local OS_MAC, OS_WIN, OS_NIX = 'MAC', 'WIN', 'NIX' local function get_os() if jit and jit.os then if jit.os == 'Windows' then return OS_WIN elseif jit.os == 'OSX' then return OS_MAC else return OS_NIX end end if (package.config:sub(1,1) ~= '/') then return OS_WIN end local res = mp.command_native({ name = 'subprocess', args = {'uname', '-s'}, playback_only = false, capture_stdout = true, capture_stderr = true, }) return (res and res.stdout and res.stdout:lower():find('darwin') ~= nil) and OS_MAC or OS_NIX end local OPERATING_SYSTEM = get_os() local function format_json(tab) local json, err = utils.format_json(tab) if err then msg.error('Formatting JSON failed:', err) end if json then return json else return '' end end local function parse_json(json) local tab, err = utils.parse_json(json, true) if err then msg.error('Parsing JSON failed:', err) end if tab then return tab else return {} end end local function is_empty(...) -- Not for tables if ... == nil then return true end for _, v in ipairs({...}) do if (v == nil) or (v == '') or (v == 0) then return true end end return false end ------------------------------------- -- External Process and Filesystem -- ------------------------------------- local function subprocess_result(sub_success, result, mpv_error, subprocess_name, start_time) local cmd_status, cmd_stdout, cmd_stderr, cmd_error, cmd_killed if result then cmd_status, cmd_stdout, cmd_stderr, cmd_error, cmd_killed = result.status, result.stdout, result.stderr, result.error_string, result.killed_by_us end local cmd_status_success, cmd_status_string, cmd_err_success, cmd_err_string, success if cmd_status == 0 then cmd_status_success, cmd_status_string = true, 'ok' elseif is_empty(cmd_status) then cmd_status_success, cmd_status_string = true, '_' elseif cmd_status == 124 or cmd_status == 137 or cmd_status == 143 then -- timer: timed-out(124), killed(128+9), or terminated(128+15) cmd_status_success, cmd_status_string = false, 'timed out' else cmd_status_success, cmd_status_string = false, ('%d'):format(cmd_status) end if is_empty(cmd_error) then cmd_err_success, cmd_err_string = true, '_' elseif cmd_error == 'init' then cmd_err_success, cmd_err_string = false, 'failed to initialize' elseif cmd_error == 'killed' then cmd_err_success, cmd_err_string = false, cmd_killed and 'killed by us' or 'killed, but not by us' else cmd_err_success, cmd_err_string = false, cmd_error end if is_empty(cmd_stdout) then cmd_stdout = '_' end if is_empty(cmd_stderr) then cmd_stderr = '_' end subprocess_name = subprocess_name or '_' start_time = start_time or os.time() success = (sub_success == nil or sub_success) and is_empty(mpv_error) and cmd_status_success and cmd_err_success if success then msg.debug('Subprocess', subprocess_name, 'succeeded. | Status:', cmd_status_string, '| Time:', ('%ds'):format(os.difftime(os.time(), start_time))) else msg.error('Subprocess', subprocess_name, 'failed. | Status:', cmd_status_string, '| MPV Error:', mpv_error or 'n/a', '| Subprocess Error:', cmd_err_string, '| Stdout:', cmd_stdout, '| Stderr:', cmd_stderr, '| Time:', ('%ds'):format(os.difftime(os.time(), start_time))) end return success, cmd_status_string, cmd_err_string, cmd_stdout, cmd_stderr end local function run_subprocess(command, name) if not command then return false end local subprocess_name, start_time = name or command[1], os.time() msg.debug('Subprocess', subprocess_name, 'Starting...', utils.to_string(command)) local result, mpv_error = mp.command_native( {name='subprocess', args=command, playback_only=false} ) local success, _, _, _ = subprocess_result(nil, result, mpv_error, subprocess_name, start_time) return success end local function run_subprocess_async(command, name) if not command then return false end local subprocess_name, start_time = name or command[1], os.time() msg.debug('Subprocess', subprocess_name, 'Starting (async)...') mp.command_native_async( {name='subprocess', args=command, playback_only=false}, function(s, r, e) subprocess_result(s, r, e, subprocess_name, start_time) end ) return nil end local function join_paths(...) local sep = OPERATING_SYSTEM == OS_WIN and '\\' or '/' local result = '' for _, p in ipairs({...}) do result = (result == '') and p or result .. sep .. p end return result end local function clean_path(path) if OPERATING_SYSTEM == OS_WIN and utf8 ~= nil then for uchar in string.gmatch(path, '\\u([0-9a-f][0-9a-f][0-9a-f][0-9a-f])') do path = path:gsub('\\u' .. uchar, utf8.char('0x' .. uchar)) end path = path:gsub('[\\/]', '\\\\') end return path end ------------ -- Worker -- ------------ mp.command_native({'script-message', message.worker.registration, format_json({name = script_name, script_path = debug.getinfo(1).source})}) local function stop_file_exist() local file = io.open(join_paths(state.cache_dir, 'stop'), 'r') if not file then return false end file:close() return true end local function check_existing(thumbnail_path) local thumbnail_file = io.open(thumbnail_path, 'rb') if thumbnail_file and thumbnail_file:seek('end') >= worker_extra.filesize then thumbnail_file:close() return true end return false end local function pad_file(thumbnail_path) local thumbnail_file = io.open(thumbnail_path, 'rb') if thumbnail_file then -- Check the size of the generated file local thumbnail_file_size = thumbnail_file:seek('end') thumbnail_file:close() -- Check if the file is big enough local missing_bytes = max(0, worker_extra.filesize - thumbnail_file_size) if thumbnail_file_size ~= 0 and missing_bytes > 0 then msg.warn(('Thumbnail missing %d bytes (expected %d, had %d), padding %s'):format(missing_bytes, worker_extra.filesize, thumbnail_file_size, thumbnail_path)) thumbnail_file = io.open(thumbnail_path, 'ab') thumbnail_file:write(string.rep(string.char(0), missing_bytes)) thumbnail_file:close() end end end local function concat_args(args, ...) local arg = '' for _, option in ipairs({...}) do if is_empty(option) then return #args end arg = arg .. tostring(option) end if arg ~= '' then args[#args+1] = arg end return #args end local function add_args(args, ...) for _, option in ipairs({...}) do if is_empty(option) then return #args end end for _, option in ipairs({...}) do args[#args+1] = tostring(option) end return #args end local function add_timeout(args) local timeout = worker_options.worker_timeout and worker_options.worker_timeout or 0 if timeout == 0 then return #args end if OPERATING_SYSTEM == OS_MAC then add_args(args, worker_options.exec_path .. 'gtimeout', ('--kill-after=%d'):format(timeout + 1), ('%d'):format(timeout + 3)) elseif OPERATING_SYSTEM == OS_NIX then add_args(args, worker_options.exec_path .. 'timeout', ('--kill-after=%d'):format(timeout + 1), ('%d'):format(timeout + 3)) elseif OPERATING_SYSTEM == OS_WIN then -- unimplemented end return #args end local function add_nice(args) if OPERATING_SYSTEM == OS_MAC then add_args(args, worker_options.exec_path .. 'gnice', '-19') elseif OPERATING_SYSTEM == OS_NIX then add_args(args, worker_options.exec_path .. 'nice', '-n', '19') elseif OPERATING_SYSTEM == OS_WIN then -- unimplemented end end local pix_fmt = 'bgra' local scale_ff = 'scale=w=%d:h=%d:sws_flags=%s:dst_format=' .. pix_fmt local scale_mpv = 'scale=w=%d:h=%d:flags=%s' local vf_format = ',format=fmt=' .. pix_fmt local transpose = { [-360] = '', [-270] = ',transpose=1', [-180] = ',transpose=2,transpose=2', [ -90] = ',transpose=2', [ 0] = '', [ 90] = ',transpose=1', [ 180] = ',transpose=1,transpose=1', [ 270] = ',transpose=2', [ 360] = '', } local function create_mpv_command(time, output, force_accurate_seek) local state, worker_extra, args = state, worker_extra, worker_extra.args local is_last_thumbnail = (state.duration - time) < state.delta local accurate_seek = force_accurate_seek or worker_options.accurate_seek or is_last_thumbnail or state.delta < 3 if args then args[worker_extra.index_log] = '--log-file=' .. output .. '.log' args[worker_extra.index_fastseek] = '--demuxer-lavf-o-set=fflags=' .. (accurate_seek and '+discardcorrupt+nobuffer' or '+fastseek+discardcorrupt+nobuffer') args[worker_extra.index_accurate] = '--hr-seek=' .. (accurate_seek and 'yes' or 'no') args[worker_extra.index_skip_loop] = '--vd-lavc-skiploopfilter=' .. (accurate_seek and 'nonref' or 'nonkey') args[worker_extra.index_skip_idct] = '--vd-lavc-skipidct=' .. (accurate_seek and 'nonref' or 'nonkey') args[worker_extra.index_skip_frame] = '--vd-lavc-skipframe=' .. (accurate_seek and 'nonref' or 'nonkey') args[worker_extra.index_time] = '--start=' .. tostring(is_last_thumbnail and floor(time) or time) args[worker_extra.index_output] = '--o=' .. output else local width, height = state.width, state.height local vf_scale = (scale_mpv):format(width, height, worker_options.ffmpeg_scaler) local vf_transpose = state.rotate and transpose[tonumber(state.rotate % 360)] or '' local filter_threads = (':o="threads=%d"'):format(worker_options.ffmpeg_threads) local video_filters = '--vf=lavfi="' .. vf_scale .. vf_transpose .. '"' .. filter_threads .. vf_format local worker_options = worker_options local header_fields_arg = nil local header_fields = mp.get_property_native('http-header-fields', {}) if #header_fields > 0 then header_fields_arg = '--http-header-fields=' .. table.concat(header_fields, ',') end worker_extra.args = {} args = worker_extra.args -- https://mpv.io/manual/master/ add_timeout(args) add_nice(args) worker_extra.index_name = concat_args(args, worker_options.exec_path .. 'mpv') -- General concat_args(args, '--no-config') concat_args(args, '--msg-level=all=no') worker_extra.index_log = concat_args(args, '--log-file=', output .. '.log') concat_args(args, '--osc=no') concat_args(args, '--load-stats-overlay=no') -- Remote concat_args(args, (worker_extra.ytdl and '--ytdl' or '--no-ytdl')) concat_args(args, header_fields_arg) concat_args(args, '--user-agent=', mp.get_property_native('user-agent')) concat_args(args, '--referrer=', mp.get_property_native('referrer')) -- Input concat_args(args, '--vd-lavc-fast') concat_args(args, '--vd-lavc-threads=', worker_options.ffmpeg_threads) concat_args(args, '--demuxer-lavf-analyzeduration=0.1') concat_args(args, '--demuxer-lavf-probesize=500000') concat_args(args, '--demuxer-lavf-probe-info=nostreams') worker_extra.index_fastseek = concat_args(args, '--demuxer-lavf-o-set=fflags=', accurate_seek and '+discardcorrupt+nobuffer' or '+fastseek+discardcorrupt+nobuffer') worker_extra.index_accurate = concat_args(args, '--hr-seek=', accurate_seek and 'yes' or 'no') worker_extra.index_skip_loop = concat_args(args, '--vd-lavc-skiploopfilter=', accurate_seek and 'nonref' or 'nonkey') worker_extra.index_skip_idct = concat_args(args, '--vd-lavc-skipidct=', accurate_seek and 'nonref' or 'nonkey') worker_extra.index_skip_frame = concat_args(args, '--vd-lavc-skipframe=', accurate_seek and 'nonref' or 'nonkey') concat_args(args, '--hwdec=no') concat_args(args, '--hdr-compute-peak=no') concat_args(args, '--vd-lavc-dr=no') concat_args(args, '--aid=no') concat_args(args, '--sid=no') concat_args(args, '--sub-auto=no') worker_extra.index_time = concat_args(args, '--start=', tostring(is_last_thumbnail and floor(time) or time)) concat_args(args, '--frames=1') concat_args(args, state.input_fullpath) -- Filters concat_args(args, '--sws-scaler=', worker_options.ffmpeg_scaler) concat_args(args, video_filters) -- Output concat_args(args, '--of=rawvideo') concat_args(args, '--ovcopts=pixel_format=', pix_fmt) concat_args(args, '--ocopy-metadata=no') worker_extra.index_output = concat_args(args, '--o=' .. output) end return args, args[worker_extra.index_name] end local function create_ffmpeg_command(time, output, force_accurate_seek) local state, worker_extra, args = state, worker_extra, worker_extra.args local is_last_thumbnail = (state.duration - time) < state.delta local accurate_seek = force_accurate_seek or worker_options.accurate_seek or is_last_thumbnail or state.delta < 3 if args then args[worker_extra.index_fastseek] = accurate_seek and '+discardcorrupt+nobuffer' or '+fastseek+discardcorrupt+nobuffer' args[worker_extra.index_accurate] = accurate_seek and '-accurate_seek' or '-noaccurate_seek' args[worker_extra.index_skip_loop] = accurate_seek and 'noref' or 'nokey' args[worker_extra.index_skip_idct] = accurate_seek and 'noref' or 'nokey' args[worker_extra.index_skip_frame] = accurate_seek and 'noref' or 'nokey' args[worker_extra.index_time] = tostring(is_last_thumbnail and floor(time) or time) args[worker_extra.index_output] = output else local width, height = state.width, state.height if state.meta_rotated then width, height = height, width end local vf_scale = (scale_ff):format(width, height, worker_options.ffmpeg_scaler) local vf_transpose = state.rotate and transpose[tonumber(state.rotate % 360)] or '' local video_filters = vf_scale .. vf_transpose local worker_options = worker_options worker_extra.args = {} args = worker_extra.args -- https://ffmpeg.org/ffmpeg.html#Main-options -- General add_timeout(args) add_nice(args) worker_extra.index_name = add_args(args, worker_options.exec_path .. 'ffmpeg') add_args(args, '-hide_banner') add_args(args, '-nostats') add_args(args, '-loglevel', 'warning') -- Input add_args(args, '-threads', worker_options.ffmpeg_threads) add_args(args, '-fflags', 'fastseek') add_args(args, '-flags2', 'fast') if OPERATING_SYSTEM ~= OS_WIN and worker_options.worker_timeout > 0 then add_args(args, '-timelimit', ceil(worker_options.worker_timeout)) end add_args(args, '-analyzeduration', '500000') -- Default: 5000000 add_args(args, '-probesize', '500000') -- Default: 5000000 worker_extra.index_fastseek = add_args(args, '-fflags', accurate_seek and '+discardcorrupt+nobuffer' or '+fastseek+discardcorrupt+nobuffer') worker_extra.index_accurate = add_args(args, accurate_seek and '-accurate_seek' or '-noaccurate_seek') worker_extra.index_skip_loop = add_args(args, '-skip_loop_filter', accurate_seek and 'noref' or 'nokey') worker_extra.index_skip_idct = add_args(args, '-skip_idct', accurate_seek and 'noref' or 'nokey') worker_extra.index_skip_frame = add_args(args, '-skip_frame', accurate_seek and 'noref' or 'nokey') worker_extra.index_time = add_args(args, '-ss', tostring(is_last_thumbnail and floor(time) or time)) add_args(args, '-guess_layout_max', '0') add_args(args, '-an', '-sn') add_args(args, '-i', state.input_fullpath) add_args(args, '-map_metadata', '-1') add_args(args, '-map_chapters', '-1') add_args(args, '-frames:v', '1') -- Filters add_args(args, '-filter_threads', worker_options.ffmpeg_threads) add_args(args, '-vf', video_filters) add_args(args, '-sws_flags', worker_options.ffmpeg_scaler) add_args(args, '-pix_fmt', pix_fmt) -- Output add_args(args, '-f', 'rawvideo') add_args(args, '-threads', worker_options.ffmpeg_threads) add_args(args, '-y') worker_extra.index_output = add_args(args, output) end return args, args[worker_extra.index_name] end -- From https://github.com/TheAMM/mpv_thumbnail_script local function hack_input() msg.debug('Hacking Input...') local file_path = mp.get_property_native('stream-path') local playlist_filename = join_paths(state.cache_dir, 'playlist.txt') worker_extra.ytdl = false if #file_path > 8000 then -- Path is too long for a playlist - just pass the original URL to workers and allow ytdl worker_extra.ytdl = true file_path = state.input_fullpath msg.warn('Falling back to original URL and ytdl due to LONG source path. This will be slow.') elseif #file_path > 1024 then local playlist_file = io.open(playlist_filename, 'wb') if not playlist_file then msg.error(('Tried to write a playlist to %s but could not!'):format(playlist_file)) return false end playlist_file:write(file_path .. '\n') playlist_file:close() file_path = '--playlist=' .. playlist_filename msg.warn('Using playlist workaround due to long source path') end state.input_fullpath = file_path end local function report_progress_table(thumbnail_map) local progress_report = { name = script_name, input_filename = state.input_filename, thumbnail_map = thumbnail_map } mp.command_native_async({'script-message', message.worker.progress, format_json(progress_report)}, function() end) end local function report_progress(index, new_status) local index_string = index and (state.cache_format):format(index) or '' if index ~= nil and thumbnail_map_buffer[index_string] == nil then thumbnail_map_buffer_size = thumbnail_map_buffer_size + 1 end thumbnail_map_buffer[index_string] = new_status if index == nil or thumbnail_map_buffer_size >= state.worker_buffer then report_progress_table(thumbnail_map_buffer) thumbnail_map_buffer = {} thumbnail_map_buffer_size = 0 end end local function set_encoder(encoder) if encoder == 'ffmpeg' then worker_extra.create_command = create_ffmpeg_command else worker_extra.create_command = create_mpv_command if state.is_remote then hack_input() end end worker_extra.args = nil end local function create_thumbnail(time, fullpath) return (run_subprocess(worker_extra.create_command(time, fullpath, false)) and check_existing(fullpath)) or (run_subprocess(worker_extra.create_command(time, fullpath, true)) and check_existing(fullpath)) end local function process_thumbnail() if #work_queue == 0 then return end local worker_stats = worker_stats local status = message.processing local time = table.remove(work_queue, 1) local output = (state.cache_format):format(time) local fullpath = join_paths(state.cache_dir, output) .. state.cache_extension report_progress (time, status) -- Check for existing thumbnail to avoid generation if check_existing(fullpath) then worker_stats.existing = worker_stats.existing + 1 worker_stats.queued = worker_stats.queued - 1 report_progress (time, message.ready) return end -- Generate the thumbnail if create_thumbnail(time, fullpath) then worker_stats.success = worker_stats.success + 1 worker_stats.queued = worker_stats.queued - 1 report_progress (time, message.ready) return end -- Switch to MPV when FFMPEG fails -- if worker_options.encoder == 'ffmpeg' then -- set_encoder('mpv') -- if create_thumbnail(time, fullpath) then -- worker_stats.success = worker_stats.success + 1 -- worker_stats.queued = worker_stats.queued - 1 -- report_progress (time, message.ready) -- return -- end -- end -- If the thumbnail is incomplete, pad it if not check_existing(fullpath) then pad_file(fullpath) end -- Final check if check_existing(fullpath) then worker_stats.success = worker_stats.success + 1 worker_stats.queued = worker_stats.queued - 1 report_progress (time, message.ready) else worker_stats.failed = worker_stats.failed + 1 worker_stats.queued = worker_stats.queued - 1 report_progress (time, message.failed) end end local function process_queue() if not work_queue then return end for _ = 1, #work_queue do if stop_file_exist() then report_progress() break end process_thumbnail() end report_progress() if #work_queue == 0 then mp.command_native({'script-message', message.worker.finish, format_json(worker_stats)}) end end local function create_queue() set_encoder(worker_options.encoder) work_queue = {} local worker_data, work_queue, worker_stats = worker_data, work_queue, worker_stats local time, output, report_queue, used_frames = 0, '', {}, {} for x = 8, 0, -1 do local nth = (2^x) for y = 0, (ceil(state.tn_per_worker) - 1), nth do if not used_frames[y + 1] then time = (worker_data.start_time_index + y) * state.delta output = (state.cache_format):format(time) if check_existing(join_paths(state.cache_dir, output)) then worker_stats.existing = worker_stats.existing + 1 report_queue[(state.cache_format):format(time)] = message.ready elseif time <= state.duration then work_queue[#work_queue + 1] = time worker_stats.queued = worker_stats.queued + 1 report_queue[(state.cache_format):format(time)] = message.queued end used_frames[y + 1] = true end end end report_progress_table(report_queue) end --------------- -- Listeners -- --------------- mp.register_script_message(message.worker.reset, reset_all) mp.register_script_message(message.worker.queue, function(json) local new_data = parse_json(json) if new_data.state then state = new_data.state end if new_data.worker_options then worker_options = new_data.worker_options end if new_data.start_time_index then worker_data.start_time_index = new_data.start_time_index end if not worker_extra.filesize then worker_extra.filesize = (state.width * state.height * 4) end create_queue() end) mp.register_script_message(message.worker.start, process_queue) mp.register_script_message(message.debug, function() msg.info('Thumbnailer Worker Internal States:') msg.info('state:', state and utils.to_string(state) or 'nil') msg.info('worker_data:', worker_data and utils.to_string(worker_data) or 'nil') msg.info('worker_options:', worker_options and utils.to_string(worker_options) or 'nil') msg.info('worker_extra:', worker_extra and utils.to_string(worker_extra) or 'nil') msg.info('worker_stats:', worker_stats and utils.to_string(worker_stats) or 'nil') end)
local app = app local Class = require "Base.Class" local MenuControl = require "Unit.MenuControl" local ply = app.SECTION_PLY -- OptionControl Class local OptionControl = Class {} OptionControl:include(MenuControl) function OptionControl:init(args) MenuControl.init(self) self:setClassName("UnitMenu.OptionControl") -- required arguments local description = args.description or app.logError("%s.init: description is missing.", self) self:setInstanceName(description) local option = args.option or app.logError("%s.init: option is missing.", self) local choices = args.choices or app.logError("%s.init: 'choices' is missing.", self) local descWidth = args.descriptionWidth or 1 option:enableSerialization() self.description = description self.choices = choices self.option = option self.onUpdate = args.onUpdate self.muteOnChange = args.muteOnChange self.descWidth = descWidth if args.offset then self.offset = args.offset elseif args.boolean then self.offset = 1 else self.offset = 0 end local graphic = app.RichTextBox(description, 10) graphic:setBorder(1) graphic:setBorderColor(app.GRAY7) graphic:setCornerRadius(3, 3, 3, 3) graphic:setMargins(3, 1, (3 + descWidth - 1) * ply, 1) graphic:fitHeight((3 + descWidth) * ply - 2) local h = graphic.mHeight // 2 local labels = {} for i, choice in ipairs(choices) do local label = app.RichTextBox(choice, 10) label:fitHeight(ply - 2) labels[choice] = label graphic:addChild(label) label:setForegroundColor(app.GRAY5) label:setJustification(app.justifyCenter) label:setCenter(app.getButtonCenter(i + descWidth), h) end local instructions = app.DrawingInstructions() instructions:color(app.GRAY7) instructions:vline(descWidth * ply - 2, 1, graphic.mHeight - 1) local drawing = app.Drawing(0, 0, 256, 64) drawing:add(instructions) graphic:addChild(drawing) self:setControlGraphic(graphic) self.labels = labels self:update() end function OptionControl:onReleased(i, shifted) if shifted then return false end if i > self.descWidth then local choice = i - self.descWidth - self.offset if choice <= #self.choices then if self.muteOnChange then local chain = self.parent.unit.chain local wasMuted = chain:muteIfNeeded() self.option:set(choice) self:update() chain:unmuteIfNeeded(wasMuted) else self.option:set(choice) self:update() end end end return true end function OptionControl:update() local choice = self.choices[self.option:value() + self.offset] for choice2, label in pairs(self.labels) do if choice == choice2 then label:setForegroundColor(app.WHITE) else label:setForegroundColor(app.GRAY5) end end if self.onUpdate then self.onUpdate(choice) end end return OptionControl
Language = {} local DEFAULT_LANGUAGE = Locales.languages[1] local FALLBACK_TO_DEFAULT = true local currentLanguage function Language.set(lang) if not lang then return false end if not Locales.isValid(lang) then return false end if currentLanguage then Locales.unload(currentLanguage) end Locales.load(lang) currentLanguage = lang triggerEvent("dpLang.languageChanged", root, currentLanguage) return true end function Language.get() return currentLanguage end function Language.getLocalization() local language = Locales.byCode[getLocalization().code] if not language then language = DEFAULT_LANGUAGE end return language end function Language.getString(name) local localizedString = Locales.getString(currentLanguage, name) if not localizedString then if FALLBACK_TO_DEFAULT then local fallbackString = Locales.getString(DEFAULT_LANGUAGE, name) if type(fallbackString) == "string" then return fallbackString else return tostring(name) end else return tostring(name) end end return localizedString end function Language.getAllStrings() local strings = Locales.getLang(currentLanguage) if not strings then return false end return strings end -- TODO: убрать -- Обертка над outputChatBox, отображающая сообщения в зависимости от текущего языка function Language.chatMessage(name, ...) local message = Language.getString(name) if not message then outputDebugString("Language.chatMessage: No localized message for: " .. tostring(name)) return false end return outputChatBox(message, ...) end addEventHandler("onClientResourceStart", resourceRoot, function () Locales.load(DEFAULT_LANGUAGE, true) local language = exports.dpConfig:getProperty("ui.language") if not Locales.isValid(language) then exports.dpConfig:setProperty("ui.language", Language.getLocalization()) return end -- Если язык не установлен в конфиге if not language then language = Language.getLocalization() exports.dpConfig:setProperty("ui.language", language) else Language.set(language) end end) -- TODO: убрать addEvent("dpLang.chatMessageServer", true) addEventHandler("dpLang.chatMessageServer", resourceRoot, function (name, ...) Language.chatMessage(name, ...) end) -- Обновление языка при изменении настроек addEvent("dpConfig.update", false) addEventHandler("dpConfig.update", root, function (key, value) if key == "ui.language" then if not Language.set(value) then cancelEvent() end end end)
local addonName, addon, _ = 'Midget', {} -- GLOBALS: ZO_SavedVars, Midget_Controller, COMPASS_PINS, BUFF_EFFECT_TYPE_BUFF, BUFF_EFFECT_TYPE_DEBUFF, LINK_STYLE_DEFAULT -- GLOBALS: d, GetFrameTimeSeconds, GetNumBuffs, GetUnitBuffInfo, GetBagInfo, GetSlotStackSize, GetItemName, GetItemLink, GetGroupSize, GetGroupUnitTagByIndex, GetUnitName, GetMapPlayerPosition -- GLOBALS: select local wm = GetWindowManager() local em = GetEventManager() local function GetItemLinkFromID(itemID) return ZO_LinkHandler_CreateLink('', nil, ITEM_LINK_TYPE, itemID, string.rep('0:', 19)) end local function GetItemIDFromLink(itemLink) local _, _, _, itemID = ZO_LinkHandler_ParseLink(itemLink) itemID = itemID and tonumber(itemID) return itemID end local function Initialize(eventCode, arg1, ...) if arg1 ~= addonName then return end EVENT_MANAGER:UnregisterForEvent(addonName, EVENT_ADD_ON_LOADED) -- Show equipped indicator on repair dialog -- ---------------------------------------------------- ZO_PreHook(ZO_RepairWindowList.dataTypes[1], 'setupCallback', function(self, data, list) local icon = self:GetNamedChild('EquippedIndicator') if data.bagId == BAG_WORN then if not icon then icon = wm:CreateControl(self:GetName()..'EquippedIndicator', self, CT_TEXTURE) icon:SetAnchor(CENTER, self:GetNamedChild('ButtonIcon'), CENTER, 0, 0) icon:SetDrawTier(DT_LOW) icon:SetDimensions(50, 50) icon:SetTexture('/esoui/art/actionbar/passiveabilityframe_round_over.dds') end icon:SetHidden(false) elseif icon then icon:SetHidden(true) end end) -- Add keybind for split stack on mouseover -- ---------------------------------------------------- --[[ -- TODO: SlotMouseoverCommand -- function ZO_InventorySlotActions:AddSlotAction(actionStringId, actionCallback, actionType, visibilityFunction, options) -- slotActions:AddSlotAction(SI_ITEM_ACTION_SPLIT_STACK, function() TrySplitStack(inventorySlot) end, "secondary") local keybind = { name = GetString(SI_INVENTORY_SPLIT_STACK_TITLE), keybind = 'UI_SHORTCUT_NEGATIVE', -- UI_SHORTCUT_SECONDARY, UI_SHORTCUT_TERTIARY callback = function(keybind) if not keybind.owner then return end ZO_StackSplit_SplitItem(keybind.owner) end, alignment = KEYBIND_STRIP_ALIGN_RIGHT, } local function ShowKeybind(self) keybind.owner = self; KEYBIND_STRIP:AddKeybindButton(keybind) end local function HideKeybind() keybind.owner = nil; KEYBIND_STRIP:RemoveKeybindButton(keybind) end local function OnMouseEnter(self) -- TODO: Prevents taken mail to be sent back: ZO_MailInbox if self:GetOwningWindow() ~= ZO_PlayerInventory then return end local button = self:GetNamedChild('Button') if not button then return end HideKeybind() local data = self.dataEntry and self.dataEntry.data if button and CheckInventorySpaceSilently(1) and ZO_InventorySlot_IsSplittableType(button) and ZO_InventorySlot_GetStackCount(button) > 1 then ShowKeybind(button) end end ZO_PreHook(_G, 'ZO_InventorySlot_OnMouseEnter', OnMouseEnter) ZO_PreHook(_G, 'ZO_InventorySlot_OnMouseExit', HideKeybind) ZO_PreHook(_G, 'ZO_InventorySlot_RemoveMouseOverKeybinds', HideKeybind) --]] -- allow SHIFT+Click on inventory to post link to chat -- ---------------------------------------------------- ZO_PreHook(_G, 'ZO_InventorySlot_OnSlotClicked', function(self, button) if button == 1 and IsShiftKeyDown() then local itemLink local bag, slot = ZO_Inventory_GetBagAndIndex(self:GetNamedChild('Button')) if bag and slot then itemLink = GetItemLink(bag, slot) elseif not MAIL_INBOX.control:IsHidden() then local mailId = MAIL_INBOX:GetOpenMailId() itemLink = GetAttachedItemLink(mailId, slot) end if itemLink then ZO_LinkHandler_InsertLink(zo_strformat(SI_TOOLTIP_ITEM_NAME, itemLink)) end end end) -- rune translations -- ---------------------------------------------------- ZO_PreHook(ZO_EnchantingTopLevelInventoryBackpack.dataTypes[1], 'setupCallback', function(self, data, list) local label = self:GetNamedChild('Translation') if not label then label = wm:CreateControl('$(parent)Translation', self, CT_LABEL) label:SetFont('ZoFontGame') label:SetAnchor(RIGHT, self, RIGHT, -100) label:SetDrawTier(DT_HIGH) end local bag, slot = self.dataEntry.data.bagId, self.dataEntry.data.slotIndex local text = GetRunestoneTranslatedName(bag, slot) label:SetText(text or '') end) -- recipe known info -- ---------------------------------------------------- local recipeDB = ZO_SavedVars:NewAccountWide(addonName..'DB', 1, 'recipes', { data = {}, known = { ['*'] = {}, }, }) -- scan recipes for listIndex = 1, GetNumRecipeLists() do local listName, numRecipes = GetRecipeListInfo(listIndex) local listValue = '' for recipeIndex = 1, numRecipes do local isKnown, _, numIngredients = GetRecipeInfo(listIndex, recipeIndex) listValue = listValue .. (isKnown and 1 or 0) if isKnown then local ingredients = {} for ingredientIndex = 1, numIngredients do local ingredientID = GetItemIDFromLink(GetRecipeIngredientItemLink(listIndex, recipeIndex, ingredientIndex)) ingredients[ingredientID] = select(3, GetRecipeIngredientItemInfo(listIndex, recipeIndex, ingredientIndex)) end local itemLink = GetRecipeResultItemLink(listIndex, recipeIndex, LINK_STYLE_DEFAULT) recipeDB.data[ GetItemIDFromLink(itemLink) ] = { listIndex, recipeIndex, ingredients = ingredients } end end recipeDB.known[ GetUnitName('player') ][listIndex] = listValue end --[[ if GetItemType(bag, slot) == ITEMTYPE_RECIPE then -- or SI_ITEMTYPE29 local recipeName = GetItemName(bag, slot) -- recipeName 46004 "Rezept: Kristallweiß^n:n" -- recipe link: "|H1:item:46004:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:|h[]|h" "Rezept Für Ein Kristallweiß" -- item link: "|H1:item:28473:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:|h[]|h" "Kristallweiß" end --]] -- TODO: highlight unusable items (recipes) red -- ---------------------------------------------------- -- TODO: highlight learnable items green -- ---------------------------------------------------- -- TODO: someone logs on, add friend note: [@friend] has logged on (BFF!) -- ---------------------------------------------------- em:RegisterForEvent(addonName, EVENT_FRIEND_PLAYER_STATUS_CHANGED, function(eventID, account, oldStatus, newStatus) if oldStatus == PLAYER_STATUS_OFFLINE and newStatus == PLAYER_STATUS_ONLINE then local friendIndex, note for index = 1, GetNumFriends() do local name, status, lastOnline name, note, status, lastOnline = GetFriendInfo(index) if name == account then friendIndex = index break end end if not friendIndex then return end local _, characterName, zoneName, classType, alliance, level, veteranRank = GetFriendCharacterInfo(friendIndex) local link = ZO_LinkHandler_CreateDisplayNameLink(account) local characterLink = ZO_LinkHandler_CreateCharacterLink(characterName) local msg = zo_strformat('<<4>> |t28:28:<<2>>|t<<3>>|t28:28:EsoUI/Art/Campaign/<<1>>.dds|t has logged on.<<5>>', alliance == ALLIANCE_ALDMERI_DOMINION and 'overview_allianceIcon_aldmeri' or alliance == ALLIANCE_DAGGERFALL_COVENANT and 'overview_allianceIcon_daggefall' or alliance == ALLIANCE_EBONHEART_PACT and 'overview_allianceIcon_ebonheart' or '', GetClassIcon(classType), characterLink or characterName, veteranRank > 0 and ('VR'..veteranRank) or ('L'..level), note > '' and ' ['..note..']' or '' ) CHAT_SYSTEM:AddMessage(msg) end end) -- EVENT_GUILD_MEMBER_PLAYER_STATUS_CHANGED(guildID, account, oldState, newState) -- GetNumGuildMembers(guildID); name, note, rank, status, lastOnline = GetGuildMemberInfo(integer guildId, luaindex memberIndex) -- TODO: comparative tooltips w/ alternate weapons -- ---------------------------------------------------- -- TODO: settings when to show comparative tooltips and what to compare to -- ---------------------------------------------------- --[[ -- /script d{SLOT_TYPE_PENDING_CHARGE, SLOT_TYPE_ENCHANTMENT, SLOT_TYPE_ENCHANTMENT_RESULT, SLOT_TYPE_REPAIR, SLOT_TYPE_PENDING_REPAIR, SLOT_TYPE_CRAFTING_COMPONENT, SLOT_TYPE_PENDING_CRAFTING_COMPONENT, SLOT_TYPE_SMITHING_MATERIAL, SLOT_TYPE_SMITHING_STYLE, SLOT_TYPE_SMITHING_TRAIT, SLOT_TYPE_SMITHING_BOOSTER, SLOT_TYPE_LIST_DIALOG_ITEM} local _ZO_InventorySlot_OnMouseEnter = ZO_InventorySlot_OnMouseEnter _G.ZO_InventorySlot_OnMouseEnter = function(inventorySlot, ...) -- call original function first local isShown = _ZO_InventorySlot_OnMouseEnter(inventorySlot, ...) if not isShown then return end -- then we can start local button = inventorySlot:GetNamedChild('Button') local slotType = ZO_InventorySlot_GetType(button) if slotType == _G.SLOT_TYPE_CRAFTING_COMPONENT then local tooltip = ItemTooltip tooltip:HideComparativeTooltips() tooltip:ShowComparativeTooltips() ZO_PlayShowAnimationOnComparisonTooltip(ComparativeTooltip1) ZO_PlayShowAnimationOnComparisonTooltip(ComparativeTooltip2) ZO_Tooltips_SetupDynamicTooltipAnchors(tooltip, button.tooltipAnchor or button, ComparativeTooltip1, ComparativeTooltip2) end end --]] end em:RegisterForEvent(addonName, EVENT_ADD_ON_LOADED, Initialize) --[[ Notes to self -- ---------------------------------------------------- -- ZO_InventorySlot_ShowContextMenu -- ZO_InventorySlot_IsSplittableType -- ZO_InventorySlot_GetStackCount ZO_AlertEvent(EVENT_GUILD_BANK_TRANSFER_ERROR, GUILD_BANK_NO_WITHDRAW_PERMISSION) ZO_Alert(UI_ALERT_CATEGORY_ERROR, SOUNDS.NEGATIVE_CLICK, SI_INVENTORY_ERROR_INVENTORY_FULL) ZO_InventoryManager:ApplyBackpackLayout, :DoesBagHaveEmptySlot, :GenerateListOfVirtualStackedItems, :GetNumBackpackSlots, :RefreshInventorySlot, ... ZO_InventorySlot_SetupUsableAndLockedColor, ZO_InventorySlot_SetupTextUsableAndLockedColor, ZO_InventorySlot_SetupIconUsableAndLockedColor - learnable recipes ZO_Tooltips_SetupDynamicTooltipAnchors(ItemTooltip, self) ZO_PreHookHandler(ItemTooltip, 'OnAddGameData', function(self, ...) d('OnAddGameData', self:GetName(), ...) end) addon.db = ZO_SavedVars:New(addonName..'DB', 1, nil, { -- default settings }) local control = wm:CreateTopLevelWindow(addonName) control:SetHandler('OnUpdate', Update) split stack: CallSecureProtected('PickupInventoryItem', bagID, itemIndex, count) local toBag = 1 local toSlot = FindFirstEmptySlotInBag(toBag) CallSecureProtected('PlaceInInventory', toBag, toSlot) -- when pulling multiple times from one slot, wait for event /script CallSecureProtected('PickupInventoryItem', 1, 38, 5) /script CallSecureProtected('PlaceInInventory', 1, FindFirstEmptySlotInBag(1)) texture string: |t40:40:EsoUI/Art/UnitFrames/target_veteranRank_icon.dds|t ZO_Tooltip_AddDivider(tooltip) local mouseOverControl = moc() AddMenuItem(label, callback) ShowMenu(owner) ZO_SortHeader_SetMouseCallback(control, handlerName) -- e.g. OnMouseEnter ["GetAlchemyItemTraits"] = function: 161AA860 ["GetAlchemyResultingItemInfo"] = function: 161AA770 ["GetAlchemyResultingItemLink"] = function: 161AA7C0 SplitString(':', 'my:text') zo_strformat(SI_TOOLTIP_ITEM_NAME, GetItemName(bagId, slotIndex)) /script for k,v in ipairs(EsoStrings) do if v:lower():find('bank') then d(k..' - '..v) end end GetString / EsoStrings + LocalizeString(EsoStrings[stringIndex], ...) -- variables, including Kopf^m,auf /script local search = 'aufteilen'; for id, text in pairs(EsoStrings) do if text:lower():find(search) then for k, v in safepairs(_G) do if type(v) == 'number' and k:find("^SI_") and v == id then d(k..' ('..id..'): '..text) end end end end Pretty display names: zo_strformat(SI_TOOLTIP_ITEM_NAME, name) LocalizeString <<1[kein/ein/$d]>> kein, ein, 2 <<and(1,2)>> 3 und 15 <<C:1{der $s/die $s/das $s}>> der mann, die frau, das kind <<A:1>> der Mann <<p:1>> er/sie/es den <<C:1>> das Inventar Top right alert messages: ZO_Alert(UI_ALERT_CATEGORY_ALERT, 1, "Attempting to invite") --]]
local cfg = {} -- list of atms positions cfg.atms = { {89.577018737793,2.16031360626221,68.322021484375}, {-526.497131347656,-1222.79455566406,18.4549674987793}, {-2072.48413085938,-317.190521240234,13.315972328186}, {-821.565551757813,-1081.90270996094,11.1324348449707}, {1686.74694824219,4815.8828125,42.0085678100586}, {-386.899444580078,6045.78466796875,31.5001239776611}, {1171.52319335938,2702.44897460938,38.1754684448242}, {1968.11157226563,3743.56860351563,32.3437271118164}, {2558.85815429688,351.045166015625,108.621520996094}, {1153.75634765625,-326.805023193359,69.2050704956055}, {-56.9172439575195,-1752.17590332031,29.4210166931152}, {-3241.02856445313,997.587158203125,12.5503988265991}, {-1827.1884765625,784.907104492188,138.302581787109}, {-1091.54748535156,2708.55786132813,18.9437484741211}, {112.45637512207,-819.25048828125,31.3392715454102}, {-256.173187255859,-716.031921386719,33.5202751159668}, {174.227737426758,6637.88623046875,31.5730476379395}, {-660.727661132813,-853.970336914063,24.484073638916}, {-37.867984771729,-1115.0112304688,26.436576843262} } return cfg
--- 服装道具类 ---@module ClothingItem:ItemBase -- @copyright Lilith Games, Avatar Team -- @author Dead Ratman local ClothingItem = class('ClothingItem', ItemBase) function ClothingItem:initialize(_baseData, _derivedData) ItemBase.initialize(self, _baseData, _derivedData) print('ClothingItem:initialize()') end --在背包中使用 function ClothingItem:UseInBag() print('使用', self.id) ItemBase.UseInBag(self) NetUtil.Fire_C('GetBuffEvent', localPlayer, self.derivedData.UseAddBuffID, self.derivedData.UseAddBuffDur) NetUtil.Fire_C('RemoveBuffEvent', localPlayer, self.derivedData.UseRemoveBuffID) NetUtil.Fire_C('PlayerSkinUpdateEvent', localPlayer, self.derivedData.SkinID) end return ClothingItem
class("NewGuildMainBluePage", import(".NewGuildMainRedPage")).getUIName = function (slot0) return "NewGuildBlueUI" end return class("NewGuildMainBluePage", import(".NewGuildMainRedPage"))
insulate("Table declaration", function() local parser = require("snabbp4.syntax.parser") local config = {preprocess = true} local input = [[ table ipv4_routing { action_profile : ecmp_action_profile; size : 16384; // 16K possible IPv4 prefixes reads { ipv4.dstAddr: lpm; } } ]] local statements = parser.parse(input, config) local table = statements[1] it("should parse table declaration node", function() local node = table.node assert.is_equal(node, "table_declaration") end) end) insulate("Table 2 declaration", function() local parser = require("snabbp4.syntax.parser") local config = {preprocess = true} local input = [[ table hysteresis_check { reads { local_metadata.color : exact; local_metadata.prev_color : exact; } actions { update_prev_color; mark_pkt; no_op; } size : 4; } ]] local statements = parser.parse(input, config) local table = statements[1] it("should parse table declaration node", function() local node = table.node assert.is_equal(node, "table_declaration") end) end)
function onCreate() makeAnimatedLuaSprite('angelback', 'ANGELBACK', -190, -270) setScrollFactor('angelback', 0.8, 0.8); addAnimationByPrefix('angelback', 'angel', 'BACK', 30, true); addLuaSprite('angelback', false) objectPlayAnimation('angelback', 'angel', false) makeLuaSprite('floor', 'Angelground', -220, 550); addLuaSprite('floor', false) close(true); end
local settings = {} local item_decay_defaults = require('item_decay_defaults') table.insert(settings, { type = "int-setting", name = "spice-rack-decaying-goods-debug-mode", order = "a", setting_type = "runtime-global", default_value = 0, allowed_values = { 0, 1, 2, 3, 4 } }) table.insert(settings, { type = "double-setting", name = "spice-rack-decaying-goods-emit-pollution-amount", order = "b", setting_type = "startup", default_value = 5.0, minimum_value = 0.0, maximum_value = 50.0, }) table.insert(settings, { type = "bool-setting", name = "spice-rack-decaying-goods-do-destroy-items", order = "c", setting_type = "startup", default_value = true, }) local index = 0 for item, default in pairs(item_decay_defaults) do table.insert(settings, { type = "double-setting", name = "spice-rack-decaying-goods-decay-"..item, order = string.format("m[%03d]", index), setting_type = "startup", minimum_value = 0.0, maximum_value = 99.0, default_value = default }) index = index + 1 end -- primes -- 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, -- 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, -- 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, -- 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257, 263, -- 269, 271, 277, 281, 283, 293, 307, 311, 313, 317, 331, 337, 347, 349, -- 353, 359, 367, 373, 379, 383, 389, 397, 401, 409, 419, 421, 431, 433, -- 439, 443, 449, 457, 461, 463, 467, 479, 487, 491, 499, 503, 509, 521, -- 523, 541, 547, 557, 563, 569, 571, 577, 587, 593, 599, 601, 607, 613, -- 617, 619, 631, 641, 643, 647, 653, 659, 661, 673, 677, 683, 691, 701, -- 709, 719, 727, 733, 739, 743, 751, 757, 761, 769, 773, 787, 797, 809, -- 811, 821, 823, 827, 829, 839, 853, 857, 859, 863, 877, 881, 883, 887, -- 907, 911, 919, 929, 937, 941, 947, 953, 967, 971, 977, 983, 991, 997, -- 1009, 1013, 1019, 1021, 1031, 1033, 1039, 1049, 1051, 1061, 1063, 1069, 1087, 1091, -- 1093, 1097, 1103, 1109, 1117, 1123, 1129, 1151, 1153, 1163, 1171, 1181, 1187, 1193, -- 1201, 1213, 1217, 1223, 1229, 1231, 1237, 1249, 1259, 1277, 1279, 1283, 1289, 1291, -- 1297, 1301, 1303, 1307, 1319, 1321, 1327, 1361, 1367, 1373, 1381, 1399, 1409, 1423, -- 1427, 1429, 1433, 1439, 1447, 1451, 1453, 1459, 1471, 1481, 1483, 1487, 1489, 1493, -- 1499, 1511, 1523, 1531, 1543, 1549, 1553, 1559, 1567, 1571, 1579, 1583, 1597, 1601, -- 1607, 1609, 1613, 1619, 1621, 1627, 1637, 1657, 1663, 1667, 1669, 1693, 1697, 1699, -- 1709, 1721, 1723, 1733, 1741, 1747, 1753, 1759, 1777, 1783, 1787, 1789, 1801, 1811, -- 1823, 1831, 1847, 1861, 1867, 1871, 1873, 1877, 1879, 1889, 1901, 1907, 1913, 1931, -- 1933, 1949, 1951, 1973, 1979, 1987, 1993, 1997, 1999, 2003, 2011, 2017, 2027, 2029, -- 2039, 2053, 2063, 2069, 2081, 2083, 2087, 2089, 2099, 2111, 2113, 2129, 2131, 2137, -- 2141, 2143, 2153, 2161, 2179, 2203, 2207, 2213, 2221, 2237, 2239, 2243, 2251, 2267, -- 2269, 2273, 2281, 2287, 2293, 2297, 2309, 2311, 2333, 2339, 2341, 2347, 2351, 2357, -- 2371, 2377, 2381, 2383, 2389, 2393, 2399, 2411, 2417, 2423, 2437, 2441, 2447, 2459, -- 2467, 2473, 2477, 2503, 2521, 2531, 2539, 2543, 2549, 2551, 2557, 2579, 2591, 2593, -- 2609, 2617, 2621, 2633, 2647, 2657, 2659, 2663, 2671, 2677, 2683, 2687, 2689, 2693, -- 2699, 2707, 2711, 2713, 2719, 2729, 2731, 2741, 2749, 2753, 2767, 2777, 2789, 2791, -- 2797, 2801, 2803, 2819, 2833, 2837, 2843, 2851, 2857, 2861, 2879, 2887, 2897, 2903, -- 2909, 2917, 2927, 2939, 2953, 2957, 2963, 2969, 2971, 2999, 3001, 3011, 3019, 3023, -- 3037, 3041, 3049, 3061, 3067, 3079, 3083, 3089, 3109, 3119, 3121, 3137, 3163, 3167, -- 3169, 3181, 3187, 3191, 3203, 3209, 3217, 3221, 3229, 3251, 3253, 3257, 3259, 3271, -- 3299, 3301, 3307, 3313, 3319, 3323, 3329, 3331, 3343, 3347, 3359, 3361, 3371, 3373, -- 3389, 3391, 3407, 3413, 3433, 3449, 3457, 3461, 3463, 3467, 3469, 3491, 3499, 3511, -- 3517, 3527, 3529, 3533, 3539, 3541, 3547, 3557, 3559, 3571, 3581, 3583, 3593, 3607, table.insert(settings, { type = "int-setting", name = "spice-rack-decaying-goods-slot-count", order = "x", setting_type = "startup", default_value = 719, allowed_values = {61, 179, 359, 719, 1801, 3607} }) table.insert(settings, { type = "int-setting", name = "spice-rack-decaying-goods-interval", order = "y", setting_type = "startup", default_value = 10, minimum_value = 1, maximum_value = 60, }) data:extend(settings)
require 'config' local limit_rate = require("resty.limit.rate") local _M = {} function _M.req_rate_limiter() if enable_req_rate_limiter ~= 'on' then return end -- global 40r/s 12000r/5m local lim_global,err = limit_rate.new("limit_rate_store", 100, 12000, 4, nil, { lock_enable = true, locks_shdict_name = "my_locks", }) if not lim_global then ngx.log(ngx.ERR, "global bucket init failed: ", err) return ngx.exit(500) end -- single 10r/s 6000r/5m local lim_single,err = limit_rate.new("limit_rate_store", 200, 6000, 2, 100, { locks_shdict_name = "my_locks", }) if not lim_single then ngx.log(ngx.ERR, "single bucket init failed: ", err) return ngx.exit(500) end -- take token from global bucket local t, err = lim_global:take_available("__global__", 1) if not t then ngx.log(ngx.ERR, "failed to take global: ", err) return ngx.exit(500) end -- take token from single bucket local key = ngx.var.binary_remote_addr or "__single__" local delay, err = lim_single:take(key,1,true) -- if global and single bucket full? if t == 1 then if not delay then if err == "rejected" then ngx.exit(403) end ngx.log(ngx.ERR, "failed to take single: ", err) return ngx.exit(500) end if delay >= 0.001 then ngx.sleep(delay) end else -- global bucket full if not delay then if err == "rejected" then ngx.log(ngx.ERR, "limiter rejected: ", ngx.var.remote_addr) ngx.exit(403) end ngx.log(ngx.ERR, "failed to take single: ", err) return ngx.exit(500) end if delay >= 0.001 then ngx.log(ngx.ERR, "limiter rejected: ", ngx.var.remote_addr) return ngx.exit(403) end end end return _M
Event = mondelefant.new_class() Event.table = 'event' Event:add_reference{ mode = 'm1', to = "Issue", this_key = 'issue_id', that_key = 'id', ref = 'issue', } Event:add_reference{ mode = 'm1', to = "Initiative", this_key = 'initiative_id', that_key = 'id', ref = 'initiative', } Event:add_reference{ mode = 'm1', to = "Suggestion", this_key = 'suggestion_id', that_key = 'id', ref = 'suggestion', } Event:add_reference{ mode = 'm1', to = "Member", this_key = 'member_id', that_key = 'id', ref = 'member', } function Event.object_get:event_name() return ({ issue_state_changed = _"Issue reached next phase", initiative_created_in_new_issue = _"New issue", initiative_created_in_existing_issue = _"New initiative", initiative_revoked = _"Initiative revoked", new_draft_created = _"New initiative draft", suggestion_created = _"New suggestion" })[self.event] end function Event.object_get:state_name() return Issue:get_state_name_for_state(self.state) end function Event.object:send_notification() local members_to_notify = Member:new_selector() :join("member_to_notify", nil, "member_to_notify.id = member.id") :join("event_for_notification", nil, { "event_for_notification.recipient_id = member.id AND event_for_notification.id = ?", self.id } ) -- SAFETY FIRST, NEVER send notifications for events more then 3 days in past or future :add_where("now() - event_for_notification.occurrence BETWEEN '-3 days'::interval AND '3 days'::interval") -- do not notify a member about the events caused by the member :add_where("event_for_notification.member_id ISNULL OR event_for_notification.member_id != member.id") :add_where("member.notify_email NOTNULL") :exec() io.stderr:write("Sending notifications for event " .. self.id .. " to " .. (#members_to_notify) .. " members\n") for i, member in ipairs(members_to_notify) do local subject local body = "" locale.do_with( { lang = member.lang or config.default_lang }, function() body = body .. _("[event mail] Unit: #{name}", { name = self.issue.area.unit.name }) .. "\n" body = body .. _("[event mail] Area: #{name}", { name = self.issue.area.name }) .. "\n" body = body .. _("[event mail] Issue: ##{id}", { id = self.issue_id }) .. "\n\n" body = body .. _("[event mail] Policy: #{policy}", { policy = self.issue.policy.name }) .. "\n\n" body = body .. _("[event mail] Phase: #{phase}", { phase = self.state_name }) .. "\n\n" local url if self.initiative_id then url = request.get_absolute_baseurl() .. "initiative/show/" .. self.initiative_id .. ".html" else url = request.get_absolute_baseurl() .. "issue/show/" .. self.issue_id .. ".html" end body = body .. _("[event mail] URL: #{url}", { url = url }) .. "\n\n" local leading_initiative if self.initiative_id then local initiative = Initiative:by_id(self.initiative_id) body = body .. _("i#{id}: #{name}", { id = initiative.id, name = initiative.name }) .. "\n\n" else local initiative_count = Initiative:new_selector() :add_where{ "initiative.issue_id = ?", self.issue_id } :count() local initiatives = Initiative:new_selector() :add_where{ "initiative.issue_id = ?", self.issue_id } :add_order_by("initiative.admitted DESC NULLS LAST, initiative.rank NULLS LAST, initiative.harmonic_weight DESC NULLS LAST, id") :limit(3) :exec() for i, initiative in ipairs(initiatives) do if i == 1 then leading_initiative = initiative end body = body .. _("i#{id}: #{name}", { id = initiative.id, name = initiative.name }) .. "\n" end if initiative_count - 3 > 0 then body = body .. _("and #{count} more initiatives", { count = initiative_count - 3 }) .. "\n" end body = body .. "\n" end subject = config.mail_subject_prefix if self.event == "issue_state_changed" then subject = subject .. _("State of #{issue} changed to #{state} / #{initiative}", { issue = self.issue.name, state = Issue:get_state_name_for_state(self.state), initiative = leading_initiative.display_name }) elseif self.event == "initiative_revoked" then subject = subject .. _("Initiative revoked: #{initiative_name}", { initiative_name = self.initiative.display_name }) end local success = net.send_mail{ envelope_from = config.mail_envelope_from, from = config.mail_from, reply_to = config.mail_reply_to, to = member.notify_email, subject = subject, content_type = "text/plain; charset=UTF-8", content = body } end ) end end function Event:send_next_notification() local notification_event_sent = NotificationEventSent:new_selector() :optional_object_mode() :for_update() :exec() local last_event_id = 0 if notification_event_sent then last_event_id = notification_event_sent.event_id end local event = Event:new_selector() :add_where{ "event.id > ?", last_event_id } :add_order_by("event.id") :limit(1) :optional_object_mode() :exec() if event then if last_event_id == 0 then db:query{ "INSERT INTO notification_event_sent (event_id) VALUES (?)", event.id } else db:query{ "UPDATE notification_event_sent SET event_id = ?", event.id } end event:send_notification() if config.notification_handler_func then config.notification_handler_func(event) end return true end end
local Subscription = require("reactivex.subscription") local util = require("reactivex.util") -- @class SubjectSubscription -- @description A specialized Subscription for Subjects. **This is NOT a public class, -- it is intended for internal use only!**<br> -- A handle representing the link between an Observer and a Subject, as well as any -- work required to clean up after the Subject completes or the Observer unsubscribes. local SubjectSubscription = setmetatable({}, Subscription) SubjectSubscription.__index = SubjectSubscription SubjectSubscription.__tostring = util.constant('SubjectSubscription') --- Creates a new SubjectSubscription. -- @arg {Subject} subject - The action to run when the subscription is unsubscribed. It will only -- be run once. -- @returns {Subscription} function SubjectSubscription.create(subject, observer) local self = setmetatable(Subscription.create(), SubjectSubscription) self._subject = subject self._observer = observer return self end function SubjectSubscription:unsubscribe() if self._unsubscribed then return end self._unsubscribed = true local subject = self._subject local observers = subject.observers self._subject = nil if not observers or #observers == 0 or subject.stopped or subject._unsubscribed then return end for i = 1, #observers do if observers[i] == self._observer then table.remove(subject.observers, i) return end end end return SubjectSubscription
require('lspconfig').pylsp.setup { cmd = {"pyls"}, }
--- -- @author wesen -- @copyright 2019-2020 wesen <wesen-ac@web.de> -- @release 0.1 -- @license MIT -- local TestCase = require "wLuaUnit.TestCase" --- -- Checks that the Server works as expected. -- -- @type TestServer -- local TestServer = TestCase:extend() --- -- The require path for the class that is tested by this TestCase -- -- @tfield string testClassPath -- TestServer.testClassPath = "AC-LuaServer.Core.Server" --- -- The paths of the classes that the test class depends on -- -- @tfield table[] dependencyPaths -- TestServer.dependencyPaths = { { id = "ExtensionManager", path = "AC-LuaServer.Core.Extension.ExtensionManager" }, { id = "LuaServerApi", path = "AC-LuaServer.Core.LuaServerApi", ["type"] = "table" }, { id = "EventCallback", path = "AC-LuaServer.Core.Event.EventCallback" }, { id = "PlayerList", path = "AC-LuaServer.Core.PlayerList.PlayerList" }, { id = "GameHandler", path = "AC-LuaServer.Core.GameHandler.GameHandler" }, { id = "MapRotation", path = "AC-LuaServer.Core.MapRotation.MapRotation" }, { id = "Output", path = "AC-LuaServer.Core.Output.Output" }, { id = "VoteListener", path = "AC-LuaServer.Core.VoteListener.VoteListener" }, { id = "ServerEventManager", path = "AC-LuaServer.Core.ServerEvent.ServerEventManager" } } --- -- The ExtensionManager mock that will be injected into the test Server instance -- -- @tfield table extensionManagerMock -- TestServer.extensionManagerMock = nil --- -- The GameHandler mock that will be injected into the test Server instance -- -- @tfield table gameHandlerMock -- TestServer.gameHandlerMock = nil --- -- The MapRotation mock that will be injected into the test Server instance -- -- @tfield table mapRotationMock -- TestServer.mapRotationMock = nil --- -- The Output mock that will be injected into the test Server instance -- -- @tfield table outputMock -- TestServer.outputMock = nil --- -- The PlayerList mock that will be injected into the test Server instance -- -- @tfield table playerListMock -- TestServer.playerListMock = nil --- -- The VoteListener mock that will be injected into the test Server instance -- -- @tfield table voteListenerMock -- TestServer.voteListenerMock = nil --- -- Method that is called before a test is executed. -- Sets up the mocks. -- function TestServer:setUp() TestCase.setUp(self) self.extensionManagerMock = self:getMock( "AC-LuaServer.Core.Extension.ExtensionManager", "ExtensionManagerMock" ) self.gameHandlerMock = self:getMock( "AC-LuaServer.Core.GameHandler.GameHandler", "GameHandlerMock" ) self.mapRotationMock = self:getMock( "AC-LuaServer.Core.MapRotation.MapRotation", "MapRotationMock" ) self.outputMock = self:getMock( "AC-LuaServer.Core.Output.Output", "OutputMock" ) self.playerListMock = self:getMock( "AC-LuaServer.Core.PlayerList.PlayerList", "PlayerListMock" ) self.voteListenerMock = self:getMock( "AC-LuaServer.Core.VoteListener.VoteListener", "VoteListenerMock" ) end --- -- Method that is called after a test was executed. -- Clears the mocks. -- function TestServer:tearDown() TestCase.tearDown(self) self.extensionManagerMock = nil self.gameHandlerMock = nil self.mapRotationMock = nil self.outputMock = nil self.playerListMock = nil self.voteListenerMock = nil end --- -- Checks that the internally used Output can be configured as expected. -- function TestServer:testCanConfigureOutput() local server = self:createTestServerInstance() self.outputMock.configure :should_be_called_with( self.mach.match( { TemplateRenderer = { StringRenderer = { suffix = ".luatpl" } } } ) ) :when( function() server:configure({ Output = { TemplateRenderer = { StringRenderer = { suffix = ".luatpl" } } } }) end ) end --- -- Creates and returns a Server test instance. -- -- @treturn Server The test Server instance -- function TestServer:createTestServerInstance() local Server = self.testClass local ExtensionManagerMock = self.dependencyMocks.ExtensionManager local PlayerListMock = self.dependencyMocks.PlayerList local ServerEventManagerMock = self.dependencyMocks.ServerEventManager local serverEventManagerMock = self:getMock( "AC-LuaServer.Core.ServerEvent.ServerEventManager", "ServerEventManagerMock" ) local EventCallbackMock = self.dependencyMocks.EventCallback local eventCallbackMockA = self:getMock("AC-LuaServer.Core.Event.EventCallback", "EventCallbackMock") local server ExtensionManagerMock.__call :should_be_called_with(self.mach.match(Server, self.matchClassInstance)) :and_will_return(self.extensionManagerMock) :and_also( PlayerListMock.__call :should_be_called() :and_will_return(self.playerListMock) ) :and_also( ServerEventManagerMock.__call :should_be_called() :and_will_return(serverEventManagerMock) ) :and_also( self.dependencyMocks.GameHandler.__call :should_be_called() :and_will_return(self.gameHandlerMock) ) :and_also( self.dependencyMocks.MapRotation.__call :should_be_called() :and_will_return(self.mapRotationMock) ) :and_also( self.dependencyMocks.Output.__call :should_be_called() :and_will_return(self.outputMock) ) :and_also( self.dependencyMocks.VoteListener.__call :should_be_called() :and_will_return(self.voteListenerMock) ) :and_also( self.playerListMock.initialize :should_be_called() ) :and_also( self.gameHandlerMock.initialize :should_be_called() ) :and_also( self.voteListenerMock.initialize :should_be_called() ) :when( function() server = Server.getInstance() end ) self:assertEquals(serverEventManagerMock, server:getEventManager()) self:assertEquals(self.extensionManagerMock, server:getExtensionManager()) self:assertEquals(self.gameHandlerMock, server:getGameHandler()) self:assertEquals(self.mapRotationMock, server:getMapRotation()) self:assertEquals(self.outputMock, server:getOutput()) self:assertEquals(self.playerListMock, server:getPlayerList()) self:assertEquals(self.voteListenerMock, server:getVoteListener()) return server end --- -- Matches that an object parameter is an instance of a specific class. -- -- @treturn bool True if the actual object is an instance of the expected class, false otherwise -- function TestServer.matchClassInstance(_expected, _actual) return _actual:is(_expected) end --- -- Matches a specific event callback constructor call. -- -- The expected object must be a class, the expected methodName a string. -- This matcher function then checks that he object is an instance of the specified class and that the -- method names match. -- -- @treturn bool True if the actual value met the expectations, false otherwise -- function TestServer.matchEventCallback(_expected, _actual) return (_actual.object:is(_expected.object) and _actual.methodName == _expected.methodName) end return TestServer