diff --git a/api.lua b/api.lua index 97b162f..c28d00d 100644 --- a/api.lua +++ b/api.lua @@ -12,7 +12,7 @@ local function pointable(stack, node) return nodedef and def and (nodedef.pointable or (nodedef.liquidtype ~= "none" and def.liquid_pointable)) end -local function create_turtle_player(turtle_id, dir) +local function create_turtle_player(turtle_id, dir, only_player) local info = turtles.get_turtle_info(turtle_id) local inv = turtles.get_turtle_inventory(turtle_id) local pitch @@ -68,6 +68,7 @@ local function create_turtle_player(turtle_id, dir) set_detach = delay(), set_bone_position = delay(), } + if only_player then return player end local above, under = nil, nil local wieldstack = player:get_wielded_item() local pos = vector.add(info.spos, dir) @@ -101,6 +102,7 @@ function tl.select(turtle, cptr, slot) end local function tl_move(turtle, cptr, dir) + tl.close_form(turtle) local info = turtles.get_turtle_info(turtle) if info.energy < MOVE_COST then cptr.X = 0 @@ -139,6 +141,7 @@ function tl.down(turtle, cptr) end function tl.turnleft(turtle, cptr) + tl.close_form(turtle) local info = turtles.get_turtle_info(turtle) info.ndir = (info.dir + 3) % 4 info.rotate = math.pi / 2 @@ -147,6 +150,7 @@ function tl.turnleft(turtle, cptr) end function tl.turnright(turtle, cptr) + tl.close_form(turtle) local info = turtles.get_turtle_info(turtle) info.ndir = (info.dir + 1) % 4 info.rotate = - math.pi / 2 @@ -182,6 +186,7 @@ function tl.detectdown(turtle, cptr) end local function turtle_dig(turtle, cptr, dir) + tl.close_form(turtle) local player, pointed_thing = create_turtle_player(turtle, dir) if pointed_thing == nil then return end local info = turtles.get_turtle_info(turtle) @@ -218,8 +223,17 @@ function tl.digdown(turtle, cptr) end local function turtle_place(turtle, cptr, dir) + tl.close_form(turtle) local player, pointed_thing = create_turtle_player(turtle, dir) if pointed_thing == nil then return end + local formspec = minetest.get_meta(pointed_thing.under):get_string("formspec") + if formspec ~= nil then + local info = turtles.get_turtle_info(turtle) + info.open_formspec = tl.read_formspec(formspec) + info.formspec_type = {type = "node", pos = pointed_thing.under} + info.formspec_fields = {} + return + end local wieldstack = player:get_wielded_item() local on_place = (minetest.registered_items[wieldstack:get_name()] or {on_place = minetest.item_place}).on_place player:set_wielded_item(on_place(wieldstack, player, pointed_thing) or wieldstack) @@ -282,3 +296,253 @@ function tl.get_energy(turtle, cptr) cptr.Y = u16(info.energy) cptr.X = u16(math.floor(info.energy / 0x10000)) end + +-------------- +-- Formspec -- +-------------- +minetest.register_on_player_receive_fields(function(player, formname, fields) + if player:get_player_name():sub(1, 7) == "turtle:" and formname == "turtle:inventory" then + return true + end +end) + +local function send_fields(turtle) + local info = turtles.get_turtle_info(turtle) + local fields = info.formspec_fields + info.formspec_fields = {} + if info.formspec_type.type == "show" then + local dir = minetest.facedir_to_dir(info.dir) + local player = create_turtle_player(turtle, dir, true) + for _, func in ipairs(minetest.registered_on_receive_fields) do + if func(player, info.formspec_type.formname, fields) then + return + end + end + else + local pos = info.formspec_type.pos + local nodedef = minetest.registered_nodes[minetest.get_node(pos).name] + if nodedef and nodedef.on_receive_fields then + local dir = vector.normalize(vector.sub(pos, info.spos)) + local player = create_turtle_player(turtle, dir, true) + nodedef.on_receive_fields(vector.new(pos), "", fields, player) + end + end +end + +function tl.close_form(turtle) + local info = turtles.get_turtle_info(turtle) + if info.formspec_fields then + info.formspec_fields["quit"] = "true" + send_fields(turtle) + info.open_formspec = nil + info.formspec_type = nil + info.formspec_fields = nil + end +end + +local function split_str(str, delim) + local parsed = {} + local i = 1 + local s = "" + while i <= string.len(str) do + if str:sub(i, i) == "\\" then + s = s .. str:sub(i, i + 1) + i = i + 2 + elseif str:sub(i, i) == delim then + parsed[#parsed + 1] = s + s = "" + i = i + 1 + else + s = s .. str:sub(i, i) + i = i + 1 + end + end + parsed[#parsed + 1] = s + return parsed +end + +local function parse_list(lstdef) + local parsed = split_str(lstdef, ";") + local psize = split_str(parsed[4], ",") + if parsed[1] == "current_name" then parsed[1] = "context" end + return {location = parsed[1], listname = parsed[2], + size = tonumber(psize[1]) * tonumber(psize[2]), + start_index = ((parsed[5] and tonumber(parsed[5])) or 0) + 1} +end + +local function merge_adjacent_lists(lsts) + local function merge_at(t, ind) + if t.starts[ind] and t.ends[ind] then + t.starts[t.ends[ind]] = t.starts[ind] + t.ends[t.starts[ind]] = t.ends[ind] + t.starts[ind] = nil + t.ends[ind] = nil + end + end + local locs = {} + for _, lst in ipairs(lsts) do + local loc = lst.location .. ";" .. lst.listname + if locs[loc] == nil then + locs[loc] = {location = lst.location, listname = lst.listname, starts = {}, ends = {}} + end + local starti, endi = lst.start_index, lst.start_index + lst.size + locs[loc].ends[endi] = starti + locs[loc].starts[starti] = endi + merge_at(locs[loc], endi) + merge_at(locs[loc], starti) + end + local new = {} + for _, lst in pairs(locs) do + for starti, endi in pairs(lst.starts) do + new[#new + 1] = {location = lst.location, listname = lst.listname, size = endi - starti, start_index = starti} + end + end + return new +end + +function tl.read_formspec(formspec) + local parsed = split_str(formspec, "]") + local lsts = {} + for _, item in ipairs(parsed) do + if item:sub(1, 5) == "list[" then + lsts[#lsts + 1] = parse_list(item:sub(6, -1)) + end + end + return {lists = merge_adjacent_lists(lsts)} +end + +local old_show_formspec = minetest.show_formspec +function minetest.show_formspec(playername, formname, formspec) + if playername:sub(1, 7) == "turtle:" then + local id = tonumber(playername:sub(8, -1)) + local info = turtles.get_turtle_info(id) + info.open_formspec = tl.read_formspec(formspec) + info.formspec_type = {type = "show", formname = formname} + info.formspec_fields = {} + return + end + old_show_formspec(playername, formname, formspec) +end + +function tl.open_inv(turtle, cptr) + tl.close_form(turtle) + local info = turtles.get_turtle_info(turtle) + info.open_formspec = tl.read_formspec( + "list[current_player;main;0,4.25;8,4;]".. + "list[current_player;craft;1.75,0.5;3,3;]".. + "list[current_player;craftpreview;5.75,1.5;1,1;]") + info.formspec_type = {type = "show", formname = "turtle:inventory"} +end + +-- Formspec memory layout +-- +-----+-----+-----+-----+---- +-- | | Pointer | | +-- | Tag | to next | ID | Data +-- | | element | | +-- +-----+-----+-----+-----+---- +-- +-- For last element (TAG_END), only tag is present + +local function push(cptr, addr, value) + cptr[addr] = bit32.band(value, 0xff) + cptr[u16(addr + 1)] = bit32.band(math.floor(value/256), 0xff) + return u16(addr + 2) +end + +local function pushC(cptr, addr, value) + cptr[addr] = bit32.band(value, 0xff) + return u16(addr + 1) +end + +local function push_string(cptr, addr, str) + for i = 1, string.len(str) do + cptr[u16(addr - 1 + i)] = string.byte(str, i) + end + return u16(addr + string.len(str)) +end + +local function push_string_counted(cptr, addr, str) + -- String length (2 bytes) + -- String contents + return push_string(cptr, push(cptr, addr, string.len(str)), str) +end + +local function push_stack(cptr, addr, stack) + -- Count (2 bytes) + -- Wear (2 bytes) + -- Item name + return push_string_counted(cptr, + push(cptr, + push(cptr, addr, + stack:get_count()), + stack:get_wear()), + stack:get_name()) +end + +local TAG_END = 0 +local TAG_LIST = 1 +function tl.get_formspec(turtle, cptr, addr) + local info = turtles.get_turtle_info(turtle) + if not info.open_formspec then + pushC(cptr, addr, TAG_END) + return + end + local i = 0 + for _, lst in ipairs(info.open_formspec.lists) do + addr = pushC(cptr, addr, TAG_LIST) + local old_addr = addr + addr = u16(addr + 2) + addr = pushC(cptr, addr, i) + i = i + 1 + addr = push_string_counted(cptr, addr, lst.location) + addr = push_string_counted(cptr, addr, lst.listname) + addr = push(cptr, addr, lst.size) + addr = push(cptr, addr, lst.start_index) + push(cptr, old_addr, addr) -- Pointer to next element + end + pushC(cptr, addr, TAG_END) +end + +local function get_element_by_id(formspec, elem_id) + return formspec.lists[elem_id + 1] +end + +local function get_inventory_from_location(turtle, location) + if location == "current_player" then + return turtles.get_turtle_inventory(turtle) + elseif location == "context" then + local info = turtles.get_turtle_info(turtle) + local formspec = info.formspec_type + if formspec and formspec.type == "node" then + return minetest.get_meta(formspec.pos):get_inventory() + end + print("WARNING: tried to access context without open node formspec") + elseif location:sub(1, 8) == "nodemeta" then + local p = split_str(location, ":") + local spos = split_str(p[2], ",") + local pos = {x = tonumber(spos[1]), y = tonumber(spos[2]), z = tonumber(spos[3])} + if pos.x and pos.y and pos.z then + return minetest.get_meta(pos):get_inventory() + end + print("WARNING: incorrect nodemeta element: " .. location) + else + print("WARNING: unimplemented location type: " .. location) + end +end + +function tl.get_stack(turtle, cptr, elem_id, slot, addr) + local info = turtles.get_turtle_info(turtle) + local stack = ItemStack("") + if info.open_formspec then + local formspec = info.open_formspec + local elem = get_element_by_id(formspec, elem_id) + if elem and elem.location and + elem.start_index <= slot and slot <= elem.start_index + elem.size then + local inv = get_inventory_from_location(turtle, elem.location) + if inv then + stack = inv:get_stack(elem.listname, slot) + end + end + end + push_stack(cptr, addr, stack) +end diff --git a/cptr.lua b/cptr.lua index 16344be..6baba87 100644 --- a/cptr.lua +++ b/cptr.lua @@ -86,7 +86,7 @@ end local function write(cptr, addr, value) cptr[addr] = bit32.band(value, 0xff) - cptr[addr+1] = bit32.band(math.floor(value/256), 0xff) + cptr[u16(addr + 1)] = bit32.band(math.floor(value/256), 0xff) end local function push(cptr, value) @@ -308,6 +308,10 @@ ITABLE_RAW = { [0x80] = "tl.refuel(turtle, cptr, cptr.X, cptr.Y)", [0x81] = "tl.select(turtle, cptr, cptr.X)", [0x82] = "tl.get_energy(turtle, cptr)", + + [0x88] = "tl.open_inv(turtle, cptr)", + [0x89] = "tl.get_formspec(turtle, cptr, cptr.X)", + [0x8a] = "tl.get_stack(turtle, cptr, cptr.X, cptr.Y, cptr.Z)", } ITABLE = {} diff --git a/forth.fth b/forth.fth index 6f1afa3..f259e68 100644 --- a/forth.fth +++ b/forth.fth @@ -105,6 +105,10 @@ ASSEMBLER : SELECT PLX 0x81 NXT ; : GET-ENERGY 0x82 PHY PHX NXT ; +: OPEN-INV 0x88 NXT ; +: GET-FORMSPEC PLX 0x89 NXT ; +: GET-STACK PLZ PLY PLX 0x8a NXT ; + ENVIRONMENT 256 CONSTANT /COUNTED-STRING 34 CONSTANT /HOLD @@ -286,10 +290,24 @@ FORTH : D. DUP >R DABS <# BL HOLD #S R> SIGN #> TYPE ; : SM/REM OVER >R 2DUP XOR >R ABS >R DABS R> UM/MOD R> 0< IF NEGATE THEN SWAP R> 0< IF NEGATE THEN SWAP ; \ : KEY BEGIN RAWKEY DUP 31 > OVER 127 < AND IF EXIT THEN DROP AGAIN ; + : ON SET-CHANNEL S" on" SEND ; : OFF SET-CHANNEL S" off" SEND ; : IO@ RECEIVE 3 < ; : LOADPKG 0 0x11e C! PARSE-WORD 0x11a 2! BEGIN 0x11a 2@ SET-CHANNEL 0x11e 1 SEND 0x11e C@ 1+ 0x11e C! 0x11a 2@ 16 RECEIVE-AT 16 C@ WHILE 16 SWAP EVALUATE REPEAT DROP ; + +0xf000 CONSTANT FORMSPEC-BUFFER +0 CONSTANT TAG-END +1 CONSTANT TAG-LIST +\ location location-length listname listname-length formspec-addr +: IS-ADDR-LIST DUP >R @ 3 PICK = IF 3 PICK R@ 2 + R@ @ STR= IF R@ @ R> + 2 + DUP >R @ OVER = IF OVER R@ 2 + R@ @ STR= ELSE 0 THEN ELSE 0 THEN ELSE 0 THEN R> DROP ; +: GET-LIST-ADDR >R BEGIN R@ C@ WHILE R@ R@ 1+ @ R@ C@ SWAP >R TAG-LIST = IF 4 + IS-ADDR-LIST IF R> DROP DROP DROP DROP DROP R> -1 EXIT THEN THEN R> R> DROP >R REPEAT R> DROP DROP DROP DROP DROP 0 ; +: GET-ELEM-ID 3 + C@ ; +: GET-LIST-ID GET-LIST-ADDR IF GET-ELEM-ID ELSE -1 THEN ; +: GET-INV-ID >R S" current_player" S" main" R> GET-LIST-ID ; +: GET-CRAFT-ID >R S" current_player" S" craft" R> GET-LIST-ID ; +: GET-CRAFT-OUTPUT-ID >R S" current_player" S" craftpreview" R> GET-LIST-ID ; + : GET-CURRENT CW @ ; : SET-CURRENT LATEST @ CW @ ! DUP CW ! @ LATEST ! ; : WORDLIST NEW-WORDLIST @ DUP CELL+ NEW-WORDLIST ! ; diff --git a/forth_floppy.lua b/forth_floppy.lua index 1e85324..63c02a2 100644 --- a/forth_floppy.lua +++ b/forth_floppy.lua @@ -1,3 +1,3 @@ function create_forth_floppy() - return "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\010\000\000\000\027\033\000\000\000\000\078\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\120\018\180\001\176\001\001\000\000\000\000\000\000\000\000\000\027\033\235\010\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\176\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\077\000\002\024\077\000\003\025\077\027\033\026\000\069\088\073\084\000\000\004\040\041\000\040\108\105\116\041\020\004\005\043\033\041\000\040\115\108\105\116\041\031\004\006\043\069\011\033\034\012\068\027\041\000\040\100\111\100\111\101\115\041\044\004\008\043\033\043\027\041\000\068\085\080\065\004\003\048\033\041\000\083\087\065\080\077\004\004\049\050\033\034\041\000\082\079\084\088\004\003\049\050\051\034\033\035\041\000\045\082\079\084\100\004\004\049\050\051\033\035\034\041\000\079\086\069\082\115\004\004\050\048\034\033\041\000\080\073\067\075\130\004\004\050\068\012\008\013\007\034\041\000\068\082\079\080\143\004\004\049\041\000\050\068\082\079\080\159\004\005\049\049\041\000\050\068\085\080\170\004\004\050\048\034\033\034\041\000\050\083\087\065\080\181\004\005\049\050\051\003\051\034\033\035\019\035\041\000\050\079\086\069\082\196\004\005\051\003\051\050\048\034\035\019\035\033\034\041\000\078\073\080\216\004\003\049\032\041\000\084\085\067\075\235\004\004\049\050\033\034\033\041\000\063\068\085\080\246\004\004\048\057\001\000\041\033\041\000\062\082\004\005\002\049\001\041\000\082\062\017\005\002\017\033\041\000\082\064\026\005\002\016\033\041\000\033\035\005\001\050\049\038\041\000\067\033\043\005\002\050\049\054\041\000\064\053\005\001\048\004\032\041\000\067\064\062\005\002\048\020\032\041\000\065\078\068\072\005\003\050\048\044\032\041\000\079\082\083\005\002\050\048\045\032\041\000\088\079\082\094\005\003\050\048\046\032\041\000\073\078\086\069\082\084\106\005\006\048\047\032\041\000\040\098\114\097\110\099\104\041\121\005\008\043\027\041\000\040\048\098\114\097\110\099\104\041\137\005\009\050\043\058\001\000\027\041\000\082\079\076\076\153\005\004\050\065\075\068\012\008\013\005\033\049\068\074\074\007\037\073\073\069\072\059\245\255\041\000\043\168\005\001\050\049\012\034\041\000\045\196\005\001\050\049\013\034\041\000\043\033\206\005\002\050\065\007\049\012\066\037\041\000\042\217\005\001\050\049\014\034\041\000\085\060\230\005\002\050\048\013\032\041\000\085\062\241\005\002\049\050\013\033\041\000\077\042\252\005\002\050\049\015\034\033\041\000\085\077\042\007\006\003\050\049\014\034\033\041\000\048\061\020\006\002\048\057\003\000\047\032\041\077\000\000\032\041\000\048\060\062\032\006\003\048\057\001\000\041\077\255\255\032\041\000\048\060\051\006\002\050\063\033\041\000\048\062\067\006\002\050\058\002\000\034\041\063\047\033\041\000\060\062\077\006\002\050\048\013\058\002\000\032\041\077\255\255\032\041\000\061\093\006\001\050\048\013\058\005\000\077\255\255\032\041\077\000\000\032\041\000\069\077\080\084\089\082\111\006\006\077\000\003\025\041\000\069\077\080\084\089\083\137\006\006\077\000\002\024\041\000\068\069\080\084\072\152\006\005\008\078\000\002\013\068\078\001\000\061\033\041\000\050\042\166\006\002\078\001\000\048\062\032\041\000\050\047\184\006\002\078\001\000\048\061\032\041\000\082\083\072\073\070\084\197\006\006\050\048\060\032\041\000\076\083\072\073\070\084\214\006\006\050\048\062\032\041\000\050\062\082\229\006\003\050\049\001\002\041\000\050\082\062\241\006\003\018\017\033\034\041\000\050\082\064\253\006\003\018\016\002\033\034\041\000\049\043\009\007\002\048\073\032\041\000\049\045\021\007\002\048\070\032\041\000\069\088\069\067\085\084\069\031\007\007\049\026\000\042\047\077\079\068\046\007\005\051\050\049\015\031\035\034\041\000\042\047\057\007\002\051\050\049\015\031\034\041\000\047\077\079\068\071\007\004\051\050\063\031\035\034\041\000\047\086\007\001\051\050\063\031\034\041\000\077\079\068\098\007\003\051\050\063\031\035\041\000\085\077\047\077\079\068\111\007\006\051\049\050\030\035\034\041\000\070\077\047\077\079\068\127\007\006\051\049\050\031\035\034\041\000\079\043\144\007\002\050\049\012\034\033\041\000\085\068\077\047\077\079\068\157\007\007\051\049\050\030\035\034\033\041\000\060\174\007\001\050\063\065\050\034\046\069\063\047\057\004\000\050\063\033\041\049\067\013\033\041\000\062\187\007\001\049\050\033\063\065\050\034\046\069\063\047\057\004\000\050\063\033\041\049\067\013\033\041\000\078\069\071\065\084\069\213\007\006\048\047\073\032\041\000\040\100\111\041\246\007\004\043\001\050\051\003\002\041\000\040\063\100\111\041\003\008\005\043\001\050\049\001\002\013\058\004\000\018\018\017\027\041\000\073\019\008\001\016\033\041\000\074\039\008\001\019\018\034\018\016\002\050\002\003\033\041\000\085\078\076\079\079\080\047\008\006\018\018\018\041\000\040\108\111\111\112\041\068\008\006\018\074\016\002\013\043\058\004\000\018\018\018\041\027\041\000\040\043\108\111\111\112\041\082\008\007\018\065\049\012\016\070\002\067\064\013\063\033\066\018\002\013\063\050\046\069\043\058\002\000\027\041\018\018\018\041\000\087\065\073\084\108\008\004\000\041\000\076\069\065\086\069\146\008\005\017\017\017\027\041\000\082\069\067\069\073\086\069\045\065\084\157\008\010\051\050\048\082\032\041\000\068\069\076\069\084\069\045\077\083\071\176\008\010\050\049\083\041\000\083\069\084\045\067\072\065\078\078\069\076\196\008\011\050\049\085\041\000\083\069\078\068\215\008\004\050\049\084\041\000\070\087\227\008\002\096\033\041\000\066\087\237\008\002\097\033\041\000\085\080\246\008\002\098\033\041\000\068\078\255\008\002\099\033\041\000\084\076\008\009\002\100\041\000\084\082\017\009\002\101\041\000\068\084\025\009\002\049\104\033\041\000\068\084\045\085\080\033\009\005\049\105\033\041\000\068\084\045\068\078\046\009\005\049\106\033\041\000\068\073\071\059\009\003\112\041\000\068\073\071\045\085\080\070\009\006\113\041\000\068\073\071\045\068\078\082\009\006\114\041\000\080\076\065\067\069\094\009\005\116\041\000\080\076\065\067\069\045\085\080\105\009\008\117\041\000\080\076\065\067\069\045\068\078\119\009\008\118\041\000\082\069\070\085\069\076\133\009\006\050\049\128\033\041\000\083\069\076\069\067\084\145\009\006\049\129\041\000\071\069\084\045\069\078\069\082\071\089\160\009\010\130\034\033\041\000\047\067\079\085\078\084\069\068\045\083\084\082\073\078\071\000\000\015\077\000\001\033\041\000\047\072\079\076\068\200\009\005\077\034\000\033\041\000\047\080\065\068\214\009\004\077\084\000\033\041\000\065\068\082\069\083\083\045\085\078\073\084\045\066\073\084\083\227\009\016\077\008\000\033\041\000\067\079\082\069\252\009\004\077\255\255\033\041\000\067\079\082\069\045\069\088\084\009\010\008\077\255\255\033\041\000\070\076\079\079\082\069\068\026\010\007\077\255\255\033\041\000\077\065\088\045\067\072\065\082\042\010\008\077\255\000\033\041\000\077\065\088\045\078\059\010\005\077\255\127\033\041\000\077\065\088\045\085\073\010\005\077\255\255\033\041\000\082\069\084\085\082\078\045\083\084\065\067\075\045\067\069\076\076\083\087\010\018\077\128\000\033\041\000\083\084\065\067\075\045\067\069\076\076\083\114\010\011\077\128\000\033\041\000\077\065\088\045\085\068\134\010\006\077\255\255\033\077\255\255\033\041\000\077\065\088\045\068\149\010\005\077\255\255\033\077\255\127\033\041\000\083\069\065\082\067\072\045\079\082\068\069\082\167\010\012\077\255\255\033\041\000\083\069\065\082\067\072\045\079\082\068\069\082\045\069\088\084\192\010\016\077\255\255\033\041\000\087\079\082\068\076\073\083\084\083\217\010\009\077\008\000\033\041\000\066\076\177\009\002\077\032\000\033\041\000\070\065\076\083\069\246\010\005\077\000\000\033\041\000\084\082\085\069\004\011\004\077\255\255\033\041\000\040\115\111\117\114\099\101\041\017\011\008\077\000\001\033\041\000\062\073\078\034\011\003\077\004\001\033\041\000\083\079\085\082\067\069\045\073\068\046\011\009\077\006\001\033\041\000\066\065\083\069\064\011\004\077\008\001\033\041\000\083\084\065\084\069\077\011\005\077\010\001\033\041\000\076\065\084\069\083\084\091\011\006\077\012\001\033\041\000\083\080\065\078\106\011\004\077\016\001\033\041\000\040\104\101\114\101\041\119\011\006\077\018\001\033\041\000\076\084\134\011\002\077\020\001\033\041\000\035\084\073\066\145\011\004\077\022\001\033\041\000\084\073\066\158\011\003\077\024\001\033\041\000\039\078\085\077\066\069\082\170\011\007\077\160\001\033\041\000\078\069\087\045\087\079\082\068\076\073\083\084\186\011\012\077\162\001\033\041\000\067\087\207\011\002\077\164\001\033\041\000\078\087\079\082\068\069\082\218\011\007\077\166\001\033\041\000\087\079\082\068\076\073\083\084\083\234\011\009\077\176\001\033\041\000\070\079\082\084\072\045\087\079\082\068\076\073\083\084\252\011\014\077\176\001\033\041\000\069\078\086\068\073\067\079\019\012\007\077\178\001\033\041\000\087\079\082\068\069\082\035\012\006\077\208\001\033\041\000\067\072\065\082\083\050\012\133\042\020\004\000\065\076\073\071\078\064\012\133\042\020\004\000\065\076\073\071\078\069\068\076\012\135\042\020\004\000\067\069\076\076\043\090\012\005\042\031\004\002\000\196\005\020\004\000\067\069\076\076\045\102\012\005\042\031\004\002\000\206\005\020\004\000\067\072\065\082\043\120\012\005\042\021\007\020\004\000\067\069\076\076\083\138\012\005\042\184\006\020\004\000\069\077\073\084\152\012\004\042\044\004\006\000\115\099\114\101\101\110\215\008\031\004\002\000\043\005\031\004\002\000\031\004\001\000\227\008\020\004\000\082\069\067\069\073\086\069\165\012\007\042\031\004\128\000\176\008\020\004\000\050\033\207\012\002\042\088\004\130\004\043\005\102\012\043\005\020\004\000\050\064\222\012\002\042\077\004\102\012\062\005\088\004\062\005\020\004\000\083\079\085\082\067\069\241\012\006\042\034\011\241\012\020\004\000\083\062\068\008\013\003\042\077\004\067\006\020\004\000\077\065\088\022\013\003\042\181\004\213\007\153\005\051\013\159\004\137\005\053\013\235\004\020\004\000\077\073\078\036\013\003\042\181\004\213\007\153\005\077\013\235\004\137\005\079\013\159\004\020\004\000\068\043\062\013\002\042\100\004\196\005\115\004\157\007\100\004\196\005\020\004\000\072\069\088\087\013\003\042\031\004\016\000\077\011\043\005\020\004\000\068\069\067\073\077\065\076\109\013\007\042\031\004\010\000\077\011\043\005\020\004\000\084\085\067\075\131\013\004\042\088\004\130\004\020\004\000\065\066\083\150\013\003\042\077\004\067\006\153\005\175\013\246\007\020\004\000\040\109\097\114\107\101\114\041\164\013\008\042\106\011\043\005\134\011\043\005\020\004\000\084\089\080\069\189\013\004\042\077\004\077\006\153\005\241\013\130\004\196\005\088\004\019\008\237\013\039\008\072\005\165\012\082\008\227\013\137\005\243\013\170\004\020\004\000\082\083\084\082\208\013\004\042\021\007\077\004\031\004\002\000\196\005\072\005\031\004\127\000\083\005\150\013\206\005\088\004\020\004\000\067\082\253\013\002\042\031\004\010\000\165\012\020\004\000\083\080\065\067\069\030\014\005\042\031\004\032\000\165\012\020\004\000\083\080\065\067\069\083\048\014\006\042\077\004\077\006\153\005\094\014\031\004\000\000\003\008\090\014\048\014\082\008\084\014\137\005\096\014\159\004\020\004\000\083\084\082\061\067\014\004\042\031\004\000\000\003\008\149\014\130\004\072\005\130\004\072\005\093\006\153\005\137\014\068\008\170\004\004\011\020\004\088\004\021\007\088\004\021\007\082\008\115\014\170\004\017\011\020\004\000\073\077\077\069\068\073\065\084\069\106\014\009\042\106\011\062\005\031\007\077\004\072\005\031\004\128\000\094\005\088\004\053\005\020\004\000\072\069\082\069\168\014\004\042\134\011\062\005\020\004\000\091\199\014\129\042\004\011\091\011\043\005\020\004\000\093\211\014\001\042\017\011\091\011\043\005\020\004\000\065\076\076\079\084\225\014\005\042\134\011\217\005\020\004\000\044\243\014\001\042\199\014\043\005\031\004\002\000\243\014\020\004\000\067\044\255\014\002\042\199\014\053\005\031\004\001\000\243\014\020\004\000\083\075\073\080\045\087\072\073\084\069\018\015\010\042\077\004\072\005\031\004\033\000\187\007\153\005\076\015\021\007\181\004\111\006\153\005\072\015\020\004\137\005\046\015\020\004\000\069\088\073\084\045\073\070\045\069\078\068\045\015\011\042\008\013\235\004\046\011\062\005\111\006\153\005\120\015\008\013\196\005\031\004\000\000\026\005\159\004\020\004\000\080\065\082\083\069\045\076\073\077\073\084\083\093\015\012\042\008\013\130\004\196\005\088\004\046\011\062\005\196\005\020\004\000\062\073\078\045\069\078\068\138\015\007\042\008\013\235\004\046\011\043\005\020\004\000\067\079\085\078\084\069\068\045\083\084\082\073\078\071\166\015\014\042\077\004\199\014\053\005\199\014\021\007\115\004\130\004\196\005\088\004\003\008\232\015\039\008\072\005\130\004\053\005\021\007\082\008\218\015\159\004\199\014\020\004\000\080\065\082\083\069\045\087\079\082\068\195\015\010\042\093\015\138\015\045\015\181\004\111\006\153\005\021\016\166\015\159\004\031\004\000\000\020\004\077\004\017\005\077\004\072\005\031\004\032\000\213\007\153\005\067\016\021\007\181\004\111\006\153\005\063\016\166\015\159\004\035\005\206\005\026\005\088\004\020\004\137\005\025\016\235\004\077\004\008\013\159\004\206\005\021\007\046\011\043\005\035\005\206\005\026\005\088\004\020\004\000\080\065\082\083\069\252\015\005\042\008\013\235\004\046\011\062\005\111\006\153\005\129\016\159\004\008\013\196\005\031\004\000\000\020\004\138\015\077\004\017\005\100\004\017\005\077\004\072\005\035\005\093\006\153\005\183\016\021\007\181\004\111\006\153\005\179\016\026\005\159\004\166\015\159\004\035\005\206\005\026\005\088\004\020\004\137\005\139\016\026\005\159\004\235\004\077\004\008\013\159\004\206\005\021\007\046\011\043\005\035\005\206\005\026\005\088\004\020\004\000\087\079\082\068\102\016\004\042\008\013\235\004\046\011\062\005\111\006\153\005\250\016\159\004\031\004\000\000\199\014\053\005\199\014\020\004\138\015\077\004\017\005\100\004\017\005\077\004\072\005\035\005\093\006\153\005\048\017\021\007\181\004\111\006\153\005\044\017\026\005\159\004\166\015\159\004\035\005\206\005\026\005\088\004\020\004\137\005\004\017\026\005\159\004\235\004\077\004\008\013\159\004\206\005\021\007\046\011\043\005\035\005\206\005\026\005\088\004\195\015\020\004\000\072\069\065\068\069\082\221\016\006\042\252\015\150\013\031\004\000\000\018\015\130\004\196\005\088\004\003\008\121\017\039\008\072\005\018\015\082\008\111\017\106\011\062\005\255\014\018\015\020\004\000\058\090\017\001\042\090\017\199\014\077\004\145\011\043\005\031\004\042\000\018\015\225\014\020\004\000\058\067\079\068\069\136\017\005\042\090\017\199\014\077\004\145\011\043\005\020\004\000\085\078\085\083\069\068\166\017\006\042\199\014\246\007\020\004\000\078\067\072\065\082\189\017\005\042\077\004\072\005\077\004\031\004\058\000\187\007\153\005\232\017\031\004\048\000\206\005\137\005\004\018\077\004\031\004\097\000\187\007\153\005\254\017\031\004\055\000\206\005\137\005\004\018\031\004\087\000\206\005\020\004\000\062\078\085\077\066\069\082\205\017\007\042\077\004\017\005\031\004\000\000\003\008\110\018\205\017\077\004\077\011\062\005\187\007\130\004\067\006\121\005\083\005\153\005\092\018\196\004\077\011\062\005\230\005\031\004\000\000\088\004\100\004\077\011\062\005\020\006\087\013\100\004\031\004\000\000\087\013\100\004\021\007\137\005\106\018\159\004\039\008\068\008\026\005\088\004\206\005\020\004\082\008\030\018\026\005\159\004\031\004\000\000\020\004\042\031\004\000\000\031\004\000\000\196\004\130\004\072\005\031\004\045\000\111\006\153\005\171\018\088\004\021\007\088\004\031\007\017\018\196\004\159\004\246\007\031\004\001\000\196\004\137\005\183\018\017\018\100\004\159\004\031\004\001\000\115\004\020\004\000\078\085\077\066\069\082\017\018\006\042\186\011\062\005\046\007\020\004\000\083\065\086\069\045\073\078\080\085\084\195\018\010\042\046\011\062\005\031\004\001\000\020\004\000\082\069\083\084\079\082\069\045\073\078\080\085\084\218\018\013\042\077\004\031\004\001\000\111\006\153\005\015\019\159\004\046\011\043\005\004\011\137\005\031\019\031\004\000\000\019\008\029\019\159\004\082\008\023\019\017\011\020\004\000\067\079\085\078\084\246\018\005\042\077\004\021\007\088\004\072\005\020\004\000\067\072\065\082\042\019\004\042\252\015\159\004\072\005\020\004\000\070\073\076\076\061\019\004\042\115\004\077\004\077\006\153\005\113\019\130\004\196\005\088\004\003\008\109\019\077\004\039\008\053\005\082\008\099\019\137\005\115\019\170\004\159\004\020\004\000\069\082\065\083\069\078\019\005\042\031\004\000\000\078\019\020\004\000\040\128\019\129\042\031\004\041\000\102\016\170\004\020\004\000\046\040\142\019\130\042\031\004\041\000\102\016\208\013\020\004\000\092\159\019\129\042\031\004\010\000\102\016\170\004\020\004\000\084\072\069\078\175\019\132\042\199\014\088\004\043\005\020\004\000\066\069\071\073\078\194\019\133\042\199\014\020\004\000\070\073\078\068\045\087\079\082\068\045\068\073\067\079\212\019\014\042\088\004\017\005\077\004\031\004\004\000\206\005\253\013\035\005\111\006\153\005\028\020\031\004\002\000\143\004\035\005\106\014\153\005\024\020\235\004\026\005\159\004\020\004\137\005\030\020\159\004\031\004\003\000\206\005\062\005\077\004\032\006\153\005\240\019\235\004\026\005\159\004\020\004\000\071\069\084\045\087\076\045\076\065\084\069\083\084\235\019\013\042\077\004\218\011\062\005\111\006\153\005\094\020\159\004\106\011\062\005\137\005\096\020\062\005\020\004\000\070\073\078\068\045\087\079\082\068\071\020\009\042\050\012\234\011\062\005\184\006\196\005\050\012\003\008\154\020\039\008\062\005\071\020\235\019\004\005\153\005\146\020\068\008\020\004\031\004\002\000\108\008\128\020\031\004\000\000\020\004\000\039\111\020\001\042\252\015\111\020\020\004\000\080\079\083\084\080\079\078\069\165\020\136\042\165\020\077\004\031\007\072\005\031\004\128\000\083\005\153\005\209\020\255\014\137\005\223\020\031\004\031\004\255\014\255\014\031\004\255\014\255\014\020\004\000\076\073\084\069\082\065\076\184\020\135\042\031\004\031\004\255\014\255\014\020\004\000\078\076\073\084\069\082\065\076\236\020\136\042\077\004\017\005\031\004\000\000\003\008\032\021\031\004\031\004\255\014\031\004\000\000\255\014\082\008\016\021\026\005\031\004\000\000\003\008\066\021\199\014\031\004\002\000\206\005\039\008\031\004\004\000\230\005\206\005\043\005\082\008\042\021\020\004\000\068\079\069\083\062\003\021\005\042\031\004\065\004\106\011\062\005\021\007\043\005\026\005\106\011\062\005\031\004\005\000\196\005\043\005\020\004\000\091\039\093\077\021\131\042\165\020\236\020\020\004\000\091\067\079\077\080\073\076\069\093\113\021\137\042\165\020\255\014\020\004\000\059\133\021\129\042\031\004\020\004\255\014\106\011\043\005\211\014\020\004\000\067\079\068\069\059\145\021\005\042\031\004\041\000\018\015\106\011\043\005\020\004\000\091\067\072\065\082\093\169\021\134\042\061\019\236\020\020\004\000\067\082\069\065\084\069\192\021\006\042\090\017\199\014\106\011\043\005\031\004\042\000\018\015\199\014\031\004\006\000\196\005\236\020\031\004\020\004\255\014\020\004\000\086\065\082\073\065\066\076\069\209\021\008\042\209\021\031\004\002\000\243\014\020\004\000\067\079\078\083\084\065\078\084\254\021\008\042\090\017\199\014\106\011\043\005\031\004\077\000\018\015\255\014\031\004\033\000\018\015\031\004\041\000\018\015\020\004\000\077\065\082\075\069\082\021\022\006\042\199\014\090\017\199\014\088\004\031\004\042\000\018\015\236\020\106\011\062\005\236\020\031\004\189\013\255\014\031\004\020\004\255\014\106\011\043\005\020\004\000\073\070\062\022\130\042\031\004\153\005\255\014\199\014\031\004\000\000\255\014\020\004\000\069\076\083\069\109\022\132\042\031\004\137\005\255\014\199\014\088\004\031\004\000\000\255\014\199\014\088\004\043\005\020\004\000\085\078\084\073\076\134\022\133\042\031\004\153\005\255\014\255\014\020\004\000\082\069\080\069\065\084\168\022\134\042\031\004\137\005\255\014\255\014\199\014\088\004\043\005\020\004\000\087\072\073\076\069\189\022\133\042\031\004\153\005\255\014\199\014\088\004\031\004\000\000\255\014\020\004\000\067\065\083\069\215\022\132\042\031\004\000\000\020\004\000\069\078\068\067\065\083\069\242\022\135\042\031\004\159\004\255\014\077\004\051\006\153\005\029\023\199\014\088\004\043\005\137\005\011\023\159\004\020\004\000\079\070\004\023\130\042\031\004\130\004\255\014\031\004\111\006\255\014\031\004\153\005\255\014\199\014\031\004\000\000\255\014\031\004\159\004\255\014\020\004\000\069\078\068\079\070\039\023\133\042\031\004\137\005\255\014\199\014\031\004\000\000\255\014\199\014\100\004\043\005\020\004\000\083\076\073\084\069\082\065\076\083\023\136\042\031\004\044\004\255\014\077\004\255\014\130\004\196\005\088\004\019\008\149\023\039\008\072\005\018\015\082\008\139\023\020\004\000\083\034\118\023\130\042\031\004\034\000\102\016\118\023\020\004\000\080\065\068\157\023\003\042\199\014\031\004\036\000\196\005\020\004\000\086\065\076\085\069\175\023\005\042\090\017\199\014\106\011\043\005\031\004\077\000\018\015\255\014\031\004\033\000\018\015\031\004\041\000\018\015\020\004\000\084\079\195\023\130\042\252\015\111\020\021\007\091\011\062\005\153\005\003\024\236\020\031\004\043\005\255\014\137\005\005\024\043\005\020\004\000\067\079\077\080\073\076\069\044\232\023\008\042\255\014\020\004\000\065\071\065\073\078\019\024\133\042\031\004\137\005\255\014\255\014\020\004\000\065\066\079\082\084\033\024\005\042\152\006\062\029\020\004\000\067\079\077\080\073\076\069\045\087\079\082\068\053\024\012\042\181\004\241\006\111\020\004\005\153\005\121\024\253\006\170\004\077\004\031\007\072\005\031\004\128\000\083\005\153\005\115\024\046\007\137\005\117\024\255\014\137\005\173\024\009\007\195\018\032\006\153\005\143\024\159\004\253\006\170\004\003\021\137\005\173\024\159\004\031\004\000\000\019\008\159\024\159\004\082\008\153\024\253\006\208\013\048\014\031\004\063\000\165\012\053\024\020\004\000\067\079\085\078\084\076\024\005\042\077\004\021\007\088\004\072\005\020\004\000\082\069\067\085\082\083\069\184\024\135\042\145\011\062\005\255\014\020\004\000\058\078\079\078\065\077\069\206\024\007\042\199\014\077\004\145\011\043\005\031\004\042\000\018\015\106\011\062\005\225\014\020\004\000\062\066\079\068\089\226\024\005\042\031\004\007\000\196\005\020\004\000\069\078\086\073\082\079\078\077\069\078\084\063\002\025\012\042\035\012\062\005\235\019\077\004\153\005\044\025\046\007\017\011\020\004\000\068\048\061\027\025\003\042\094\005\032\006\020\004\000\072\079\076\068\053\025\004\042\199\014\062\005\031\007\077\004\199\014\043\005\053\005\020\004\000\035\068\025\001\042\077\011\062\005\174\007\100\004\077\004\031\004\009\000\213\007\153\005\121\025\031\004\055\000\196\005\137\005\127\025\031\004\048\000\196\005\068\025\020\004\000\035\083\090\025\002\042\090\025\181\004\053\025\153\005\138\025\020\004\000\046\034\137\025\130\042\157\023\031\004\208\013\255\014\020\004\000\067\034\156\025\130\042\031\004\034\000\102\016\031\004\137\005\255\014\199\014\031\004\000\000\255\014\115\004\199\014\115\004\077\004\018\015\130\004\196\005\088\004\019\008\224\025\039\008\072\005\018\015\082\008\214\025\088\004\199\014\088\004\043\005\236\020\020\004\000\060\035\173\025\002\042\175\023\199\014\043\005\020\004\000\035\062\242\025\002\042\170\004\199\014\062\005\175\023\130\004\206\005\020\004\000\083\073\071\078\001\026\004\042\067\006\153\005\037\026\031\004\045\000\068\025\020\004\000\067\079\078\086\069\082\084\024\026\007\042\031\004\255\255\017\018\159\004\020\004\000\077\079\086\069\050\026\004\042\077\004\032\006\153\005\084\026\159\004\170\004\020\004\115\004\181\004\252\005\153\005\128\026\100\004\031\004\000\000\003\008\124\026\130\004\072\005\130\004\053\005\021\007\088\004\021\007\088\004\082\008\104\026\137\005\174\026\031\004\002\000\143\004\150\013\196\005\115\004\196\005\088\004\100\004\031\004\000\000\003\008\174\026\031\007\088\004\031\007\088\004\130\004\072\005\130\004\053\005\082\008\154\026\170\004\020\004\000\046\069\026\001\042\077\004\017\005\164\013\031\004\000\000\242\025\246\010\068\025\137\025\026\005\024\026\001\026\208\013\020\004\000\085\046\183\026\002\042\031\004\000\000\242\025\246\010\068\025\137\025\001\026\208\013\020\004\000\046\082\218\026\002\042\017\005\077\004\017\005\164\013\031\004\000\000\242\025\246\010\068\025\137\025\026\005\024\026\001\026\026\005\130\004\206\005\067\014\208\013\020\004\000\085\046\082\243\026\003\042\017\005\031\004\000\000\242\025\246\010\068\025\137\025\001\026\026\005\130\004\206\005\067\014\208\013\020\004\000\087\073\084\072\073\078\033\027\006\042\130\004\206\005\017\005\206\005\026\005\241\005\020\004\000\068\079\072\027\130\042\031\004\003\008\255\014\199\014\031\004\000\000\255\014\199\014\020\004\000\063\068\079\093\027\131\042\031\004\019\008\255\014\199\014\031\004\000\000\255\014\199\014\020\004\000\076\079\079\080\119\027\132\042\031\004\082\008\255\014\255\014\199\014\088\004\043\005\020\004\000\043\076\079\079\080\146\027\133\042\031\004\108\008\255\014\255\014\199\014\088\004\043\005\020\004\000\065\067\067\069\080\084\172\027\006\042\044\004\006\000\115\099\114\101\101\110\196\008\044\004\006\000\115\099\114\101\101\110\031\004\016\000\176\008\077\004\067\006\153\005\244\027\159\004\146\008\137\005\212\027\062\013\150\013\031\004\016\000\115\004\069\026\020\004\000\069\088\080\069\067\084\199\027\006\042\199\027\119\011\043\005\020\004\000\081\085\069\082\089\012\028\005\042\031\004\000\000\046\011\043\005\031\004\000\000\064\011\043\005\170\011\077\004\031\004\080\000\199\027\048\014\034\011\222\012\020\004\000\082\069\070\073\076\076\030\028\006\042\064\011\062\005\153\005\090\028\004\011\137\005\116\028\031\004\000\000\046\011\043\005\170\011\077\004\031\004\080\000\199\027\048\014\034\011\222\012\017\011\020\004\000\073\078\084\069\082\080\082\069\084\045\087\079\082\068\075\028\014\042\181\004\241\006\111\020\004\005\153\005\159\028\253\006\170\004\046\007\137\005\209\028\009\007\195\018\032\006\153\005\179\028\170\004\253\006\170\004\137\005\209\028\159\004\031\004\000\000\019\008\195\028\159\004\082\008\189\028\253\006\208\013\048\014\031\004\063\000\165\012\053\024\020\004\000\069\086\065\076\085\065\084\069\136\028\008\042\008\013\241\006\046\011\062\005\017\005\064\011\062\005\017\005\031\004\255\255\064\011\043\005\031\004\000\000\046\011\043\005\034\011\222\012\252\015\004\005\153\005\032\029\091\011\062\005\153\005\026\029\076\024\137\005\028\029\136\028\137\005\004\029\159\004\026\005\064\011\043\005\026\005\046\011\043\005\253\006\034\011\222\012\020\004\000\081\085\073\084\223\028\004\042\137\006\030\014\075\028\153\005\123\029\252\015\004\005\153\005\101\029\091\011\062\005\153\005\095\029\076\024\137\005\097\029\136\028\137\005\073\029\159\004\048\014\031\004\079\000\165\012\031\004\075\000\165\012\030\014\137\005\067\029\020\004\000\040\097\098\111\114\116\034\041\062\029\008\042\100\004\153\005\148\029\208\013\053\024\170\004\020\004\000\065\066\079\082\084\034\137\029\134\042\157\023\031\004\137\029\255\014\020\004\000\068\065\066\083\162\029\004\042\077\004\067\006\153\005\212\029\130\004\246\007\100\004\153\005\208\029\088\004\121\005\137\005\212\029\088\004\246\007\020\004\000\068\046\181\029\002\042\077\004\017\005\181\029\242\025\246\010\068\025\137\025\026\005\024\026\001\026\208\013\020\004\000\083\077\047\082\069\077\220\029\006\042\130\004\017\005\181\004\106\005\017\005\164\013\017\005\181\029\026\005\127\007\026\005\067\006\153\005\030\030\246\007\088\004\026\005\067\006\153\005\042\030\246\007\088\004\020\004\000\079\078\255\029\002\042\215\008\044\004\002\000\111\110\227\008\020\004\000\079\070\070\052\030\003\042\215\008\044\004\003\000\111\102\102\227\008\020\004\000\073\079\064\072\030\003\042\207\012\031\004\003\000\187\007\020\004\000\076\079\065\068\080\075\071\093\030\007\042\031\004\000\000\031\004\030\001\053\005\252\015\031\004\026\001\222\012\031\004\026\001\241\012\215\008\031\004\030\001\031\004\001\000\227\008\031\004\030\001\072\005\021\007\031\004\030\001\053\005\031\004\026\001\241\012\031\004\016\000\176\008\031\004\016\000\072\005\153\005\200\030\031\004\016\000\088\004\223\028\137\005\134\030\159\004\020\004\000\071\069\084\045\067\085\082\082\069\078\084\115\030\011\042\218\011\062\005\020\004\000\083\069\084\045\067\085\082\082\069\078\084\219\030\011\042\106\011\062\005\218\011\062\005\043\005\077\004\218\011\043\005\062\005\106\011\043\005\020\004\000\087\079\082\068\076\073\083\084\241\030\008\042\207\011\062\005\077\004\102\012\207\011\043\005\020\004\000\068\069\070\073\078\073\084\073\079\078\083\022\031\011\042\050\012\062\005\241\030\020\004\000\071\069\084\045\079\082\068\069\082\052\031\009\042\050\012\234\011\062\005\031\007\184\006\196\005\019\008\103\031\039\008\062\005\031\004\254\255\108\008\091\031\234\011\062\005\020\004\000\083\069\084\045\079\082\068\069\082\074\031\009\042\077\004\234\011\043\005\050\012\031\004\000\000\019\008\149\031\150\013\043\005\102\012\082\008\139\031\159\004\020\004\000\065\076\083\079\122\031\004\042\050\012\077\004\102\012\234\011\062\005\184\006\069\026\234\011\031\004\002\000\217\005\020\004\000\070\079\082\084\072\161\031\005\042\019\012\050\012\043\005\020\004\000\079\078\076\089\195\031\004\042\195\031\031\004\001\000\234\011\043\005\020\004\000\079\082\068\069\082\212\031\005\042\050\012\234\011\062\005\184\006\196\005\050\012\003\008\009\032\039\008\062\005\183\026\031\004\002\000\108\008\251\031\030\014\218\011\062\005\020\004\000\080\082\069\086\073\079\085\083\234\031\008\042\050\012\102\012\050\012\234\011\062\005\031\007\184\006\069\026\234\011\031\004\254\255\217\005\020\004\000\083\069\065\082\067\072\045\087\079\082\068\076\073\083\084\029\032\015\042\071\020\235\019\077\004\153\005\114\032\077\004\031\007\072\005\031\004\128\000\083\005\153\005\110\032\031\004\001\000\137\005\114\032\031\004\255\255\020\004\000\070\073\078\068\075\032\004\042\077\004\184\024\050\012\234\011\062\005\184\006\196\005\050\012\003\008\179\032\181\004\039\008\062\005\075\032\004\005\153\005\171\032\241\006\170\004\159\004\253\006\068\008\020\004\031\004\002\000\108\008\145\032\170\004\031\004\000\000\020\004\000\068\085\077\080\124\032\004\042\215\008\031\004\000\001\031\004\000\000\003\008\246\032\039\008\031\004\064\000\230\005\175\023\021\007\031\004\064\000\069\026\039\008\175\023\053\005\175\023\031\004\065\000\227\008\082\008\210\032\020\004\000\083\065\086\069\045\083\084\065\084\069\195\032\010\042\044\004\004\000\098\111\111\116\195\032\020\004\000\067\079\076\068\006\033\004\042\044\004\019\000\067\111\109\112\117\116\101\114\032\105\115\032\114\101\097\100\121\032\040\208\013\189\017\218\026\044\004\011\000\098\121\116\101\115\032\102\114\101\101\041\208\013\062\029\020\004\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + return "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\010\000\000\000\097\035\000\000\000\000\148\035\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\171\018\180\001\176\001\001\000\000\000\000\000\000\000\000\000\097\035\030\011\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\176\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\077\000\002\024\077\000\003\025\077\097\035\026\000\069\088\073\084\000\000\004\040\041\000\040\108\105\116\041\020\004\005\043\033\041\000\040\115\108\105\116\041\031\004\006\043\069\011\033\034\012\068\027\041\000\040\100\111\100\111\101\115\041\044\004\008\043\033\043\027\041\000\068\085\080\065\004\003\048\033\041\000\083\087\065\080\077\004\004\049\050\033\034\041\000\082\079\084\088\004\003\049\050\051\034\033\035\041\000\045\082\079\084\100\004\004\049\050\051\033\035\034\041\000\079\086\069\082\115\004\004\050\048\034\033\041\000\080\073\067\075\130\004\004\050\068\012\008\013\007\034\041\000\068\082\079\080\143\004\004\049\041\000\050\068\082\079\080\159\004\005\049\049\041\000\050\068\085\080\170\004\004\050\048\034\033\034\041\000\050\083\087\065\080\181\004\005\049\050\051\003\051\034\033\035\019\035\041\000\050\079\086\069\082\196\004\005\051\003\051\050\048\034\035\019\035\033\034\041\000\078\073\080\216\004\003\049\032\041\000\084\085\067\075\235\004\004\049\050\033\034\033\041\000\063\068\085\080\246\004\004\048\057\001\000\041\033\041\000\062\082\004\005\002\049\001\041\000\082\062\017\005\002\017\033\041\000\082\064\026\005\002\016\033\041\000\033\035\005\001\050\049\038\041\000\067\033\043\005\002\050\049\054\041\000\064\053\005\001\048\004\032\041\000\067\064\062\005\002\048\020\032\041\000\065\078\068\072\005\003\050\048\044\032\041\000\079\082\083\005\002\050\048\045\032\041\000\088\079\082\094\005\003\050\048\046\032\041\000\073\078\086\069\082\084\106\005\006\048\047\032\041\000\040\098\114\097\110\099\104\041\121\005\008\043\027\041\000\040\048\098\114\097\110\099\104\041\137\005\009\050\043\058\001\000\027\041\000\082\079\076\076\153\005\004\050\065\075\068\012\008\013\005\033\049\068\074\074\007\037\073\073\069\072\059\245\255\041\000\043\168\005\001\050\049\012\034\041\000\045\196\005\001\050\049\013\034\041\000\043\033\206\005\002\050\065\007\049\012\066\037\041\000\042\217\005\001\050\049\014\034\041\000\085\060\230\005\002\050\048\013\032\041\000\085\062\241\005\002\049\050\013\033\041\000\077\042\252\005\002\050\049\015\034\033\041\000\085\077\042\007\006\003\050\049\014\034\033\041\000\048\061\020\006\002\048\057\003\000\047\032\041\077\000\000\032\041\000\048\060\062\032\006\003\048\057\001\000\041\077\255\255\032\041\000\048\060\051\006\002\050\063\033\041\000\048\062\067\006\002\050\058\002\000\034\041\063\047\033\041\000\060\062\077\006\002\050\048\013\058\002\000\032\041\077\255\255\032\041\000\061\093\006\001\050\048\013\058\005\000\077\255\255\032\041\077\000\000\032\041\000\069\077\080\084\089\082\111\006\006\077\000\003\025\041\000\069\077\080\084\089\083\137\006\006\077\000\002\024\041\000\068\069\080\084\072\152\006\005\008\078\000\002\013\068\078\001\000\061\033\041\000\050\042\166\006\002\078\001\000\048\062\032\041\000\050\047\184\006\002\078\001\000\048\061\032\041\000\082\083\072\073\070\084\197\006\006\050\048\060\032\041\000\076\083\072\073\070\084\214\006\006\050\048\062\032\041\000\050\062\082\229\006\003\050\049\001\002\041\000\050\082\062\241\006\003\018\017\033\034\041\000\050\082\064\253\006\003\018\016\002\033\034\041\000\049\043\009\007\002\048\073\032\041\000\049\045\021\007\002\048\070\032\041\000\069\088\069\067\085\084\069\031\007\007\049\026\000\042\047\077\079\068\046\007\005\051\050\049\015\031\035\034\041\000\042\047\057\007\002\051\050\049\015\031\034\041\000\047\077\079\068\071\007\004\051\050\063\031\035\034\041\000\047\086\007\001\051\050\063\031\034\041\000\077\079\068\098\007\003\051\050\063\031\035\041\000\085\077\047\077\079\068\111\007\006\051\049\050\030\035\034\041\000\070\077\047\077\079\068\127\007\006\051\049\050\031\035\034\041\000\079\043\144\007\002\050\049\012\034\033\041\000\085\068\077\047\077\079\068\157\007\007\051\049\050\030\035\034\033\041\000\060\174\007\001\050\063\065\050\034\046\069\063\047\057\004\000\050\063\033\041\049\067\013\033\041\000\062\187\007\001\049\050\033\063\065\050\034\046\069\063\047\057\004\000\050\063\033\041\049\067\013\033\041\000\078\069\071\065\084\069\213\007\006\048\047\073\032\041\000\040\100\111\041\246\007\004\043\001\050\051\003\002\041\000\040\063\100\111\041\003\008\005\043\001\050\049\001\002\013\058\004\000\018\018\017\027\041\000\073\019\008\001\016\033\041\000\074\039\008\001\019\018\034\018\016\002\050\002\003\033\041\000\085\078\076\079\079\080\047\008\006\018\018\018\041\000\040\108\111\111\112\041\068\008\006\018\074\016\002\013\043\058\004\000\018\018\018\041\027\041\000\040\043\108\111\111\112\041\082\008\007\018\065\049\012\016\070\002\067\064\013\063\033\066\018\002\013\063\050\046\069\043\058\002\000\027\041\018\018\018\041\000\087\065\073\084\108\008\004\000\041\000\076\069\065\086\069\146\008\005\017\017\017\027\041\000\082\069\067\069\073\086\069\045\065\084\157\008\010\051\050\048\082\032\041\000\068\069\076\069\084\069\045\077\083\071\176\008\010\050\049\083\041\000\083\069\084\045\067\072\065\078\078\069\076\196\008\011\050\049\085\041\000\083\069\078\068\215\008\004\050\049\084\041\000\070\087\227\008\002\096\033\041\000\066\087\237\008\002\097\033\041\000\085\080\246\008\002\098\033\041\000\068\078\255\008\002\099\033\041\000\084\076\008\009\002\100\041\000\084\082\017\009\002\101\041\000\068\084\025\009\002\049\104\033\041\000\068\084\045\085\080\033\009\005\049\105\033\041\000\068\084\045\068\078\046\009\005\049\106\033\041\000\068\073\071\059\009\003\112\041\000\068\073\071\045\085\080\070\009\006\113\041\000\068\073\071\045\068\078\082\009\006\114\041\000\080\076\065\067\069\094\009\005\116\041\000\080\076\065\067\069\045\085\080\105\009\008\117\041\000\080\076\065\067\069\045\068\078\119\009\008\118\041\000\082\069\070\085\069\076\133\009\006\050\049\128\033\041\000\083\069\076\069\067\084\145\009\006\049\129\041\000\071\069\084\045\069\078\069\082\071\089\160\009\010\130\034\033\041\000\079\080\069\078\045\073\078\086\177\009\008\136\041\000\071\069\084\045\070\079\082\077\083\080\069\067\193\009\012\049\137\041\000\071\069\084\045\083\084\065\067\075\211\009\009\051\050\049\138\041\000\047\067\079\085\078\084\069\068\045\083\084\082\073\078\071\000\000\015\077\000\001\033\041\000\047\072\079\076\068\251\009\005\077\034\000\033\041\000\047\080\065\068\009\010\004\077\084\000\033\041\000\065\068\082\069\083\083\045\085\078\073\084\045\066\073\084\083\022\010\016\077\008\000\033\041\000\067\079\082\069\047\010\004\077\255\255\033\041\000\067\079\082\069\045\069\088\084\060\010\008\077\255\255\033\041\000\070\076\079\079\082\069\068\077\010\007\077\255\255\033\041\000\077\065\088\045\067\072\065\082\093\010\008\077\255\000\033\041\000\077\065\088\045\078\110\010\005\077\255\127\033\041\000\077\065\088\045\085\124\010\005\077\255\255\033\041\000\082\069\084\085\082\078\045\083\084\065\067\075\045\067\069\076\076\083\138\010\018\077\128\000\033\041\000\083\084\065\067\075\045\067\069\076\076\083\165\010\011\077\128\000\033\041\000\077\065\088\045\085\068\185\010\006\077\255\255\033\077\255\255\033\041\000\077\065\088\045\068\200\010\005\077\255\255\033\077\255\127\033\041\000\083\069\065\082\067\072\045\079\082\068\069\082\218\010\012\077\255\255\033\041\000\083\069\065\082\067\072\045\079\082\068\069\082\045\069\088\084\243\010\016\077\255\255\033\041\000\087\079\082\068\076\073\083\084\083\012\011\009\077\008\000\033\041\000\066\076\227\009\002\077\032\000\033\041\000\070\065\076\083\069\041\011\005\077\000\000\033\041\000\084\082\085\069\055\011\004\077\255\255\033\041\000\040\115\111\117\114\099\101\041\068\011\008\077\000\001\033\041\000\062\073\078\085\011\003\077\004\001\033\041\000\083\079\085\082\067\069\045\073\068\097\011\009\077\006\001\033\041\000\066\065\083\069\115\011\004\077\008\001\033\041\000\083\084\065\084\069\128\011\005\077\010\001\033\041\000\076\065\084\069\083\084\142\011\006\077\012\001\033\041\000\083\080\065\078\157\011\004\077\016\001\033\041\000\040\104\101\114\101\041\170\011\006\077\018\001\033\041\000\076\084\185\011\002\077\020\001\033\041\000\035\084\073\066\196\011\004\077\022\001\033\041\000\084\073\066\209\011\003\077\024\001\033\041\000\039\078\085\077\066\069\082\221\011\007\077\160\001\033\041\000\078\069\087\045\087\079\082\068\076\073\083\084\237\011\012\077\162\001\033\041\000\067\087\002\012\002\077\164\001\033\041\000\078\087\079\082\068\069\082\013\012\007\077\166\001\033\041\000\087\079\082\068\076\073\083\084\083\029\012\009\077\176\001\033\041\000\070\079\082\084\072\045\087\079\082\068\076\073\083\084\047\012\014\077\176\001\033\041\000\069\078\086\068\073\067\079\070\012\007\077\178\001\033\041\000\087\079\082\068\069\082\086\012\006\077\208\001\033\041\000\067\072\065\082\083\101\012\133\042\020\004\000\065\076\073\071\078\115\012\133\042\020\004\000\065\076\073\071\078\069\068\127\012\135\042\020\004\000\067\069\076\076\043\141\012\005\042\031\004\002\000\196\005\020\004\000\067\069\076\076\045\153\012\005\042\031\004\002\000\206\005\020\004\000\067\072\065\082\043\171\012\005\042\021\007\020\004\000\067\069\076\076\083\189\012\005\042\184\006\020\004\000\069\077\073\084\203\012\004\042\044\004\006\000\115\099\114\101\101\110\215\008\031\004\002\000\043\005\031\004\002\000\031\004\001\000\227\008\020\004\000\082\069\067\069\073\086\069\216\012\007\042\031\004\128\000\176\008\020\004\000\050\033\002\013\002\042\088\004\130\004\043\005\153\012\043\005\020\004\000\050\064\017\013\002\042\077\004\153\012\062\005\088\004\062\005\020\004\000\083\079\085\082\067\069\036\013\006\042\085\011\036\013\020\004\000\083\062\068\059\013\003\042\077\004\067\006\020\004\000\077\065\088\073\013\003\042\181\004\213\007\153\005\102\013\159\004\137\005\104\013\235\004\020\004\000\077\073\078\087\013\003\042\181\004\213\007\153\005\128\013\235\004\137\005\130\013\159\004\020\004\000\068\043\113\013\002\042\100\004\196\005\115\004\157\007\100\004\196\005\020\004\000\072\069\088\138\013\003\042\031\004\016\000\128\011\043\005\020\004\000\068\069\067\073\077\065\076\160\013\007\042\031\004\010\000\128\011\043\005\020\004\000\084\085\067\075\182\013\004\042\088\004\130\004\020\004\000\065\066\083\201\013\003\042\077\004\067\006\153\005\226\013\246\007\020\004\000\040\109\097\114\107\101\114\041\215\013\008\042\157\011\043\005\185\011\043\005\020\004\000\084\089\080\069\240\013\004\042\077\004\077\006\153\005\036\014\130\004\196\005\088\004\019\008\032\014\039\008\072\005\216\012\082\008\022\014\137\005\038\014\170\004\020\004\000\082\083\084\082\003\014\004\042\021\007\077\004\031\004\002\000\196\005\072\005\031\004\127\000\083\005\201\013\206\005\088\004\020\004\000\067\082\048\014\002\042\031\004\010\000\216\012\020\004\000\083\080\065\067\069\081\014\005\042\031\004\032\000\216\012\020\004\000\083\080\065\067\069\083\099\014\006\042\077\004\077\006\153\005\145\014\031\004\000\000\003\008\141\014\099\014\082\008\135\014\137\005\147\014\159\004\020\004\000\083\084\082\061\118\014\004\042\031\004\000\000\003\008\200\014\130\004\072\005\130\004\072\005\093\006\153\005\188\014\068\008\170\004\055\011\020\004\088\004\021\007\088\004\021\007\082\008\166\014\170\004\068\011\020\004\000\073\077\077\069\068\073\065\084\069\157\014\009\042\157\011\062\005\031\007\077\004\072\005\031\004\128\000\094\005\088\004\053\005\020\004\000\072\069\082\069\219\014\004\042\185\011\062\005\020\004\000\091\250\014\129\042\055\011\142\011\043\005\020\004\000\093\006\015\001\042\068\011\142\011\043\005\020\004\000\065\076\076\079\084\020\015\005\042\185\011\217\005\020\004\000\044\038\015\001\042\250\014\043\005\031\004\002\000\038\015\020\004\000\067\044\050\015\002\042\250\014\053\005\031\004\001\000\038\015\020\004\000\083\075\073\080\045\087\072\073\084\069\069\015\010\042\077\004\072\005\031\004\033\000\187\007\153\005\127\015\021\007\181\004\111\006\153\005\123\015\020\004\137\005\097\015\020\004\000\069\088\073\084\045\073\070\045\069\078\068\096\015\011\042\059\013\235\004\097\011\062\005\111\006\153\005\171\015\059\013\196\005\031\004\000\000\026\005\159\004\020\004\000\080\065\082\083\069\045\076\073\077\073\084\083\144\015\012\042\059\013\130\004\196\005\088\004\097\011\062\005\196\005\020\004\000\062\073\078\045\069\078\068\189\015\007\042\059\013\235\004\097\011\043\005\020\004\000\067\079\085\078\084\069\068\045\083\084\082\073\078\071\217\015\014\042\077\004\250\014\053\005\250\014\021\007\115\004\130\004\196\005\088\004\003\008\027\016\039\008\072\005\130\004\053\005\021\007\082\008\013\016\159\004\250\014\020\004\000\080\065\082\083\069\045\087\079\082\068\246\015\010\042\144\015\189\015\096\015\181\004\111\006\153\005\072\016\217\015\159\004\031\004\000\000\020\004\077\004\017\005\077\004\072\005\031\004\032\000\213\007\153\005\118\016\021\007\181\004\111\006\153\005\114\016\217\015\159\004\035\005\206\005\026\005\088\004\020\004\137\005\076\016\235\004\077\004\059\013\159\004\206\005\021\007\097\011\043\005\035\005\206\005\026\005\088\004\020\004\000\080\065\082\083\069\047\016\005\042\059\013\235\004\097\011\062\005\111\006\153\005\180\016\159\004\059\013\196\005\031\004\000\000\020\004\189\015\077\004\017\005\100\004\017\005\077\004\072\005\035\005\093\006\153\005\234\016\021\007\181\004\111\006\153\005\230\016\026\005\159\004\217\015\159\004\035\005\206\005\026\005\088\004\020\004\137\005\190\016\026\005\159\004\235\004\077\004\059\013\159\004\206\005\021\007\097\011\043\005\035\005\206\005\026\005\088\004\020\004\000\087\079\082\068\153\016\004\042\059\013\235\004\097\011\062\005\111\006\153\005\045\017\159\004\031\004\000\000\250\014\053\005\250\014\020\004\189\015\077\004\017\005\100\004\017\005\077\004\072\005\035\005\093\006\153\005\099\017\021\007\181\004\111\006\153\005\095\017\026\005\159\004\217\015\159\004\035\005\206\005\026\005\088\004\020\004\137\005\055\017\026\005\159\004\235\004\077\004\059\013\159\004\206\005\021\007\097\011\043\005\035\005\206\005\026\005\088\004\246\015\020\004\000\072\069\065\068\069\082\016\017\006\042\047\016\201\013\031\004\000\000\069\015\130\004\196\005\088\004\003\008\172\017\039\008\072\005\069\015\082\008\162\017\157\011\062\005\050\015\069\015\020\004\000\058\141\017\001\042\141\017\250\014\077\004\196\011\043\005\031\004\042\000\069\015\020\015\020\004\000\058\067\079\068\069\187\017\005\042\141\017\250\014\077\004\196\011\043\005\020\004\000\085\078\085\083\069\068\217\017\006\042\250\014\246\007\020\004\000\078\067\072\065\082\240\017\005\042\077\004\072\005\077\004\031\004\058\000\187\007\153\005\027\018\031\004\048\000\206\005\137\005\055\018\077\004\031\004\097\000\187\007\153\005\049\018\031\004\055\000\206\005\137\005\055\018\031\004\087\000\206\005\020\004\000\062\078\085\077\066\069\082\000\018\007\042\077\004\017\005\031\004\000\000\003\008\161\018\000\018\077\004\128\011\062\005\187\007\130\004\067\006\121\005\083\005\153\005\143\018\196\004\128\011\062\005\230\005\031\004\000\000\088\004\100\004\128\011\062\005\020\006\138\013\100\004\031\004\000\000\138\013\100\004\021\007\137\005\157\018\159\004\039\008\068\008\026\005\088\004\206\005\020\004\082\008\081\018\026\005\159\004\031\004\000\000\020\004\042\031\004\000\000\031\004\000\000\196\004\130\004\072\005\031\004\045\000\111\006\153\005\222\018\088\004\021\007\088\004\031\007\068\018\196\004\159\004\246\007\031\004\001\000\196\004\137\005\234\018\068\018\100\004\159\004\031\004\001\000\115\004\020\004\000\078\085\077\066\069\082\068\018\006\042\237\011\062\005\046\007\020\004\000\083\065\086\069\045\073\078\080\085\084\246\018\010\042\097\011\062\005\031\004\001\000\020\004\000\082\069\083\084\079\082\069\045\073\078\080\085\084\013\019\013\042\077\004\031\004\001\000\111\006\153\005\066\019\159\004\097\011\043\005\055\011\137\005\082\019\031\004\000\000\019\008\080\019\159\004\082\008\074\019\068\011\020\004\000\067\079\085\078\084\041\019\005\042\077\004\021\007\088\004\072\005\020\004\000\067\072\065\082\093\019\004\042\047\016\159\004\072\005\020\004\000\070\073\076\076\112\019\004\042\115\004\077\004\077\006\153\005\164\019\130\004\196\005\088\004\003\008\160\019\077\004\039\008\053\005\082\008\150\019\137\005\166\019\170\004\159\004\020\004\000\069\082\065\083\069\129\019\005\042\031\004\000\000\129\019\020\004\000\040\179\019\129\042\031\004\041\000\153\016\170\004\020\004\000\046\040\193\019\130\042\031\004\041\000\153\016\003\014\020\004\000\092\210\019\129\042\031\004\010\000\153\016\170\004\020\004\000\084\072\069\078\226\019\132\042\250\014\088\004\043\005\020\004\000\066\069\071\073\078\245\019\133\042\250\014\020\004\000\070\073\078\068\045\087\079\082\068\045\068\073\067\079\007\020\014\042\088\004\017\005\077\004\031\004\004\000\206\005\048\014\035\005\111\006\153\005\079\020\031\004\002\000\143\004\035\005\157\014\153\005\075\020\235\004\026\005\159\004\020\004\137\005\081\020\159\004\031\004\003\000\206\005\062\005\077\004\032\006\153\005\035\020\235\004\026\005\159\004\020\004\000\071\069\084\045\087\076\045\076\065\084\069\083\084\030\020\013\042\077\004\013\012\062\005\111\006\153\005\145\020\159\004\157\011\062\005\137\005\147\020\062\005\020\004\000\070\073\078\068\045\087\079\082\068\122\020\009\042\101\012\029\012\062\005\184\006\196\005\101\012\003\008\205\020\039\008\062\005\122\020\030\020\004\005\153\005\197\020\068\008\020\004\031\004\002\000\108\008\179\020\031\004\000\000\020\004\000\039\162\020\001\042\047\016\162\020\020\004\000\080\079\083\084\080\079\078\069\216\020\136\042\216\020\077\004\031\007\072\005\031\004\128\000\083\005\153\005\004\021\050\015\137\005\018\021\031\004\031\004\050\015\050\015\031\004\050\015\050\015\020\004\000\076\073\084\069\082\065\076\235\020\135\042\031\004\031\004\050\015\050\015\020\004\000\078\076\073\084\069\082\065\076\031\021\136\042\077\004\017\005\031\004\000\000\003\008\083\021\031\004\031\004\050\015\031\004\000\000\050\015\082\008\067\021\026\005\031\004\000\000\003\008\117\021\250\014\031\004\002\000\206\005\039\008\031\004\004\000\230\005\206\005\043\005\082\008\093\021\020\004\000\068\079\069\083\062\054\021\005\042\031\004\065\004\157\011\062\005\021\007\043\005\026\005\157\011\062\005\031\004\005\000\196\005\043\005\020\004\000\091\039\093\128\021\131\042\216\020\031\021\020\004\000\091\067\079\077\080\073\076\069\093\164\021\137\042\216\020\050\015\020\004\000\059\184\021\129\042\031\004\020\004\050\015\157\011\043\005\006\015\020\004\000\067\079\068\069\059\196\021\005\042\031\004\041\000\069\015\157\011\043\005\020\004\000\091\067\072\065\082\093\220\021\134\042\112\019\031\021\020\004\000\067\082\069\065\084\069\243\021\006\042\141\017\250\014\157\011\043\005\031\004\042\000\069\015\250\014\031\004\006\000\196\005\031\021\031\004\020\004\050\015\020\004\000\086\065\082\073\065\066\076\069\004\022\008\042\004\022\031\004\002\000\038\015\020\004\000\067\079\078\083\084\065\078\084\049\022\008\042\141\017\250\014\157\011\043\005\031\004\077\000\069\015\050\015\031\004\033\000\069\015\031\004\041\000\069\015\020\004\000\077\065\082\075\069\082\072\022\006\042\250\014\141\017\250\014\088\004\031\004\042\000\069\015\031\021\157\011\062\005\031\021\031\004\240\013\050\015\031\004\020\004\050\015\157\011\043\005\020\004\000\073\070\113\022\130\042\031\004\153\005\050\015\250\014\031\004\000\000\050\015\020\004\000\069\076\083\069\160\022\132\042\031\004\137\005\050\015\250\014\088\004\031\004\000\000\050\015\250\014\088\004\043\005\020\004\000\085\078\084\073\076\185\022\133\042\031\004\153\005\050\015\050\015\020\004\000\082\069\080\069\065\084\219\022\134\042\031\004\137\005\050\015\050\015\250\014\088\004\043\005\020\004\000\087\072\073\076\069\240\022\133\042\031\004\153\005\050\015\250\014\088\004\031\004\000\000\050\015\020\004\000\067\065\083\069\010\023\132\042\031\004\000\000\020\004\000\069\078\068\067\065\083\069\037\023\135\042\031\004\159\004\050\015\077\004\051\006\153\005\080\023\250\014\088\004\043\005\137\005\062\023\159\004\020\004\000\079\070\055\023\130\042\031\004\130\004\050\015\031\004\111\006\050\015\031\004\153\005\050\015\250\014\031\004\000\000\050\015\031\004\159\004\050\015\020\004\000\069\078\068\079\070\090\023\133\042\031\004\137\005\050\015\250\014\031\004\000\000\050\015\250\014\100\004\043\005\020\004\000\083\076\073\084\069\082\065\076\134\023\136\042\031\004\044\004\050\015\077\004\050\015\130\004\196\005\088\004\019\008\200\023\039\008\072\005\069\015\082\008\190\023\020\004\000\083\034\169\023\130\042\031\004\034\000\153\016\169\023\020\004\000\080\065\068\208\023\003\042\250\014\031\004\036\000\196\005\020\004\000\086\065\076\085\069\226\023\005\042\141\017\250\014\157\011\043\005\031\004\077\000\069\015\050\015\031\004\033\000\069\015\031\004\041\000\069\015\020\004\000\084\079\246\023\130\042\047\016\162\020\021\007\142\011\062\005\153\005\054\024\031\021\031\004\043\005\050\015\137\005\056\024\043\005\020\004\000\067\079\077\080\073\076\069\044\027\024\008\042\050\015\020\004\000\065\071\065\073\078\070\024\133\042\031\004\137\005\050\015\050\015\020\004\000\065\066\079\082\084\084\024\005\042\152\006\113\029\020\004\000\067\079\077\080\073\076\069\045\087\079\082\068\104\024\012\042\181\004\241\006\162\020\004\005\153\005\172\024\253\006\170\004\077\004\031\007\072\005\031\004\128\000\083\005\153\005\166\024\046\007\137\005\168\024\050\015\137\005\224\024\009\007\246\018\032\006\153\005\194\024\159\004\253\006\170\004\054\021\137\005\224\024\159\004\031\004\000\000\019\008\210\024\159\004\082\008\204\024\253\006\003\014\099\014\031\004\063\000\216\012\104\024\020\004\000\067\079\085\078\084\127\024\005\042\077\004\021\007\088\004\072\005\020\004\000\082\069\067\085\082\083\069\235\024\135\042\196\011\062\005\050\015\020\004\000\058\078\079\078\065\077\069\001\025\007\042\250\014\077\004\196\011\043\005\031\004\042\000\069\015\157\011\062\005\020\015\020\004\000\062\066\079\068\089\021\025\005\042\031\004\007\000\196\005\020\004\000\069\078\086\073\082\079\078\077\069\078\084\063\053\025\012\042\086\012\062\005\030\020\077\004\153\005\095\025\046\007\068\011\020\004\000\068\048\061\078\025\003\042\094\005\032\006\020\004\000\072\079\076\068\104\025\004\042\250\014\062\005\031\007\077\004\250\014\043\005\053\005\020\004\000\035\119\025\001\042\128\011\062\005\174\007\100\004\077\004\031\004\009\000\213\007\153\005\172\025\031\004\055\000\196\005\137\005\178\025\031\004\048\000\196\005\119\025\020\004\000\035\083\141\025\002\042\141\025\181\004\104\025\153\005\189\025\020\004\000\046\034\188\025\130\042\208\023\031\004\003\014\050\015\020\004\000\067\034\207\025\130\042\031\004\034\000\153\016\031\004\137\005\050\015\250\014\031\004\000\000\050\015\115\004\250\014\115\004\077\004\069\015\130\004\196\005\088\004\019\008\019\026\039\008\072\005\069\015\082\008\009\026\088\004\250\014\088\004\043\005\031\021\020\004\000\060\035\224\025\002\042\226\023\250\014\043\005\020\004\000\035\062\037\026\002\042\170\004\250\014\062\005\226\023\130\004\206\005\020\004\000\083\073\071\078\052\026\004\042\067\006\153\005\088\026\031\004\045\000\119\025\020\004\000\067\079\078\086\069\082\084\075\026\007\042\031\004\255\255\068\018\159\004\020\004\000\077\079\086\069\101\026\004\042\077\004\032\006\153\005\135\026\159\004\170\004\020\004\115\004\181\004\252\005\153\005\179\026\100\004\031\004\000\000\003\008\175\026\130\004\072\005\130\004\053\005\021\007\088\004\021\007\088\004\082\008\155\026\137\005\225\026\031\004\002\000\143\004\201\013\196\005\115\004\196\005\088\004\100\004\031\004\000\000\003\008\225\026\031\007\088\004\031\007\088\004\130\004\072\005\130\004\053\005\082\008\205\026\170\004\020\004\000\046\120\026\001\042\077\004\017\005\215\013\031\004\000\000\037\026\041\011\119\025\188\025\026\005\075\026\052\026\003\014\020\004\000\085\046\234\026\002\042\031\004\000\000\037\026\041\011\119\025\188\025\052\026\003\014\020\004\000\046\082\013\027\002\042\017\005\077\004\017\005\215\013\031\004\000\000\037\026\041\011\119\025\188\025\026\005\075\026\052\026\026\005\130\004\206\005\118\014\003\014\020\004\000\085\046\082\038\027\003\042\017\005\031\004\000\000\037\026\041\011\119\025\188\025\052\026\026\005\130\004\206\005\118\014\003\014\020\004\000\087\073\084\072\073\078\084\027\006\042\130\004\206\005\017\005\206\005\026\005\241\005\020\004\000\068\079\123\027\130\042\031\004\003\008\050\015\250\014\031\004\000\000\050\015\250\014\020\004\000\063\068\079\144\027\131\042\031\004\019\008\050\015\250\014\031\004\000\000\050\015\250\014\020\004\000\076\079\079\080\170\027\132\042\031\004\082\008\050\015\050\015\250\014\088\004\043\005\020\004\000\043\076\079\079\080\197\027\133\042\031\004\108\008\050\015\050\015\250\014\088\004\043\005\020\004\000\065\067\067\069\080\084\223\027\006\042\044\004\006\000\115\099\114\101\101\110\196\008\044\004\006\000\115\099\114\101\101\110\031\004\016\000\176\008\077\004\067\006\153\005\039\028\159\004\146\008\137\005\007\028\113\013\201\013\031\004\016\000\115\004\120\026\020\004\000\069\088\080\069\067\084\250\027\006\042\250\027\170\011\043\005\020\004\000\081\085\069\082\089\063\028\005\042\031\004\000\000\097\011\043\005\031\004\000\000\115\011\043\005\221\011\077\004\031\004\080\000\250\027\099\014\085\011\017\013\020\004\000\082\069\070\073\076\076\081\028\006\042\115\011\062\005\153\005\141\028\055\011\137\005\167\028\031\004\000\000\097\011\043\005\221\011\077\004\031\004\080\000\250\027\099\014\085\011\017\013\068\011\020\004\000\073\078\084\069\082\080\082\069\084\045\087\079\082\068\126\028\014\042\181\004\241\006\162\020\004\005\153\005\210\028\253\006\170\004\046\007\137\005\004\029\009\007\246\018\032\006\153\005\230\028\170\004\253\006\170\004\137\005\004\029\159\004\031\004\000\000\019\008\246\028\159\004\082\008\240\028\253\006\003\014\099\014\031\004\063\000\216\012\104\024\020\004\000\069\086\065\076\085\065\084\069\187\028\008\042\059\013\241\006\097\011\062\005\017\005\115\011\062\005\017\005\031\004\255\255\115\011\043\005\031\004\000\000\097\011\043\005\085\011\017\013\047\016\004\005\153\005\083\029\142\011\062\005\153\005\077\029\127\024\137\005\079\029\187\028\137\005\055\029\159\004\026\005\115\011\043\005\026\005\097\011\043\005\253\006\085\011\017\013\020\004\000\081\085\073\084\018\029\004\042\137\006\081\014\126\028\153\005\174\029\047\016\004\005\153\005\152\029\142\011\062\005\153\005\146\029\127\024\137\005\148\029\187\028\137\005\124\029\159\004\099\014\031\004\079\000\216\012\031\004\075\000\216\012\081\014\137\005\118\029\020\004\000\040\097\098\111\114\116\034\041\113\029\008\042\100\004\153\005\199\029\003\014\104\024\170\004\020\004\000\065\066\079\082\084\034\188\029\134\042\208\023\031\004\188\029\050\015\020\004\000\068\065\066\083\213\029\004\042\077\004\067\006\153\005\007\030\130\004\246\007\100\004\153\005\003\030\088\004\121\005\137\005\007\030\088\004\246\007\020\004\000\068\046\232\029\002\042\077\004\017\005\232\029\037\026\041\011\119\025\188\025\026\005\075\026\052\026\003\014\020\004\000\083\077\047\082\069\077\015\030\006\042\130\004\017\005\181\004\106\005\017\005\215\013\017\005\232\029\026\005\127\007\026\005\067\006\153\005\081\030\246\007\088\004\026\005\067\006\153\005\093\030\246\007\088\004\020\004\000\079\078\050\030\002\042\215\008\044\004\002\000\111\110\227\008\020\004\000\079\070\070\103\030\003\042\215\008\044\004\003\000\111\102\102\227\008\020\004\000\073\079\064\123\030\003\042\002\013\031\004\003\000\187\007\020\004\000\076\079\065\068\080\075\071\144\030\007\042\031\004\000\000\031\004\030\001\053\005\047\016\031\004\026\001\017\013\031\004\026\001\036\013\215\008\031\004\030\001\031\004\001\000\227\008\031\004\030\001\072\005\021\007\031\004\030\001\053\005\031\004\026\001\036\013\031\004\016\000\176\008\031\004\016\000\072\005\153\005\251\030\031\004\016\000\088\004\018\029\137\005\185\030\159\004\020\004\000\070\079\082\077\083\080\069\067\045\066\085\070\070\069\082\166\030\015\077\000\240\033\041\000\084\065\071\045\069\078\068\018\031\007\077\000\000\033\041\000\084\065\071\045\076\073\083\084\034\031\008\077\001\000\033\041\000\073\083\045\065\068\068\082\045\076\073\083\084\051\031\012\042\077\004\017\005\062\005\031\004\003\000\143\004\111\006\153\005\179\031\031\004\003\000\143\004\035\005\031\004\002\000\196\005\035\005\062\005\157\014\153\005\171\031\035\005\062\005\026\005\196\005\031\004\002\000\196\005\077\004\017\005\062\005\130\004\111\006\153\005\163\031\130\004\035\005\031\004\002\000\196\005\035\005\062\005\157\014\137\005\167\031\031\004\000\000\137\005\175\031\031\004\000\000\137\005\183\031\031\004\000\000\026\005\159\004\020\004\000\071\069\084\045\076\073\083\084\045\065\068\068\082\072\031\013\042\017\005\035\005\072\005\153\005\029\032\035\005\035\005\021\007\062\005\035\005\072\005\088\004\017\005\051\031\111\006\153\005\017\032\031\004\004\000\196\005\072\031\153\005\017\032\026\005\159\004\159\004\159\004\159\004\159\004\026\005\031\004\255\255\020\004\026\005\026\005\159\004\017\005\137\005\209\031\026\005\159\004\159\004\159\004\159\004\159\004\031\004\000\000\020\004\000\071\069\084\045\069\076\069\077\045\073\068\206\031\011\042\031\004\003\000\196\005\072\005\020\004\000\071\069\084\045\076\073\083\084\045\073\068\062\032\011\042\206\031\153\005\101\032\062\032\137\005\105\032\031\004\255\255\020\004\000\071\069\084\045\073\078\086\045\073\068\088\032\010\042\017\005\044\004\014\000\099\117\114\114\101\110\116\095\112\108\097\121\101\114\044\004\004\000\109\097\105\110\026\005\088\032\020\004\000\071\069\084\045\067\082\065\070\084\045\073\068\121\032\012\042\017\005\044\004\014\000\099\117\114\114\101\110\116\095\112\108\097\121\101\114\044\004\005\000\099\114\097\102\116\026\005\088\032\020\004\000\071\069\084\045\067\082\065\070\084\045\079\085\084\080\085\084\045\073\068\172\032\019\042\017\005\044\004\014\000\099\117\114\114\101\110\116\095\112\108\097\121\101\114\044\004\012\000\099\114\097\102\116\112\114\101\118\105\101\119\026\005\088\032\020\004\000\071\069\084\045\067\085\082\082\069\078\084\231\032\011\042\013\012\062\005\020\004\000\083\069\084\045\067\085\082\082\069\078\084\033\033\011\042\157\011\062\005\013\012\062\005\043\005\077\004\013\012\043\005\062\005\157\011\043\005\020\004\000\087\079\082\068\076\073\083\084\055\033\008\042\002\012\062\005\077\004\153\012\002\012\043\005\020\004\000\068\069\070\073\078\073\084\073\079\078\083\092\033\011\042\101\012\062\005\055\033\020\004\000\071\069\084\045\079\082\068\069\082\122\033\009\042\101\012\029\012\062\005\031\007\184\006\196\005\019\008\173\033\039\008\062\005\031\004\254\255\108\008\161\033\029\012\062\005\020\004\000\083\069\084\045\079\082\068\069\082\144\033\009\042\077\004\029\012\043\005\101\012\031\004\000\000\019\008\219\033\201\013\043\005\153\012\082\008\209\033\159\004\020\004\000\065\076\083\079\192\033\004\042\101\012\077\004\153\012\029\012\062\005\184\006\120\026\029\012\031\004\002\000\217\005\020\004\000\070\079\082\084\072\231\033\005\042\070\012\101\012\043\005\020\004\000\079\078\076\089\009\034\004\042\009\034\031\004\001\000\029\012\043\005\020\004\000\079\082\068\069\082\026\034\005\042\101\012\029\012\062\005\184\006\196\005\101\012\003\008\079\034\039\008\062\005\234\026\031\004\002\000\108\008\065\034\081\014\013\012\062\005\020\004\000\080\082\069\086\073\079\085\083\048\034\008\042\101\012\153\012\101\012\029\012\062\005\031\007\184\006\120\026\029\012\031\004\254\255\217\005\020\004\000\083\069\065\082\067\072\045\087\079\082\068\076\073\083\084\099\034\015\042\122\020\030\020\077\004\153\005\184\034\077\004\031\007\072\005\031\004\128\000\083\005\153\005\180\034\031\004\001\000\137\005\184\034\031\004\255\255\020\004\000\070\073\078\068\145\034\004\042\077\004\235\024\101\012\029\012\062\005\184\006\196\005\101\012\003\008\249\034\181\004\039\008\062\005\145\034\004\005\153\005\241\034\241\006\170\004\159\004\253\006\068\008\020\004\031\004\002\000\108\008\215\034\170\004\031\004\000\000\020\004\000\068\085\077\080\194\034\004\042\215\008\031\004\000\001\031\004\000\000\003\008\060\035\039\008\031\004\064\000\230\005\226\023\021\007\031\004\064\000\120\026\039\008\226\023\053\005\226\023\031\004\065\000\227\008\082\008\024\035\020\004\000\083\065\086\069\045\083\084\065\084\069\009\035\010\042\044\004\004\000\098\111\111\116\009\035\020\004\000\067\079\076\068\076\035\004\042\044\004\019\000\067\111\109\112\117\116\101\114\032\105\115\032\114\101\097\100\121\032\040\003\014\240\017\013\027\044\004\011\000\098\121\116\101\115\032\102\114\101\101\041\003\014\113\029\020\004\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" end \ No newline at end of file diff --git a/screen.lua b/screen.lua index 043c29f..929dc79 100644 --- a/screen.lua +++ b/screen.lua @@ -36,7 +36,7 @@ local function escape(text) end function screen.new() - return "\n\n\n\n\n\n\n\n\n\n" + return "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n" end function screen.add_text(text, toadd) diff --git a/t2.lua b/t2.lua index 2956cf5..cd4e31b 100644 --- a/t2.lua +++ b/t2.lua @@ -39,12 +39,12 @@ end function turtles.update_formspec(turtle_id) local info = turtles.get_turtle_info(turtle_id) local pos = info.spos - local formspec = "size[9,10]".. + local formspec = "size[13,9]".. screen.create_text_formspec(info.screen, 0, 0).. - "list[nodemeta:"..pos.x..","..pos.y..","..pos.z..";main;4.8,0;4,4;]".. - "image_button[1,4.6;2.5,1;turtle_execute.png;reboot;]".. - "list[nodemeta:"..pos.x..","..pos.y..","..pos.z..";floppy;0,4.6;1,1;]".. - "list[current_player;main;0.5,6;8,4;]" + "list[nodemeta:"..pos.x..","..pos.y..","..pos.z..";main;4.8,0;8,4;]".. + "image_button[1,7.6;2.5,1;turtle_execute.png;reboot;]".. + "list[nodemeta:"..pos.x..","..pos.y..","..pos.z..";floppy;0,7.6;1,1;]".. + "list[current_player;main;4.8,4.6;8,4;]" if info.formspec ~= formspec then info.formspec = formspec info.formspec_changed = true @@ -184,17 +184,18 @@ minetest.register_on_player_receive_fields(function(player, formname, fields) end turtle_receptor_send(turtle_id, "screen", fields.f) turtles.update_formspec(turtle_id) - return + return true end if fields.reboot then local info = turtles.get_turtle_info(turtle_id) info.cptr = create_cptr() - return + return true end if fields.quit then local info = turtles.get_turtle_info(turtle_id) info.playernames[player:get_player_name()] = nil end + return true end) minetest.register_node("turtle:turtle", { @@ -255,7 +256,7 @@ end minetest.register_entity("turtle:turtle", { physical = true, - collisionbox = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, + collisionbox = {-0.4999, -0.4999, -0.4999, 0.4999, 0.4999, 0.4999}, -- Not 0.5 to avoid the turtle being stuck due to rounding errors collides_with_objects = false, visual = "wielditem", -- TODO: change that to a mesh, and add animations visual_size = {x = 2/3, y = 2/3},