--[[
-- Casino System 2020 for XenoBot made by Batraw --
This is a PRO SCRIPT, use it as a PRO.
How position works:
TEST = {1,3} This coordinates are for X and Y. In this example X = 1 and Y = 3, that means 1 sqm for east and 3 sqm south.
TEST2 = {-3,-1} In this example X = -3 and Y = -1, that means 3 sqm for west and 1 sqm north.
Scripter: Batraw
Skype: batraw25
Contact me speaking one of these languages please:
Arabic
English
Portuguese
Spanish
]]--
-------------- [ CASINO ADMIN CONFIG ] -------------
casino_admin = "Money" -- Your main character nickname
Casino_Name = "Money" -- Bot character nickname
-------------- [ SYSTEM CONFIG ] -------------
PING_HELPER = 400 -- If your casino is not picking the money, try other values from 100 to 1000
MONEY_ID = 3043 -- ID for Crystal Coin = 3043 -- if yout want to use other item as money, change MONEY_ID!
HOUSE_OR_DEPOT = "DEPOT" -- Use HOUSE for house and DEPOT for depot
-- CONFIG FOR DP ( IF YOU ARE USING ON DEPOT )
local IDDepot = 22797 -- Id of Depot Container -- 22797 is the id of first depot
MAINBP_OR_DEPOT = "DEPOT" -- Where is is the bps located? MAINBP or DEPOT?
MAIN_BACKPACK = "Backpack" -- Name of MainBP
DEPOT_NAME = "Depot Box I" -- Name of Depot Container
-- CONFIG FOR HOUSE (IF YOU ARE USING ON HOUSE )
LOCKER_NAME = "treasure chest" -- "Depot" name inside house
LOCKER_POS = {-1,0} -- "Depot" position inside house
-- CONFIG FOR POSITIONS
NO_LOOK = "NORTH" -- Which direction to look if no one is on spot
YES_LOOK = "EAST" -- Which direction to look if someone is playing
PLAYER_POS = {2,0} -- Player position
PAY_POS = {2,1} -- Withdraw position
DICE_POS = {0,1} -- Your dice position
CASH_POS = {1,1} -- Pickup money position
-------------- [ BACKPACK CONFIG ] -------------
BetCashBP = "Purple Backpack"
MoneyBP = "Orange Backpack"
-- trashBP = "Buggy Backpack" NOT NEEDED
-- VipBootsBP = "Gold Pouch" ONLY ON PREMIUM VERSION - skype: batraw25
-- ItemsBP = "Zaoan Chess Box" ONLY ON PREMIUM VERSION - skype: batraw25
-------------- [ PAYOUT CONFIG ] -------------
payo = 0.9 -- This payout is for all games 1 == 100% , 0.9 == 90%
-------------- [ H/L CONFIG ] -------------
Bet =
{
Value = 0,
min = 5,
max = 5000,
}
-------------- [ ODD/EVEN CONFIG ] -------------
oddeActive = false -- false = Odd/Even off
odde =
{
min = 5, -- MIN Odd/Even
max = 500, -- MAX Odd/Even
}
-------------- [ 2x2 CONFIG ] -------------
-- ONLY ON PREMIUM VERSION - skype: batraw25
-------------- [ 3x3 CONFIG ] -------------
-- ONLY ON PREMIUM VERSION - skype: batraw25
-------------- [ 4x4 CONFIG ] -------------
-- ONLY ON PREMIUM VERSION - skype: batraw25
-------------- [ 5x5 CONFIG ] -------------
-- ONLY ON PREMIUM VERSION - skype: batraw25
-------------- [ 6x6 CONFIG ] -------------
-- ONLY ON PREMIUM VERSION - skype: batraw25
-------------- [ BLACKJACK CONFIG ] -------------
-- ONLY ON PREMIUM VERSION - skype: batraw25
-------------- [ MESSAGE CONFIG ] -------------
yellActive = true
announcement_message = "" -- Call Players Message each 8 seconds
info = "" -- PAYMENT - 90% | MIN = 50k | MAX = 5kk
min = "" -- 50k
max = "" -- 5kk
games = "[GAMES]:PAYMENT - 90% | MIN = 50k | MAX = 5kk\n" -- GAMES MSG
_Announce_Message = "PAYMENT - 90% | MIN = 50k | MAX = 5kk" -- YELL MESSAGE
-------------- [ DICE IDS ] -------------
items = {
5792,
5793,
5794,
5795,
5796,
5797
}
-------------- [ ITEMS CONFIG ] -------------
-- ONLY ON PREMIUM VERSION - skype: batraw25
-------------- [ CODE ] -------------
-- Don't edit anything here --
cashposx = Self.Position().x + CASH_POS[1] -- Cash Position X
cashposy = Self.Position().y + CASH_POS[2] -- Cash Position Y
cashposz = Self.Position().z -- Cash Position Z
batrawActive = true
Players = {}
Rolls = {}
cc = MONEY_ID
Balance = 0
Gambler_Name = ""
money = Self.ItemCount(cc)
cash = Self.ItemCount(cc)
-- Don't edit anything here --
AntiSpamTimer = os.clock()
function AntiSpam(message, type)
if os.difftime(os.clock(), AntiSpamTimer) >= 1.5 then
Self.Speak(message, type)
AntiSpamTimer = os.clock()
end
end
function onClose(channel, msg)
print("Batraw chat closed ...")
end
channel = Channel.New('Batraw log', onSpeak, onClose)
Module.New('Casino_Turn', function(Mod)
if batrawActive then
Casino_Loaded = true
if (Casino_Loaded) then
Player_Detected = false
for name, creature in Creature.iPlayers(2) do
if (creature:Position().x == Self.Position().x+PLAYER_POS[1] and creature:Position().y == Self.Position().y+PLAYER_POS[2] and creature:Position().z == Self.Position().z) then
Player_Detected = true
if Gambler_Name ~= creature:Name() and not table.contains(Players, Gambler_Name) then
table.insert(Players, Gambler_Name)
for i = 1, #Players do
end
end
Gambler_Name = creature:Name()
if (Player_Detected) then
if (Self.LookDirection() ~= YES_LOOK) then
Self.Turn(YES_LOOK)
end
end
break
end
end
end
end
Mod:Delay(700)
end)
Module.New('Player Look South', function(Mod)
if not Player_Detected then
if (Self.LookDirection() ~= NO_LOOK) then
Self.Turn(NO_LOOK)
end
Gambler_Name = ""
end
Mod:Delay(400)
end)
Module.New("timerInstrmento", function(module)
if not Player_Detected and batrawActive then
Self.UseItemFromEquipment("head")
end
module:Delay(500)
end)
Module.New('Get player arounderer', function(mod)
if not Player_Detected then
Self.Yell(_Announce_Message)
end
mod:Delay(20000)
end)
EffectMessageProxy.OnReceive("DiceSignal", function(proxy, message, x, y, z)
if Self.Name() == Casino_Name then
roll = string.match(message, ".-$")
rolled = roll:match('%d+')
if rolled ~= nil then
vrum = Casino_Name .. " rolled a " .. rolled .. "."
if roll == vrum then
dice = Signal.New('Dice')
dice:Send(rolled)
end
end
end
end)
Module.New('MessagesBroadcast', function(mod)
if batrawActive then
if not Player_Detected then
AntiSpam(announcement_message, SPEAK_SAY)
end
end
mod:Delay(8000)
end)
function CasinoRoll()
if table.contains(items, Map.GetTopMoveItem(Self.Position().x+DICE_POS[1],Self.Position().y+DICE_POS[2], Self.Position().z).id) then
Self.UseItemFromGround(Self.Position().x+DICE_POS[1], Self.Position().y+DICE_POS[2], Self.Position().z)
jamelao = 1
else
AntiSpam("Trying to bug me, eh?!")
end
end
LocalSpeechProxy.OnReceive('Balance', function(proxy, mtype, speaker, level, text)
if batrawActive then
if speaker == Gambler_Name and text:lower() == 'balance' then
AntiSpam("Balance: " .. Balance * 0.01 .. " kk", SPEAK_SAY)
end
end
end)
Module.New('Check-Bet', function(mod)
if batrawActive then
BetBP = Container.New(BetCashBP)
CashBP = Container.New(MoneyBP)
if (Map.GetTopMoveItem(cashposx, cashposy, cashposz).id == cc and not withdraw and not Casher) then
Casher = true
d = (Map.GetTopMoveItem(cashposx, cashposy, cashposz)).count
Map.PickupItem(cashposx, cashposy, cashposz, BetBP:Index(), 0)
wait(PING_HELPER)
print(BetBP:CountItemsOfID(cc))
Bet.Value = BetBP:CountItemsOfID(cc)
Balance = Balance + Bet.Value
repeat
BetBP:MoveItemToContainer(0, CashBP:Index(), 0)
until
BetBP:CountItemsOfID(cc) == 0
AntiSpam("Balance: " .. Balance * 0.01 .. "kk", SPEAK_SAY)
channel:SendOrangeMessage('Batraw log', 'Bot added ' .. Bet.Value *10 .. 'k on ' .. Gambler_Name .. '\'s balance and its ' .. Balance *10 .. 'k.')
print('Bet Value is ' .. Bet.Value * 10 .. " " .. Gambler_Name .. " balance is " .. Balance * 10)
wait(PING_HELPER)
Casher = false
Bet.Value = 0
end
end
end)
player = true
idleTime = 0
Module.New("timer", function(module)
if not Player_Detected then
idleTime = 0
else
idleTime = idleTime + 1
end
if idleTime > 1.5 and Player_Detected then
player = true
idleTime = 0
end
module:Delay(500)
end)
numberOfBackpacks = 3
function StartOnHouse()
Self.UseItemFromGround(Self.Position().x+LOCKER_POS[1], Self.Position().y+LOCKER_POS[2], Self.Position().z)
wait(2000)
Container.GetByName(LOCKER_NAME):OpenChildren({BetCashBP, true})
wait(2000)
Container.GetByName(LOCKER_NAME):OpenChildren({MoneyBP, true})
wait(2000)
end
Module('OpenBackpacks', function(mod)
if #Container.GetAll() < numberOfBackpacks then
batrawActive = false
if HOUSE_OR_DEPOT == "HOUSE" then
StartOnHouse()
batrawActive = true
elseif HOUSE_OR_DEPOT == "DEPOT" then
if MAINBP_OR_DEPOT == "DEPOT" then
Self.CloseContainers()
local Depot = Self.OpenDepot()
for i = 0, Depot:ItemCount()-1 do
if (Depot:GetItemData(i).id == IDDepot) then
Depot:UseItem(i, true)
wait(2000)
Container.GetByName(DEPOT_NAME):OpenChildren({BetCashBP, true})
wait(2000)
Container.GetByName(DEPOT_NAME):OpenChildren({MoneyBP, true})
batrawActive = true
break;
end
end
elseif MAINBP_OR_DEPOT == "MAINBP" then
Self.CloseContainers()
Self.OpenMainBackpack()
wait(2000)
Container.GetByName(MAIN_BACKPACK):OpenChildren({MoneyBP, true})
wait(2000)
Container.GetByName(MAIN_BACKPACK):OpenChildren({BetCashBP, true})
batrawActive = true
end
end
end
end)
loadstring("\9\76\111\99\97\108\83\112\101\101\99\104\80\114\111\120\121\46\79\110\82\101\99\101\105\118\101\40\39\98\101\116\39\44\32\102\117\110\99\116\105\111\110\40\112\114\111\120\121\44\32\109\116\121\112\101\44\32\115\112\101\97\107\101\114\44\32\108\101\118\101\108\44\32\116\101\120\116\41\10\105\102\32\112\108\97\121\101\114\32\116\104\101\110\10\9\67\121\102\114\97\32\61\32\116\101\120\116\58\109\97\116\99\104\40\39\37\100\43\39\41\10\9\76\105\116\101\114\97\32\61\32\116\101\120\116\58\109\97\116\99\104\40\39\37\97\43\39\41\10\9\105\102\32\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\67\121\102\114\97\32\126\61\32\110\105\108\32\97\110\100\32\76\105\116\101\114\97\32\126\61\32\34\34\32\116\104\101\110\10\9\9\67\121\102\114\97\49\32\61\32\116\111\110\117\109\98\101\114\40\67\121\102\114\97\41\32\43\32\48\10\9\9\105\102\32\116\97\98\108\101\46\105\115\83\116\114\73\110\40\123\39\108\39\44\32\39\104\39\125\44\32\76\105\116\101\114\97\41\32\97\110\100\32\67\121\102\114\97\32\126\61\32\110\105\108\32\116\104\101\110\10\9\9\9\105\102\32\67\121\102\114\97\49\32\62\61\32\66\101\116\46\109\105\110\32\42\32\49\32\97\110\100\32\67\121\102\114\97\49\32\60\61\32\66\101\116\46\109\97\120\32\42\32\49\32\97\110\100\32\66\97\108\97\110\99\101\32\62\61\32\67\121\102\114\97\49\32\47\32\49\32\97\110\100\32\76\105\116\101\114\97\32\61\61\32\34\108\34\32\111\114\32\76\105\116\101\114\97\32\61\61\32\34\104\34\32\97\110\100\32\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\116\104\101\110\10\9\9\9\9\86\97\108\105\100\66\101\116\32\61\32\116\114\117\101\10\9\9\9\9\112\108\97\121\101\114\66\101\116\32\61\32\67\121\102\114\97\49\10\9\9\9\9\112\108\97\121\101\114\84\121\112\101\32\61\32\76\105\116\101\114\97\10\9\9\9\9\112\114\105\110\116\40\39\118\97\108\105\100\32\39\32\46\46\32\112\108\97\121\101\114\66\101\116\32\46\46\32\39\118\97\108\105\100\32\39\32\46\46\32\112\108\97\121\101\114\84\121\112\101\41\10\9\9\9\9\67\121\102\114\97\49\32\61\32\110\105\108\10\9\9\9\9\76\105\116\101\114\97\32\61\32\110\105\108\10\9\9\9\101\108\115\101\10\9\9\9\9\86\97\108\105\100\66\101\116\32\61\32\102\97\108\115\101\10\9\9\9\101\110\100\10\9\9\101\108\115\101\10\9\9\9\86\97\108\105\100\66\101\116\32\61\32\102\97\108\115\101\10\9\9\101\110\100\10\9\101\110\100\10\10\9\105\102\32\67\121\102\114\97\32\61\61\32\110\105\108\32\111\114\32\67\121\102\114\97\32\61\61\32\48\32\97\110\100\32\76\105\116\101\114\97\32\61\61\32\34\34\32\116\104\101\110\10\9\9\86\97\108\105\100\66\101\116\32\61\32\102\97\108\115\101\10\9\101\110\100\10\101\110\100\10\101\110\100\41\10\10\10\76\111\99\97\108\83\112\101\101\99\104\80\114\111\120\121\46\79\110\82\101\99\101\105\118\101\40\39\66\97\108\97\110\99\101\82\111\108\108\115\39\44\32\102\117\110\99\116\105\111\110\40\112\114\111\120\121\44\32\109\116\121\112\101\44\32\115\112\101\97\107\101\114\44\32\108\101\118\101\108\44\32\116\101\120\116\41\10\105\102\32\98\97\116\114\97\119\65\99\116\105\118\101\32\116\104\101\110\10\9\105\102\32\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\86\97\108\105\100\66\101\116\32\97\110\100\32\110\111\116\32\67\97\115\104\101\114\32\116\104\101\110\10\9\9\105\102\32\112\108\97\121\101\114\84\121\112\101\58\108\111\119\101\114\40\41\32\61\61\32\39\104\39\32\97\110\100\32\112\108\97\121\101\114\66\101\116\32\47\32\49\32\32\62\61\32\66\101\116\46\109\105\110\32\97\110\100\32\112\108\97\121\101\114\66\101\116\32\47\32\49\32\60\61\32\66\101\116\46\109\97\120\32\97\110\100\32\66\97\108\97\110\99\101\32\126\61\32\48\32\97\110\100\32\112\108\97\121\101\114\66\101\116\32\47\32\49\32\60\61\32\66\97\108\97\110\99\101\32\97\110\100\32\86\97\108\105\100\66\101\116\32\61\61\32\116\114\117\101\32\97\110\100\32\110\111\116\32\66\101\116\116\32\97\110\100\32\110\111\116\32\119\105\116\104\100\114\97\119\116\104\101\110\32\97\110\100\32\112\108\97\121\101\114\32\116\104\101\110\10\9\9\9\9\112\108\97\121\101\114\32\61\32\102\97\108\115\101\10\9\9\9\9\66\101\116\116\32\61\32\116\114\117\101\10\9\9\9\9\67\97\115\105\110\111\82\111\108\108\40\41\10\9\9\9\9\83\105\103\110\97\108\46\79\110\82\101\99\101\105\118\101\40\39\68\105\99\101\39\44\32\102\117\110\99\116\105\111\110\40\115\105\103\110\97\108\44\32\100\97\116\97\41\10\9\9\9\105\102\32\40\100\97\116\97\32\61\61\32\34\52\34\32\111\114\32\100\97\116\97\32\61\61\32\34\53\34\32\111\114\32\100\97\116\97\32\61\61\32\34\54\34\41\32\97\110\100\32\112\108\97\121\101\114\84\121\112\101\58\108\111\119\101\114\40\41\32\61\61\32\39\104\39\32\97\110\100\32\112\108\97\121\101\114\66\101\116\32\47\32\49\32\62\61\32\66\101\116\46\109\105\110\32\97\110\100\32\110\111\116\32\119\105\116\104\100\114\97\119\32\116\104\101\110\10\9\9\9\9\10\9\9\9\9\66\97\108\97\110\99\101\32\61\32\109\97\116\104\46\102\108\111\111\114\40\66\97\108\97\110\99\101\32\43\32\40\40\112\108\97\121\101\114\66\101\116\41\32\42\32\112\97\121\111\41\41\10\9\9\9\9\65\110\116\105\83\112\97\109\40\34\34\32\46\46\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\32\79\112\116\105\111\110\58\32\34\32\46\46\32\116\101\120\116\58\108\111\119\101\114\40\41\32\46\46\32\34\92\110\68\105\99\101\58\32\91\34\32\46\46\32\100\97\116\97\32\46\46\32\34\93\92\110\32\36\36\32\87\105\110\32\91\43\32\34\32\46\46\32\40\112\108\97\121\101\114\66\101\116\32\42\32\112\97\121\111\41\42\48\46\48\49\32\46\46\32\34\32\107\107\93\32\36\36\92\110\66\97\108\97\110\99\101\58\32\34\32\46\46\32\66\97\108\97\110\99\101\32\42\32\48\46\48\49\32\46\46\32\34\32\107\107\92\110\34\41\10\9\9\9\9\99\104\97\110\110\101\108\58\83\101\110\100\89\101\108\108\111\119\77\101\115\115\97\103\101\40\34\66\97\116\114\97\119\32\108\111\103\34\44\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\58\32\34\32\46\46\32\112\108\97\121\101\114\84\121\112\101\32\46\46\32\34\32\46\32\66\101\116\58\32\34\32\46\46\32\112\108\97\121\101\114\66\101\116\32\46\46\32\34\32\87\111\110\58\34\32\46\46\32\112\108\97\121\101\114\66\101\116\32\46\46\32\34\32\66\97\108\97\110\99\101\32\61\32\34\32\46\46\32\66\97\108\97\110\99\101\32\42\32\49\41\10\9\9\9\9\112\114\105\110\116\40\39\119\111\110\39\41\10\9\9\9\9\66\101\116\116\32\61\32\102\97\108\115\101\10\9\9\9\101\108\115\101\10\9\9\9\9\83\101\108\102\46\83\97\121\40\34\69\120\117\114\97\32\73\99\111\34\41\10\9\9\9\9\66\97\108\97\110\99\101\32\61\32\109\97\116\104\46\102\108\111\111\114\40\66\97\108\97\110\99\101\32\45\32\112\108\97\121\101\114\66\101\116\32\47\32\49\41\10\9\9\9\9\65\110\116\105\83\112\97\109\40\34\34\32\46\46\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\32\79\112\116\105\111\110\58\32\34\32\46\46\32\116\101\120\116\58\108\111\119\101\114\40\41\32\46\46\32\34\92\110\68\105\99\101\58\32\91\34\32\46\46\32\100\97\116\97\32\46\46\32\34\93\92\110\32\35\76\111\111\115\101\32\91\45\32\34\32\46\46\32\112\108\97\121\101\114\66\101\116\42\48\46\48\49\32\46\46\32\34\32\107\107\93\92\110\66\97\108\97\110\99\101\58\32\34\32\46\46\32\66\97\108\97\110\99\101\32\42\32\48\46\48\49\32\46\46\32\34\32\107\107\93\34\41\10\9\9\9\9\112\114\105\110\116\40\34\108\111\115\116\34\41\10\9\9\9\9\66\101\116\116\32\61\32\102\97\108\115\101\10\9\9\9\101\110\100\10\9\9\9\101\110\100\41\10\9\9\9\10\9\101\108\115\101\105\102\32\112\108\97\121\101\114\84\121\112\101\58\108\111\119\101\114\40\41\32\61\61\32\39\108\39\32\97\110\100\32\112\108\97\121\101\114\66\101\116\32\62\61\32\66\101\116\46\109\105\110\32\97\110\100\32\32\112\108\97\121\101\114\66\101\116\32\47\32\49\32\60\61\32\66\101\116\46\109\97\120\32\32\97\110\100\32\112\108\97\121\101\114\66\101\116\32\47\32\49\32\60\61\32\66\97\108\97\110\99\101\32\97\110\100\32\66\97\108\97\110\99\101\32\126\61\32\48\32\97\110\100\32\86\97\108\105\100\66\101\116\32\61\61\32\116\114\117\101\32\97\110\100\32\110\111\116\32\66\101\116\116\32\97\110\100\32\110\111\116\32\119\105\116\104\100\114\97\119\32\97\110\100\32\112\108\97\121\101\114\32\116\104\101\110\10\9\9\9\112\108\97\121\101\114\32\61\32\102\97\108\115\101\10\9\9\9\66\101\116\116\32\61\32\116\114\117\101\10\9\9\9\67\97\115\105\110\111\82\111\108\108\40\41\10\9\9\9\83\105\103\110\97\108\46\79\110\82\101\99\101\105\118\101\40\39\68\105\99\101\39\44\32\102\117\110\99\116\105\111\110\40\115\105\103\110\97\108\44\32\100\97\116\97\41\10\9\9\105\102\32\40\100\97\116\97\32\61\61\32\34\49\34\32\111\114\32\100\97\116\97\32\61\61\32\34\50\34\32\111\114\32\100\97\116\97\32\61\61\32\34\51\34\41\32\97\110\100\32\112\108\97\121\101\114\84\121\112\101\58\108\111\119\101\114\40\41\32\61\61\32\39\108\39\32\97\110\100\32\112\108\97\121\101\114\66\101\116\32\47\32\49\32\62\61\32\66\101\116\46\109\105\110\32\97\110\100\32\110\111\116\32\119\105\116\104\100\114\97\119\32\116\104\101\110\10\9\9\9\10\9\9\9\66\97\108\97\110\99\101\32\61\32\109\97\116\104\46\102\108\111\111\114\40\66\97\108\97\110\99\101\32\43\32\40\40\112\108\97\121\101\114\66\101\116\41\42\112\97\121\111\41\41\10\9\9\9\65\110\116\105\83\112\97\109\40\34\34\32\46\46\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\32\79\112\116\105\111\110\58\32\34\32\46\46\32\116\101\120\116\58\108\111\119\101\114\40\41\32\46\46\32\34\92\110\68\105\99\101\58\32\91\34\32\46\46\32\100\97\116\97\32\46\46\32\34\93\92\110\32\36\36\32\87\105\110\32\91\43\32\34\32\46\46\32\40\112\108\97\121\101\114\66\101\116\32\42\32\112\97\121\111\41\42\48\46\48\49\32\32\46\46\32\34\32\107\107\93\32\36\36\92\110\66\97\108\97\110\99\101\58\32\34\32\46\46\32\66\97\108\97\110\99\101\32\42\32\48\46\48\49\32\46\46\32\34\32\107\107\92\110\34\41\10\9\9\9\66\101\116\116\32\61\32\102\97\108\115\101\10\9\9\9\112\114\105\110\116\40\39\119\111\110\39\41\10\9\9\101\108\115\101\10\9\9\9\83\101\108\102\46\83\97\121\40\34\69\120\117\114\97\32\73\99\111\34\41\10\9\9\9\66\97\108\97\110\99\101\32\61\109\97\116\104\46\102\108\111\111\114\40\66\97\108\97\110\99\101\32\45\32\112\108\97\121\101\114\66\101\116\32\47\32\49\41\10\9\9\9\65\110\116\105\83\112\97\109\40\34\34\32\46\46\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\32\79\112\116\105\111\110\58\32\34\32\46\46\32\116\101\120\116\58\108\111\119\101\114\40\41\32\46\46\32\34\92\110\68\105\99\101\58\32\91\34\32\46\46\32\100\97\116\97\32\46\46\32\34\93\92\110\32\35\76\111\111\115\101\32\91\45\32\34\32\46\46\32\112\108\97\121\101\114\66\101\116\42\48\46\48\49\32\46\46\32\34\32\107\107\93\92\110\66\97\108\97\110\99\101\58\32\34\32\46\46\32\66\97\108\97\110\99\101\32\42\32\48\46\48\49\32\46\46\32\34\32\107\107\93\34\41\10\9\9\9\112\114\105\110\116\40\34\108\111\115\116\34\41\10\9\9\9\66\101\116\116\32\61\32\102\97\108\115\101\10\9\9\101\110\100\10\9\9\101\110\100\41\32\32\32\32\10\9\9\101\110\100\10\9\101\110\100\10\101\110\100\10\101\110\100\41\10\10\10\10\76\111\99\97\108\83\112\101\101\99\104\80\114\111\120\121\46\79\110\82\101\99\101\105\118\101\40\39\72\32\103\97\109\101\39\44\32\102\117\110\99\116\105\111\110\40\112\114\111\120\121\44\32\109\116\121\112\101\44\32\115\112\101\97\107\101\114\44\32\108\101\118\101\108\44\32\116\101\120\116\41\9\10\105\102\32\98\97\116\114\97\119\65\99\116\105\118\101\32\116\104\101\110\10\9\105\102\32\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\104\39\32\97\110\100\32\66\97\108\97\110\99\101\32\62\61\32\66\101\116\46\109\105\110\32\97\110\100\32\66\97\108\97\110\99\101\32\60\61\32\66\101\116\46\109\97\120\32\97\110\100\32\110\111\116\32\66\101\116\116\32\97\110\100\32\110\111\116\32\119\105\116\104\100\114\97\119\32\97\110\100\32\112\108\97\121\101\114\32\116\104\101\110\10\9\9\9\112\108\97\121\101\114\32\61\32\102\97\108\115\101\10\9\9\9\66\101\116\116\32\61\32\116\114\117\101\10\9\9\9\67\97\115\105\110\111\82\111\108\108\40\41\10\9\9\9\83\105\103\110\97\108\46\79\110\82\101\99\101\105\118\101\40\39\68\105\99\101\39\44\32\102\117\110\99\116\105\111\110\40\115\105\103\110\97\108\44\32\100\97\116\97\41\10\9\9\105\102\32\40\100\97\116\97\32\61\61\32\34\52\34\32\111\114\32\100\97\116\97\32\61\61\32\34\53\34\32\111\114\32\100\97\116\97\32\61\61\32\34\54\34\41\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\104\39\32\32\32\116\104\101\110\10\9\9\9\10\9\9\9\65\110\116\105\83\112\97\109\40\34\34\32\46\46\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\32\79\112\116\105\111\110\58\32\34\32\46\46\32\116\101\120\116\58\108\111\119\101\114\40\41\32\46\46\32\34\92\110\68\105\99\101\58\32\91\34\32\46\46\32\100\97\116\97\32\46\46\32\34\93\92\110\36\36\32\87\105\110\32\91\43\32\34\32\46\46\32\40\66\97\108\97\110\99\101\32\42\32\112\97\121\111\41\42\48\46\48\49\32\46\46\32\34\32\107\107\93\32\36\36\92\110\66\97\108\97\110\99\101\58\32\34\32\46\46\32\40\66\97\108\97\110\99\101\32\43\32\40\66\97\108\97\110\99\101\32\42\32\112\97\121\111\41\41\32\42\32\48\46\48\49\32\46\46\32\34\32\107\107\34\41\10\9\9\9\66\97\108\97\110\99\101\32\61\32\109\97\116\104\46\102\108\111\111\114\40\66\97\108\97\110\99\101\32\43\32\40\66\97\108\97\110\99\101\32\42\32\112\97\121\111\41\41\10\9\9\9\66\101\116\116\32\61\32\102\97\108\115\101\10\9\9\9\112\114\105\110\116\40\39\119\111\110\39\41\10\9\9\101\108\115\101\10\9\9\9\83\101\108\102\46\83\97\121\40\34\69\120\117\114\97\32\73\99\111\34\41\10\9\9\9\66\101\116\116\32\61\32\116\114\117\101\10\9\9\9\99\97\115\104\32\61\32\109\111\110\101\121\32\43\32\66\97\108\97\110\99\101\10\9\9\9\65\110\116\105\83\112\97\109\40\34\34\32\46\46\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\32\79\112\116\105\111\110\58\32\34\32\46\46\32\116\101\120\116\58\108\111\119\101\114\40\41\32\46\46\32\34\92\110\68\105\99\101\58\32\91\34\32\46\46\32\100\97\116\97\32\46\46\32\34\93\92\110\35\76\111\111\115\101\32\91\45\32\34\32\46\46\32\66\97\108\97\110\99\101\32\42\32\48\46\48\49\32\32\46\46\32\34\32\107\107\93\92\110\66\97\108\97\110\99\101\58\32\48\32\107\107\92\110\34\41\10\9\9\9\66\97\108\97\110\99\101\32\61\32\48\10\9\9\9\99\104\97\110\110\101\108\58\83\101\110\100\79\114\97\110\103\101\77\101\115\115\97\103\101\40\39\66\97\116\114\97\119\32\108\111\103\39\44\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\58\32\34\32\46\46\32\116\101\120\116\58\117\112\112\101\114\40\41\32\46\46\32\39\32\46\32\66\101\116\58\32\39\32\46\46\32\66\97\108\97\110\99\101\32\42\32\49\48\32\46\46\32\39\32\76\111\115\116\58\39\32\46\46\32\40\66\97\108\97\110\99\101\32\42\32\112\97\121\111\41\42\49\48\32\32\46\46\32\39\32\66\97\108\97\110\99\101\32\61\32\48\39\32\41\10\9\9\9\112\114\105\110\116\40\34\108\111\115\116\34\41\10\9\9\9\66\101\116\116\32\61\32\102\97\108\115\101\10\9\9\101\110\100\10\9\9\101\110\100\41\10\9\101\110\100\10\101\110\100\10\101\110\100\41\10\10\76\111\99\97\108\83\112\101\101\99\104\80\114\111\120\121\46\79\110\82\101\99\101\105\118\101\40\39\72\32\77\65\88\32\103\97\109\101\39\44\32\102\117\110\99\116\105\111\110\40\112\114\111\120\121\44\32\109\116\121\112\101\44\32\115\112\101\97\107\101\114\44\32\108\101\118\101\108\44\32\116\101\120\116\41\9\10\105\102\32\98\97\116\114\97\119\65\99\116\105\118\101\32\116\104\101\110\10\9\105\102\32\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\104\39\32\97\110\100\32\66\97\108\97\110\99\101\32\62\61\32\66\101\116\46\109\105\110\32\97\110\100\32\66\97\108\97\110\99\101\32\62\32\66\101\116\46\109\97\120\32\97\110\100\32\110\111\116\32\66\101\116\116\32\97\110\100\32\110\111\116\32\119\105\116\104\100\114\97\119\32\97\110\100\32\112\108\97\121\101\114\32\116\104\101\110\10\9\9\9\112\108\97\121\101\114\32\61\32\102\97\108\115\101\10\9\9\9\66\101\116\116\32\61\32\116\114\117\101\10\9\9\9\67\97\115\105\110\111\82\111\108\108\40\41\10\9\9\9\83\105\103\110\97\108\46\79\110\82\101\99\101\105\118\101\40\39\68\105\99\101\39\44\32\102\117\110\99\116\105\111\110\40\115\105\103\110\97\108\44\32\100\97\116\97\41\10\9\9\105\102\32\40\100\97\116\97\32\61\61\32\34\52\34\32\111\114\32\100\97\116\97\32\61\61\32\34\53\34\32\111\114\32\100\97\116\97\32\61\61\32\34\54\34\41\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\104\39\32\32\32\116\104\101\110\10\9\9\9\10\9\9\9\66\97\108\97\110\99\101\32\61\32\109\97\116\104\46\102\108\111\111\114\40\66\97\108\97\110\99\101\32\43\32\40\66\101\116\46\109\97\120\32\42\32\112\97\121\111\41\41\10\9\9\9\65\110\116\105\83\112\97\109\40\34\34\32\46\46\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\32\79\112\116\105\111\110\58\32\34\32\46\46\32\116\101\120\116\58\108\111\119\101\114\40\41\32\46\46\32\34\92\110\68\105\99\101\58\32\91\34\32\46\46\32\100\97\116\97\32\46\46\32\34\93\92\110\36\36\32\87\105\110\32\91\43\32\34\32\46\46\32\40\66\101\116\46\109\97\120\32\42\32\112\97\121\111\41\42\48\46\48\49\32\46\46\32\34\32\107\107\93\32\36\36\92\110\66\97\108\97\110\99\101\58\32\34\32\46\46\32\66\97\108\97\110\99\101\47\49\48\48\32\46\46\32\34\32\107\107\34\41\10\9\9\9\66\101\116\116\32\61\32\102\97\108\115\101\10\9\9\9\112\114\105\110\116\40\39\119\111\110\39\41\10\9\9\101\108\115\101\10\9\9\9\83\101\108\102\46\83\97\121\40\34\69\120\117\114\97\32\73\99\111\34\41\10\9\9\9\66\101\116\116\32\61\32\116\114\117\101\10\9\9\9\99\97\115\104\32\61\32\109\111\110\101\121\32\43\32\66\97\108\97\110\99\101\10\9\9\9\66\97\108\97\110\99\101\32\61\32\66\97\108\97\110\99\101\32\45\32\66\101\116\46\109\97\120\10\9\9\9\65\110\116\105\83\112\97\109\40\34\34\32\46\46\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\32\79\112\116\105\111\110\58\32\34\32\46\46\32\116\101\120\116\58\108\111\119\101\114\40\41\32\46\46\32\34\92\110\68\105\99\101\58\32\91\34\32\46\46\32\100\97\116\97\32\46\46\32\34\93\92\110\35\76\111\111\115\101\32\91\45\32\34\32\46\46\32\66\101\116\46\109\97\120\32\42\32\48\46\48\49\32\32\46\46\32\34\32\107\107\93\92\110\66\97\108\97\110\99\101\58\32\34\32\46\46\32\66\97\108\97\110\99\101\47\49\48\48\32\46\46\32\34\32\107\107\92\110\34\41\10\9\9\9\99\104\97\110\110\101\108\58\83\101\110\100\79\114\97\110\103\101\77\101\115\115\97\103\101\40\39\66\97\116\114\97\119\32\108\111\103\39\44\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\58\32\34\32\46\46\32\116\101\120\116\58\117\112\112\101\114\40\41\32\46\46\32\39\32\46\32\66\101\116\58\32\39\32\46\46\32\66\97\108\97\110\99\101\32\42\32\49\48\32\46\46\32\39\32\76\111\115\116\58\39\32\46\46\32\40\66\97\108\97\110\99\101\32\42\32\112\97\121\111\41\42\49\48\32\32\46\46\32\39\32\66\97\108\97\110\99\101\32\61\32\48\39\32\41\10\9\9\9\112\114\105\110\116\40\34\108\111\115\116\34\41\10\9\9\9\66\101\116\116\32\61\32\102\97\108\115\101\10\9\9\101\110\100\10\9\9\101\110\100\41\10\9\101\110\100\10\101\110\100\10\101\110\100\41\10\9\9\10\76\111\99\97\108\83\112\101\101\99\104\80\114\111\120\121\46\79\110\82\101\99\101\105\118\101\40\39\76\32\103\97\109\101\39\44\32\102\117\110\99\116\105\111\110\40\112\114\111\120\121\44\32\109\116\121\112\101\44\32\115\112\101\97\107\101\114\44\32\108\101\118\101\108\44\32\116\101\120\116\41\9\10\105\102\32\98\97\116\114\97\119\65\99\116\105\118\101\32\116\104\101\110\10\9\105\102\32\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\108\39\32\97\110\100\32\66\97\108\97\110\99\101\32\62\61\32\66\101\116\46\109\105\110\32\97\110\100\32\66\97\108\97\110\99\101\32\60\61\32\66\101\116\46\109\97\120\32\97\110\100\32\110\111\116\32\66\101\116\116\32\97\110\100\32\110\111\116\32\119\105\116\104\100\114\97\119\32\97\110\100\32\112\108\97\121\101\114\32\116\104\101\110\10\9\9\9\112\108\97\121\101\114\32\61\32\102\97\108\115\101\10\9\9\9\66\101\116\116\32\61\32\116\114\117\101\10\9\9\9\67\97\115\105\110\111\82\111\108\108\40\41\10\9\9\9\83\105\103\110\97\108\46\79\110\82\101\99\101\105\118\101\40\39\68\105\99\101\39\44\32\102\117\110\99\116\105\111\110\40\115\105\103\110\97\108\44\32\100\97\116\97\41\10\9\9\105\102\32\40\100\97\116\97\32\61\61\32\34\49\34\32\111\114\32\100\97\116\97\32\61\61\32\34\50\34\32\111\114\32\100\97\116\97\32\61\61\32\34\51\34\41\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\108\39\32\32\32\116\104\101\110\10\9\9\9\10\9\9\9\65\110\116\105\83\112\97\109\40\34\34\32\46\46\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\32\79\112\116\105\111\110\58\32\34\32\46\46\32\116\101\120\116\58\108\111\119\101\114\40\41\32\46\46\32\34\92\110\68\105\99\101\58\32\91\34\32\46\46\32\100\97\116\97\32\46\46\32\34\93\92\110\32\36\36\32\87\105\110\32\91\43\32\34\32\46\46\32\40\66\97\108\97\110\99\101\32\42\32\112\97\121\111\41\42\48\46\48\49\32\46\46\32\34\32\107\107\93\32\36\36\92\110\66\97\108\97\110\99\101\58\32\34\32\46\46\32\40\66\97\108\97\110\99\101\32\43\32\40\66\97\108\97\110\99\101\32\42\32\112\97\121\111\41\41\32\42\32\48\46\48\49\32\46\46\32\34\32\107\107\34\41\10\9\9\9\66\97\108\97\110\99\101\32\61\32\109\97\116\104\46\102\108\111\111\114\40\66\97\108\97\110\99\101\32\43\32\40\66\97\108\97\110\99\101\32\42\32\112\97\121\111\41\41\10\9\9\9\66\101\116\116\32\61\32\102\97\108\115\101\10\9\9\9\112\114\105\110\116\40\39\119\111\110\39\41\10\9\9\101\108\115\101\10\9\9\9\83\101\108\102\46\83\97\121\40\34\69\120\117\114\97\32\73\99\111\34\41\10\9\9\9\66\101\116\116\32\61\32\116\114\117\101\10\9\9\9\65\110\116\105\83\112\97\109\40\34\34\32\46\46\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\32\79\112\116\105\111\110\58\32\34\32\46\46\32\116\101\120\116\58\108\111\119\101\114\40\41\32\46\46\32\34\92\110\68\105\99\101\58\32\91\34\32\46\46\32\100\97\116\97\32\46\46\32\34\93\92\110\35\76\111\111\115\101\32\91\45\32\34\32\46\46\32\66\97\108\97\110\99\101\32\42\32\48\46\48\49\32\32\46\46\32\34\32\107\107\93\92\110\66\97\108\97\110\99\101\58\32\48\32\107\107\92\110\34\41\10\9\9\9\66\97\108\97\110\99\101\32\61\32\48\10\9\9\9\99\104\97\110\110\101\108\58\83\101\110\100\79\114\97\110\103\101\77\101\115\115\97\103\101\40\39\66\97\116\114\97\119\32\108\111\103\39\44\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\58\32\34\32\46\46\32\116\101\120\116\58\117\112\112\101\114\40\41\32\46\46\32\39\32\46\32\66\101\116\58\32\39\32\46\46\32\66\97\108\97\110\99\101\32\42\32\49\48\32\46\46\32\39\32\76\111\115\116\58\39\32\46\46\32\66\97\108\97\110\99\101\32\42\32\49\48\32\32\46\46\32\39\32\66\97\108\97\110\99\101\32\61\32\48\39\32\41\10\9\9\9\112\114\105\110\116\40\34\108\111\115\116\34\41\10\9\9\9\66\101\116\116\32\61\32\102\97\108\115\101\10\9\9\101\110\100\10\9\9\101\110\100\41\10\9\101\110\100\10\101\110\100\10\101\110\100\41\10\10\10\76\111\99\97\108\83\112\101\101\99\104\80\114\111\120\121\46\79\110\82\101\99\101\105\118\101\40\39\76\32\77\65\88\32\103\97\109\101\39\44\32\102\117\110\99\116\105\111\110\40\112\114\111\120\121\44\32\109\116\121\112\101\44\32\115\112\101\97\107\101\114\44\32\108\101\118\101\108\44\32\116\101\120\116\41\9\10\105\102\32\98\97\116\114\97\119\65\99\116\105\118\101\32\116\104\101\110\10\9\105\102\32\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\108\39\32\97\110\100\32\66\97\108\97\110\99\101\32\62\61\32\66\101\116\46\109\105\110\32\97\110\100\32\66\97\108\97\110\99\101\32\62\32\66\101\116\46\109\97\120\32\97\110\100\32\110\111\116\32\66\101\116\116\32\97\110\100\32\110\111\116\32\119\105\116\104\100\114\97\119\32\32\97\110\100\32\112\108\97\121\101\114\32\116\104\101\110\10\9\9\112\108\97\121\101\114\32\61\32\102\97\108\115\101\10\9\9\66\101\116\116\32\61\32\116\114\117\101\10\9\9\67\97\115\105\110\111\82\111\108\108\40\41\10\9\9\83\105\103\110\97\108\46\79\110\82\101\99\101\105\118\101\40\39\68\105\99\101\39\44\32\102\117\110\99\116\105\111\110\40\115\105\103\110\97\108\44\32\100\97\116\97\41\10\9\9\105\102\32\40\100\97\116\97\32\61\61\32\34\49\34\32\111\114\32\100\97\116\97\32\61\61\32\34\50\34\32\111\114\32\100\97\116\97\32\61\61\32\34\51\34\41\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\108\39\32\32\32\116\104\101\110\9\10\9\9\9\66\97\108\97\110\99\101\32\61\32\109\97\116\104\46\102\108\111\111\114\40\66\97\108\97\110\99\101\32\43\32\40\66\101\116\46\109\97\120\32\42\32\112\97\121\111\41\41\10\9\9\9\65\110\116\105\83\112\97\109\40\34\34\32\46\46\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\32\79\112\116\105\111\110\58\32\34\32\46\46\32\116\101\120\116\58\108\111\119\101\114\40\41\32\46\46\32\34\92\110\68\105\99\101\58\32\91\34\32\46\46\32\100\97\116\97\32\46\46\32\34\93\92\110\32\36\36\32\87\105\110\32\91\43\32\34\32\46\46\32\40\66\101\116\46\109\97\120\32\42\32\112\97\121\111\41\42\48\46\48\49\32\46\46\32\34\32\107\107\93\32\36\36\92\110\66\97\108\97\110\99\101\58\32\34\32\46\46\32\66\97\108\97\110\99\101\47\49\48\48\32\46\46\32\34\32\107\107\34\41\10\9\9\9\66\101\116\116\32\61\32\102\97\108\115\101\10\9\9\9\112\114\105\110\116\40\39\119\111\110\39\41\10\9\9\101\108\115\101\10\9\9\9\83\101\108\102\46\83\97\121\40\34\69\120\117\114\97\32\73\99\111\34\41\10\9\9\9\66\101\116\116\32\61\32\116\114\117\101\10\9\9\9\66\97\108\97\110\99\101\32\61\32\66\97\108\97\110\99\101\32\45\32\66\101\116\46\109\97\120\10\9\9\9\65\110\116\105\83\112\97\109\40\34\34\32\46\46\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\32\79\112\116\105\111\110\58\32\34\32\46\46\32\116\101\120\116\58\108\111\119\101\114\40\41\32\46\46\32\34\92\110\68\105\99\101\58\32\91\34\32\46\46\32\100\97\116\97\32\46\46\32\34\93\92\110\35\76\111\111\115\101\32\91\45\32\34\32\46\46\32\66\101\116\46\109\97\120\32\42\32\48\46\48\49\32\32\46\46\32\34\32\107\107\93\92\110\66\97\108\97\110\99\101\58\32\34\32\46\46\32\66\97\108\97\110\99\101\47\49\48\48\32\46\46\32\34\32\107\107\92\110\34\41\10\9\9\9\99\104\97\110\110\101\108\58\83\101\110\100\79\114\97\110\103\101\77\101\115\115\97\103\101\40\39\66\97\116\114\97\119\32\108\111\103\39\44\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\58\32\34\32\46\46\32\116\101\120\116\58\117\112\112\101\114\40\41\32\46\46\32\39\32\46\32\66\101\116\58\32\39\32\46\46\32\66\97\108\97\110\99\101\32\42\32\49\48\32\46\46\32\39\32\76\111\115\116\58\39\32\46\46\32\66\97\108\97\110\99\101\32\42\32\49\48\32\32\46\46\32\39\32\66\97\108\97\110\99\101\32\61\32\39\32\46\46\32\66\97\108\97\110\99\101\47\49\48\48\32\46\46\32\39\39\32\41\10\9\9\9\112\114\105\110\116\40\34\108\111\115\116\34\41\10\9\9\9\66\101\116\116\32\61\32\102\97\108\115\101\10\9\9\101\110\100\10\9\9\101\110\100\41\10\9\101\110\100\10\101\110\100\10\101\110\100\41\10\9\10\76\111\99\97\108\83\112\101\101\99\104\80\114\111\120\121\46\79\110\82\101\99\101\105\118\101\40\39\49\51\53\32\103\97\109\101\39\44\32\102\117\110\99\116\105\111\110\40\112\114\111\120\121\44\32\109\116\121\112\101\44\32\115\112\101\97\107\101\114\44\32\108\101\118\101\108\44\32\116\101\120\116\41\10\105\102\32\98\97\116\114\97\119\65\99\116\105\118\101\32\116\104\101\110\10\9\105\102\32\111\100\100\101\65\99\116\105\118\101\32\116\104\101\110\10\9\9\105\102\32\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\49\51\53\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\111\100\100\39\32\97\110\100\32\66\97\108\97\110\99\101\32\62\61\32\111\100\100\101\46\109\105\110\32\97\110\100\32\66\97\108\97\110\99\101\32\60\61\32\111\100\100\101\46\109\97\120\32\97\110\100\32\110\111\116\32\66\101\116\116\32\97\110\100\32\110\111\116\32\119\105\116\104\100\114\97\119\32\116\104\101\110\10\9\9\9\112\108\97\121\101\114\32\61\32\102\97\108\115\101\10\9\9\9\66\101\116\116\32\61\32\116\114\117\101\10\9\9\9\9\67\97\115\105\110\111\82\111\108\108\40\41\10\9\9\9\9\83\105\103\110\97\108\46\79\110\82\101\99\101\105\118\101\40\39\68\105\99\101\39\44\32\102\117\110\99\116\105\111\110\40\115\105\103\110\97\108\44\32\100\97\116\97\41\10\9\9\9\105\102\32\40\100\97\116\97\32\61\61\32\34\49\34\32\111\114\32\100\97\116\97\32\61\61\32\34\51\34\32\111\114\32\100\97\116\97\32\61\61\32\34\53\34\41\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\49\51\53\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\111\100\100\39\32\116\104\101\110\10\9\9\9\9\10\9\9\9\9\65\110\116\105\83\112\97\109\40\34\34\32\46\46\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\32\79\112\116\105\111\110\58\32\34\32\46\46\32\116\101\120\116\58\108\111\119\101\114\40\41\32\46\46\32\34\92\110\68\105\99\101\58\32\91\34\32\46\46\32\100\97\116\97\32\46\46\32\34\93\92\110\32\36\36\32\87\105\110\32\91\43\32\34\32\46\46\32\40\66\97\108\97\110\99\101\32\42\32\112\97\121\111\41\42\48\46\48\49\32\46\46\32\34\32\107\107\93\32\36\36\34\41\10\9\9\9\9\66\97\108\97\110\99\101\32\61\32\109\97\116\104\46\102\108\111\111\114\40\66\97\108\97\110\99\101\32\43\32\40\66\97\108\97\110\99\101\32\42\32\112\97\121\111\41\41\10\9\9\9\9\66\101\116\116\32\61\32\102\97\108\115\101\10\9\9\9\9\112\114\105\110\116\40\39\119\111\110\39\41\10\9\9\9\101\108\115\101\10\9\9\9\9\66\101\116\116\32\61\32\116\114\117\101\10\9\9\9\9\65\110\116\105\83\112\97\109\40\34\34\32\46\46\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\32\79\112\116\105\111\110\58\32\34\32\46\46\32\116\101\120\116\58\108\111\119\101\114\40\41\32\46\46\32\34\92\110\68\105\99\101\58\32\91\34\32\46\46\32\100\97\116\97\32\46\46\32\34\93\92\110\35\76\111\111\115\101\32\91\45\32\34\32\46\46\32\66\97\108\97\110\99\101\32\42\32\48\46\48\49\32\32\46\46\32\34\32\107\107\93\92\110\66\97\108\97\110\99\101\58\32\48\32\107\107\34\41\10\9\9\9\9\66\97\108\97\110\99\101\32\61\32\48\10\9\9\9\9\99\104\97\110\110\101\108\58\83\101\110\100\79\114\97\110\103\101\77\101\115\115\97\103\101\40\39\66\97\116\114\97\119\32\108\111\103\39\44\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\58\32\34\32\46\46\32\116\101\120\116\58\117\112\112\101\114\40\41\32\46\46\32\39\32\46\32\66\101\116\58\32\39\32\46\46\32\66\97\108\97\110\99\101\32\42\32\49\48\32\46\46\32\39\32\76\111\115\116\58\39\32\46\46\32\66\97\108\97\110\99\101\32\42\32\49\48\32\32\46\46\32\39\32\66\97\108\97\110\99\101\32\61\32\48\39\32\41\10\9\9\9\9\112\114\105\110\116\40\34\108\111\115\116\34\41\10\9\9\9\9\66\101\116\116\32\61\32\102\97\108\115\101\10\9\9\9\101\110\100\10\9\9\9\101\110\100\41\10\9\9\101\110\100\10\9\101\110\100\10\101\110\100\10\101\110\100\41\10\9\10\76\111\99\97\108\83\112\101\101\99\104\80\114\111\120\121\46\79\110\82\101\99\101\105\118\101\40\39\50\52\54\32\103\97\109\101\39\44\32\102\117\110\99\116\105\111\110\40\112\114\111\120\121\44\32\109\116\121\112\101\44\32\115\112\101\97\107\101\114\44\32\108\101\118\101\108\44\32\116\101\120\116\41\10\9\105\102\32\98\97\116\114\97\119\65\99\116\105\118\101\32\116\104\101\110\10\9\9\105\102\32\111\100\100\101\65\99\116\105\118\101\32\116\104\101\110\10\9\9\9\105\102\32\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\50\52\54\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\101\118\101\110\39\32\97\110\100\32\66\97\108\97\110\99\101\32\62\61\32\111\100\100\101\46\109\105\110\32\97\110\100\32\66\97\108\97\110\99\101\32\60\61\32\111\100\100\101\46\109\97\120\32\97\110\100\32\110\111\116\32\66\101\116\116\32\97\110\100\32\110\111\116\32\119\105\116\104\100\114\97\119\32\116\104\101\110\10\9\9\9\9\112\108\97\121\101\114\32\61\32\102\97\108\115\101\10\9\9\9\9\66\101\116\116\32\61\32\116\114\117\101\10\9\9\9\9\67\97\115\105\110\111\82\111\108\108\40\41\10\9\9\9\9\83\105\103\110\97\108\46\79\110\82\101\99\101\105\118\101\40\39\68\105\99\101\39\44\32\102\117\110\99\116\105\111\110\40\115\105\103\110\97\108\44\32\100\97\116\97\41\10\9\9\9\9\105\102\32\40\100\97\116\97\32\61\61\32\34\50\34\32\111\114\32\100\97\116\97\32\61\61\32\34\52\34\32\111\114\32\100\97\116\97\32\61\61\32\34\54\34\41\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\50\52\54\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\101\118\101\110\39\32\116\104\101\110\10\9\9\9\9\9\65\110\116\105\83\112\97\109\40\34\34\32\46\46\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\32\79\112\116\105\111\110\58\32\34\32\46\46\32\116\101\120\116\58\108\111\119\101\114\40\41\32\46\46\32\34\92\110\68\105\99\101\58\32\91\34\32\46\46\32\100\97\116\97\32\46\46\32\34\93\92\110\32\36\36\32\87\105\110\32\91\43\32\34\32\46\46\32\40\66\97\108\97\110\99\101\32\42\32\112\97\121\111\41\42\48\46\48\49\32\46\46\32\34\32\107\107\93\32\36\36\34\41\10\9\9\9\9\9\66\97\108\97\110\99\101\32\61\32\109\97\116\104\46\102\108\111\111\114\40\66\97\108\97\110\99\101\32\43\32\40\66\97\108\97\110\99\101\32\42\32\112\97\121\111\41\41\10\9\9\9\9\9\66\101\116\116\32\61\32\102\97\108\115\101\10\9\9\9\9\9\112\114\105\110\116\40\39\119\111\110\39\41\10\9\9\9\9\101\108\115\101\10\9\9\9\9\9\66\101\116\116\32\61\32\116\114\117\101\10\9\9\9\9\9\65\110\116\105\83\112\97\109\40\34\34\32\46\46\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\32\79\112\116\105\111\110\58\32\34\32\46\46\32\116\101\120\116\58\108\111\119\101\114\40\41\32\46\46\32\34\92\110\68\105\99\101\58\32\91\34\32\46\46\32\100\97\116\97\32\46\46\32\34\93\92\110\35\76\111\111\115\101\32\91\45\32\34\32\46\46\32\66\97\108\97\110\99\101\32\42\32\48\46\48\49\32\32\46\46\32\34\32\107\107\93\92\110\66\97\108\97\110\99\101\58\32\48\32\107\107\34\41\10\9\9\9\9\9\66\97\108\97\110\99\101\32\61\32\48\10\9\9\9\9\9\99\104\97\110\110\101\108\58\83\101\110\100\79\114\97\110\103\101\77\101\115\115\97\103\101\40\39\66\97\116\114\97\119\32\108\111\103\39\44\32\71\97\109\98\108\101\114\95\78\97\109\101\32\46\46\32\34\58\32\34\32\46\46\32\116\101\120\116\58\117\112\112\101\114\40\41\32\46\46\32\39\32\46\32\66\101\116\58\32\39\32\46\46\32\66\97\108\97\110\99\101\32\42\32\49\48\32\46\46\32\39\32\76\111\115\116\58\39\32\46\46\32\66\97\108\97\110\99\101\32\42\32\49\48\32\32\46\46\32\39\32\66\97\108\97\110\99\101\32\61\32\48\39\32\41\10\9\9\9\9\9\112\114\105\110\116\40\34\108\111\115\116\34\41\10\9\9\9\9\9\66\101\116\116\32\61\32\102\97\108\115\101\10\9\9\9\9\101\110\100\10\9\9\9\9\101\110\100\41\10\9\9\9\101\110\100\10\9\9\101\110\100\10\9\101\110\100\10\101\110\100\41\10\10\77\111\100\117\108\101\46\78\101\119\40\39\80\108\97\121\101\114\66\101\116\69\82\39\44\32\102\117\110\99\116\105\111\110\40\109\111\100\101\114\41\10\105\102\32\110\111\116\32\80\108\97\121\101\114\95\68\101\116\101\99\116\101\100\32\116\104\101\110\10\9\116\101\115\116\97\111\32\61\32\48\10\9\66\101\116\116\32\61\32\102\97\108\115\101\10\9\112\108\97\121\101\114\32\61\32\32\116\114\117\101\10\101\110\100\10\109\111\100\101\114\58\68\101\108\97\121\40\49\48\48\48\41\10\101\110\100\41\10\10\76\111\99\97\108\83\112\101\101\99\104\80\114\111\120\121\46\79\110\82\101\99\101\105\118\101\40\39\50\120\50\95\71\65\77\69\39\44\32\102\117\110\99\116\105\111\110\40\112\114\111\120\121\44\32\109\116\121\112\101\44\32\115\112\101\97\107\101\114\44\32\108\101\118\101\108\44\32\116\101\120\116\41\10\9\105\102\32\100\111\105\115\120\65\99\116\105\118\101\32\116\104\101\110\10\9\9\105\102\32\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\50\120\50\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\50\88\50\39\32\116\104\101\110\10\9\9\9\45\45\45\45\45\45\45\45\45\45\45\45\45\45\32\32\91\32\50\120\50\32\67\79\78\70\73\71\32\93\32\32\45\45\45\45\45\45\45\45\45\45\45\45\45\32\10\9\9\9\45\45\32\79\78\76\89\32\79\78\32\80\82\69\77\73\85\77\32\86\69\82\83\73\79\78\32\45\32\115\107\121\112\101\58\32\98\97\116\114\97\119\50\53\10\9\9\101\110\100\10\9\101\110\100\10\101\110\100\41\10\10\76\111\99\97\108\83\112\101\101\99\104\80\114\111\120\121\46\79\110\82\101\99\101\105\118\101\40\39\50\120\50\95\71\65\77\69\95\77\65\88\39\44\32\102\117\110\99\116\105\111\110\40\112\114\111\120\121\44\32\109\116\121\112\101\44\32\115\112\101\97\107\101\114\44\32\108\101\118\101\108\44\32\116\101\120\116\41\10\9\105\102\32\100\111\105\115\120\65\99\116\105\118\101\32\116\104\101\110\10\9\9\105\102\32\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\50\120\50\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\50\88\50\39\32\116\104\101\110\10\9\9\9\45\45\45\45\45\45\45\45\45\45\45\45\45\45\32\32\91\32\50\120\50\32\67\79\78\70\73\71\32\93\32\32\45\45\45\45\45\45\45\45\45\45\45\45\45\32\10\9\9\9\45\45\32\79\78\76\89\32\79\78\32\80\82\69\77\73\85\77\32\86\69\82\83\73\79\78\32\45\32\115\107\121\112\101\58\32\98\97\116\114\97\119\50\53\10\9\9\101\110\100\10\9\101\110\100\10\101\110\100\41\10\10\76\111\99\97\108\83\112\101\101\99\104\80\114\111\120\121\46\79\110\82\101\99\101\105\118\101\40\39\51\120\51\95\71\65\77\69\39\44\32\102\117\110\99\116\105\111\110\40\112\114\111\120\121\44\32\109\116\121\112\101\44\32\115\112\101\97\107\101\114\44\32\108\101\118\101\108\44\32\116\101\120\116\41\10\9\105\102\32\116\114\101\115\120\65\99\116\105\118\101\32\116\104\101\110\10\9\9\105\102\32\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\51\120\51\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\51\88\51\39\32\116\104\101\110\10\9\9\9\45\45\45\45\45\45\45\45\45\45\45\45\45\45\32\32\91\32\51\120\51\32\67\79\78\70\73\71\32\93\32\32\45\45\45\45\45\45\45\45\45\45\45\45\45\32\10\9\9\9\45\45\32\79\78\76\89\32\79\78\32\80\82\69\77\73\85\77\32\86\69\82\83\73\79\78\32\45\32\115\107\121\112\101\58\32\98\97\116\114\97\119\50\53\10\9\9\101\110\100\10\9\101\110\100\10\101\110\100\41\10\10\76\111\99\97\108\83\112\101\101\99\104\80\114\111\120\121\46\79\110\82\101\99\101\105\118\101\40\39\51\120\51\95\71\65\77\69\95\77\65\88\39\44\32\102\117\110\99\116\105\111\110\40\112\114\111\120\121\44\32\109\116\121\112\101\44\32\115\112\101\97\107\101\114\44\32\108\101\118\101\108\44\32\116\101\120\116\41\10\9\105\102\32\116\114\101\115\120\65\99\116\105\118\101\32\116\104\101\110\10\9\9\105\102\32\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\51\120\51\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\51\88\51\39\32\116\104\101\110\10\9\9\9\45\45\45\45\45\45\45\45\45\45\45\45\45\45\32\32\91\32\51\120\51\32\67\79\78\70\73\71\32\93\32\32\45\45\45\45\45\45\45\45\45\45\45\45\45\32\10\9\9\9\45\45\32\79\78\76\89\32\79\78\32\80\82\69\77\73\85\77\32\86\69\82\83\73\79\78\32\45\32\115\107\121\112\101\58\32\98\97\116\114\97\119\50\53\10\9\9\101\110\100\10\9\101\110\100\10\101\110\100\41\10\10\76\111\99\97\108\83\112\101\101\99\104\80\114\111\120\121\46\79\110\82\101\99\101\105\118\101\40\39\52\120\52\95\71\65\77\69\39\44\32\102\117\110\99\116\105\111\110\40\112\114\111\120\121\44\32\109\116\121\112\101\44\32\115\112\101\97\107\101\114\44\32\108\101\118\101\108\44\32\116\101\120\116\41\10\9\105\102\32\113\117\97\116\114\111\120\65\99\116\105\118\101\32\116\104\101\110\10\9\9\105\102\32\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\52\120\52\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\52\88\52\39\32\116\104\101\110\10\9\9\9\45\45\45\45\45\45\45\45\45\45\45\45\45\45\32\32\91\32\52\120\52\32\67\79\78\70\73\71\32\93\32\32\45\45\45\45\45\45\45\45\45\45\45\45\45\32\10\9\9\9\45\45\32\79\78\76\89\32\79\78\32\80\82\69\77\73\85\77\32\86\69\82\83\73\79\78\32\45\32\115\107\121\112\101\58\32\98\97\116\114\97\119\50\53\10\9\9\101\110\100\10\9\101\110\100\10\101\110\100\41\10\10\76\111\99\97\108\83\112\101\101\99\104\80\114\111\120\121\46\79\110\82\101\99\101\105\118\101\40\39\52\120\52\95\71\65\77\69\95\77\65\88\39\44\32\102\117\110\99\116\105\111\110\40\112\114\111\120\121\44\32\109\116\121\112\101\44\32\115\112\101\97\107\101\114\44\32\108\101\118\101\108\44\32\116\101\120\116\41\10\9\105\102\32\113\117\97\116\114\111\120\65\99\116\105\118\101\32\116\104\101\110\10\9\9\105\102\32\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\52\120\52\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\52\88\52\39\32\116\104\101\110\10\9\9\9\45\45\45\45\45\45\45\45\45\45\45\45\45\45\32\32\91\32\52\120\52\32\67\79\78\70\73\71\32\93\32\32\45\45\45\45\45\45\45\45\45\45\45\45\45\32\10\9\9\9\45\45\32\79\78\76\89\32\79\78\32\80\82\69\77\73\85\77\32\86\69\82\83\73\79\78\32\45\32\115\107\121\112\101\58\32\98\97\116\114\97\119\50\53\10\9\9\101\110\100\10\9\101\110\100\10\101\110\100\41\10\10\10\76\111\99\97\108\83\112\101\101\99\104\80\114\111\120\121\46\79\110\82\101\99\101\105\118\101\40\39\53\120\53\95\71\65\77\69\39\44\32\102\117\110\99\116\105\111\110\40\112\114\111\120\121\44\32\109\116\121\112\101\44\32\115\112\101\97\107\101\114\44\32\108\101\118\101\108\44\32\116\101\120\116\41\10\9\105\102\32\99\105\110\99\111\120\65\99\116\105\118\101\32\116\104\101\110\10\9\9\105\102\32\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\53\120\53\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\53\88\53\39\32\116\104\101\110\10\9\9\9\45\45\45\45\45\45\45\45\45\45\45\45\45\45\32\32\91\32\53\120\53\32\67\79\78\70\73\71\32\93\32\32\45\45\45\45\45\45\45\45\45\45\45\45\45\32\10\9\9\9\45\45\32\79\78\76\89\32\79\78\32\80\82\69\77\73\85\77\32\86\69\82\83\73\79\78\32\45\32\115\107\121\112\101\58\32\98\97\116\114\97\119\50\53\10\9\9\101\110\100\10\9\101\110\100\10\101\110\100\41\10\10\76\111\99\97\108\83\112\101\101\99\104\80\114\111\120\121\46\79\110\82\101\99\101\105\118\101\40\39\53\120\53\95\71\65\77\69\95\77\65\88\39\44\32\102\117\110\99\116\105\111\110\40\112\114\111\120\121\44\32\109\116\121\112\101\44\32\115\112\101\97\107\101\114\44\32\108\101\118\101\108\44\32\116\101\120\116\41\10\9\105\102\32\99\105\110\99\111\120\65\99\116\105\118\101\32\116\104\101\110\10\9\9\105\102\32\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\53\120\53\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\53\88\53\39\32\116\104\101\110\10\9\9\9\45\45\45\45\45\45\45\45\45\45\45\45\45\45\32\32\91\32\53\120\53\32\67\79\78\70\73\71\32\93\32\32\45\45\45\45\45\45\45\45\45\45\45\45\45\32\10\9\9\9\45\45\32\79\78\76\89\32\79\78\32\80\82\69\77\73\85\77\32\86\69\82\83\73\79\78\32\45\32\115\107\121\112\101\58\32\98\97\116\114\97\119\50\53\10\9\9\101\110\100\10\9\101\110\100\10\101\110\100\41\10\10\76\111\99\97\108\83\112\101\101\99\104\80\114\111\120\121\46\79\110\82\101\99\101\105\118\101\40\39\54\120\54\95\71\65\77\69\39\44\32\102\117\110\99\116\105\111\110\40\112\114\111\120\121\44\32\109\116\121\112\101\44\32\115\112\101\97\107\101\114\44\32\108\101\118\101\108\44\32\116\101\120\116\41\10\9\105\102\32\115\101\105\115\120\65\99\116\105\118\101\32\116\104\101\110\10\9\9\105\102\32\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\54\120\54\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\54\88\54\39\32\116\104\101\110\10\9\9\9\45\45\45\45\45\45\45\45\45\45\45\45\45\45\32\32\91\32\54\120\54\32\67\79\78\70\73\71\32\93\32\32\45\45\45\45\45\45\45\45\45\45\45\45\45\32\10\9\9\9\45\45\32\79\78\76\89\32\79\78\32\80\82\69\77\73\85\77\32\86\69\82\83\73\79\78\32\45\32\115\107\121\112\101\58\32\98\97\116\114\97\119\50\53\10\9\9\101\110\100\10\9\101\110\100\10\101\110\100\41\10\10\76\111\99\97\108\83\112\101\101\99\104\80\114\111\120\121\46\79\110\82\101\99\101\105\118\101\40\39\54\120\54\95\71\65\77\69\95\77\65\88\39\44\32\102\117\110\99\116\105\111\110\40\112\114\111\120\121\44\32\109\116\121\112\101\44\32\115\112\101\97\107\101\114\44\32\108\101\118\101\108\44\32\116\101\120\116\41\10\9\105\102\32\115\101\105\115\120\65\99\116\105\118\101\32\116\104\101\110\10\9\9\105\102\32\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\54\120\54\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\54\88\54\39\32\116\104\101\110\10\9\9\9\45\45\45\45\45\45\45\45\45\45\45\45\45\45\32\32\91\32\54\120\54\32\67\79\78\70\73\71\32\93\32\32\45\45\45\45\45\45\45\45\45\45\45\45\45\32\10\9\9\9\45\45\32\79\78\76\89\32\79\78\32\80\82\69\77\73\85\77\32\86\69\82\83\73\79\78\32\45\32\115\107\121\112\101\58\32\98\97\116\114\97\119\50\53\10\9\9\101\110\100\10\9\101\110\100\10\101\110\100\41\10\10\77\111\100\117\108\101\46\78\101\119\40\34\79\112\101\110\65\108\108\66\97\99\107\112\97\99\107\115\87\105\116\104\70\117\108\108\120\34\44\32\102\117\110\99\116\105\111\110\40\109\41\10\9\102\111\114\32\99\32\61\32\48\44\32\35\67\111\110\116\97\105\110\101\114\46\71\101\116\65\108\108\40\41\32\45\32\49\32\100\111\10\9\9\99\111\110\116\32\61\32\67\111\110\116\97\105\110\101\114\46\78\101\119\40\99\41\10\9\9\105\102\32\99\111\110\116\58\69\109\112\116\121\83\108\111\116\115\40\41\32\61\61\32\48\32\97\110\100\32\73\116\101\109\46\105\115\67\111\110\116\97\105\110\101\114\40\99\111\110\116\58\71\101\116\73\116\101\109\68\97\116\97\40\99\111\110\116\58\73\116\101\109\67\97\112\97\99\105\116\121\40\41\32\45\32\49\41\46\105\100\41\32\116\104\101\110\10\9\9\9\99\111\110\116\58\85\115\101\73\116\101\109\40\99\111\110\116\58\73\116\101\109\67\97\112\97\99\105\116\121\40\41\32\45\32\49\44\32\116\114\117\101\41\10\9\9\101\110\100\10\9\101\110\100\10\109\58\68\101\108\97\121\40\52\48\48\41\10\101\110\100\41\32\32\10\32\10\76\111\99\97\108\83\112\101\101\99\104\80\114\111\120\121\46\79\110\82\101\99\101\105\118\101\40\34\119\105\116\104\100\114\97\119\34\44\32\102\117\110\99\116\105\111\110\40\112\114\111\120\121\44\32\109\116\121\112\101\44\32\115\112\101\97\107\101\114\44\32\108\101\118\101\108\44\32\116\101\120\116\41\10\9\105\102\32\98\97\116\114\97\119\65\99\116\105\118\101\32\116\104\101\110\10\9\9\105\102\32\110\111\116\32\67\97\115\104\101\114\32\97\110\100\32\110\111\116\32\119\105\116\104\100\114\97\119\32\97\110\100\32\115\112\101\97\107\101\114\58\108\111\119\101\114\40\41\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\58\108\111\119\101\114\40\41\32\97\110\100\32\66\97\108\97\110\99\101\32\126\61\32\48\32\97\110\100\32\110\111\116\32\119\105\116\104\100\114\97\119\32\97\110\100\32\110\111\116\32\66\101\116\116\32\97\110\100\32\110\111\116\32\67\97\115\104\101\114\32\97\110\100\32\40\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\34\112\97\121\34\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\34\62\34\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\34\112\97\121\111\117\116\34\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\34\112\97\121\111\34\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\34\119\105\116\104\100\114\97\119\34\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\34\60\34\32\97\110\100\32\110\111\116\32\119\105\116\104\100\114\97\119\41\32\116\104\101\110\10\9\9\9\119\105\116\104\100\114\97\119\32\61\32\116\114\117\101\10\9\9\9\114\101\112\101\97\116\10\9\9\9\105\102\32\67\97\115\104\66\80\58\67\111\117\110\116\73\116\101\109\115\79\102\73\68\40\99\99\41\32\62\32\49\48\48\32\116\104\101\110\10\9\9\9\9\105\102\32\66\97\108\97\110\99\101\32\62\61\32\49\48\48\32\116\104\101\110\10\9\9\9\9\9\108\97\108\117\110\105\97\32\61\32\83\101\108\102\46\73\116\101\109\67\111\117\110\116\40\99\99\41\10\9\9\9\9\9\100\117\112\99\105\97\32\61\32\67\97\115\104\66\80\58\71\101\116\73\116\101\109\68\97\116\97\40\49\41\10\9\9\9\9\9\102\111\114\32\95\44\32\118\97\108\117\101\32\105\110\32\112\97\105\114\115\40\100\117\112\99\105\97\41\32\100\111\10\9\9\9\9\9\9\105\102\32\118\97\108\117\101\32\61\61\32\99\99\32\116\104\101\110\10\9\9\9\9\9\9\9\67\97\115\104\66\80\58\77\111\118\101\73\116\101\109\84\111\71\114\111\117\110\100\40\49\44\32\83\101\108\102\46\80\111\115\105\116\105\111\110\40\41\46\120\43\80\65\89\95\80\79\83\91\49\93\44\32\83\101\108\102\46\80\111\115\105\116\105\111\110\40\41\46\121\43\80\65\89\95\80\79\83\91\50\93\44\32\99\97\115\104\112\111\115\122\44\32\49\48\48\41\10\9\9\9\9\9\9\9\119\97\105\116\40\51\48\48\41\9\10\9\9\9\9\9\9\101\110\100\32\10\9\9\9\9\9\101\110\100\10\9\9\9\9\105\102\32\108\97\108\117\110\105\97\32\45\32\83\101\108\102\46\73\116\101\109\67\111\117\110\116\40\99\99\41\32\61\61\32\49\48\48\32\116\104\101\110\10\9\9\9\9\9\66\97\108\97\110\99\101\32\61\32\66\97\108\97\110\99\101\32\45\32\49\48\48\10\9\9\9\9\101\108\115\101\10\9\9\9\9\9\66\97\108\97\110\99\101\32\61\32\66\97\108\97\110\99\101\10\9\9\9\9\101\110\100\10\9\9\9\101\108\115\101\10\9\9\9\9\83\101\108\102\46\68\114\111\112\73\116\101\109\40\83\101\108\102\46\80\111\115\105\116\105\111\110\40\41\46\120\43\80\65\89\95\80\79\83\91\49\93\44\32\83\101\108\102\46\80\111\115\105\116\105\111\110\40\41\46\121\43\80\65\89\95\80\79\83\91\50\93\44\32\99\97\115\104\112\111\115\122\44\32\99\99\44\32\66\97\108\97\110\99\101\41\10\9\9\9\9\119\97\105\116\40\49\48\48\32\43\32\83\101\108\102\46\80\105\110\103\40\41\41\10\9\9\9\9\66\97\108\97\110\99\101\32\61\32\48\10\9\9\9\101\110\100\10\9\9\9\101\108\115\101\10\9\9\9\9\67\97\115\104\66\80\58\71\111\66\97\99\107\40\41\10\9\9\9\9\119\97\105\116\40\50\48\48\41\10\9\9\9\101\110\100\10\9\9\9\117\110\116\105\108\32\66\97\108\97\110\99\101\32\61\61\32\48\10\9\9\9\9\65\110\116\105\83\112\97\109\40\34\91\66\79\84\93\58\32\65\108\108\32\109\111\110\101\121\32\104\97\115\32\98\101\101\110\32\112\97\105\100\92\110\66\97\108\97\110\99\101\58\32\34\32\46\46\32\66\97\108\97\110\99\101\32\46\46\32\34\32\107\107\34\44\32\83\80\69\65\75\95\83\65\89\41\10\9\9\9\9\119\105\116\104\100\114\97\119\32\61\32\102\97\108\115\101\10\9\9\101\110\100\10\9\101\110\100\10\101\110\100\41\10\10\10\10\10\76\111\99\97\108\83\112\101\101\99\104\80\114\111\120\121\46\79\110\82\101\99\101\105\118\101\40\39\105\110\102\111\39\44\32\102\117\110\99\116\105\111\110\40\112\114\111\120\121\44\32\109\116\121\112\101\44\32\115\112\101\97\107\101\114\44\32\108\101\118\101\108\44\32\116\101\120\116\41\10\105\102\32\98\97\116\114\97\119\65\99\116\105\118\101\32\116\104\101\110\10\9\105\102\32\40\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\105\110\102\111\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\73\78\70\79\39\41\32\116\104\101\110\10\9\9\65\110\116\105\83\112\97\109\40\34\34\32\46\46\32\105\110\102\111\32\46\46\32\34\92\110\67\114\101\97\116\101\100\32\98\121\32\66\97\116\114\97\119\32\45\32\83\107\121\112\101\58\32\98\97\116\114\97\119\50\53\34\32\44\32\83\80\69\65\75\95\83\65\89\41\10\9\9\10\9\101\108\115\101\105\102\32\40\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\109\105\110\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\77\73\78\39\41\32\116\104\101\110\10\9\9\65\110\116\105\83\112\97\109\40\109\105\110\32\44\32\83\80\69\65\75\95\83\65\89\41\10\9\9\10\9\101\108\115\101\105\102\32\40\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\109\97\120\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\77\65\88\39\41\32\116\104\101\110\10\9\9\65\110\116\105\83\112\97\109\40\109\97\120\32\44\32\83\80\69\65\75\95\83\65\89\41\10\9\9\10\9\101\108\115\101\105\102\32\40\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\103\97\109\101\115\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\71\65\77\69\83\39\41\32\116\104\101\110\10\9\9\65\110\116\105\83\112\97\109\40\34\34\32\46\46\32\103\97\109\101\115\32\46\46\32\34\92\110\67\114\101\97\116\101\100\32\98\121\32\66\97\116\114\97\119\32\45\32\83\107\121\112\101\58\32\98\97\116\114\97\119\50\53\34\32\44\32\83\80\69\65\75\95\83\65\89\41\10\9\9\10\9\101\108\115\101\105\102\32\40\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\99\114\101\100\105\116\115\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\67\82\69\68\73\84\83\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\98\117\121\32\115\99\114\105\112\116\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\115\101\108\108\32\115\99\114\105\112\116\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\67\82\69\68\73\84\79\83\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\99\114\101\100\105\116\111\115\39\41\32\116\104\101\110\10\9\9\65\110\116\105\83\112\97\109\40\34\83\99\114\105\112\116\32\67\114\101\97\116\101\100\32\98\121\32\97\32\80\82\79\32\102\111\114\32\116\104\101\32\80\82\79\83\92\110\66\121\32\66\97\116\114\97\119\32\45\32\83\107\121\112\101\58\32\98\97\116\114\97\119\50\53\34\32\44\32\83\80\69\65\75\95\83\65\89\41\10\9\9\10\9\101\108\115\101\105\102\32\40\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\104\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\72\39\41\32\116\104\101\110\10\9\9\105\102\32\66\101\116\46\109\105\110\32\62\32\66\97\108\97\110\99\101\32\116\104\101\110\10\9\9\9\65\110\116\105\83\112\97\109\40\34\77\105\110\58\32\34\32\46\46\32\66\101\116\46\109\105\110\47\49\48\48\32\46\46\32\34\32\107\107\92\110\77\97\120\58\32\34\32\46\46\32\66\101\116\46\109\97\120\47\49\48\48\32\46\46\32\34\32\107\107\92\110\66\97\108\97\110\99\101\58\32\34\32\46\46\32\66\97\108\97\110\99\101\32\42\32\48\46\48\49\32\46\46\32\34\32\107\107\34\41\10\9\9\101\110\100\10\9\9\10\9\101\108\115\101\105\102\32\40\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\108\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\76\39\41\32\116\104\101\110\10\9\9\105\102\32\66\101\116\46\109\105\110\32\62\32\66\97\108\97\110\99\101\32\116\104\101\110\10\9\9\9\65\110\116\105\83\112\97\109\40\34\77\105\110\58\32\34\32\46\46\32\66\101\116\46\109\105\110\47\49\48\48\32\46\46\32\34\32\107\107\92\110\77\97\120\58\32\34\32\46\46\32\66\101\116\46\109\97\120\47\49\48\48\32\46\46\32\34\32\107\107\92\110\66\97\108\97\110\99\101\58\32\34\32\46\46\32\66\97\108\97\110\99\101\32\42\32\48\46\48\49\32\46\46\32\34\32\107\107\34\41\10\9\9\101\110\100\10\9\9\10\9\101\108\115\101\105\102\32\40\115\112\101\97\107\101\114\32\61\61\32\71\97\109\98\108\101\114\95\78\97\109\101\32\97\110\100\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\49\51\53\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\50\52\54\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\101\118\101\110\39\32\111\114\32\116\101\120\116\58\108\111\119\101\114\40\41\32\61\61\32\39\111\100\100\39\41\32\116\104\101\110\10\9\9\105\102\32\111\100\100\101\65\99\116\105\118\101\32\116\104\101\110\10\9\9\9\105\102\32\111\100\100\101\46\109\105\110\32\62\32\66\97\108\97\110\99\101\32\111\114\32\66\97\108\97\110\99\101\32\62\32\111\100\100\101\46\109\97\120\32\116\104\101\110\10\9\9\9\9\65\110\116\105\83\112\97\109\40\34\77\105\110\58\32\34\32\46\46\32\111\100\100\101\46\109\105\110\47\49\48\48\32\46\46\32\34\32\107\107\92\110\77\97\120\58\32\34\32\46\46\32\111\100\100\101\46\109\97\120\47\49\48\48\32\46\46\32\34\32\107\107\92\110\66\97\108\97\110\99\101\58\32\34\32\46\46\32\66\97\108\97\110\99\101\32\42\32\48\46\48\49\32\46\46\32\34\32\107\107\34\41\10\9\9\9\101\110\100\9\9\10\9\9\101\108\115\101\105\102\32\110\111\116\32\111\100\100\101\65\99\116\105\118\101\32\116\104\101\110\10\9\9\9\65\110\116\105\83\112\97\109\40\34\79\100\100\47\69\118\101\110\32\105\115\32\99\117\114\114\101\110\116\108\121\32\100\105\115\97\98\108\101\100\33\33\33\34\41\10\9\9\101\110\100\10\9\9\10\9\101\110\100\10\101\110\100\10\101\110\100\41\10\10\76\111\99\97\108\83\112\101\101\99\104\80\114\111\120\121\46\79\110\82\101\99\101\105\118\101\40\39\67\97\115\105\110\111\95\65\100\109\105\110\39\44\32\102\117\110\99\116\105\111\110\40\112\114\111\120\121\44\32\109\116\121\112\101\44\32\115\112\101\97\107\101\114\44\32\108\101\118\101\108\44\32\116\101\120\116\41\10\9\105\102\32\115\112\101\97\107\101\114\32\61\61\32\99\97\115\105\110\111\95\97\100\109\105\110\32\97\110\100\32\116\101\120\116\32\61\61\32\39\97\100\100\49\39\32\116\104\101\110\10\9\9\66\97\108\97\110\99\101\32\61\32\66\97\108\97\110\99\101\32\43\32\49\48\48\10\9\9\10\9\101\108\115\101\105\102\32\115\112\101\97\107\101\114\32\61\61\32\99\97\115\105\110\111\95\97\100\109\105\110\32\97\110\100\32\116\101\120\116\32\61\61\32\39\97\100\100\53\39\32\116\104\101\110\10\9\9\66\97\108\97\110\99\101\32\61\32\66\97\108\97\110\99\101\32\43\32\53\48\48\10\9\9\10\9\101\108\115\101\105\102\32\115\112\101\97\107\101\114\32\61\61\32\99\97\115\105\110\111\95\97\100\109\105\110\32\97\110\100\32\116\101\120\116\32\61\61\32\39\97\100\100\49\48\39\32\116\104\101\110\10\9\9\66\97\108\97\110\99\101\32\61\32\66\97\108\97\110\99\101\32\43\32\49\48\48\48\10\9\9\10\9\101\108\115\101\105\102\32\115\112\101\97\107\101\114\32\61\61\32\99\97\115\105\110\111\95\97\100\109\105\110\32\97\110\100\32\116\101\120\116\32\61\61\32\39\97\100\100\53\48\39\32\116\104\101\110\10\9\9\66\97\108\97\110\99\101\32\61\32\66\97\108\97\110\99\101\32\43\32\53\48\48\48\10\9\9\10\9\101\108\115\101\105\102\32\115\112\101\97\107\101\114\32\61\61\32\99\97\115\105\110\111\95\97\100\109\105\110\32\97\110\100\32\116\101\120\116\32\61\61\32\39\97\100\100\49\48\48\39\32\116\104\101\110\10\9\9\66\97\108\97\110\99\101\32\61\32\66\97\108\97\110\99\101\32\43\32\49\48\48\48\48\10\9\9\10\9\101\108\115\101\105\102\32\115\112\101\97\107\101\114\32\61\61\32\99\97\115\105\110\111\95\97\100\109\105\110\32\97\110\100\32\116\101\120\116\32\61\61\32\39\122\101\114\111\39\32\116\104\101\110\10\9\9\66\97\108\97\110\99\101\32\61\32\48\10\9\101\110\100\10\101\110\100\41\10\10")()
To embed this project on your website, copy the following code and paste it into your website's HTML: